/* =====================================================================
   Halo Lightscapes, cinematic dark theme
   Palette pulled straight from the gold-on-navy logo.
   ===================================================================== */

:root {
  /* Core palette */
  --navy-950: #050b16;
  --navy-900: #081120;
  --navy-850: #0a1628;
  --navy-800: #0e1e39;
  --navy-700: #14294d;
  --navy-600: #1b3560;

  --gold: #e0b451;
  --gold-bright: #f7d98a;
  --gold-soft: #d4a24e;
  --gold-deep: #9f7330;

  --text: #eef2f9;
  --muted: #a6b6d1;
  --muted-dim: #7789a6;

  --line: rgba(224, 180, 81, 0.16);
  --line-soft: rgba(255, 255, 255, 0.08);
  --surface: rgba(255, 255, 255, 0.035);
  --surface-2: rgba(255, 255, 255, 0.06);

  --glow-gold: 0 0 60px rgba(224, 180, 81, 0.28);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.4);

  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1200px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Trebuchet MS", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--navy-950);
  background-image:
    radial-gradient(1200px 600px at 78% -8%, rgba(224, 180, 81, 0.12), transparent 60%),
    radial-gradient(900px 500px at 5% 8%, rgba(27, 53, 96, 0.55), transparent 55%),
    linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 55%, #04080f 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: var(--navy-950); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; line-height: 1.02; }
h1, h2 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; }

h1 { font-size: clamp(2.9rem, 6vw, 5.4rem); line-height: 0.98; }
h2 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); }
h3 { font-size: 1.3rem; font-weight: 700; }

p { color: var(--muted); margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.gold-text {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead { font-size: 1.1rem; color: var(--muted); max-width: 60ch; }

/* ---------- Layout ---------- */
.shell {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
}

.section { padding: clamp(56px, 8vw, 110px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }

.section-head { max-width: 760px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.05rem; }

/* ---------- Announcement bar ---------- */
.promo-bar {
  position: relative;
  z-index: 40;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold) 45%, var(--gold-bright) 55%, var(--gold-deep));
  background-size: 200% 100%;
  animation: shimmer 8s linear infinite;
  color: var(--navy-950);
}
@keyframes shimmer { to { background-position: -200% 0; } }

.promo-bar-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  flex-wrap: wrap;
  padding: 9px 0;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
}
.promo-bar strong { font-weight: 800; }
.promo-bar .promo-tag {
  background: var(--navy-950);
  color: var(--gold-bright);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.promo-bar a.promo-link {
  color: var(--navy-950);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
  white-space: nowrap;
}
#promo-countdown { font-variant-numeric: tabular-nums; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 17, 32, 0.9), rgba(8, 17, 32, 0.62));
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 250ms ease, background 250ms ease;
}
.site-header.scrolled { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45); }

.header-inner {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-logo {
  width: auto;
  height: 54px;
  max-width: 210px;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--navy-900);
  box-shadow: 0 0 24px rgba(224, 180, 81, 0.14);
}
/* The logo image already contains the full wordmark, so the text label is redundant. */
.brand-copy { display: none; }
.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.site-nav { display: inline-flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.94rem;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--text); background: var(--surface-2); }
.site-nav a.is-active { color: var(--gold-bright); }

.header-cta { display: inline-flex; align-items: center; gap: 14px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; fill: var(--gold); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  margin: 4px auto; background: var(--gold-bright);
  transition: transform 200ms ease, opacity 200ms ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover, .btn:focus-visible { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold) 55%, var(--gold-deep));
  color: var(--navy-950);
  box-shadow: 0 14px 34px rgba(224, 180, 81, 0.32);
}
.btn-primary:hover { box-shadow: 0 18px 44px rgba(224, 180, 81, 0.48); }

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--gold); }

.btn-dark {
  background: var(--navy-950);
  color: var(--gold-bright);
  border-color: rgba(224, 180, 81, 0.4);
}
.btn-block { width: 100%; }
.btn-lg { min-height: 60px; padding: 0 34px; font-size: 1.04rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 22, 0.94) 0%, rgba(5, 11, 22, 0.78) 42%, rgba(5, 11, 22, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 11, 22, 0.9), transparent 55%);
}

