*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --charcoal: #1A1A2E;
  --charcoal-light: #2A2A3E;
  --charcoal-mid: #16162A;
  --coral: #E8645A;
  --coral-light: #F0786E;
  --coral-dark: #D45248;
  --cream: #FAF7F5;
  --cream-dark: #F0EBE6;
  --white: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6B6B80;
  --text-inverse: #E8E8F0;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 100, 90, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--charcoal);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn--outline-white:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn--md {
  padding: 12px 24px;
  font-size: 0.9rem;
  border-radius: var(--radius-md);
}

.btn--full {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(26, 26, 46, 0.97);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
}

.nav-logo-text .accent {
  color: var(--coral);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-inverse);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-menu a:hover {
  color: var(--white);
}

.btn--nav {
  padding: 10px 22px;
  font-size: 0.88rem;
  background: var(--coral);
  color: var(--white);
  border: 2px solid var(--coral);
  border-radius: var(--radius-sm);
}

.btn--nav:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 46, 0.92) 0%,
    rgba(26, 26, 46, 0.75) 50%,
    rgba(26, 26, 46, 0.6) 100%
  );
}

.geo-shape {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.geo-shape--1 {
  width: 420px;
  height: 420px;
  background: var(--coral);
  border-radius: 50%;
  top: -120px;
  right: -80px;
  opacity: 0.12;
}

.geo-shape--2 {
  width: 200px;
  height: 200px;
  background: var(--coral-light);
  top: 40%;
  right: 12%;
  opacity: 0.08;
  transform: rotate(45deg);
  border-radius: var(--radius-lg);
}

.geo-shape--3 {
  width: 120px;
  height: 120px;
  background: var(--white);
  bottom: 18%;
  right: 5%;
  opacity: 0.04;
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 100, 90, 0.15);
  border: 1px solid rgba(232, 100, 90, 0.3);
  color: var(--coral-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}

.accent-text {
  color: var(--coral);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-inverse);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-inverse);
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-inverse);
  opacity: 0.5;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== SECTION LABELS ===== */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  margin-bottom: 16px;
}

.label-line {
  width: 32px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 20px;
}

/* ===== SERVICES ===== */
.services {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.1);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card:hover .service-card-accent {
  height: 6px;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 100, 90, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--coral);
}

.service-card:hover .service-icon svg {
  stroke: var(--white);
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.services-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-circle {
  position: absolute;
  border-radius: 50%;
}

.geo-circle--1 {
  width: 500px;
  height: 500px;
  background: var(--coral);
  opacity: 0.04;
  bottom: -200px;
  left: -150px;
}

.geo-circle--2 {
  width: 300px;
  height: 300px;
  background: var(--charcoal);
  opacity: 0.03;
  top: -100px;
  right: -80px;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 120px 0;
  background: var(--charcoal);
  overflow: hidden;
}

.about .section-title {
  color: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 200px;
  height: 200px;
  background: var(--coral);
  border-radius: var(--radius-xl);
  z-index: -1;
  opacity: 0.3;
}

.about-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.about-content {
  position: relative;
  z-index: 1;
}

.about-body {
  font-size: 1.05rem;
  color: var(--text-inverse);
  line-height: 1.75;
  margin-bottom: 20px;
  opacity: 0.85;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 36px 0;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.value-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  min-width: 48px;
}

.value-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-inverse);
  opacity: 0.7;
  line-height: 1.6;
}

.about-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.geo-tri {
  position: absolute;
  background: var(--coral);
  opacity: 0.04;
}

.geo-tri--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.geo-tri--2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -40px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: var(--coral-light);
}

/* ===== GALLERY ===== */
.gallery {
  padding: 120px 0 80px;
  background: var(--cream);
}

.gallery .container {
  margin-bottom: 48px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.gallery-item--wide {
  grid-column: span 7;
}

.gallery-item:not(.gallery-item--wide) {
  grid-column: span 5;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: var(--coral);
  overflow: hidden;
}

.cta-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--white);
}

.cta-circle--1 {
  width: 600px;
  height: 600px;
  opacity: 0.08;
  top: -250px;
  left: -150px;
}

.cta-circle--2 {
  width: 300px;
  height: 300px;
  opacity: 0.06;
  bottom: -100px;
  right: -50px;
}

.cta-rect {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--white);
  opacity: 0.05;
  top: 50%;
  right: 10%;
  transform: rotate(30deg);
  border-radius: var(--radius-lg);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== LOCATION ===== */
.location {
  padding: 120px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 56px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--cream);
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 32px rgba(26, 26, 46, 0.08);
}

.info-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(232, 100, 90, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

.info-card a {
  color: var(--coral);
  font-weight: 600;
}

.info-card a:hover {
  color: var(--coral-dark);
  text-decoration: underline;
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 400px;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.1);
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: var(--transition);
}

.contact-channel:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateX(6px);
}

.contact-channel:hover .channel-icon svg {
  stroke: var(--coral);
}

.channel-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(232, 100, 90, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.channel-icon svg {
  stroke: var(--coral);
  transition: var(--transition);
}

/* ===== FORM ===== */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(26, 26, 46, 0.06);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232, 100, 90, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(232, 100, 90, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.form-success p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  background: var(--charcoal-mid);
  padding: 80px 0 0;
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo-text .accent {
  color: var(--coral);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-inverse);
  opacity: 0.6;
  line-height: 1.65;
  max-width: 280px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--text-inverse);
  opacity: 0.6;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--coral);
  transform: translateX(4px);
}

.footer-hours p,
.footer-contact p {
  font-size: 0.95rem;
  color: var(--text-inverse);
  opacity: 0.6;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--coral);
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.85rem;
  color: var(--text-inverse);
  opacity: 0.4;
}

.footer-bottom a {
  color: var(--coral);
}

.footer-bottom a:hover {
  opacity: 1;
}

.footer-geo {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.03;
  bottom: -300px;
  right: -100px;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 48px;
  }

  .about-img-wrap img {
    height: 520px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-menu a {
    font-size: 1.05rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap img {
    height: 400px;
  }

  .about-img-accent {
    width: 120px;
    height: 120px;
    bottom: -16px;
    right: -16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .gallery-item--wide,
  .gallery-item:not(.gallery-item--wide) {
    grid-column: span 1;
  }

  .gallery-item img {
    height: 240px;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-map {
    min-height: 300px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-wrap {
    padding: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 100px 16px 60px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .services,
  .about,
  .gallery,
  .cta-banner,
  .location,
  .contact {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
