/* ---------- Tokens ---------- */
:root {
  --navy-950: #060f22;
  --navy-900: #0a1d3f;
  --navy-800: #0f2a57;
  --navy-700: #163c72;
  --gold-600: #c98300;
  --gold-500: #e89e03;
  --gold-400: #f5b93c;
  --ink: #101623;
  --ink-soft: #4a5468;
  --paper: #f6f7f9;
  --paper-alt: #eef0f4;
  --white: #ffffff;
  --line: #e3e6ec;
  --shadow: 0 20px 50px -20px rgba(10, 29, 63, 0.35);
  --radius: 16px;
  --container: 1180px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: "Poppins", system-ui, sans-serif;
  color: var(--navy-900);
  margin: 0 0 .6em;
  line-height: 1.2;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 0.8em;
}
.eyebrow.center { display: block; text-align: center; }

.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.section-title.center { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-sub { max-width: 620px; }
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

section { padding: clamp(56px, 8vw, 110px) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.4em;
  border-radius: 999px;
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  cursor: pointer;
}
.btn .icon { width: 1.15em; height: 1.15em; fill: currentColor; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--navy-800); color: var(--white); }
.btn-primary:hover { background: var(--navy-700); box-shadow: var(--shadow); }

.btn-gold { background: var(--gold-500); color: var(--navy-950); }
.btn-gold:hover { background: var(--gold-400); box-shadow: 0 16px 40px -16px rgba(232,158,3,.6); }

.btn-outline { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.btn-outline-light { border-color: rgba(6,15,34,.25); color: var(--navy-950); }
.btn-outline-light:hover { border-color: var(--navy-950); background: rgba(6,15,34,.06); }

.btn-ghost { color: var(--navy-900); }

.btn-lg { padding: 0.95em 1.8em; font-size: 1rem; }

.check-list { list-style: none; margin: 0 0 1.6em; padding: 0; display: grid; gap: .6em; }
.check-list li { padding-left: 1.8em; position: relative; color: var(--ink); font-weight: 500; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.35em;
  width: 1.1em; height: 1.1em;
  border-radius: 50%;
  background: var(--gold-500);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% no-repeat;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 8px 0;
  box-shadow: 0 10px 30px -18px rgba(10, 29, 63, 0.25);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 48px; width: auto; flex-shrink: 0; transition: opacity .2s ease; }
.brand-logo-scrolled { display: none; }
.site-header.scrolled .brand-logo-top { display: none; }
.site-header.scrolled .brand-logo-scrolled { display: block; height: 42px; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.85); font-weight: 500; font-size: .93rem; transition: color .2s; }
.main-nav a:hover { color: var(--gold-400); }
.nav-cta-mobile, .mobile-services-link { display: none; }
.site-header.scrolled .main-nav a { color: var(--navy-900); }
.site-header.scrolled .main-nav a:hover { color: var(--gold-600); }

/* Services mega menu */
.nav-item.has-mega { position: relative; }
.nav-item.has-mega > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item.has-mega .chev { width: 13px; height: 13px; transition: transform .2s ease; }
.nav-item.has-mega:hover .chev { transform: rotate(180deg); }

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(760px, 82vw);
  padding-top: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s;
  z-index: 50;
}
.mega-menu-inner {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr;
  gap: 10px 24px;
  transform: translateY(8px);
  transition: transform .2s ease;
}
.nav-item.has-mega:hover .mega-menu,
.nav-item.has-mega:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.nav-item.has-mega:hover .mega-menu-inner,
.nav-item.has-mega:focus-within .mega-menu-inner {
  transform: translateY(0);
}
.mega-col { display: flex; flex-direction: column; gap: 4px; }
.mega-col h6 {
  font-family: "Poppins", sans-serif;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 6px;
}
.mega-col a { color: var(--ink); font-size: .88rem; font-weight: 500; padding: 6px 0; }
.mega-col a:hover { color: var(--navy-800); text-decoration: underline; }
.mega-col-cta { border-left: 1px solid var(--line); padding-left: 22px; }
.mega-view-all { color: var(--navy-800) !important; font-weight: 700 !important; }
.mega-btn { margin-top: 10px; justify-content: center; }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.call-link { color: var(--white); display: inline-flex; align-items: center; gap: 7px; }
.call-icon { width: 15px; height: 15px; flex-shrink: 0; }
.flag-icon { font-size: 1rem; line-height: 1; flex-shrink: 0; }
.site-header.scrolled .call-link { color: var(--navy-900); }
.site-header.scrolled .nav-toggle span { background: var(--navy-900); }

