/* ============ LOCAL FONTS (self-hosted, no Google request at runtime) ============ */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('../fonts/playfair-display-var.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/poppins-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins-700.woff2') format('woff2');
}

/* ============ RESET & VARS ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #181818;
  --cream: #f3ede1;
  --gold: #c9a24b;
  --gold-light: #e6c877;
  --red: #7a2020;
  --gray: #8a8a8a;
  --font-head: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

::selection { background: var(--gold); color: var(--black); }


/* ============ NOISE OVERLAY ============ */
.noise-overlay {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity .7s ease, visibility .7s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-pole {
  width: 14px; height: 90px;
  border-radius: 10px;
  overflow: hidden;
  background: repeating-linear-gradient(
    -45deg, #d43b3b 0 12px, #f3ede1 12px 24px, #2a4d8f 24px 36px
  );
  background-size: 100% 200%;
  animation: pole-spin 1s linear infinite;
  box-shadow: 0 0 30px rgba(201,162,75,0.25);
}
@keyframes pole-spin { to { background-position: 0 -200%; } }
.preloader-text {
  font-family: var(--font-head);
  letter-spacing: 4px;
  font-size: 14px;
  color: var(--gold);
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: all .4s ease;
}
.navbar.scrolled {
  padding: 14px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201,162,75,0.15);
}
.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--cream);
  white-space: nowrap;
  line-height: 1.15;
  flex-shrink: 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--gold); }
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201,162,75,0.5);
  flex-shrink: 0;
}
.nav-links { display: flex; gap: 28px; flex-shrink: 0; }
.nav-links a {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  color: var(--cream);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: inline-flex; white-space: nowrap; flex-shrink: 0; }

.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(243,237,225,0.2);
  flex-shrink: 0;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.nav-social:hover {
  border-color: var(--gold);
  background: rgba(201,162,75,0.08);
  transform: translateY(-2px);
}

.burger {
  display: none;
  width: 32px; height: 22px;
  flex-shrink: 0;
  background: none; border: none;
  flex-direction: column; justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}
.burger span {
  height: 2px; width: 100%;
  background: var(--cream);
  transition: all .3s ease;
}
.burger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all .35s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  padding: 11px 26px;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-ghost {
  border-color: rgba(243,237,225,0.3);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); }
.full-width { width: 100%; text-align: center; }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, #1a1611 0%, var(--black) 65%);
}
.hero-vignette {
  position: absolute; inset: 0;
  z-index: 3;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(10,10,10,0.9) 100%);
  pointer-events: none;
}

/* ---- Background slideshow: salon photos ---- */
.hero-bg-slider {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.8s ease, transform 7s ease;
  filter: brightness(0.55) saturate(0.85);
}
.hero-bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: rgba(10,10,10,0.8);
  pointer-events: none;
}

/* ---- 3D showcase: the salon's logo medallion ---- */
.hero-pole-stage {
  position: absolute;
  z-index: 2;
  right: 10%;
  top: 50%;
  width: min(22vw, 300px);
  aspect-ratio: 1/1;
  transform: translateY(-50%);
  perspective: 1500px;
}
.hero-pole-glow {
  position: absolute;
  inset: -25%;
  z-index: -1;
  background: radial-gradient(circle, rgba(201,162,75,0.28) 0%, transparent 65%);
  pointer-events: none;
}
.hero-pole-frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 50%;
  overflow: hidden;
  transform-style: preserve-3d;
  border: 1px solid rgba(201,162,75,0.45);
  background: #f3ede1;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.6),
    0 0 0 8px rgba(10,10,10,0.4),
    0 0 40px rgba(201,162,75,0.25);
  will-change: transform;
}
.hero-pole-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-pole-stage {
    right: 6%;
    top: 110px;
    bottom: auto;
    transform: none;
    width: min(30vw, 170px);
  }
}
@media (max-width: 560px) {
  .hero-pole-stage {
    right: 6%;
    top: 90px;
    width: min(28vw, 120px);
    opacity: 0.95;
  }
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(30px, 7vw, 84px);
  line-height: 1.05;
  text-transform: uppercase;
  max-width: 560px;
  margin-left: -14px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line.gold { color: var(--gold); }
.hero-title-brand { white-space: nowrap; }
.hero-title-intro {
  font-size: clamp(16px, 2.4vw, 24px);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: var(--gray);
  margin-bottom: 8px;
}
.hero-sub {
  max-width: 480px;
  margin: 26px 0 34px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-indicator span {
  font-size: 11px; letter-spacing: 2px; color: var(--gray);
}
.scroll-line { width: 1px; height: 50px; background: rgba(243,237,225,0.2); position: relative; overflow: hidden; }
.scroll-dot {
  position: absolute; top: -20px; left: -1.5px;
  width: 4px; height: 20px; border-radius: 2px;
  background: var(--gold);
  animation: scroll-move 1.8s ease-in-out infinite;
}
@keyframes scroll-move {
  0% { top: -20px; }
  100% { top: 60px; }
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--gold);
  color: var(--black);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-1.2deg);
  margin: -10px 0;
  position: relative;
  z-index: 5;
}
.marquee-track {
  display: inline-flex;
  gap: 22px;
  animation: marquee-scroll 26s linear infinite;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 1px;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============ SECTION GENERIC ============ */
section { position: relative; padding: 140px 0; }
.section-kicker {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.2;
}
.section-desc { color: var(--gray); margin-top: 20px; line-height: 1.8; max-width: 480px; }
.about-tagline {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 19px;
  font-style: italic;
  margin-top: 24px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 70px; }
.section-head .section-desc { margin-left: auto; margin-right: auto; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 90px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201,162,75,0.3);
  padding: 18px 22px;
  border-radius: 4px;
  display: flex; align-items: center; gap: 12px;
}
.badge-num {
  font-family: var(--font-head);
  font-size: 34px; font-weight: 700; color: var(--gold);
}
.badge-label { font-size: 11px; line-height: 1.3; color: var(--cream); text-transform: uppercase; letter-spacing: .5px; }

