/* ============================================================
   KINGDOM DETAILING — Design System
   Sovereign Black × Cormorant Garamond × Inter × Gold
   ============================================================ */
 
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');
 
/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --black:      #0A0A0A;
  --obsidian:   #111111;
  --graphite:   #1A1A1A;
  --divider:    #2A2A2A;
  --white:      #FFFFFF;
  --soft:       #C8C8C8;
  --muted:      #6B6B6B;
  --gold:       #C9A84C;
  --champagne:  #E8C97A;
  --gold-dim:   rgba(201,168,76,0.12);
  --gold-glow:  rgba(201,168,76,0.06);
 
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
 
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-gold: cubic-bezier(0.4, 0, 0.2, 1);
 
  --max: 1280px;
  --nav-h: 80px;
}
 
/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
 
/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.display { font-family: var(--font-display); font-weight: 600; line-height: 1.05; }
.display-xl  { font-size: clamp(56px, 8vw, 96px); }
.display-lg  { font-size: clamp(40px, 6vw, 72px); }
.display-md  { font-size: clamp(30px, 4vw, 52px); }
.display-sm  { font-size: clamp(22px, 3vw, 36px); }
 
.label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 18px; line-height: 1.7; color: var(--soft); }
.body-md { font-size: 16px; line-height: 1.7; color: var(--soft); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--muted); }
 
/* ── GOLD RULE ────────────────────────────────────────────── */
.gold-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  transition: width 0.8s var(--ease-out);
}
.gold-rule.wide { width: 80px; }
 
/* ── SECTION EYEBROW ──────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.eyebrow span { font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
 
/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }
 
section { padding: 120px 0; }
@media (max-width: 768px) { section { padding: 72px 0; } }
 
/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-gold);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::before { opacity: 0.05; }
 
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--champagne); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(201,168,76,0.3); }
 
.btn-outline {
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
 
.btn-ghost {
  color: var(--gold);
  padding: 0;
  letter-spacing: 0.1em;
}
.btn-ghost::after {
  content: '→';
  display: inline-block;
  margin-left: 8px;
  transition: transform 0.3s var(--ease-out);
}
.btn-ghost:hover::after { transform: translateX(4px); }
.btn-ghost:hover::before { display: none; }
 
/* ── NAV ──────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--divider);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) { .nav-inner { padding: 0 24px; } }
 
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-logo-text span { color: var(--gold); }
 
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
@media (max-width: 900px) { .nav-links { display: none; } }
 
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
  transform-origin: left;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }
 
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft);
  cursor: pointer;
  transition: color 0.2s;
  background: none;
  border: none;
}
.nav-dropdown-toggle svg { width: 10px; height: 10px; transition: transform 0.3s; }
.nav-dropdown:hover .nav-dropdown-toggle { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
 
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--obsidian);
  border: 1px solid var(--divider);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s var(--ease-out);
  padding: 16px 0 8px;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--soft);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.03); }
.nav-dropdown-menu a::after { display: none; }
 
.nav-cta { margin-left: 8px; }
 
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
@media (max-width: 900px) { .nav-hamburger { display: flex; } }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
 
/* Mobile menu */
#mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: all 0.35s var(--ease-out);
}
#mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#mobile-menu a {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--soft);
  transition: color 0.2s;
  padding: 8px 0;
}
#mobile-menu a:hover { color: var(--gold); }
#mobile-menu .mobile-divider {
  width: 1px;
  height: 20px;
  background: var(--divider);
  margin: 8px 0;
}
 
/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--obsidian);
  border-top: 1px solid var(--divider);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--divider);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .nav-logo-text { font-size: 22px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 260px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all 0.3s;
  font-size: 14px;
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 14px;
}
.footer-contact-item .label-sm { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.25); letter-spacing: 0.05em; }
 
/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.45) 100%
  );
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: var(--nav-h);
}
@media (max-width: 768px) { .hero-content { padding: 0 24px; padding-top: var(--nav-h); } }
 