.nav-toggle {
  display: none;
  position: relative;
  z-index: 101;
  width: 40px; height: 40px;
  border: none; background: transparent;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(120% 120% at 20% 0%, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  overflow: hidden;
  padding-top: 100px;
}
.hero-carousel {
  position: absolute;
  top: -12%; left: -5%; right: -5%; bottom: -12%;
  will-change: transform;
  overflow: hidden;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 25% 25%;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.6s ease;
  animation: hero-kenburns 24s ease-in-out infinite alternate;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide:nth-child(1) { animation-duration: 24s; }
.hero-slide:nth-child(2) { animation-duration: 27s; }
.hero-slide:nth-child(3) { animation-duration: 22s; }
.hero-slide:nth-child(4) { animation-duration: 29s; }
@keyframes hero-kenburns {
  0% { transform: scale(1); }
  100% { transform: scale(1.14); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { animation: none; }
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,12,26,.55) 0%, rgba(7,16,36,.72) 55%, rgba(6,15,34,.94) 100%),
    linear-gradient(100deg, rgba(6,15,34,.75) 0%, rgba(10,29,63,.4) 55%, rgba(6,15,34,.55) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--gold-400); }
.hero-sub { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 620px; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6em 0 2.4em; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 28px 40px;
}
.hero-stats strong { display: block; font-family: "Poppins", sans-serif; font-size: 1.7rem; color: var(--gold-400); }
.hero-stats span { color: rgba(255,255,255,.75); font-size: .82rem; }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.4); border-radius: 20px;
  z-index: 2;
}
.scroll-cue span {
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; border-radius: 2px; background: var(--gold-400);
  animation: scrollcue 1.8s infinite;
}
@keyframes scrollcue {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Services ---------- */
.service-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.service-card-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.service-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(15,42,87,.12) 0%, rgba(10,29,63,.78) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card:hover .service-card-overlay { opacity: 1; }

.service-icon {
  position: absolute;
  left: 18px; bottom: 18px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(6,15,34,.6);
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: translateY(-4px); }
.service-icon svg { width: 26px; height: 26px; }

.service-card-body { padding: 26px 28px 28px; }
.service-card h3 { font-size: 1.15rem; margin-bottom: .4em; }
.service-card p { margin: 0 0 .8em; font-size: .93rem; }
.card-link { display: inline-block; color: var(--navy-800); font-weight: 700; font-size: .85rem; }
.card-link:hover { color: var(--gold-600); }

.services-more { text-align: center; margin-top: 44px; }

/* ---------- Before/After Fly-through ---------- */
.flythrough { background: var(--navy-950); padding-bottom: 90px; }
.flythrough-intro { padding-top: clamp(56px, 8vw, 110px); padding-bottom: 44px; }
.flythrough .eyebrow { color: var(--gold-400); }
.flythrough .section-title { color: var(--white); }
.flythrough .section-sub { color: rgba(255,255,255,.7); }

.flythrough-track { position: relative; height: 250vh; }
.flythrough-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.ft-media { position: absolute; inset: 0; }
.ft-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}
.ft-before { opacity: 1; transform: scale(1); }
.ft-after { opacity: 0; transform: scale(1.15); }
.ft-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,15,34,.25) 0%, rgba(6,15,34,.15) 40%, rgba(6,15,34,.55) 100%);
  pointer-events: none;
}
.ft-tag {
  position: absolute;
  top: 112px; left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  padding: 9px 24px;
  border-radius: 999px;
  background: rgba(6,15,34,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.ft-progress {
  position: absolute;
  left: 50%; bottom: 40px;
  transform: translateX(-50%);
  width: 220px; height: 4px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
  overflow: hidden;
}
.ft-progress-bar { height: 100%; width: 0%; background: var(--gold-500); }

.flythrough-copy {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.check-list-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  max-width: 760px;
  margin-bottom: 32px !important;
}
.check-list-row li { padding-left: 1.6em; color: var(--white); font-weight: 500; font-size: .92rem; }

/* ---------- Showcase ---------- */
.showcase-inner, .about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.showcase-media img, .about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-inner .about-media { order: 2; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 28px;
}
.feature h4 { font-size: 1rem; margin-bottom: .3em; color: var(--navy-900); }
.feature p { font-size: .9rem; margin: 0; }

.about { background: var(--paper-alt); }
.painting-feature { background: var(--paper-alt); }

/* ---------- Locations marquee ---------- */
.locations { background: var(--navy-950); padding: clamp(56px, 8vw, 90px) 0; }
.locations-intro { margin-bottom: 40px; }
.locations .eyebrow { color: var(--gold-400); }
.locations .section-title { color: var(--white); margin-bottom: 0; }

.sync-marquee.awc-belts { display: flex; flex-direction: column; gap: 22px; }
.belt-row { display: flex; align-items: center; gap: 26px; }
.belt-label {
  flex-shrink: 0;
  width: 108px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.belt-label.gold { color: var(--gold-400); }

.belt {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.belt-track {
  display: flex;
  width: max-content;
  animation: belt-left 46s linear infinite;
}
.belt-track.reverse { animation-name: belt-right; animation-duration: 52s; }
.belt-row:hover .belt-track { animation-play-state: paused; }

.belt-group { display: flex; align-items: center; flex-shrink: 0; }
.belt-group .place {
  padding: 0 20px;
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
}
.belt-group .sep { color: var(--gold-500); font-size: .9rem; }

@keyframes belt-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes belt-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ---------- Gallery ---------- */
.gallery-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 18px;
}
.g-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.g-item:hover img { transform: scale(1.08); }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(6,15,34,.85), transparent);
  color: var(--white); font-family: "Poppins", sans-serif; font-size: .85rem; font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy-950); }