.about-stats {
  display: flex;
  gap: 46px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat-item { display: flex; flex-direction: column; }
.stat-num-row { display: block; }
.stat-num, .stat-plus {
  font-family: var(--font-head);
  font-size: 40px; font-weight: 700; color: var(--gold);
  display: inline-block;
}
.stat-label { font-size: 12px; color: var(--gray); text-transform: uppercase; letter-spacing: .5px; margin-top: 4px; }

/* ============ SERVICES ============ */
.services { background: var(--black-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--black-3);
  border: 1px solid rgba(201,162,75,0.1);
  padding: 42px 34px;
  border-radius: 8px;
  transition: border-color .35s ease, transform .1s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card:hover { border-color: rgba(201,162,75,0.4); }
.service-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(201,162,75,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  perspective: 300px;
}
.service-icon svg {
  width: 26px; height: 26px; fill: var(--gold);
  animation: icon-wobble 5s ease-in-out infinite;
}
@keyframes icon-wobble {
  0%, 100% { transform: rotateY(-25deg); }
  50% { transform: rotateY(25deg); }
}
.service-card h3 { font-family: var(--font-head); font-size: 22px; margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.service-price {
  font-family: var(--font-head);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
}

.service-card-soon {
  border-style: dashed;
  border-color: rgba(201,162,75,0.3);
  background: transparent;
}
.service-card-soon .service-price {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============ GALLERY ============ */
.gallery-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.gallery-item.g-tall { grid-row: span 2; }
.gallery-thumb,
.gallery-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .6s ease, opacity .3s ease;
  filter: grayscale(30%) brightness(0.85);
  display: block;
  background: var(--black-3);
}
.gallery-video { opacity: 0; }
.gallery-item.is-playing .gallery-video { opacity: 1; }
.gallery-item.is-playing .gallery-thumb { opacity: 0; }
.gallery-item:hover .gallery-thumb,
.gallery-item:hover .gallery-video {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35), transparent 50%);
  pointer-events: none;
}
.gallery-note {
  text-align: center;
  color: var(--gray);
  font-size: 13px;
  margin-top: 24px;
}

/* ============ TEAM ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
  max-width: 840px;
  margin: 0 auto;
}
.team-card { text-align: center; }
.team-card:nth-child(1) { grid-column: 2; grid-row: 1; }
.team-card:nth-child(2) { grid-column: 1; grid-row: 2; }
.team-card:nth-child(3) { grid-column: 3; grid-row: 2; }
.team-img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
}
.team-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(50%); transition: filter .4s ease, transform .5s ease; }
.team-card:hover .team-img img { filter: grayscale(0%); transform: scale(1.05); }
.team-card h3 { font-family: var(--font-head); font-size: 19px; margin-bottom: 4px; }
.team-card span { color: var(--gray); font-size: 13px; }

.team-lead .team-img {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,162,75,0.15), 0 20px 40px rgba(201,162,75,0.2);
}
.team-lead h3 { color: var(--gold); }
.chef-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--black) !important;
  font-weight: 700;
  font-size: 11px !important;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 2px;
}
.chef-badge svg { fill: var(--black); flex-shrink: 0; }
.team-socials { display: flex; justify-content: center; gap: 14px; margin-top: 12px; }
.team-socials a {
  font-size: 11px; letter-spacing: 1px;
  color: var(--gold);
  border-bottom: 1px solid transparent;
}
.team-socials a:hover { border-color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testimonials { background: var(--black-2); }
.testi-slider { position: relative; max-width: 760px; margin: 0 auto; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s ease; }
.testi-card {
  min-width: 100%;
  text-align: center;
  padding: 0 20px;
}
.testi-card p {
  font-family: var(--font-head);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 26px;
}
.testi-author { display: flex; flex-direction: column; gap: 6px; }
.testi-author span { color: var(--gold); letter-spacing: 2px; }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 34px; }
.testi-dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(243,237,225,0.25);
  cursor: pointer;
  transition: background .3s ease;
}
.testi-dots span.active { background: var(--gold); }

/* ============ BOOKING ============ */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.info-list { margin-top: 40px; display: flex; flex-direction: column; gap: 18px; }
.info-list li { display: flex; flex-direction: column; gap: 4px; }
.info-list strong { color: var(--gold); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.info-list span { color: var(--cream); font-size: 15px; }

.hours { margin-top: 40px; border-top: 1px solid rgba(243,237,225,0.1); padding-top: 24px; }
.hours div { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14px; color: var(--gray); }
.hours div span:last-child { color: var(--cream); }

.map-label {
  margin-top: 40px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.map-embed {
  margin-top: 32px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,162,75,0.25);
  background: var(--black-3);
}
.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
  filter: grayscale(60%) contrast(1.1) brightness(0.9);
  transition: filter 0.4s ease;
}
.map-embed iframe:hover { filter: grayscale(0%) contrast(1) brightness(1); }

.map-placeholder {
  height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: 30px;
}
.map-placeholder svg { fill: var(--gold); opacity: 0.8; }
.map-placeholder p {
  color: var(--gray);
  font-size: 13px;
  line-height: 1.6;
  max-width: 320px;
}
.map-route-btn { margin-top: 18px; }

.contact-card {
  background: var(--black-3);
  border: 1px solid rgba(201,162,75,0.15);
  border-radius: 8px;
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}
.contact-card h3 { font-family: var(--font-head); font-size: 24px; }
.contact-card > p { color: var(--gray); font-size: 15px; line-height: 1.7; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-hint { color: var(--gray); font-size: 13px; text-align: center; margin-top: 4px; }

/* ============ FOOTER ============ */
.footer { background: var(--black-3); padding: 90px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243,237,225,0.08);
}
.footer-grid p { color: var(--gray); margin-top: 18px; font-size: 14px; line-height: 1.7; max-width: 320px; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links h4 { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-links a { color: var(--gray); font-size: 14px; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  text-align: center;
  padding: 26px 0;
  font-size: 12px;
  color: var(--gray);
  letter-spacing: .5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 20px;
}
.footer-legal { display: inline-flex; gap: 20px; }
.footer-legal a { color: var(--gray); }
.footer-legal a:hover { color: var(--gold); }

/* ============ REVEAL ANIMATIONS (base state, GSAP controls the rest) ============ */
.reveal-fade, .reveal-up, .reveal-left, .reveal-right, .hero-anim {
  opacity: 0;
}
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); max-width: 660px; gap: 20px 16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 34vw; gap: 14px; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
}

@media (max-width: 900px) {
  .hero-title, .hero-title-intro { max-width: 440px; }
  .hero-title-brand { font-size: clamp(28px, 6vw, 84px); }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; margin-left: auto; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 70%;
    background: var(--black-2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    z-index: 999;
    box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  }
  section { padding: 90px 0; }
}

@media (max-width: 560px) {
  .nav-inner { padding: 0 20px; gap: 12px; }
  .logo { font-size: clamp(13px, 4.2vw, 20px); letter-spacing: 0.5px; gap: 6px; }
  .logo-img { width: 24px; height: 24px; }
  .nav-social { width: 34px; height: 34px; }
  .hero-title, .hero-title-intro { max-width: 100%; }
  .hero-title { margin-left: 0; }
  .hero-title-brand { font-size: clamp(30px, 9vw, 84px); }
  .hero-title-intro { font-size: clamp(15px, 4.2vw, 24px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .nav-social { width: 40px; height: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 26px; }
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .team-card:nth-child(1), .team-card:nth-child(2), .team-card:nth-child(3) { grid-column: auto; grid-row: auto; }
  .about-stats { gap: 28px; }
  .stat-num, .stat-plus { font-size: 32px; }
  .map-route-btn, #mapLoadBtn { min-height: 44px; }
  section { padding: 70px 0; }
  .section-head { margin-bottom: 46px; }
  .footer { padding-top: 60px; }
}
