:root{
  --black:#050608;
  --ink:#0B0E14;
  --navy:#0E2340;
  --gold:#C9A348;
  --champagne:#E7C879;
  --silver:#D8D8DA;
  --blue:#3EB7FF;
  --purple:#7D4DFF;
  --text:#EDEDEF;
  --muted:#A7ADB8;
  --line:rgba(201,163,72,.22);
  --radius:14px;
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --font-head:'Cinzel','Trajan Pro',serif;
  --font-body:'Inter',system-ui,sans-serif;
  --font-accent:'Montserrat',sans-serif;
  --fs-base:1rem;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;scroll-padding-top:190px;overflow-x:hidden}
/* Grid and flex children default to min-width:auto, so a nowrap heading can
   force its track wider than the container. Opt every track out of that. */
.hero-inner>*,.band-grid>*,.grid>*,.foot-grid>*,.nav-bar>*{min-width:0}
html.a11y-motion{scroll-behavior:auto}
body{
  background:var(--black);
  color:var(--text);
  font-family:var(--font-body);
  font-size:var(--fs-base);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
/* Safety net: an inline SVG with no width attribute and no sizing rule falls
   back to the SVG default of 300x150 and wrecks the layout it sits in. Give
   un-sized icons inside list items and inline text a text-scaled box. */
svg{max-width:100%}
li > svg:not([width]),
li > a > svg:not([width]),
p > svg:not([width]){width:1.05em;height:1.05em;flex-shrink:0}
a{color:var(--champagne);text-decoration:none}
a:hover{color:#fff}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:4px}
h1,h2,h3,h4{font-family:var(--font-head);font-weight:600;line-height:1.12;color:#fff;hyphens:none}
/* Sitewide line-break hygiene: headings distribute evenly across their lines,
   body copy never strands a single word on the last line, and phrases marked
   .nobr stay intact. */
h1,h2,h3,h4,h5,h6,.hero-kicker,.hero-tagline,.eyebrow,.quote-card h2,.trust-item,.card h3{text-wrap:balance}
p,li,summary,.faq-body,.hero-sub,.section-head p,.card p,.band p,.narrative p{text-wrap:pretty}
.nobr{white-space:nowrap}
.eyebrow{font-family:var(--font-accent);font-weight:700;font-size:.78rem;letter-spacing:.24em;text-transform:uppercase;color:var(--gold);display:block;margin-bottom:14px}
/* Container: 92vw on small screens, capped so a 2000px window uses ~75% (1500px) */
.wrap{width:min(1500px,92vw);margin-inline:auto}
section{padding:clamp(64px,8vw,110px) 0;position:relative}
.section-head{width:100%;margin-bottom:clamp(32px,4vw,56px)}
.section-head h2{font-size:clamp(1.7rem,3.6vw,2.7rem);margin-bottom:14px;width:100%}
.section-head p{color:var(--muted);font-size:1.05rem;max-width:820px}
/* Fluid fill headings: JS sizes these to span their container on one line */
[data-fit]{white-space:nowrap;width:100%;display:block;line-height:1.08}
.no-js [data-fit],[data-fit].fit-wrap{white-space:normal}
.grid{display:grid;gap:22px}
.card{
  background:linear-gradient(160deg,rgba(14,35,64,.45),rgba(11,14,20,.9));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
  transition:transform .3s ease,border-color .3s ease;
}
.card:hover{transform:translateY(-4px);border-color:rgba(201,163,72,.5)}
html.a11y-motion .card:hover{transform:none}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-accent);font-weight:700;font-size:.92rem;letter-spacing:.04em;
  padding:15px 30px;border-radius:999px;border:0;cursor:pointer;
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
  text-transform:uppercase;
}
.btn-gold{background:linear-gradient(120deg,var(--gold),var(--champagne));color:#171204}
.btn-gold:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(201,163,72,.35);color:#171204}
.btn-ghost{background:transparent;color:var(--silver);border:1px solid rgba(216,216,218,.35)}
.btn-ghost:hover{border-color:var(--champagne);color:#fff}
html.a11y-motion .btn:hover{transform:none}

/* ---------- Skip link ---------- */
.skip-link{position:absolute;left:-9999px;top:0;background:var(--gold);color:#171204;padding:12px 22px;z-index:2000;font-weight:600;border-radius:0 0 8px 0}
.skip-link:focus{left:0}

/* ---------- Header ---------- */
header{
  position:fixed;inset:0 0 auto 0;z-index:900;
  transition:background .35s ease,box-shadow .35s ease;
  /* Solid by default. A see-through header lets scrolled body copy read
     through the nav, which is what it did on the interior pages. */
  background:rgba(5,6,8,.97);
  backdrop-filter:blur(14px);
  box-shadow:0 4px 24px rgba(0,0,0,.4);
}
/* Only the homepage video hero earns a transparent header, and only at the
   very top of the page before anything has scrolled under it. */
body:has(.hero) header{background:linear-gradient(rgba(5,6,8,.72),rgba(5,6,8,.28));box-shadow:none}
body:has(.hero) header.scrolled,
header.scrolled{background:rgba(5,6,8,.985);backdrop-filter:blur(16px);box-shadow:0 6px 30px rgba(0,0,0,.55)}
/* Utility bar above the main nav */
.util-bar{
  border-bottom:1px solid rgba(201,163,72,.16);
  background:rgba(5,6,8,.55);
  transition:opacity .3s ease,max-height .3s ease;
}
header.scrolled .util-bar{background:transparent}
.util-inner{display:flex;align-items:center;justify-content:flex-end;gap:22px;padding:7px 0;min-height:38px}
.util-inner .util-tagline{
  margin-right:auto;font-family:var(--font-accent);font-weight:600;
  font-size:.68rem;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);
}
.util-link{
  display:flex;align-items:center;gap:7px;font-size:.78rem;color:var(--silver);
  font-family:var(--font-body);white-space:nowrap;
}
.util-link:hover{color:var(--champagne)}
.util-link svg{width:14px;height:14px;stroke:var(--gold);fill:none;stroke-width:1.7}
.util-sep{width:1px;height:16px;background:rgba(216,216,218,.18)}

.nav-bar{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:24px;padding:10px 0}
.brand{display:flex;align-items:center;justify-content:center;flex-shrink:0;position:relative;z-index:1}
.brand img{
  height:118px;width:118px;object-fit:contain;
  filter:drop-shadow(0 8px 26px rgba(0,0,0,.75));
  transition:height .3s ease,width .3s ease;
}
header.scrolled .brand img{height:70px;width:70px}
.nav-links{display:flex;align-items:center;gap:2px;list-style:none}
/* Left group hugs the logo from the left, right group from the right,
   so the visual gap on either side of the centered mark matches. */
.nav-links.nav-left{justify-content:flex-end}
.nav-links.nav-right{justify-content:flex-start}
.nav-utils{flex:1}
.nav-links>li{position:relative;z-index:5}
.nav-links>li>a,.nav-links>li>button{
  font-family:var(--font-accent);font-weight:600;font-size:.86rem;letter-spacing:.05em;
  color:var(--silver);background:none;border:0;cursor:pointer;white-space:nowrap;
  padding:12px 14px;display:flex;align-items:center;gap:6px;text-transform:uppercase;
}
.nav-links>li>a:hover,.nav-links>li>button:hover{color:var(--champagne)}
.caret{width:8px;height:8px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg) translateY(-2px);transition:transform .25s}
li.open .caret{transform:rotate(225deg) translateY(-2px)}

/* Mega menu */
.mega{
  position:absolute;top:calc(100% + 10px);left:0;transform:translateY(8px);z-index:20;
  width:min(720px,92vw);
  background:rgba(8,10,15,.98);
  border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:26px 28px 20px;display:grid;grid-template-columns:repeat(3,1fr);gap:26px 30px;
  opacity:0;visibility:hidden;transition:opacity .28s ease,transform .28s ease;
}
/* Invisible bridge across the trigger-to-panel gap so the pointer never
   crosses dead space and drops the hover. */
.mega::before{content:"";position:absolute;top:-14px;left:0;right:0;height:14px}
.mega-2{width:min(540px,92vw);grid-template-columns:repeat(2,1fr)}
.mega-all{
  grid-column:1/-1;margin-top:4px;padding-top:16px;
  border-top:1px solid rgba(216,216,218,.1);
  font-family:var(--font-accent);font-size:.74rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;color:var(--blue);
  display:flex;align-items:center;gap:8px;
}
.mega-all:hover{color:var(--champagne)}
.mega-all span{transition:transform .25s ease;display:inline-block}
.mega-all:hover span{transform:translateX(4px)}
li.open .mega{opacity:1;visibility:visible;transform:translateY(0)}
.mega-wide{width:min(940px,94vw);grid-template-columns:1.1fr 1fr 1fr 1fr}
.mega-right{left:auto;right:0}
.mega-feature{
  background:linear-gradient(150deg,var(--navy),#12080f 85%);
  border:1px solid rgba(62,183,255,.25);border-radius:12px;padding:22px;
}
.mega-feature strong{font-family:var(--font-head);font-size:1.05rem;color:var(--champagne);display:block;margin-bottom:8px}
.mega-feature p{font-size:.85rem;color:var(--muted);margin-bottom:14px}
.mega-feature a{font-family:var(--font-accent);font-size:.78rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:var(--blue)}
.mega h4{font-family:var(--font-accent);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:12px}
.mega ul{list-style:none}
.mega ul li a{display:block;padding:7px 0;font-size:.9rem;color:var(--silver)}
.mega ul li a:hover{color:var(--champagne);padding-left:4px}
.mega ul li a small{color:var(--muted);font-size:.75rem;margin-left:6px}

/* Translate + utility */
.nav-utils{display:flex;align-items:center;justify-content:space-between;gap:12px}

/* Custom language switcher: Google's own UI is hidden, this drives it */
.lang-switch{position:relative;display:flex;align-items:center}
.lang-switch svg.globe{
  position:absolute;left:12px;width:15px;height:15px;stroke:var(--gold);
  fill:none;stroke-width:1.6;pointer-events:none;
}
.lang-switch::after{
  content:"";position:absolute;right:13px;width:7px;height:7px;pointer-events:none;
  border-right:1.5px solid var(--muted);border-bottom:1.5px solid var(--muted);
  transform:rotate(45deg) translateY(-2px);
}
.lang-select{
  appearance:none;-webkit-appearance:none;
  background:rgba(11,14,20,.7);color:var(--silver);
  border:1px solid rgba(216,216,218,.22);border-radius:999px;
  font-family:var(--font-accent);font-weight:600;font-size:.74rem;letter-spacing:.06em;
  text-transform:uppercase;padding:10px 30px 10px 33px;cursor:pointer;
  transition:border-color .25s ease,color .25s ease;
}
.lang-select:hover{border-color:var(--gold);color:var(--champagne)}
.lang-select option{color:#111;background:#fff;text-transform:none;letter-spacing:0}
/* Suppress every piece of Google's injected chrome */
#google_translate_element{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%)}
.goog-te-banner-frame,.goog-te-gadget-icon,.goog-logo-link,
.skiptranslate>iframe,#goog-gt-tt,.goog-te-balloon-frame{display:none!important}
body{top:0!important;position:static!important}
.goog-tooltip,.goog-tooltip:hover{display:none!important}
.goog-text-highlight{background:none!important;box-shadow:none!important}
.nav-cta{white-space:nowrap;padding:12px 22px;font-size:.8rem}
.hamburger{display:none;background:none;border:1px solid rgba(216,216,218,.3);border-radius:10px;padding:10px 12px;cursor:pointer}
.hamburger span{display:block;width:22px;height:2px;background:var(--silver);margin:5px 0;transition:.3s}

/* Mobile drawer */
.drawer{
  position:fixed;inset:0;background:rgba(5,6,8,.98);z-index:950;padding:96px 8vw 140px;
  transform:translateX(100%);transition:transform .35s ease,visibility .35s;
  overflow-y:auto;visibility:hidden;
}
.drawer.open{transform:translateX(0);visibility:visible}
.drawer h4{font-family:var(--font-accent);font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin:26px 0 10px}
.drawer a{display:block;padding:10px 0;font-size:1.05rem;color:var(--silver);border-bottom:1px solid rgba(255,255,255,.06)}
.drawer-close{position:absolute;top:24px;right:8vw;background:none;border:0;color:var(--silver);font-size:2rem;cursor:pointer}

/* ---------- Hero ---------- */
.hero{
  min-height:100svh;display:flex;align-items:center;
  padding:clamp(190px,15vw,230px) 0 90px;position:relative;overflow:hidden;
}
.hero-media{position:absolute;inset:0;overflow:hidden;background:#07101e}
.hero-media video{width:100%;height:100%;object-fit:cover;object-position:center}
.hero::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    radial-gradient(900px 420px at 78% 12%,rgba(125,77,255,.18),transparent 65%),
    radial-gradient(700px 380px at 12% 80%,rgba(62,183,255,.14),transparent 60%),
    linear-gradient(100deg,rgba(5,6,8,.94) 22%,rgba(5,6,8,.68) 55%,rgba(5,6,8,.38)),
    linear-gradient(180deg,rgba(5,6,8,.55),rgba(5,6,8,.18) 45%,#050608 100%);
}
.skyline{position:absolute;bottom:-2px;left:0;right:0;opacity:.5;pointer-events:none;z-index:1}
.hero-inner{position:relative;z-index:2;display:grid;grid-template-columns:1fr 1fr;gap:clamp(32px,4vw,60px);align-items:center}
.hero h1{
  font-size:clamp(2.3rem,4.6vw,4rem);
  width:100%;
  letter-spacing:.012em;
  margin-bottom:12px;
  text-shadow:0 4px 30px rgba(0,0,0,.5);
  background:linear-gradient(100deg,#fff 26%,var(--champagne) 66%,var(--gold));
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.hero-tagline{
  font-family:var(--font-accent);font-weight:700;
  font-size:clamp(.8rem,1.4vw,1.02rem);letter-spacing:.3em;text-transform:uppercase;
  color:var(--gold);margin-bottom:20px;
  display:flex;align-items:center;gap:16px;
}
.hero-tagline::after{content:"";flex:1;height:1px;background:linear-gradient(90deg,var(--gold),transparent)}
.hero-kicker{
  font-family:var(--font-head);font-weight:600;
  font-size:clamp(1.15rem,2.1vw,1.75rem);color:#fff;line-height:1.25;
  margin-bottom:16px;max-width:100%;
}
.hero-kicker em{font-style:normal;color:var(--champagne)}
.hero-sub{color:#b9bfc9;font-size:1.02rem;max-width:100%;margin-bottom:26px}
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap}
.hero-sub strong{color:var(--silver)}
.hero-points{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:8px;list-style:none}
.hero-points li{
  display:flex;align-items:center;gap:8px;font-size:.84rem;color:var(--silver);
  border:1px solid rgba(216,216,218,.18);border-radius:999px;padding:8px 16px;
}
.hero-points svg{width:14px;height:14px;stroke:var(--gold)}

/* Quote widget */
.quote-card{
  background:rgba(8,10,15,.94);border:1px solid rgba(201,163,72,.34);border-radius:18px;
  box-shadow:0 30px 80px rgba(0,0,0,.6),0 0 0 1px rgba(201,163,72,.08);
  padding:clamp(28px,3vw,40px);backdrop-filter:blur(10px);
}
.quote-card h2{font-size:clamp(1.35rem,2vw,1.7rem);margin-bottom:6px}
.quote-card .q-sub{font-size:.9rem;color:var(--muted);margin-bottom:24px}
.q-progress{display:flex;gap:10px;margin-bottom:8px}
.q-progress span{height:5px;flex:1;border-radius:99px;background:rgba(216,216,218,.15);transition:background .3s ease}
.q-progress span.done{background:linear-gradient(90deg,var(--gold),var(--champagne))}
.q-steplabels{display:flex;justify-content:space-between;margin-bottom:24px}
.q-steplabels span{
  font-family:var(--font-accent);font-size:.63rem;font-weight:700;
  letter-spacing:.1em;text-transform:uppercase;color:#5c626e;
  flex:1;transition:color .3s ease;white-space:nowrap;
}
.q-steplabels span:nth-child(2){text-align:center}
.q-steplabels span:nth-child(3){text-align:right}
.q-steplabels span.on{color:var(--champagne)}
.q-step{display:none}
.q-step.active{display:block;animation:fade .4s ease}
@keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
html.a11y-motion .q-step.active{animation:none}
.field{margin-bottom:16px}
.field label,.seg-legend{display:block;font-family:var(--font-accent);font-size:.72rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--silver);margin-bottom:7px;padding:0}
.field input,.field select{
  width:100%;padding:13px 16px;border-radius:10px;border:1px solid rgba(216,216,218,.2);
  background:#0d1119;color:var(--text);font-family:var(--font-body);font-size:.95rem;
}
.field input::placeholder{color:#5c626e}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
/* Segmented trip-type control */
.segment{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.segment input{position:absolute;opacity:0;width:0;height:0}
.segment label{
  display:flex;align-items:center;justify-content:center;text-align:center;
  padding:12px 8px;border-radius:10px;cursor:pointer;
  border:1px solid rgba(216,216,218,.2);background:#0d1119;
  font-family:var(--font-accent);font-weight:600;font-size:.76rem;
  letter-spacing:.04em;color:var(--muted);text-transform:none;
  transition:border-color .2s ease,color .2s ease,background .2s ease;
  margin-bottom:0;
}
.segment label:hover{border-color:rgba(201,163,72,.5);color:var(--silver)}
.segment input:checked+label{
  border-color:var(--gold);color:#171204;
  background:linear-gradient(120deg,var(--gold),var(--champagne));
}
.segment input:focus-visible+label{outline:2px solid var(--blue);outline-offset:2px}
.q-nav{display:flex;gap:12px;margin-top:22px}
.q-nav .btn{flex:1;padding:14px 10px}
.q-note{display:flex;gap:9px;align-items:flex-start;font-size:.76rem;color:var(--muted);margin-top:16px}
.q-note svg{width:14px;height:14px;flex-shrink:0;stroke:var(--gold);margin-top:2px}
.q-success{text-align:center;padding:30px 6px;display:none}
.q-success.active{display:block}
.q-success h3{color:var(--champagne);margin:14px 0 10px;font-size:1.25rem}
.q-success p{color:var(--muted);font-size:.9rem}

/* ---------- Trust strip ---------- */
.trust-strip{
  border-block:1px solid rgba(201,163,72,.18);
  background:linear-gradient(90deg,rgba(14,35,64,.5),rgba(11,14,20,.35),rgba(14,35,64,.5));
  overflow:hidden;position:relative;padding:20px 0;
}
.trust-strip::before,.trust-strip::after{
  content:"";position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none;
}
.trust-strip::before{left:0;background:linear-gradient(90deg,var(--black),transparent)}
.trust-strip::after{right:0;background:linear-gradient(270deg,var(--black),transparent)}
.marquee{display:flex;width:max-content;animation:marquee 42s linear infinite}
.trust-strip:hover .marquee{animation-play-state:paused}
html.a11y-motion .marquee{animation:none;width:100%;justify-content:center;flex-wrap:wrap}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-group{display:flex;align-items:center;flex-shrink:0}
.trust-item{
  display:flex;align-items:center;gap:11px;font-size:.87rem;color:var(--silver);
  white-space:nowrap;padding:0 30px;position:relative;
}
.trust-item::after{
  content:"";position:absolute;right:0;top:50%;transform:translateY(-50%);
  width:4px;height:4px;border-radius:50%;background:var(--gold);opacity:.55;
}
.trust-item svg{width:20px;height:20px;stroke:var(--gold);fill:none;stroke-width:1.6;flex-shrink:0}

/* ---------- Steps ---------- */
.steps{grid-template-columns:repeat(3,1fr)}
.step-num{
  font-family:var(--font-head);font-size:2.4rem;color:transparent;
  -webkit-text-stroke:1px var(--gold);margin-bottom:14px;display:block;
}
.card h3{font-size:1.18rem;margin-bottom:10px}
.card p{color:var(--muted);font-size:.93rem}
.card .link-more{display:inline-block;margin-top:16px;font-family:var(--font-accent);font-size:.76rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--blue)}

/* ---------- Fleet ---------- */
/* 6 fleet cards: 3 or 2 columns both divide evenly, never an orphan row */
.fleet{grid-template-columns:repeat(3,1fr)}
@media (max-width:900px){.fleet{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.fleet{grid-template-columns:1fr}}
.fleet .card{text-align:center;padding:30px 20px}
.fleet svg{width:64px;height:44px;margin:0 auto 16px;stroke:var(--champagne);fill:none;stroke-width:1.4}
.fleet .cap{font-size:.78rem;color:var(--gold);font-family:var(--font-accent);font-weight:600;letter-spacing:.08em;text-transform:uppercase;display:block;margin-top:8px}

/* ---------- Services ---------- */
/* 12 service cards divide evenly into 4 columns, so no orphan row */
.services{grid-template-columns:repeat(4,1fr)}
@media (max-width:1180px){.services{grid-template-columns:repeat(3,1fr)}}
@media (max-width:860px){.services{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.services{grid-template-columns:1fr}}
.svc-card{position:relative;overflow:hidden;display:flex;flex-direction:column}
.svc-card p{flex:1}
.svc-card h3{min-height:2.5em;display:flex;align-items:flex-end}
.svc-card::after{
  content:"";position:absolute;inset:auto 0 0 0;height:3px;
  background:linear-gradient(90deg,var(--gold),var(--purple));
  transform:scaleX(0);transform-origin:left;transition:transform .35s ease;
}
.svc-card:hover::after{transform:scaleX(1)}
.svc-icon{width:38px;height:38px;stroke:var(--gold);fill:none;stroke-width:1.5;margin-bottom:16px}

/* ---------- Feature bands ---------- */
.band{border-block:1px solid rgba(201,163,72,.12)}
.band-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,5vw,70px);align-items:center}
.band h2{font-size:clamp(1.6rem,3.2vw,2.4rem);margin-bottom:16px}
.band p{color:var(--muted);margin-bottom:14px}
/* Checklist: unscoped so it renders correctly anywhere, not just inside .band.
   The svg sizing is the load-bearing part; without it inline SVGs default to
   300x150 and blow the container open. */
ul.checks{list-style:none;margin:18px 0 26px;padding:0}
ul.checks li{display:flex;gap:12px;align-items:flex-start;padding:7px 0;color:var(--silver);font-size:.95rem;margin:0}
ul.checks svg{width:17px;height:17px;min-width:17px;stroke:var(--gold);fill:none;stroke-width:2;flex-shrink:0;margin-top:4px}
.prose ul.checks{margin-left:0}
.band-visual{
  border-radius:var(--radius);border:1px solid var(--line);min-height:340px;
  display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
  box-shadow:var(--shadow);
}
.band-visual.wedding{background:linear-gradient(150deg,#1a1024,var(--navy) 60%,#050608)}
.band-visual.night{background:linear-gradient(150deg,var(--navy),#170b2b 70%,#050608)}
.band-visual picture,.band-visual img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.band-visual::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(5,6,8,.12),rgba(5,6,8,.42));pointer-events:none}
.band-visual .visual-tag{
  position:absolute;left:18px;bottom:16px;z-index:2;
  font-family:var(--font-accent);font-size:.7rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
  color:var(--champagne);background:rgba(5,6,8,.72);border:1px solid var(--line);
  padding:8px 14px;border-radius:999px;backdrop-filter:blur(6px);
}
.occasion-cloud{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}
.occasion-cloud a{
  font-size:.88rem;color:var(--silver);border:1px solid rgba(216,216,218,.22);
  padding:11px 20px;border-radius:999px;transition:.25s;background:rgba(11,14,20,.6);
}
.occasion-cloud a:hover{border-color:var(--gold);color:var(--champagne)}
.occasion-note{margin-top:18px;font-size:.85rem;color:var(--muted)}
.tag-cloud{display:flex;flex-wrap:wrap;gap:10px;margin-top:6px}
.tag-cloud a{
  font-size:.82rem;color:var(--silver);border:1px solid rgba(216,216,218,.2);
  padding:8px 16px;border-radius:999px;transition:.25s;
}
.tag-cloud a:hover{border-color:var(--gold);color:var(--champagne)}

/* ---------- Airports table ---------- */
.airport-list{list-style:none;display:grid;gap:12px;margin-top:8px}
.airport-list li a{
  display:flex;align-items:center;gap:16px;padding:16px 20px;
  background:rgba(11,14,20,.8);border:1px solid rgba(216,216,218,.12);border-radius:12px;
  transition:border-color .25s;
}
.airport-list li a:hover{border-color:var(--gold)}
.code{
  font-family:var(--font-accent);font-weight:700;font-size:.85rem;color:#171204;
  background:linear-gradient(120deg,var(--gold),var(--champagne));
  border-radius:8px;padding:7px 10px;letter-spacing:.05em;flex-shrink:0;
}
.airport-list .a-name{color:var(--text);font-weight:500;font-size:.95rem}
.airport-list .a-meta{margin-left:auto;color:var(--muted);font-size:.78rem;text-align:right}

/* ---------- Cities ---------- */
.city-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:14px}
.city-grid a{
  display:flex;justify-content:space-between;align-items:center;
  padding:16px 20px;border:1px solid rgba(216,216,218,.14);border-radius:12px;
  color:var(--silver);font-size:.94rem;background:rgba(11,14,20,.6);transition:.25s;
}
.city-grid a:hover{border-color:var(--gold);color:var(--champagne)}
.city-grid a span{color:var(--gold);font-size:1.1rem}

/* ---------- Narrative ---------- */
.narrative{max-width:860px}
.narrative p{margin-bottom:18px;color:#c6cad2;font-size:1.04rem}
.narrative .pull{
  border-left:3px solid var(--gold);padding:18px 26px;margin:28px 0;
  background:rgba(201,163,72,.06);border-radius:0 12px 12px 0;
  font-family:var(--font-head);font-size:1.15rem;color:var(--champagne);
}

/* ---------- Vetting ---------- */
.vet{grid-template-columns:repeat(4,1fr)}
@media (max-width:1080px){.vet{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.vet{grid-template-columns:1fr}}

/* ---------- Map ---------- */
.map-shell{border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);box-shadow:var(--shadow)}
.map-shell iframe{width:100%;height:420px;border:0;display:block;filter:invert(90%) hue-rotate(185deg) saturate(.7)}

/* ---------- FAQ ---------- */
.faq-list{max-width:920px;margin-inline:auto}
.section-head.center{text-align:center}
.section-head.center p{margin-inline:auto}
.faq-list details{
  border:1px solid rgba(216,216,218,.14);border-radius:12px;margin-bottom:12px;
  background:rgba(11,14,20,.7);overflow:hidden;
}
.faq-list summary{
  cursor:pointer;padding:20px 24px;font-weight:600;color:var(--silver);
  display:flex;justify-content:space-between;align-items:center;gap:16px;list-style:none;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:"+";font-size:1.4rem;color:var(--gold);transition:transform .25s}
.faq-list details[open] summary::after{transform:rotate(45deg)}
.faq-list details[open] summary{color:var(--champagne)}
.faq-body{padding:0 24px 22px;color:var(--muted);font-size:.95rem}

/* ---------- Footer ---------- */
.footer-cta{
  text-align:center;padding:clamp(70px,9vw,120px) 0;
  background:
    radial-gradient(700px 300px at 50% 0%,rgba(201,163,72,.12),transparent 70%),
    linear-gradient(180deg,#050608,#0a0d14);
  border-top:1px solid rgba(201,163,72,.15);
}
.footer-cta h2{font-size:clamp(1.8rem,4.2vw,3.1rem);margin-bottom:18px;width:100%}
.footer-cta p{color:var(--muted);max-width:520px;margin:0 auto 32px}
footer{background:#04050a;border-top:1px solid rgba(255,255,255,.05);padding:64px 0 130px}
.foot-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:32px;margin-bottom:44px}
.foot-grid h3{font-family:var(--font-accent);font-size:.74rem;letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.foot-grid ul{list-style:none}
.foot-grid ul li a{display:block;padding:5px 0;color:var(--muted);font-size:.88rem}
.foot-grid ul li a:hover{color:var(--champagne)}
.foot-brand p{color:var(--muted);font-size:.86rem;margin-top:14px;max-width:300px}
.foot-brand img{height:104px;width:104px;object-fit:contain}
.legal{border-top:1px solid rgba(255,255,255,.06);padding-top:26px;display:flex;flex-wrap:wrap;gap:18px;justify-content:space-between;color:#6b7280;font-size:.78rem}
.legal a{color:#8b93a1}

/* ---------- Mobile floating bar ---------- */
.mobile-bar{
  position:fixed;left:0;right:0;bottom:0;z-index:940;display:none;
  background:rgba(5,6,8,.96);backdrop-filter:blur(14px);
  border-top:1px solid rgba(201,163,72,.3);
  padding:10px 14px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns:1fr 1fr 1.4fr;gap:10px;
}
.mobile-bar a{
  display:flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--font-accent);font-weight:700;font-size:.78rem;letter-spacing:.03em;
  padding:13px 8px;border-radius:12px;text-transform:uppercase;
}
.mobile-bar .mb-call,.mobile-bar .mb-text{border:1px solid rgba(216,216,218,.3);color:var(--silver);font-size:.72rem}
.mobile-bar .mb-quote{background:linear-gradient(120deg,var(--gold),var(--champagne));color:#171204}
.mobile-bar svg{width:16px;height:16px}

/* ---------- ADA widget ---------- */
.ada-btn{
  position:fixed;left:18px;bottom:18px;z-index:960;width:54px;height:54px;border-radius:50%;
  background:var(--navy);border:2px solid var(--gold);cursor:pointer;
  display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow);
}
.ada-btn svg{width:26px;height:26px;fill:var(--champagne)}
.ada-panel{
  position:fixed;left:18px;bottom:84px;z-index:961;width:290px;
  background:#0a0d14;border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:22px;display:none;
}
.ada-panel.open{display:block}
.ada-panel h3{font-size:1rem;margin-bottom:14px;font-family:var(--font-accent);letter-spacing:.06em;text-transform:uppercase}
.ada-panel button{
  width:100%;text-align:left;background:#0d1119;border:1px solid rgba(216,216,218,.15);
  color:var(--silver);padding:11px 14px;border-radius:10px;margin-bottom:9px;cursor:pointer;
  font-family:var(--font-body);font-size:.86rem;display:flex;justify-content:space-between;align-items:center;
}
.ada-panel button[aria-pressed="true"]{border-color:var(--gold);color:var(--champagne)}
.ada-panel button[aria-pressed="true"]::after{content:"ON";font-size:.68rem;font-weight:700;color:var(--gold)}
.ada-reset{text-align:center!important;justify-content:center!important;color:var(--blue)!important}

/* ---------- A11y modes ---------- */
html.a11y-contrast body{background:#000;color:#fff}
html.a11y-contrast .card,html.a11y-contrast .quote-card,html.a11y-contrast .faq-list details{background:#000;border-color:#ffd76a}
html.a11y-contrast .hero::before{opacity:.3}
html.a11y-contrast p,html.a11y-contrast .card p,html.a11y-contrast .hero-sub,html.a11y-contrast .faq-body{color:#e8e8e8}
html.a11y-font-1{--fs-base:1.08rem}
html.a11y-font-2{--fs-base:1.18rem}
html.a11y-dyslexia body,html.a11y-dyslexia .card,html.a11y-dyslexia button,html.a11y-dyslexia input,html.a11y-dyslexia select{font-family:Verdana,Tahoma,sans-serif;letter-spacing:.03em;word-spacing:.12em}
html.a11y-links a{text-decoration:underline!important}
html.a11y-motion *{animation:none!important;transition:none!important}
@media (prefers-reduced-motion:reduce){*{animation:none!important;transition:none!important}html{scroll-behavior:auto}}

/* ---------- Responsive ---------- */
@media (max-width:1080px){
  html{scroll-padding-top:160px}
  .nav-links{display:none}
  .hamburger{display:block}
  /* A display:none nav-left stops being a grid item, so pin the remaining
     children to their tracks explicitly and keep the logo centred. */
  .nav-bar{grid-template-columns:1fr auto 1fr}
  .brand{grid-column:2}
  .nav-utils{grid-column:3;margin-left:0;justify-content:flex-end;flex:0 0 auto}
  .mobile-bar{display:grid}
  footer{padding-bottom:170px}
  .ada-btn{bottom:88px}
  .ada-panel{bottom:154px}
  .brand img{height:88px;width:88px}
  header.scrolled .brand img{height:62px;width:62px}
  .util-inner{justify-content:center;gap:16px}
  .util-inner .util-tagline{display:none}
  .hero{padding:clamp(160px,26vw,200px) 0 80px}
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .steps{grid-template-columns:1fr}
  .band-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  html{scroll-padding-top:140px}
  .nav-cta{display:none}
  .brand img{height:70px;width:70px}
  header.scrolled .brand img{height:54px;width:54px}
  .util-inner{padding:5px 0;min-height:34px;gap:12px}
  .util-inner .util-link:nth-of-type(2),.util-inner .util-sep:last-of-type{display:none}
  .util-link{font-size:.72rem}
  .lang-select{font-size:.68rem;padding:8px 26px 8px 30px}
  .hero{padding:150px 0 70px}
  .field-row{grid-template-columns:1fr}
  .segment{grid-template-columns:1fr}
}

/* ============================================================
   PAGE TEMPLATES — inner pages (service, airport, city, legal)
   ============================================================ */

/* ---- Page hero ---- */
.page-hero{
  position:relative;overflow:hidden;
  padding:clamp(190px,16vw,236px) 0 clamp(34px,3.4vw,52px);
  background:linear-gradient(180deg,#050608 0%,#07101e 52%,#050608 100%);
}
.page-hero::before{
  content:"";position:absolute;inset:0;z-index:1;pointer-events:none;
  background:
    radial-gradient(900px 420px at 76% 10%,rgba(125,77,255,.15),transparent 62%),
    radial-gradient(680px 360px at 10% 78%,rgba(62,183,255,.12),transparent 58%);
}
.page-hero .wrap{position:relative;z-index:2}
.page-hero.has-img .ph-media{position:absolute;inset:0;z-index:0}
.page-hero.has-img .ph-media img{width:100%;height:100%;object-fit:cover}
.page-hero.has-img .ph-media img{filter:saturate(.85) brightness(.66)}
.page-hero.has-img::before{
  background:
    linear-gradient(100deg,rgba(5,6,8,.94) 30%,rgba(5,6,8,.8) 62%,rgba(5,6,8,.6)),
    linear-gradient(180deg,rgba(5,6,8,.82) 0%,rgba(5,6,8,.45) 38%,rgba(5,6,8,.75) 78%,#050608 100%);
}
/* Keep hero copy legible regardless of what the photo is doing behind it */
.page-hero.has-img .ph-deck{color:#d8dce3;text-shadow:0 2px 14px rgba(0,0,0,.75)}
.page-hero.has-img h1{text-shadow:0 4px 26px rgba(0,0,0,.6)}
.page-hero.has-img .eyebrow,.page-hero.has-img .crumb{text-shadow:0 2px 10px rgba(0,0,0,.8)}
.page-hero h1{
  font-size:clamp(2rem,4.2vw,3.4rem);width:100%;margin-bottom:14px;
  background:linear-gradient(100deg,#fff 28%,var(--champagne) 68%,var(--gold));
  -webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;
}
.ph-deck{font-size:clamp(1.02rem,1.5vw,1.2rem);color:#c3c9d3;max-width:100%;margin-bottom:26px}
.ph-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:center}

/* ---- Breadcrumb ---- */
.crumb{margin-bottom:20px}
/* The hero already carries bottom padding; don't stack a full section gap on it */
.page-hero + section{padding-top:clamp(38px,4vw,60px)}
.crumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:8px;align-items:center;font-size:.8rem}
.crumb li{display:flex;align-items:center;gap:8px;color:var(--muted)}
.crumb li+li::before{content:"/";color:rgba(216,216,218,.3)}
.crumb a{color:var(--muted)}
.crumb a:hover{color:var(--champagne)}
.crumb [aria-current]{color:var(--champagne)}

/* ---- Prose ---- */
.prose{max-width:74ch}
.prose.wide{max-width:none}
.prose p{margin-bottom:18px;color:#c6cad2;font-size:1.04rem}
.prose h2{font-size:clamp(1.5rem,3vw,2.3rem);margin:44px 0 16px;width:100%}
.prose h3{font-size:clamp(1.12rem,1.7vw,1.35rem);margin:30px 0 12px;color:var(--champagne)}
.prose ul,.prose ol{margin:0 0 20px 22px;color:#c6cad2}
.prose li{margin-bottom:9px}
.prose strong{color:var(--silver)}
.prose a{text-decoration:underline;text-underline-offset:3px;text-decoration-color:rgba(201,163,72,.5)}
.split{display:grid;grid-template-columns:1.55fr .95fr;gap:clamp(28px,4vw,60px);align-items:start}
.split>*{min-width:0}
.rail{position:sticky;top:150px}

/* ---- Utility modules ---- */
.callout,.messy,.bottomline{
  border-radius:var(--radius);padding:24px 28px;margin:30px 0;
  border:1px solid var(--line);background:rgba(14,35,64,.32);
}
.callout{border-left:3px solid var(--gold)}
.callout h3,.messy h3,.bottomline h3{
  font-family:var(--font-accent);font-size:.72rem;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;color:var(--gold);margin:0 0 10px;
}
.callout p,.messy p,.bottomline p{color:#c6cad2;font-size:.98rem;margin-bottom:10px}
.callout p:last-child,.messy p:last-child,.bottomline p:last-child{margin-bottom:0}
.messy{border-left:3px solid var(--blue);background:rgba(62,183,255,.07)}
.messy h3{color:var(--blue)}
.bottomline{border-left:3px solid var(--champagne);background:rgba(201,163,72,.08)}

.table-wrap{overflow-x:auto;margin:28px 0;border-radius:var(--radius);border:1px solid var(--line)}
table.cmp{width:100%;border-collapse:collapse;min-width:520px;font-size:.94rem}
table.cmp caption{text-align:left;padding:16px 20px 0;color:var(--muted);font-size:.85rem}
table.cmp th,table.cmp td{padding:14px 18px;text-align:left;border-bottom:1px solid rgba(216,216,218,.1)}
table.cmp thead th{
  font-family:var(--font-accent);font-size:.72rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--gold);
  background:rgba(14,35,64,.5);
}
table.cmp tbody tr:last-child td{border-bottom:0}
table.cmp tbody tr:hover{background:rgba(201,163,72,.05)}
table.cmp td:first-child{color:var(--silver);font-weight:500}
table.cmp td{color:var(--muted)}

.matrix{display:grid;gap:12px;margin:28px 0}
.matrix-row{
  display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:baseline;
  padding:16px 20px;border:1px solid rgba(216,216,218,.14);border-radius:12px;
  background:rgba(11,14,20,.6);
}
.matrix-row .if{
  font-family:var(--font-accent);font-size:.7rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;color:var(--gold);white-space:nowrap;
}
.matrix-row .then{color:#c6cad2;font-size:.96rem}

ul.specs{list-style:none;display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:14px;margin:26px 0}
ul.specs li{
  padding:16px 20px;border:1px solid rgba(216,216,218,.14);border-radius:12px;
  background:rgba(11,14,20,.6);
}
ul.specs .k{
  display:block;font-family:var(--font-accent);font-size:.66rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold);margin-bottom:6px;
}
ul.specs .v{color:var(--silver);font-size:.96rem}

ul.routes{list-style:none;margin:26px 0;display:grid;gap:10px}
ul.routes li{
  display:flex;flex-wrap:wrap;justify-content:space-between;gap:12px;
  padding:14px 20px;border:1px solid rgba(216,216,218,.12);border-radius:12px;
  background:rgba(11,14,20,.55);color:var(--silver);font-size:.94rem;
}
ul.routes .dur{color:var(--gold);font-family:var(--font-accent);font-size:.8rem;font-weight:600;white-space:nowrap}

/* ---- Inline quote band ---- */
.quote-band{
  border-block:1px solid rgba(201,163,72,.16);
  background:radial-gradient(900px 400px at 50% 0%,rgba(201,163,72,.09),transparent 68%),#07090f;
}
.quote-band-inner{display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,4vw,60px);align-items:center}
.quote-band-inner>*{min-width:0}
.quote-band h2{font-size:clamp(1.5rem,2.8vw,2.3rem);margin-bottom:14px;width:100%}
.quote-band p{color:var(--muted)}

/* ---- Related links ---- */
.related{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:14px;margin-top:8px}
.related a{
  display:flex;justify-content:space-between;align-items:center;gap:12px;
  padding:16px 20px;border:1px solid rgba(216,216,218,.14);border-radius:12px;
  background:rgba(11,14,20,.6);color:var(--silver);font-size:.94rem;transition:.25s;
}
.related a:hover{border-color:var(--gold);color:var(--champagne)}
.related a span{color:var(--gold)}

/* ---- Directory index cards ---- */
.dir-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
@media (max-width:1180px){.dir-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.dir-grid{grid-template-columns:1fr}}
.dir-card{
  border:1px solid var(--line);border-radius:var(--radius);padding:26px;
  background:linear-gradient(160deg,rgba(14,35,64,.45),rgba(11,14,20,.9));
  display:flex;flex-direction:column;gap:10px;transition:transform .3s ease,border-color .3s ease;
}
.dir-card:hover{transform:translateY(-4px);border-color:rgba(201,163,72,.5)}
html.a11y-motion .dir-card:hover{transform:none}
.dir-card h3{font-size:1.12rem}
.dir-card p{color:var(--muted);font-size:.93rem;flex:1}
.dir-card .go{
  font-family:var(--font-accent);font-size:.74rem;font-weight:700;
  letter-spacing:.11em;text-transform:uppercase;color:var(--blue);
}

/* Explicit column counts. auto-fit cannot guarantee an even final row, so any
   grid that carries a fixed card count opts into one of these instead. */
.dir-grid.cols-1{grid-template-columns:1fr}
.dir-grid.cols-3{grid-template-columns:repeat(3,1fr)}
@media (max-width:1000px){.dir-grid.cols-3{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.dir-grid.cols-3{grid-template-columns:1fr}}
.dir-grid.cols-4{grid-template-columns:repeat(4,1fr)}
@media (max-width:1180px){.dir-grid.cols-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.dir-grid.cols-4{grid-template-columns:1fr}}
.dir-card-wide{padding:34px 36px;border-left:3px solid var(--gold)}
.dir-card-wide h3{font-size:1.32rem}
.dir-card .status{
  font-family:var(--font-accent);font-size:.68rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold);
}

/* Related-link grids always carry 6 tiles, so pin the counts that divide 6. */
.related{grid-template-columns:repeat(3,1fr)}
@media (min-width:1200px){.related{grid-template-columns:repeat(6,1fr)}}
@media (max-width:700px){.related{grid-template-columns:repeat(2,1fr)}}
@media (max-width:480px){.related{grid-template-columns:1fr}}

/* ============================================================
   PAGE THEMES — accent shifts by audience
   ============================================================ */
body.theme-executive{--purple:#0E2340;--blue:#7C93AE}
body.theme-executive .page-hero::before,
body.theme-executive .hero::before{
  background:
    radial-gradient(900px 430px at 74% 12%,rgba(14,35,64,.75),transparent 64%),
    linear-gradient(180deg,rgba(5,6,8,.5),rgba(5,6,8,.22) 46%,#050608 100%);
}
body.theme-executive .svc-card::after{background:linear-gradient(90deg,var(--gold),#7C93AE)}
body.theme-executive .messy{border-left-color:#7C93AE;background:rgba(124,147,174,.08)}
body.theme-executive .messy h3{color:#9FB3C8}

body.theme-wedding{--blue:#E7C879}
body.theme-wedding .page-hero::before{
  background:
    radial-gradient(880px 420px at 74% 10%,rgba(201,163,72,.2),transparent 62%),
    radial-gradient(640px 340px at 8% 80%,rgba(231,200,121,.12),transparent 58%);
}
body.theme-wedding .messy{border-left-color:var(--champagne);background:rgba(231,200,121,.08)}
body.theme-wedding .messy h3{color:var(--champagne)}

body.theme-party .page-hero::before{
  background:
    radial-gradient(900px 430px at 78% 8%,rgba(125,77,255,.28),transparent 62%),
    radial-gradient(700px 380px at 8% 82%,rgba(62,183,255,.22),transparent 60%);
}

body.theme-formal{--purple:#0E2340}
body.theme-formal .page-hero::before{
  background:
    radial-gradient(880px 420px at 74% 10%,rgba(201,163,72,.16),transparent 62%),
    radial-gradient(640px 340px at 8% 80%,rgba(14,35,64,.6),transparent 58%);
}

body.theme-daylight .page-hero::before{
  background:
    radial-gradient(900px 430px at 76% 10%,rgba(201,163,72,.18),transparent 62%),
    radial-gradient(680px 360px at 10% 78%,rgba(62,183,255,.14),transparent 58%);
}

body.theme-solemn{--purple:#0E2340;--blue:#8FA3B8}
body.theme-solemn .page-hero::before{background:linear-gradient(180deg,rgba(14,35,64,.5),transparent 60%)}
body.theme-solemn .page-hero h1{background:none;-webkit-text-fill-color:var(--silver);color:var(--silver)}
body.theme-solemn .svc-card::after{display:none}
body.theme-solemn .callout{border-left-color:#8FA3B8}
body.theme-solemn .callout h3{color:#A9BACB}

/* ---- Inner page responsive ---- */
@media (max-width:1080px){
  .split{grid-template-columns:1fr}
  .rail{position:static}
  .quote-band-inner{grid-template-columns:1fr}
  .page-hero{padding:clamp(170px,26vw,210px) 0 56px}
}
@media (max-width:760px){
  .page-hero{padding:150px 0 48px}
  .callout,.messy,.bottomline{padding:20px 22px}
  .matrix-row{grid-template-columns:1fr;gap:6px}
}

/* ---- Message textarea (contact form) ---- */
.field textarea{
  width:100%;padding:13px 16px;border-radius:10px;border:1px solid rgba(216,216,218,.2);
  background:#0d1119;color:var(--text);font-family:var(--font-body);font-size:.95rem;
  line-height:1.6;min-height:170px;resize:vertical;
}
.field textarea::placeholder{color:#5c626e}
textarea:focus-visible{outline:2px solid var(--blue);outline-offset:3px;border-radius:4px}
.field-note{font-size:.78rem;color:var(--muted);margin-top:7px}

/* ---- Legal document furniture ---- */
.doc-meta{
  display:inline-block;padding:8px 18px;margin-bottom:22px;border-radius:99px;
  border:1px solid var(--line);background:rgba(14,35,64,.35);
  font-family:var(--font-accent);font-size:.7rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--champagne);
}
.doc-toc{border:1px solid var(--line);border-radius:var(--radius);padding:24px 26px;background:rgba(14,35,64,.3)}
.doc-toc .eyebrow{margin-bottom:12px}
.doc-toc ol{list-style:none;margin:0;padding:0;counter-reset:toc}
.doc-toc li{counter-increment:toc;margin:0}
.doc-toc a{display:block;padding:6px 0;color:var(--silver);font-size:.9rem;text-decoration:none}
.doc-toc a::before{content:counter(toc) ". ";color:var(--gold);font-family:var(--font-accent);font-size:.78rem;font-weight:700}
.doc-toc a:hover{color:var(--champagne)}

/* ============================================================
   THEME: WEDDING LIGHT
   Ivory-and-rose treatment for the wedding silo. The rest of the
   site stays dark; this class flips the whole surface to light,
   including the shared header, footer and mobile bar.
   Text colours are chosen for WCAG AA on the ivory ground:
   ink 14:1, muted 5.6:1, gold-text 5.4:1.
   ============================================================ */
body.theme-wedding-light{
  --black:#FDFBF8;
  --ink:#2A2422;
  --navy:#F3EDE4;
  --gold:#8A6A1C;          /* text-safe gold */
  --gold-deco:#C9A348;     /* decorative only, never text on white */
  --champagne:#9A7A24;
  --silver:#3A332E;
  --blue:#7D8B70;          /* greenery instead of neon */
  --purple:#C9A9A3;        /* dusty rose instead of violet */
  --text:#2A2422;
  --muted:#6B6259;
  --line:rgba(201,163,72,.34);
  --blush:#EFE0DC;
  --shadow:0 14px 40px rgba(90,70,50,.13);
  background:
    radial-gradient(1100px 520px at 82% -6%, #FBEFEA 0%, transparent 62%),
    radial-gradient(900px 460px at -8% 24%, #F4F1E8 0%, transparent 58%),
    #FDFBF8;
  background-attachment:fixed;
  color:var(--ink);
}
body.theme-wedding-light h1,
body.theme-wedding-light h2,
body.theme-wedding-light h3,
body.theme-wedding-light h4{color:#241E1B}
body.theme-wedding-light a{color:#7C5F18}
body.theme-wedding-light a:hover{color:#241E1B}
body.theme-wedding-light .eyebrow{color:#8A6A1C}

/* ---- Header ---- */
body.theme-wedding-light header{background:rgba(253,251,248,.97);box-shadow:0 4px 22px rgba(90,70,50,.1)}
body.theme-wedding-light header.scrolled{
  background:rgba(253,251,248,.95);
  box-shadow:0 6px 26px rgba(90,70,50,.12);
}
body.theme-wedding-light .util-bar{
  background:rgba(243,237,228,.72);
  border-bottom:1px solid rgba(201,163,72,.28);
}
body.theme-wedding-light header.scrolled .util-bar{background:transparent}
body.theme-wedding-light .util-link{color:#5A5149}
body.theme-wedding-light .util-link:hover{color:#241E1B}
body.theme-wedding-light .util-link svg,
body.theme-wedding-light .lang-switch svg.globe{stroke:#A8873A}
body.theme-wedding-light .util-sep{background:rgba(42,36,34,.18)}
body.theme-wedding-light .util-tagline{color:#8A6A1C}
body.theme-wedding-light .lang-select{
  background:rgba(255,255,255,.85);color:#3A332E;border-color:rgba(42,36,34,.22);
}
body.theme-wedding-light .lang-select:hover{border-color:#B8912F;color:#241E1B}
body.theme-wedding-light .lang-switch::after{border-color:#6B6259}
body.theme-wedding-light .nav-links>li>a,
body.theme-wedding-light .nav-links>li>button{color:#3A332E}
body.theme-wedding-light .nav-links>li>a:hover,
body.theme-wedding-light .nav-links>li>button:hover{color:#8A6A1C}
body.theme-wedding-light .hamburger{border-color:rgba(42,36,34,.28)}
body.theme-wedding-light .hamburger span{background:#3A332E}
body.theme-wedding-light .brand img{filter:drop-shadow(0 6px 18px rgba(90,70,50,.28))}

/* ---- Mega menu + drawer ---- */
body.theme-wedding-light .mega{
  background:rgba(255,255,255,.99);
  border-color:rgba(201,163,72,.32);
  box-shadow:0 22px 60px rgba(90,70,50,.18);
}
body.theme-wedding-light .mega h4{color:#8A6A1C}
body.theme-wedding-light .mega ul li a{color:#3A332E}
body.theme-wedding-light .mega ul li a:hover{color:#8A6A1C}
body.theme-wedding-light .mega ul li a small{color:#8C8279}
body.theme-wedding-light .mega-all{color:#6E7C61;border-top-color:rgba(42,36,34,.12)}
body.theme-wedding-light .mega-all:hover{color:#8A6A1C}
body.theme-wedding-light .drawer{background:rgba(253,251,248,.99)}
body.theme-wedding-light .drawer a{color:#3A332E;border-bottom-color:rgba(42,36,34,.09)}
body.theme-wedding-light .drawer h4{color:#8A6A1C}
body.theme-wedding-light .drawer-close{color:#3A332E}

/* ---- Hero ---- */
body.theme-wedding-light .page-hero{background:transparent}
body.theme-wedding-light .page-hero.has-img .ph-media img{filter:saturate(.92) brightness(1.06)}
body.theme-wedding-light .page-hero.has-img::before{
  /* Near-opaque under the copy column so dark text keeps AA contrast, then
     opening up on the right so the photograph still reads. */
  background:
    linear-gradient(100deg,rgba(253,251,248,.985) 0%,rgba(253,251,248,.965) 42%,rgba(253,251,248,.8) 62%,rgba(253,251,248,.34) 84%,rgba(253,251,248,.12)),
    linear-gradient(180deg,rgba(253,251,248,.72),rgba(253,251,248,.16) 40%,rgba(253,251,248,.8) 86%,#FDFBF8 100%);
}
body.theme-wedding-light .page-hero h1{
  background:none;-webkit-text-fill-color:#241E1B;color:#241E1B;text-shadow:none;
}
/* These must out-specify the dark-theme rule `.page-hero.has-img .ph-deck`
   (0,3,0), so the theme selector carries the full hero chain rather than
   targeting .ph-deck on its own. */
body.theme-wedding-light .page-hero .ph-deck,
body.theme-wedding-light .page-hero.has-img .ph-deck{color:#463E38;text-shadow:none}
body.theme-wedding-light .page-hero.has-img h1,
body.theme-wedding-light .page-hero.has-img .eyebrow,
body.theme-wedding-light .page-hero.has-img .crumb{text-shadow:none}
body.theme-wedding-light .page-hero .eyebrow{color:#7C5F18}
body.theme-wedding-light .page-hero .crumb li,
body.theme-wedding-light .page-hero .crumb a{color:#5A5149}
body.theme-wedding-light .crumb li,
body.theme-wedding-light .crumb a{color:#6B6259}
body.theme-wedding-light .crumb a:hover,
body.theme-wedding-light .crumb [aria-current]{color:#8A6A1C}
body.theme-wedding-light .crumb li+li::before{color:rgba(42,36,34,.3)}

/* ---- Prose ---- */
body.theme-wedding-light .prose p,
body.theme-wedding-light .prose li,
body.theme-wedding-light .prose ul,
body.theme-wedding-light .prose ol{color:#453D37}
body.theme-wedding-light .prose h3{color:#8A6A1C}
body.theme-wedding-light .prose strong{color:#241E1B}
body.theme-wedding-light .prose a{text-decoration-color:rgba(184,145,47,.6)}
body.theme-wedding-light .section-head p{color:#5A5149}

/* ---- Cards + modules ---- */
body.theme-wedding-light .card,
body.theme-wedding-light .dir-card{
  background:#fff;
  border:1px solid rgba(201,163,72,.28);
  box-shadow:0 10px 30px rgba(90,70,50,.09);
}
body.theme-wedding-light .card:hover,
body.theme-wedding-light .dir-card:hover{border-color:#C9A348;box-shadow:0 16px 40px rgba(90,70,50,.15)}
body.theme-wedding-light .card p,
body.theme-wedding-light .dir-card p{color:#5A5149}
body.theme-wedding-light .callout,
body.theme-wedding-light .messy,
body.theme-wedding-light .bottomline{
  background:#fff;border:1px solid rgba(201,163,72,.26);
  box-shadow:0 8px 24px rgba(90,70,50,.07);
}
body.theme-wedding-light .callout{border-left:3px solid #C9A348}
body.theme-wedding-light .messy{border-left:3px solid #8FA07E;background:#F6F8F3}
body.theme-wedding-light .messy h3{color:#5F6E51}
body.theme-wedding-light .bottomline{border-left:3px solid #D9A8A0;background:#FCF4F2}
body.theme-wedding-light .bottomline h3{color:#A9695C}
body.theme-wedding-light .callout p,
body.theme-wedding-light .messy p,
body.theme-wedding-light .bottomline p{color:#453D37}

body.theme-wedding-light .table-wrap{border-color:rgba(201,163,72,.28);background:#fff}
body.theme-wedding-light table.cmp thead th{background:#F6F1E7;color:#7C5F18}
body.theme-wedding-light table.cmp th,
body.theme-wedding-light table.cmp td{border-bottom-color:rgba(42,36,34,.1)}
body.theme-wedding-light table.cmp td{color:#5A5149}
body.theme-wedding-light table.cmp td:first-child{color:#241E1B}
body.theme-wedding-light table.cmp tbody tr:hover{background:#FBF6EE}
body.theme-wedding-light table.cmp caption{color:#6B6259}

body.theme-wedding-light .matrix-row{background:#fff;border-color:rgba(201,163,72,.24)}
body.theme-wedding-light .matrix-row .then{color:#453D37}
body.theme-wedding-light .matrix-row .if{color:#8A6A1C}
body.theme-wedding-light ul.routes li,
body.theme-wedding-light ul.specs li{background:#fff;border-color:rgba(201,163,72,.24);color:#3A332E}
body.theme-wedding-light ul.routes .dur,
body.theme-wedding-light ul.specs .k{color:#8A6A1C}
body.theme-wedding-light ul.specs .v{color:#3A332E}
body.theme-wedding-light ul.checks li{color:#453D37}
body.theme-wedding-light ul.checks svg{stroke:#A8873A}

/* ---- Buttons ---- */
body.theme-wedding-light .btn-gold{
  background:linear-gradient(120deg,#C9A348,#E3C77E);color:#2B2008;
  box-shadow:0 6px 18px rgba(201,163,72,.3);
}
body.theme-wedding-light .btn-gold:hover{box-shadow:0 12px 28px rgba(201,163,72,.42);color:#2B2008}
body.theme-wedding-light .btn-ghost{color:#3A332E;border-color:rgba(42,36,34,.3);background:rgba(255,255,255,.6)}
body.theme-wedding-light .btn-ghost:hover{border-color:#C9A348;color:#241E1B;background:#fff}

/* ---- Quote band + form ---- */
body.theme-wedding-light .quote-band{
  border-block:1px solid rgba(201,163,72,.28);
  background:
    radial-gradient(900px 400px at 50% 0%,rgba(233,213,210,.5),transparent 68%),
    #F8F3EC;
}
body.theme-wedding-light .quote-band p{color:#5A5149}
body.theme-wedding-light .quote-card{
  background:#fff;border:1px solid rgba(201,163,72,.34);
  box-shadow:0 22px 60px rgba(90,70,50,.14);
}
body.theme-wedding-light .quote-card .q-sub{color:#6B6259}
body.theme-wedding-light .q-progress span{background:rgba(42,36,34,.14)}
body.theme-wedding-light .q-steplabels span{color:#9A9089}
body.theme-wedding-light .q-steplabels span.on{color:#8A6A1C}
body.theme-wedding-light .field label,
body.theme-wedding-light .seg-legend{color:#3A332E}
body.theme-wedding-light .field input,
body.theme-wedding-light .field select{
  background:#FDFBF8;color:#241E1B;border-color:rgba(42,36,34,.24);
}
body.theme-wedding-light .field input::placeholder{color:#9A9089}
body.theme-wedding-light .segment label{background:#FDFBF8;border-color:rgba(42,36,34,.22);color:#5A5149}
body.theme-wedding-light .segment label:hover{border-color:#C9A348;color:#241E1B}
body.theme-wedding-light .segment input:checked+label{
  background:linear-gradient(120deg,#C9A348,#E3C77E);color:#2B2008;border-color:#C9A348;
}
body.theme-wedding-light .q-note{color:#6B6259}
body.theme-wedding-light .q-note svg{stroke:#A8873A}
body.theme-wedding-light .q-success p{color:#5A5149}
body.theme-wedding-light .q-success h3{color:#8A6A1C}

/* ---- FAQ ---- */
body.theme-wedding-light .faq-list details{background:#fff;border-color:rgba(201,163,72,.26)}
body.theme-wedding-light .faq-list summary{color:#241E1B}
body.theme-wedding-light .faq-list summary::after{color:#B8912F}
body.theme-wedding-light .faq-list details[open] summary{color:#8A6A1C}
body.theme-wedding-light .faq-body{color:#5A5149}

/* ---- Bands, related, footer ---- */
body.theme-wedding-light .band{border-block:1px solid rgba(201,163,72,.2);background:rgba(255,255,255,.45)}
body.theme-wedding-light .related a{background:#fff;border-color:rgba(201,163,72,.26);color:#3A332E}
body.theme-wedding-light .related a:hover{border-color:#C9A348;color:#8A6A1C}
body.theme-wedding-light .related a span{color:#B8912F}
body.theme-wedding-light .footer-cta{
  background:
    radial-gradient(700px 300px at 50% 0%,rgba(233,213,210,.55),transparent 70%),
    linear-gradient(180deg,#FDFBF8,#F5EFE6);
  border-top:1px solid rgba(201,163,72,.26);
}
body.theme-wedding-light .footer-cta p{color:#5A5149}
body.theme-wedding-light footer{background:#F3EDE4;border-top:1px solid rgba(201,163,72,.24)}
body.theme-wedding-light .foot-grid h3{color:#8A6A1C}
body.theme-wedding-light .foot-grid ul li a{color:#5A5149}
body.theme-wedding-light .foot-grid ul li a:hover{color:#241E1B}
body.theme-wedding-light .foot-brand p{color:#5A5149}
body.theme-wedding-light .legal{border-top-color:rgba(42,36,34,.12);color:#7B7269}
body.theme-wedding-light .legal a{color:#5A5149}

/* ---- Mobile bar + ADA ---- */
body.theme-wedding-light .mobile-bar{
  background:rgba(253,251,248,.97);
  border-top:1px solid rgba(201,163,72,.34);
  box-shadow:0 -6px 24px rgba(90,70,50,.1);
}
body.theme-wedding-light .mobile-bar .mb-call,
body.theme-wedding-light .mobile-bar .mb-text{border-color:rgba(42,36,34,.26);color:#3A332E}
body.theme-wedding-light .mobile-bar .mb-quote{background:linear-gradient(120deg,#C9A348,#E3C77E);color:#2B2008}
body.theme-wedding-light .ada-btn{background:#fff;border-color:#C9A348;box-shadow:0 8px 24px rgba(90,70,50,.18)}
body.theme-wedding-light .ada-btn svg{fill:#8A6A1C}
body.theme-wedding-light .ada-panel{background:#fff;border-color:rgba(201,163,72,.3);box-shadow:0 18px 50px rgba(90,70,50,.18)}
body.theme-wedding-light .ada-panel h3{color:#241E1B}
body.theme-wedding-light .ada-panel button{background:#FDFBF8;border-color:rgba(42,36,34,.18);color:#3A332E}
body.theme-wedding-light .ada-panel button[aria-pressed="true"]{border-color:#C9A348;color:#8A6A1C}
body.theme-wedding-light .skip-link{background:#C9A348;color:#2B2008}

/* ---- Botanical accents ---- */
.rose-rule{
  display:flex;align-items:center;gap:18px;margin:44px 0;
  color:#C9A348;
}
.rose-rule::before,.rose-rule::after{
  content:"";flex:1;height:1px;
  background:linear-gradient(90deg,transparent,rgba(201,163,72,.55),transparent);
}
.rose-rule svg{width:30px;height:30px;flex-shrink:0;fill:none;stroke:currentColor;stroke-width:1.3}

.photo-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:8px 0 0}
.photo-strip figure{margin:0;border-radius:var(--radius);overflow:hidden;position:relative;box-shadow:0 10px 30px rgba(90,70,50,.12)}
.photo-strip img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/3;transition:transform .5s ease}
.photo-strip figure:hover img{transform:scale(1.04)}
html.a11y-motion .photo-strip figure:hover img{transform:none}
.photo-strip figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:22px 16px 12px;
  font-family:var(--font-accent);font-size:.72rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:#fff;
  background:linear-gradient(transparent,rgba(30,22,18,.78));
}
/* 6 figures: 3 / 2 / 1 columns all divide evenly */
@media (max-width:1000px){.photo-strip{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.photo-strip{grid-template-columns:1fr}}

/* ---- Text-wrapped editorial figures ----
   Floats beside prose on desktop, stacks full width on narrow screens where
   a float would squeeze the copy into an unreadable column. */
.figure-float{
  margin:6px 0 22px;
  border-radius:var(--radius);
  overflow:hidden;
  position:relative;
  box-shadow:0 12px 34px rgba(90,70,50,.16);
  width:min(48%,340px);
}
.figure-float.right{float:right;margin-left:30px}
.figure-float.left{float:left;margin-right:30px}
.figure-float img{width:100%;height:auto;display:block;aspect-ratio:4/3;object-fit:cover}
.figure-float figcaption{
  padding:11px 14px;font-size:.78rem;line-height:1.45;
  color:var(--muted);background:rgba(255,255,255,.9);
  border-top:1px solid rgba(201,163,72,.28);
}
body:not(.theme-wedding-light) .figure-float figcaption{
  background:rgba(11,14,20,.9);border-top-color:var(--line);color:var(--muted);
}
/* Stop a float bleeding past its section */
.prose h2,.prose .rose-rule,.prose .table-wrap,.prose .matrix,
.prose .callout,.prose .messy,.prose .bottomline,.prose .photo-strip{clear:both}
@media (max-width:820px){
  .figure-float,.figure-float.left,.figure-float.right{
    float:none;width:100%;margin-left:0;margin-right:0;margin-bottom:26px;
  }
}

/* ---- Consent / acknowledgement checkboxes ---- */
.check-field{
  display:grid;grid-template-columns:22px 1fr;gap:13px;align-items:start;
  padding:16px 18px;margin-bottom:14px;
  border:1px solid rgba(216,216,218,.2);border-radius:12px;
  background:rgba(11,14,20,.55);
  transition:border-color .2s ease,background .2s ease;
}
.check-field:hover{border-color:rgba(201,163,72,.5)}
.check-field:has(input:checked){border-color:var(--gold);background:rgba(201,163,72,.07)}
.check-field input[type="checkbox"]{
  appearance:none;-webkit-appearance:none;
  width:22px;height:22px;margin:1px 0 0;border-radius:6px;cursor:pointer;
  border:1.5px solid rgba(216,216,218,.45);background:#0d1119;
  display:grid;place-content:center;flex-shrink:0;
}
.check-field input[type="checkbox"]::before{
  content:"";width:11px;height:11px;transform:scale(0);transition:transform .15s ease;
  box-shadow:inset 1em 1em var(--gold);
  clip-path:polygon(14% 44%,0 65%,50% 100%,100% 16%,80% 0,43% 62%);
}
.check-field input[type="checkbox"]:checked{border-color:var(--gold)}
.check-field input[type="checkbox"]:checked::before{transform:scale(1)}
.check-field input[type="checkbox"]:focus-visible{outline:2px solid var(--blue);outline-offset:3px}
.check-field label{
  font-family:var(--font-body);font-size:.88rem;font-weight:400;line-height:1.55;
  letter-spacing:normal;text-transform:none;color:var(--muted);cursor:pointer;margin:0;
}
.check-field label strong{color:var(--silver);font-weight:600}
.check-field label a{text-decoration:underline;text-underline-offset:2px}
.check-required{color:var(--gold);font-weight:700}

body.theme-wedding-light .check-field{background:#FDFBF8;border-color:rgba(42,36,34,.2)}
body.theme-wedding-light .check-field:has(input:checked){border-color:#C9A348;background:#FBF5E9}
body.theme-wedding-light .check-field input[type="checkbox"]{background:#fff;border-color:rgba(42,36,34,.35)}
body.theme-wedding-light .check-field label{color:#5A5149}
body.theme-wedding-light .check-field label strong{color:#241E1B}

/* ---- Footer address + CTA ---- */
.foot-brand address{
  font-style:normal;font-size:.86rem;line-height:1.6;color:var(--muted);
  margin:14px 0 16px;padding-left:14px;border-left:2px solid rgba(201,163,72,.45);
}
.foot-cta{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--font-accent);font-size:.74rem;font-weight:700;
  letter-spacing:.11em;text-transform:uppercase;color:var(--champagne);
}
.foot-cta span{transition:transform .25s ease;display:inline-block}
.foot-cta:hover span{transform:translateX(4px)}
.foot-grid{grid-template-columns:1.6fr 1fr 1fr 1fr}
@media (max-width:1080px){.foot-grid{grid-template-columns:1fr 1fr}}
@media (max-width:620px){.foot-grid{grid-template-columns:1fr}}
body.theme-wedding-light .foot-brand address{color:#5A5149;border-left-color:rgba(201,163,72,.6)}
body.theme-wedding-light .foot-cta{color:#8A6A1C}

/* Phase 2 destination directories are not built yet; show the label without
   linking so crawlers never hit a 404. */
.soon{opacity:.62;cursor:default}
.dir-card .soon,.related .soon{display:block}
.soon::after{content:" (coming soon)";font-size:.78em;letter-spacing:.04em;opacity:.8}

/* ============================================================
   NO DEAD COLUMNS
   A measure-limited .prose must never sit alone in a wide
   container leaving one side empty. If it has no rail beside it,
   it centres itself. Belt and braces for the layout rule.
   ============================================================ */
.wrap:not(.split) > .prose{margin-inline:auto}

/* Sticky image rail: fills the column beside long prose */
.rail-figure{
  border-radius:var(--radius);overflow:hidden;position:relative;
  border:1px solid var(--line);box-shadow:var(--shadow);margin:0 0 18px;
}
.rail-figure img{width:100%;height:100%;object-fit:cover;aspect-ratio:4/5;display:block}
.rail-figure figcaption{
  position:absolute;left:0;right:0;bottom:0;padding:26px 18px 14px;
  font-family:var(--font-accent);font-size:.72rem;font-weight:600;
  letter-spacing:.1em;text-transform:uppercase;color:#fff;
  background:linear-gradient(transparent,rgba(5,6,8,.86));
}
body.theme-wedding-light .rail-figure{border-color:rgba(201,163,72,.3)}
@media (max-width:1080px){
  .rail-figure img{aspect-ratio:16/9}
}

/* A directory card whose destination is not built yet: keeps the card
   treatment, drops the interactive affordances. */
.dir-card.is-soon{cursor:default;opacity:.85}
.dir-card.is-soon:hover{transform:none;border-color:var(--line);box-shadow:none}
.dir-card.is-soon .go{color:var(--muted)}
.dir-card .status{
  font-family:var(--font-accent);font-size:.64rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;color:var(--gold);
  display:block;margin-bottom:4px;
}
.dir-card.is-soon .status{color:var(--muted)}
/* Inline .soon inside prose or lists stays a plain label */
.dir-card .soon::after,.dir-card.is-soon::after{content:none}

/* ============================================================
   GRAND STRAND SCHEMATIC MAP
   Brand-native SVG rather than a third-party embed: no API key,
   no external request, and it inherits the theme.
   ============================================================ */
.strand-map-shell{
  border:1px solid var(--line);border-radius:var(--radius);
  background:linear-gradient(160deg,rgba(14,35,64,.35),rgba(11,14,20,.9));
  padding:clamp(14px,2vw,24px);box-shadow:var(--shadow);
}
.map-filters{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:16px}
.map-filter{
  font-family:var(--font-accent);font-size:.72rem;font-weight:700;
  letter-spacing:.11em;text-transform:uppercase;cursor:pointer;
  padding:9px 18px;border-radius:999px;
  border:1px solid rgba(216,216,218,.22);background:rgba(11,14,20,.6);color:var(--muted);
  transition:border-color .2s ease,color .2s ease,background .2s ease;
}
.map-filter:hover{border-color:var(--gold);color:var(--champagne)}
.map-filter.is-on{background:linear-gradient(120deg,var(--gold),var(--champagne));color:#171204;border-color:var(--gold)}

.strand-map{width:100%;height:auto;display:block;border-radius:10px;overflow:hidden}
.map-coast{fill:none;stroke:#C9A348;stroke-width:2.5;stroke-opacity:.85}
.map-hwy{fill:none;stroke:#D8D8DA;stroke-width:1.6;stroke-opacity:.4}
.map-river{fill:none;stroke:#3EB7FF;stroke-width:2;stroke-opacity:.32}
.map-ocean-label{
  fill:#3EB7FF;fill-opacity:.28;font-family:var(--font-accent);
  font-size:26px;font-weight:700;letter-spacing:.34em;
}
.map-hwy-label{fill:#D8D8DA;fill-opacity:.45;font-family:var(--font-accent);font-size:13px;letter-spacing:.2em}
.map-scale-label{fill:var(--muted);font-family:var(--font-body);font-size:13px}
.map-swell{pointer-events:none}

/* Markers */
.mk{cursor:pointer}
.mk circle{
  fill:#0d1119;stroke:#C9A348;stroke-width:2.5;
  transition:fill .2s ease,r .2s ease,stroke .2s ease;
}
.mk text{
  fill:var(--silver);font-family:var(--font-accent);font-size:14px;font-weight:600;
  letter-spacing:.04em;paint-order:stroke;stroke:#050608;stroke-width:4px;stroke-linejoin:round;
  transition:fill .2s ease;
}
.mk:hover circle,.mk:focus circle{fill:#C9A348;filter:url(#markerGlow)}
.mk:hover text,.mk:focus text{fill:#fff}
.mk:focus{outline:none}
.mk:focus-visible circle{stroke:#3EB7FF;stroke-width:3.5}
.mk-lg circle{stroke-width:3.5}
.mk-inland circle{stroke:#D8D8DA;stroke-dasharray:3 3}
.mk-inland:hover circle{fill:#D8D8DA;stroke-dasharray:none}
.mk-air circle{stroke:#3EB7FF;fill:#071322}
.mk-air text{fill:#8FCBF0;font-size:13px}
.mk-air:hover circle{fill:#3EB7FF}
.mk-air:hover text{fill:#fff}
.mk.is-dim{opacity:.16;pointer-events:none}
html.a11y-motion .mk circle,html.a11y-motion .mk text{transition:none}

.map-note{margin-top:14px;font-size:.82rem;color:var(--muted);line-height:1.6}

body.theme-wedding-light .strand-map-shell{background:#fff;border-color:rgba(201,163,72,.3)}
body.theme-wedding-light .map-filter{background:#FDFBF8;border-color:rgba(42,36,34,.2);color:#5A5149}
body.theme-wedding-light .map-note{color:#5A5149}

@media (max-width:620px){
  .map-ocean-label{font-size:20px}
  .mk text{font-size:17px}
  .mk-air text{font-size:16px}
}