.testimonials .section-title, .testimonials .eyebrow { color: var(--white); }
.testimonials .eyebrow { color: var(--gold-400); }
.testimonials .section-sub { color: rgba(255,255,255,.7); }

.testi-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  margin: 0;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 28px;
}
.testi-card p { color: rgba(255,255,255,.9); font-size: .95rem; }
.testi-card footer { color: var(--gold-400); font-size: .82rem; font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--gold-500), var(--gold-400)); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--navy-950); margin-bottom: .3em; }
.cta-band p { color: rgba(6,15,34,.75); margin: 0; }
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn-gold { background: var(--navy-950); color: var(--white); }
.cta-band .btn-gold:hover { background: var(--navy-800); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.7); padding-top: 60px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; padding-right: 24px; }
.footer-logo { height: 64px; width: auto; }
.footer-desc { margin: 0; font-size: .88rem; line-height: 1.65; color: rgba(255,255,255,.6); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-social svg { width: 17px; height: 17px; fill: var(--white); }
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); transform: translateY(-3px); }
.footer-social a:hover svg { fill: var(--navy-950); }
.footer-col h5 { color: var(--white); font-family: "Poppins", sans-serif; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 1em; }
.footer-col { display: flex; flex-direction: column; gap: .6em; font-size: .9rem; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { padding: 22px 24px; font-size: .8rem; text-align: center; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,.65);
  z-index: 200;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); position: relative; z-index: 2; }
.wa-pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25D366;
  animation: wapulse 2.2s infinite;
}
@keyframes wapulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-inner, .about-inner { grid-template-columns: 1fr; }
  .about-inner .about-media { order: -1; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .call-link { display: none; }
  .nav-actions .btn-primary { display: none; }
  .brand-logo { height: 38px; }
  .site-header.scrolled .brand-logo-scrolled { height: 34px; }

  .main-nav.open {
    display: flex;
    position: fixed; inset: 0; top: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: center; justify-content: center;
    gap: 28px;
    z-index: 90;
  }
  .main-nav.open a { font-size: 1.3rem; color: var(--white); }
  .main-nav.open .nav-item.has-mega { display: none; }
  .main-nav.open .mobile-services-link { display: block; }
  .main-nav.open .nav-cta-mobile { display: inline-flex; margin-top: 10px; }

  /* The open mobile menu is always a full-screen navy overlay, regardless of
     whether the header behind it has scrolled to its white state — without
     this, the higher-specificity .scrolled text/icon rules win and render
     navy text and a navy close icon on the navy overlay (unreadable). */
  .site-header.scrolled .main-nav.open a { color: var(--white); }
  .site-header.scrolled .main-nav.open a:hover { color: var(--gold-400); }
  .site-header.scrolled .nav-toggle.open span { background: var(--white); }

  .hero { padding-top: 90px; text-align: left; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-inner { text-align: center; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { flex-direction: column; align-items: center; }
  .feature-row { grid-template-columns: 1fr; }
  .belt-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .belt-label { width: auto; }
}

@media (max-width: 420px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}