.hero-kicker {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 0.3s forwards;
}
.hero-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s var(--ease-out) 0.6s forwards;
  margin: 16px 0;
  max-width: 720px;
}
.hero-rule {
  width: 0;
  height: 1px;
  background: var(--gold);
  display: block;
  margin: 24px 0;
  animation: expandRule 1s var(--ease-out) 1.1s forwards;
}
.hero-sub {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 1.3s forwards;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2.2s forwards;
}
.hero-scroll span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite 2.5s;
}
 
/* ── PAGE HERO (for inner pages) ─────────────────────────── */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 100px) 0 100px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.3);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .page-hero-content { padding: 0 24px; } }
 
/* ── CARDS ────────────────────────────────────────────────── */
.card {
  background: var(--graphite);
  border: 1px solid var(--divider);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.card:hover::before { transform: scaleX(1); }
 
.card-icon {
  width: 48px; height: 48px;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 20px;
  transition: border-color 0.3s, background 0.3s;
}
.card:hover .card-icon { border-color: var(--gold); background: var(--gold-dim); }
 
/* ── PRICING CARD ─────────────────────────────────────────── */
.price-card {
  background: var(--graphite);
  border: 1px solid var(--divider);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.price-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--graphite) 0%, rgba(201,168,76,0.05) 100%);
}
.price-card.featured::after {
  content: 'MOST POPULAR';
  position: absolute;
  top: 20px; right: -30px;
  background: var(--gold);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 5px 40px;
  transform: rotate(45deg);
}
.price-tag {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin: 16px 0 4px;
}
.price-tag .from { font-size: 16px; color: var(--muted); font-family: var(--font-body); margin-right: 4px; }
.price-tag .gst { font-size: 13px; color: var(--muted); font-family: var(--font-body); }
.price-includes { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
 
/* Size selector */
.size-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--divider);
  margin-bottom: 40px;
  width: fit-content;
}
.size-tab {
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
  border-right: 1px solid var(--divider);
}
.size-tab:last-child { border-right: none; }
.size-tab.active { background: var(--gold); color: var(--black); }
 
[data-prices] .price-display { transition: all 0.3s var(--ease-out); }
 
/* ── SPLIT SECTION ────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 48px; } }
 
.split-img {
  position: relative;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.split-img:hover img { transform: scale(1.03); }
.split-img::before {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--gold);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.split-img:hover::before { opacity: 0.4; }
 
/* ── BEFORE / AFTER SLIDER ────────────────────────────────── */
.ba-wrap {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
}
.ba-before { z-index: 1; }
.ba-before img, .ba-after img { width: 100%; height: 100%; object-fit: cover; }
.ba-clip { position: absolute; inset: 0; z-index: 2; overflow: hidden; width: 50%; }
.ba-clip img { width: 100%; height: 100%; object-fit: cover; min-width: 100vw; max-width: none; }
.ba-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  z-index: 3;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 4;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  font-size: 18px;
}
.ba-label {
  position: absolute;
  bottom: 20px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 5;
}
.ba-label.before { left: 20px; background: rgba(0,0,0,0.6); color: var(--soft); }
.ba-label.after  { right: 20px; background: rgba(201,168,76,0.9); color: var(--black); }
 
/* ── TESTIMONIAL CAROUSEL ─────────────────────────────────── */
.testimonial-wrap { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease-out); }
.testimonial-item {
  min-width: 100%;
  padding: 60px;
  text-align: center;
}
@media (max-width: 768px) { .testimonial-item { padding: 40px 24px; } }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 760px;
  margin: 0 auto 32px;
}
.testimonial-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 0.8;
  display: block;
  margin-bottom: 16px;
}
.testimonial-author { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.testimonial-vehicle { font-size: 13px; color: var(--muted); margin-top: 4px; }
 
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 32px; }
.carousel-dot {
  width: 6px; height: 6px;
  background: var(--divider);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }
 