.hero-inner { position: relative; z-index: 1; padding: 120px 0 90px; }
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  margin-bottom: 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(224, 180, 81, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-bright);
}
.hero-badge .pill {
  background: var(--gold);
  color: var(--navy-950);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 { margin-bottom: 22px; }
.hero .lead { font-size: 1.18rem; color: #d7e0ef; max-width: 54ch; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-trust svg { width: 18px; height: 18px; fill: var(--gold); flex: none; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: 22px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--muted-dim);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: grid;
  justify-items: center;
  gap: 8px;
}
.hero-scroll .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollpulse 2.2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ---------- Marquee / stat strip ---------- */
.stat-strip {
  border-block: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.02);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
}
.stat .label {
  margin-top: 8px;
  font-size: 0.86rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Offer callout (home) ---------- */
.offer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 180, 81, 0.4);
  background:
    radial-gradient(700px 300px at 100% 0%, rgba(224, 180, 81, 0.18), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-700) 60%, var(--navy-850));
  box-shadow: var(--shadow);
}
.offer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
}
.offer h2 { margin-bottom: 18px; }
.offer .offer-lead { color: #dbe3f1; font-size: 1.08rem; }

.offer-perks { display: grid; gap: 14px; margin: 26px 0 30px; }
.offer-perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.offer-perk .ic {
  flex: none;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(224, 180, 81, 0.14);
  border: 1px solid var(--line);
}
.offer-perk .ic svg { width: 22px; height: 22px; fill: var(--gold-bright); }
.offer-perk strong { display: block; font-size: 1.05rem; color: var(--text); }
.offer-perk span { font-size: 0.94rem; color: var(--muted); }

/* Prize card */
.prize-card {
  position: relative;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.72), rgba(5, 11, 22, 0.5));
  padding: 30px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.prize-tv {
  margin: 4px auto 20px;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  border: 3px solid var(--navy-600);
  background:
    radial-gradient(circle at 50% 40%, rgba(224, 180, 81, 0.5), transparent 62%),
    linear-gradient(135deg, #0b1c33, #16345e);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.6), var(--glow-gold);
}
.prize-tv::after {
  content: "";
  position: absolute;
  bottom: -14px; left: 50%;
  transform: translateX(-50%);
  width: 70px; height: 12px;
  border-radius: 0 0 8px 8px;
  background: var(--navy-600);
}
.prize-tv b {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-bright);
  line-height: 1;
}
.prize-tv b span { display: block; font-size: 0.8rem; letter-spacing: 0.28em; color: var(--text); font-family: var(--font-body); margin-top: 6px; }
.prize-card h3 { font-size: 1.4rem; margin-bottom: 6px; }
.prize-card p { font-size: 0.92rem; }
.prize-card .fine { font-size: 0.76rem; color: var(--muted-dim); margin-top: 14px; }

/* Countdown chips */
.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 18px 0 4px;
}
.countdown .unit {
  min-width: 62px;
  padding: 10px 6px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line);
}
.countdown .unit b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-bright);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown .unit span {
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Showcase (interactive color switcher) ---------- */
.showcase-stage {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 9;
  background: #05070c;
}
.showcase-stage img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 700ms ease;
}
.showcase-stage img.active { opacity: 1; }
.showcase-stage::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 12, 0.6), transparent 45%);
  pointer-events: none;
}
.showcase-caption {
  position: absolute;
  left: 24px; bottom: 22px;
  z-index: 2;
  max-width: 70%;
}
.showcase-caption h3 { font-family: var(--font-display); font-size: 1.8rem; }
.showcase-caption p { color: #dce4f2; font-size: 0.94rem; margin: 4px 0 0; }

.showcase-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 160ms ease;
}
.swatch:hover { transform: translateY(-2px); color: var(--text); }
.swatch .dot { width: 16px; height: 16px; border-radius: 50%; flex: none; box-shadow: 0 0 12px currentColor; }
.swatch.active { color: var(--navy-950); background: var(--gold); border-color: var(--gold-bright); }
.swatch.active .dot { box-shadow: 0 0 0 2px rgba(0,0,0,0.15); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--line); background: var(--surface-2); }

/* Service cards */
.service-card { overflow: hidden; }
.service-media { aspect-ratio: 16 / 11; overflow: hidden; background: #05070c; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 22px 24px 26px; }
.service-body h3 { margin-bottom: 8px; }
.service-body p { font-size: 0.94rem; margin: 0; }
.service-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Feature (why) cards */
.feature-card { padding: 30px 28px; }
.feature-ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 20px;
  background: rgba(224, 180, 81, 0.12);
  border: 1px solid var(--line);
}
.feature-ic svg { width: 26px; height: 26px; fill: var(--gold-bright); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 0.95rem; margin: 0; }

/* Process steps */
.process-grid { counter-reset: step; }
.process-card { padding: 30px 28px; position: relative; }
.process-card .step {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.process-card h3 { margin-bottom: 10px; }
.process-card p { font-size: 0.95rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  background: #05070c;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 16px 12px;
  background: linear-gradient(0deg, rgba(5,7,12,0.85), transparent);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-bright);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease;
}
.gallery-item:hover .cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 30px;
  background: rgba(3, 6, 12, 0.92);
  backdrop-filter: blur(6px);
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 14px; box-shadow: var(--shadow); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ---------- Testimonials ---------- */
.testi-grid { grid-template-columns: repeat(3, 1fr); }
.testi-card { padding: 30px 28px; }
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.testi-card p { color: #d7deec; font-size: 1rem; }
.testi-card .who {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-card .avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-950);
  font-weight: 800;
}
.testi-card .who strong { display: block; color: var(--text); font-size: 0.96rem; }
.testi-card .who span { font-size: 0.82rem; color: var(--muted-dim); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: var(--surface);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.04rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.faq-q .plus { flex: none; color: var(--gold); font-size: 1.4rem; transition: transform 240ms ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 320ms ease; }
.faq-a p { padding: 0 24px 22px; margin: 0; font-size: 0.96rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 180, 81, 0.35);
  padding: clamp(40px, 6vw, 70px);
  text-align: center;
  background:
    radial-gradient(600px 300px at 50% -20%, rgba(224, 180, 81, 0.22), transparent 60%),
    linear-gradient(135deg, var(--navy-800), var(--navy-700));
  box-shadow: var(--shadow);
}
.cta-band h2 { max-width: 18ch; margin: 0 auto 16px; }
.cta-band p { max-width: 56ch; margin: 0 auto 30px; color: #dbe3f1; font-size: 1.08rem; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(120px, 16vw, 190px) 0 clamp(50px, 7vw, 90px);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,11,22,0.82), rgba(5,11,22,0.72)),
    linear-gradient(90deg, rgba(5,11,22,0.9), transparent);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { margin-bottom: 18px; }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 5vw, 60px); align-items: center; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: #05070c;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.check-list { display: grid; gap: 14px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.check-list svg { flex: none; width: 22px; height: 22px; fill: var(--gold); margin-top: 1px; }
.check-list span { color: var(--muted); }
.check-list strong { color: var(--text); }

/* ---------- Estimate / forms ---------- */
.estimate-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 52px); align-items: start; }

.entry-steps { display: grid; gap: 18px; margin: 28px 0 0; }
.entry-step { display: flex; gap: 16px; align-items: flex-start; }
.entry-step .n {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--navy-950);
  font-weight: 800;
}
.entry-step strong { display: block; color: var(--text); }
.entry-step span { font-size: 0.94rem; color: var(--muted); }

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  padding: clamp(26px, 3vw, 38px);
}
.form-card h3 { font-family: var(--font-display); font-size: 1.7rem; margin-bottom: 6px; }
.form-card .sub { font-size: 0.94rem; color: var(--muted); margin-bottom: 22px; }

form.lead-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
form.lead-form label { display: grid; gap: 8px; font-size: 0.86rem; font-weight: 700; color: var(--text); }
form.lead-form .full { grid-column: 1 / -1; }
form.lead-form input,
form.lead-form select,
form.lead-form textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(5, 11, 22, 0.6);
  color: var(--text);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
form.lead-form input::placeholder,
form.lead-form textarea::placeholder { color: var(--muted-dim); }
form.lead-form input:focus,
form.lead-form select:focus,
form.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 180, 81, 0.16);
}
form.lead-form textarea { resize: vertical; min-height: 96px; }
.form-consent { display: flex; gap: 10px; align-items: flex-start; grid-column: 1/-1; font-weight: 500; font-size: 0.82rem; color: var(--muted); }
.form-consent input { width: auto; margin-top: 3px; }
.form-note { grid-column: 1/-1; margin: 0; font-size: 0.9rem; min-height: 1.2em; }
.form-note.ok { color: var(--gold-bright); }

/* ---------- Rules ---------- */
.rules { max-width: 860px; margin: 0 auto; font-size: 0.92rem; }
.rules h3 { margin: 26px 0 10px; color: var(--gold-bright); }
.rules p, .rules li { color: var(--muted); }
.rules ol { padding-left: 20px; }
.rules li { margin-bottom: 8px; }
.note-box {
  border: 1px dashed rgba(224, 180, 81, 0.5);
  border-radius: var(--radius-sm);
  background: rgba(224, 180, 81, 0.06);
  padding: 18px 20px;
  margin-bottom: 26px;
  font-size: 0.9rem;
  color: var(--muted);
}
.note-box strong { color: var(--gold-bright); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line-soft);
  margin-top: 40px;
  background: rgba(5, 8, 15, 0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  padding: 60px 0 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 32ch; }
.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.94rem; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 0.84rem;
  color: var(--muted-dim);
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
}
.footer-social svg { width: 18px; height: 18px; fill: var(--gold); }
.footer-social a:hover { background: var(--surface-2); }

/* ---------- Reveal on scroll ----------
   Hidden state only applies once JS marks the document ready, so content
   is never stuck invisible if JS is disabled or fails to run. */
html.reveal-ready .reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms ease, transform 700ms ease; }
html.reveal-ready .reveal.in { opacity: 1; transform: none; }

/* ---------- Floating mobile CTA ---------- */
.floating-cta {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 25;
  display: none;
}
.floating-cta .btn { width: 100%; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .testi-grid, .process-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid, .estimate-grid, .split { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.wide { grid-column: span 2; }
  .split.reverse .media-frame { order: -1; }
}

@media (max-width: 720px) {
  .site-nav, .header-cta .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 22px;
    background: rgba(8, 17, 32, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .site-nav.open a { padding: 13px 14px; }
  .site-nav.open .btn { margin-top: 8px; }

  .grid-3, .grid-2, .testi-grid, .process-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  form.lead-form { grid-template-columns: 1fr; }
  .hero .lead { font-size: 1.06rem; }
  .showcase-caption { max-width: 88%; }
  .floating-cta { display: block; }
  .floating-cta ~ .site-footer { padding-bottom: 80px; }
  .hero-scroll { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
}