/* ── GALLERY GRID ─────────────────────────────────────────── */
.gallery-masonry {
  columns: 3;
  column-gap: 8px;
}
@media (max-width: 900px) { .gallery-masonry { columns: 2; } }
@media (max-width: 600px) { .gallery-masonry { columns: 1; } }
.gallery-masonry .gal-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-masonry .gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
  filter: brightness(0.85);
}
.gallery-masonry .gal-item:hover img { transform: scale(1.04); filter: brightness(1); }
 
/* ── PROCESS STEPS ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--obsidian);
  padding: 40px 32px;
  position: relative;
}
.process-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 600;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 16px; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: var(--muted); line-height: 1.6; }
 
/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar {
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 40px 0;
  background: var(--obsidian);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) { .trust-bar-inner { gap: 32px; } }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--soft);
}
.trust-item-icon {
  color: var(--gold);
  font-size: 18px;
}
.trust-divider { width: 1px; height: 32px; background: var(--divider); }
@media (max-width: 600px) { .trust-divider { display: none; } }
 
/* ── CTA SECTION ──────────────────────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 120px 0;
  background: var(--obsidian);
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 480px; margin: 0 auto 36px; }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 16px; }
 
/* ── FAQ ──────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--divider);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  gap: 24px;
}
.faq-question h4 { font-size: 16px; font-weight: 500; }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--divider);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold-dim); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner { padding: 0 0 24px; font-size: 15px; color: var(--muted); line-height: 1.7; }
 
/* ── FORM ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.form-control {
  width: 100%;
  background: var(--graphite);
  border: 1px solid var(--divider);
  color: var(--white);
  padding: 14px 18px;
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus { border-color: var(--gold); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control option { background: var(--graphite); }
 
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
 
/* ── STATS ROW ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
}
@media (max-width: 700px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  background: var(--obsidian);
  padding: 40px 32px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
 
/* ── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes expandRule {
  to { width: 80px; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
 
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.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; }
 
/* ── UTILITY ──────────────────────────────────────────────── */
.gold { color: var(--gold); }
.muted { color: var(--muted); }
.soft { color: var(--soft); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.section-header { margin-bottom: 64px; }
.section-header.center { text-align: center; }
.section-header.center .eyebrow { justify-content: center; }
.section-header.center .eyebrow::before { display: none; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3 { grid-template-columns: 1fr; } }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 700px) { .grid-2 { grid-template-columns: 1fr; } }
 
/* Service tag pills */
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--divider);
  padding: 4px 12px;
}
 
/* Checklist */
.checklist { display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--soft); }
.check-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 14px; }
 
/* Horizontal rule */
hr.gold { border: none; border-top: 1px solid var(--divider); margin: 48px 0; }
 
/* ── MAP SECTION ──────────────────────────────────────────── */
.map-placeholder {
  background: var(--graphite);
  border: 1px solid var(--divider);
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.map-placeholder svg { color: var(--gold); opacity: 0.4; }
.map-placeholder p { font-size: 14px; color: var(--muted); }
 
/* ── VIDEO BG ─────────────────────────────────────────────── */
.video-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.video-bg video { width: 100%; height: 100%; object-fit: cover; }
.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.82);
}
.video-content { position: relative; z-index: 1; }
 
/* ── ABOUT TIMELINE ───────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  top: 8px; bottom: 0;
  left: 0;
  width: 1px;
  background: var(--divider);
}
.timeline-item { position: relative; padding-bottom: 48px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 6px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.timeline-year { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.timeline-item h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.timeline-item p { font-size: 15px; color: var(--muted); line-height: 1.7; }
 
/* Print-safe */
@media print { #nav, footer { display: none; } }

header,
#header,
#masthead,
#site-navigation,
.site-header,
.site-branding,
.site-title,
.search-form {
  display: none !important;
}