/* ============================================================
   LA CASA — proposed upgrade, motion pass
   Direction: "Atlantic dusk". Deep teal-ink, bone type, brass accent.

   Every effect here is transform/opacity only (compositor-cheap) and
   driven by native CSS scroll timelines — no GSAP, no Lenis, no
   ScrollTrigger. Total JS is a few kilobytes, not 150.
   ============================================================ */

@property --sweep { syntax:"<percentage>"; inherits:false; initial-value:0%; }

:root{
  --ink:#071A20; --ink-deep:#030F13; --surface:#0E2A32; --surface-2:#14363F;
  --line:#1E4650; --bone:#F2EADC; --bone-dim:#C6C0B4; --muted:#8AA3A6;
  --brass:#D6A354; --brass-deep:#A97B34; --surf:#57B7A6; --clay:#C2543A;
  --shadow:0 26px 70px rgba(0,0,0,.5); --shadow-sm:0 10px 28px rgba(0,0,0,.34);

  --display: Didot,"Bodoni MT","Hoefler Text","Playfair Display",Garamond,"Times New Roman",serif;
  --body:"Avenir Next",Avenir,"Segoe UI",Roboto,system-ui,-apple-system,sans-serif;
  --mono:ui-monospace,"SF Mono","IBM Plex Mono",Menlo,Consolas,monospace;

  /* The content column. A fixed 1200px stranded the whole site in the middle of
     a modern desktop — 353px of dead margin each side at 1920, 680 at 2560. It
     is fluid now: it fills 93% of the viewport until it reaches a width where
     card grids stop looking generous and start looking stretched. Reading
     measure is protected separately — every prose block is capped in `ch`, so a
     wider container widens the grids without lengthening a line of text. */
  --maxw:min(1560px, 93vw); --r:4px;
  /* slow, decelerating curves read expensive; snappy linear reads cheap */
  --ease:cubic-bezier(.16,1,.3,1);
  --ease-soft:cubic-bezier(.33,1,.68,1);
}
@media (prefers-color-scheme:light){
  :root{--ink:#F3EDE3;--ink-deep:#E9E0D1;--surface:#FFF;--surface-2:#F7F1E7;--line:#DDD2C1;
    --bone:#132229;--bone-dim:#41565E;--muted:#55666B;--brass:#7A5514;--brass-deep:#6E4E11;
    --surf:#1F7A69;--clay:#B14428;--shadow:0 22px 60px rgba(30,20,10,.14);--shadow-sm:0 8px 22px rgba(30,20,10,.1)}
}
:root[data-theme="light"]{--ink:#F3EDE3;--ink-deep:#E9E0D1;--surface:#FFF;--surface-2:#F7F1E7;--line:#DDD2C1;
  --bone:#132229;--bone-dim:#41565E;--muted:#55666B;--brass:#7A5514;--brass-deep:#6E4E11;
  --surf:#1F7A69;--clay:#B14428;--shadow:0 22px 60px rgba(30,20,10,.14);--shadow-sm:0 8px 22px rgba(30,20,10,.1)}
:root[data-theme="dark"]{--ink:#071A20;--ink-deep:#030F13;--surface:#0E2A32;--surface-2:#14363F;--line:#1E4650;
  --bone:#F2EADC;--bone-dim:#C6C0B4;--muted:#8AA3A6;--brass:#D6A354;--brass-deep:#A97B34;
  --surf:#57B7A6;--clay:#C2543A;--shadow:0 26px 70px rgba(0,0,0,.5);--shadow-sm:0 10px 28px rgba(0,0,0,.34)}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--ink);color:var(--bone);font-family:var(--body);line-height:1.62;
  -webkit-font-smoothing:antialiased;overflow-x:hidden}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{font-family:var(--display);font-weight:400;line-height:1.05;margin:0;text-wrap:balance;letter-spacing:-.012em}
p{margin:0}
/* Focus is VISIBLE and unmissable. The live site sets outline:none, which
   leaves a keyboard user with no idea where they are — a WCAG failure and,
   with EU guests booking, an EAA exposure. */
:focus-visible{outline:3px solid var(--brass);outline-offset:3px;border-radius:2px}

/* Skip link — first tab stop, hidden until focused */
.skip{position:absolute;left:-9999px;top:0;z-index:300;background:var(--brass);color:#0C1A20;
  padding:12px 20px;font-weight:600;font-size:14px;border-radius:0 0 var(--r) 0}
.skip:focus{left:0}

/* Every tap target clears 44px. 18 of 26 on the live site do not. */
.nav nav a{min-height:44px;display:inline-flex;align-items:center}
footer a{min-height:40px;display:flex;align-items:center}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 26px}
.eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:.2em;text-transform:uppercase;color:var(--brass);display:block}

/* ============ MOTION SYSTEM ============
   One reveal animation, driven by a view() timeline. No JS, no observer,
   runs on the compositor. Stagger comes from animation-delay via --i.      */
@keyframes rise{from{opacity:0;transform:translate3d(0,26px,0)}to{opacity:1;transform:none}}
@keyframes fade{from{opacity:0}to{opacity:1}}
@keyframes wipe{from{clip-path:inset(0 100% 0 0)}to{clip-path:inset(0 0 0 0)}}
@keyframes drift{from{transform:translate3d(0,var(--from,7%),0)}to{transform:translate3d(0,var(--to,-7%),0)}}
@keyframes grow{from{transform:scaleX(0)}to{transform:scaleX(1)}}
@keyframes marquee{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
/* Ken Burns: FINITE and zoom-OUT, not infinite alternate. An endless
   full-bleed recomposite keeps the GPU awake for the whole visit — a real
   battery cost for guests charging around load-shedding. Zoom-out also means
   the raster is never upscaled, so it stays sharp. */
@keyframes kenburns{from{transform:scale(1.14) translate3d(-1.2%,-1%,0)}to{transform:scale(1) translate3d(0,0,0)}}
/* two haze layers cross-fading on opacity alone — compositor-only "weather" */
@keyframes haze-a{0%,100%{opacity:.55;transform:translate3d(-2%,0,0) scale(1.05)}50%{opacity:.15;transform:translate3d(2%,-1%,0) scale(1.1)}}
@keyframes haze-b{0%,100%{opacity:.15;transform:translate3d(2%,-1%,0) scale(1.08)}50%{opacity:.5;transform:translate3d(-2%,1%,0) scale(1.03)}}
/* line-curtain: the signature luxury typographic reveal. Text stays at
   opacity 1 so it paints immediately — never fade LCP text in from zero. */
@keyframes curtain{from{transform:translate3d(0,110%,0)}to{transform:none}}
@keyframes glow{from{--sweep:0%}to{--sweep:100%}}

@supports (animation-timeline: view()){
  .r{animation:rise .9s var(--ease) both;animation-timeline:view();animation-range:entry 0% cover 34%}
  .r-fade{animation:fade 1s var(--ease-soft) both;animation-timeline:view();animation-range:entry 0% cover 30%}
  .r-wipe{animation:wipe 1.1s var(--ease) both;animation-timeline:view();animation-range:entry 6% cover 40%}
  /* parallax: element drifts against the scroll across its whole pass */
  .plx{animation:drift linear both;animation-timeline:view();animation-range:cover}
  .bar{animation:grow 1s var(--ease) both;animation-timeline:view();animation-range:entry 0% cover 30%;transform-origin:left}
}
/* Fallback for Firefox / older Safari: a tiny IntersectionObserver adds .in */
@supports not (animation-timeline: view()){
  .r,.r-fade,.r-wipe{opacity:0;transform:translate3d(0,26px,0);
    transition:opacity .9s var(--ease),transform .9s var(--ease)}
  .r.in,.r-fade.in,.r-wipe.in{opacity:1;transform:none}
}
.stagger > *{animation-delay:calc(var(--i,0) * 90ms)}
/* Reduced motion: REPLACE the movement with a quiet cross-fade rather than
   deleting it. Motion carries meaning here (what entered, what changed);
   stripping it entirely loses that, and a blanket kill switch also can't
   reach JS-driven motion. */
@media (prefers-reduced-motion:reduce){
  .r,.r-fade,.r-wipe,.chip,.w{animation:fade .28s linear both!important;transform:none!important}
  #sea,.ticker-track,.res .ph::before{animation:none!important}
  html{scroll-behavior:auto}
  .btn,.res,.voice,.area a,.gal figure{transition-duration:.01ms!important}
}

/* scroll progress — one element, scroll() timeline, zero JS */
.progress{position:fixed;top:0;left:0;height:2px;width:100%;transform-origin:left;z-index:200;
  background:linear-gradient(90deg,var(--brass),var(--surf));transform:scaleX(0)}
@supports (animation-timeline: scroll()){
  .progress{animation:grow linear both;animation-timeline:scroll(root)}
}

/* ---------- ribbon ---------- */
.ribbon{background:var(--surface-2);border-bottom:1px solid var(--line);font-size:12.5px;
  color:var(--bone-dim);text-align:center;padding:9px 20px}
.ribbon b{color:var(--bone);font-weight:600}
.ribbon .gif{font-family:var(--mono);font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--brass)}

/* ---------- header ---------- */
header{position:sticky;top:0;z-index:60;background:color-mix(in srgb,var(--ink) 84%,transparent);
  backdrop-filter:blur(14px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:20px;max-width:var(--maxw);
  margin:0 auto;padding:15px 26px}
.brand{display:flex;align-items:baseline;gap:11px}
.brand .mark{font-family:var(--display);font-size:25px;letter-spacing:.03em}
.brand .sub{font-family:var(--mono);font-size:9.5px;letter-spacing:.24em;text-transform:uppercase;color:var(--muted)}
.nav nav{display:flex;gap:26px}
.nav nav a{position:relative;font-size:13.5px;letter-spacing:.04em;color:var(--bone-dim);padding-bottom:3px;transition:color .3s var(--ease)}
.nav nav a::after{content:"";position:absolute;left:0;bottom:0;height:1px;width:100%;background:var(--brass);
  transform:scaleX(0);transform-origin:right;transition:transform .45s var(--ease)}
.nav nav a:hover{color:var(--bone)}
.nav nav a:hover::after{transform:scaleX(1);transform-origin:left}
@media (max-width:880px){.nav nav{display:none}}

.btn{position:relative;display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-family:var(--body);font-size:13.5px;font-weight:600;letter-spacing:.03em;padding:12px 22px;
  border:1px solid transparent;border-radius:var(--r);cursor:pointer;overflow:hidden;
  transition:transform .4s var(--ease),background .35s var(--ease),color .35s var(--ease),border-color .35s var(--ease)}
.btn-brass{background:var(--brass);color:#0C1A20;border-color:var(--brass)}
.btn-brass:hover{transform:translateY(-2px);background:var(--brass-deep);border-color:var(--brass-deep);color:#fff}
/* light sweeps across the button on hover — pure transform, no repaint */
.btn-brass::after{content:"";position:absolute;inset:0;transform:translateX(-101%);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.34),transparent);transition:transform .7s var(--ease)}
.btn-brass:hover::after{transform:translateX(101%)}
.btn-ghost{background:transparent;color:var(--bone);border-color:var(--line)}
.btn-ghost:hover{border-color:var(--brass);color:var(--brass);transform:translateY(-2px)}

/* ---------- hero ---------- */
.hero{position:relative;min-height:92vh;display:flex;align-items:flex-end;overflow:hidden;border-bottom:1px solid var(--line)}
#sea{position:absolute;inset:0;width:100%;height:100%;display:block;
  animation:kenburns 22s var(--ease-soft) forwards}
/* Weather: two haze layers drifting on transform + opacity only. This is what
   replaces the old per-frame canvas redraw — same sense of a living sea, but
   nothing runs on the main thread. */
.haze{position:absolute;inset:-6%;z-index:1;pointer-events:none;mix-blend-mode:screen}
.haze.a{animation:haze-a 34s ease-in-out infinite;
  background:radial-gradient(48% 34% at 68% 44%,rgba(214,163,84,.30),transparent 70%)}
.haze.b{animation:haze-b 46s ease-in-out infinite;
  background:radial-gradient(60% 30% at 30% 56%,rgba(87,183,166,.20),transparent 72%)}
:root[data-theme="light"] .haze{mix-blend-mode:multiply;opacity:.5}
.hero::after{content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(180deg,color-mix(in srgb,var(--ink) 58%,transparent) 0%,transparent 32%,
    color-mix(in srgb,var(--ink) 94%,transparent) 100%)}
.hero-in{position:relative;z-index:2;width:100%;max-width:var(--maxw);margin:0 auto;padding:0 26px 64px}
@supports (animation-timeline: view()){
  .hero-in{--from:0%;--to:-14%;animation:drift linear both;animation-timeline:view();animation-range:cover}
}
.hero h1{font-size:clamp(40px,7.4vw,92px);max-width:15ch;margin:16px 0 20px}
.hero h1 em{font-style:italic;color:var(--brass)}
/* Line-curtain reveal. The words are NEVER at opacity 0 — they are painted
   immediately and merely clipped by an overflow:hidden mask, so the largest
   text on the page is not delayed. Transform-only = compositor-only. */
.line{display:block;overflow:hidden;padding-bottom:.06em}
.line > span{display:inline-block;transform:translate3d(0,110%,0);
  animation:curtain .82s var(--ease) forwards;animation-delay:calc(var(--w) * .075s)}
.w{display:inline-block;opacity:0;animation:rise .8s var(--ease) forwards;
  animation-delay:calc(var(--w) * .08s)}
.hero p.lead{max-width:52ch;font-size:clamp(16px,1.7vw,18.5px);color:var(--bone-dim);
  opacity:0;animation:rise .8s var(--ease) .5s forwards}
.chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:26px}
.chip{font-family:var(--mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;padding:7px 13px;
  border:1px solid var(--line);border-radius:100px;color:var(--bone-dim);
  background:color-mix(in srgb,var(--surface) 58%,transparent);
  opacity:0;animation:rise .8s var(--ease) forwards;animation-delay:calc(1.05s + var(--i) * .1s)}
.chip b{color:var(--brass);font-weight:600}
.scroll-cue{position:absolute;right:26px;bottom:64px;z-index:3;writing-mode:vertical-rl;
  font-family:var(--mono);font-size:10px;letter-spacing:.22em;text-transform:uppercase;color:var(--muted);
  opacity:0;animation:fade 1s ease 1.6s forwards}
.scroll-cue::after{content:"";display:block;width:1px;height:46px;margin:12px auto 0;background:var(--line);
  position:relative;overflow:hidden}
@media (max-width:700px){.scroll-cue{display:none}}

/* ---------- ticker ---------- */
.ticker{overflow:hidden;border-bottom:1px solid var(--line);background:var(--surface);padding:13px 0}
.ticker-track{display:flex;gap:52px;width:max-content;animation:marquee 38s linear infinite}
.ticker:hover .ticker-track{animation-play-state:paused}
.ticker span{font-family:var(--mono);font-size:11.5px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted);white-space:nowrap;display:flex;align-items:center;gap:52px}
.ticker span::after{content:"◆";color:var(--brass);font-size:8px}

/* ---------- sections ---------- */
/* Vertical rhythm scales with the container, or a wider page reads as squashed. */
section{padding:clamp(72px,6.4vw,116px) 0}
.sec-head{max-width:60ch;margin-bottom:46px}
.sec-head h2{font-size:clamp(28px,4.2vw,48px);margin:12px 0 14px}
.sec-head p{color:var(--bone-dim);font-size:17px}

/* direct band */
.direct{background:var(--surface);border-block:1px solid var(--line);overflow:hidden}
.direct .wrap{display:grid;grid-template-columns:1.1fr .9fr;gap:46px;align-items:center}
.saving{display:flex;align-items:baseline;gap:14px;font-family:var(--display);
  font-size:clamp(40px,6.4vw,70px);color:var(--brass);font-variant-numeric:tabular-nums;line-height:1}
.saving small{font-family:var(--body);font-size:14px;color:var(--bone-dim)}
.compare{border:1px solid var(--line);border-radius:var(--r);overflow:hidden}
.compare > div{display:flex;justify-content:space-between;gap:16px;padding:15px 18px;font-size:14.5px}
.compare > div + div{border-top:1px solid var(--line)}
.compare .hi{position:relative;color:var(--bone);
  background:linear-gradient(90deg,color-mix(in srgb,var(--brass) 16%,transparent) var(--sweep),transparent var(--sweep));
  animation:glow 1.3s var(--ease) both;animation-timeline:view();animation-range:entry 0% cover 36%}
.compare .hi b{color:var(--brass)}
.compare span:last-child{font-family:var(--mono);font-variant-numeric:tabular-nums}
@media (max-width:900px){.direct .wrap{grid-template-columns:1fr;gap:32px}}

/* residences */
.res-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.res{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  display:flex;flex-direction:column;
  transition:transform .55s var(--ease),border-color .45s var(--ease),box-shadow .55s var(--ease)}
.res:hover{transform:translateY(-6px);border-color:var(--brass);box-shadow:var(--shadow-sm)}
.res .ph{aspect-ratio:4/3;position:relative;display:grid;place-items:center;overflow:hidden;
  background:linear-gradient(150deg,var(--surface-2),var(--ink-deep))}
.res .ph::before{content:"";position:absolute;inset:-6%;
  background:radial-gradient(120% 90% at 76% 18%,color-mix(in srgb,var(--brass) 17%,transparent),transparent 62%);
  transition:transform .9s var(--ease)}
.res:hover .ph::before{transform:scale(1.14)}
.res .ph > span.lbl{position:relative;z-index:2;font-family:var(--mono);font-size:10px;letter-spacing:.14em;
  text-transform:uppercase;color:var(--muted)}
.res .body{padding:19px 20px 21px;display:flex;flex-direction:column;gap:9px;flex:1}
.res h3{font-size:23px}
.res .meta{font-family:var(--mono);font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--muted)}
.res .foot{margin-top:auto;padding-top:13px;border-top:1px solid var(--line);display:flex;align-items:baseline;justify-content:space-between}
.res .price{font-family:var(--display);font-size:26px;font-variant-numeric:tabular-nums}
.res .price small{font-family:var(--body);font-size:12.5px;color:var(--muted)}
.res .go{font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--brass);
  display:inline-flex;gap:6px}
.res .go i{font-style:normal;transition:transform .45s var(--ease)}
.res:hover .go i{transform:translateX(5px)}
.avail{position:absolute;top:12px;left:12px;z-index:3;font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--surf);background:color-mix(in srgb,var(--ink) 74%,transparent);
  border:1px solid color-mix(in srgb,var(--surf) 40%,transparent);padding:5px 9px;border-radius:100px}
@media (max-width:960px){.res-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.res-grid{grid-template-columns:1fr}}

/* sticky storytelling — the power narrative */
.story{background:var(--ink-deep);border-block:1px solid var(--line)}
.story .wrap{display:grid;grid-template-columns:.85fr 1.15fr;gap:60px;align-items:start}
.story-sticky{position:sticky;top:120px}
.story-sticky h2{font-size:clamp(30px,4.4vw,54px)}
.story-steps{display:flex;flex-direction:column;gap:2px}
.story-step{padding:44px 0;border-bottom:1px solid var(--line)}
.story-step:first-child{padding-top:0}
.story-step .n{font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--brass)}
.story-step h3{font-size:26px;margin:10px 0 10px}
.story-step p{color:var(--bone-dim);font-size:15.5px;max-width:58ch}
.story-step .track{height:2px;background:var(--line);margin-top:20px;position:relative;overflow:hidden}
.story-step .track i{position:absolute;inset:0;background:var(--brass);transform-origin:left;transform:scaleX(0)}
@supports (animation-timeline: view()){
  .story-step .track i{animation:grow 1.2s var(--ease) both;animation-timeline:view();animation-range:entry 10% cover 46%}
}
@media (max-width:900px){.story .wrap{grid-template-columns:1fr;gap:30px}.story-sticky{position:static}}

/* calculator */
/* Capped independently of the container: stretched to a full 1560 it became a
   3.8:1 letterbox with the figures marooned at opposite ends of the screen. */
.calc{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);display:grid;
  grid-template-columns:.95fr 1.05fr;overflow:hidden;box-shadow:var(--shadow);
  max-width:1240px;margin-inline:auto}
.calc-in{padding:36px 34px;border-right:1px solid var(--line)}
.calc-out{padding:36px 34px;background:var(--ink-deep);display:flex;flex-direction:column;gap:18px}
.slider{width:100%;accent-color:var(--brass);margin-top:6px}
.seg{display:flex;gap:8px;margin-top:8px}
.seg button{flex:1;background:var(--ink);border:1px solid var(--line);color:var(--bone-dim);font-family:var(--body);
  font-size:14px;padding:11px;border-radius:var(--r);cursor:pointer;
  transition:border-color .35s var(--ease),color .35s var(--ease),background .35s var(--ease),transform .3s var(--ease)}
.seg button:hover{transform:translateY(-1px);color:var(--bone)}
.seg button[aria-pressed="true"]{border-color:var(--brass);color:var(--brass);
  background:color-mix(in srgb,var(--brass) 12%,transparent)}
.nights{font-family:var(--display);font-size:56px;font-variant-numeric:tabular-nums;line-height:1}
.nights small{font-family:var(--body);font-size:14px;color:var(--muted);margin-left:8px}
.tier{display:inline-block;font-family:var(--mono);font-size:11px;letter-spacing:.12em;text-transform:uppercase;
  color:var(--brass);border:1px solid color-mix(in srgb,var(--brass) 45%,transparent);padding:6px 11px;border-radius:100px;
  transition:opacity .3s var(--ease)}
.rows{display:flex;flex-direction:column;gap:11px;font-size:14.5px}
.rows > div{display:flex;justify-content:space-between;gap:16px;color:var(--bone-dim)}
.rows > div span:last-child{font-family:var(--mono);color:var(--bone);font-variant-numeric:tabular-nums}
.rows .total{border-top:1px solid var(--line);padding-top:13px;color:var(--bone);font-size:16px}
.rows .total span:last-child{font-family:var(--display);font-size:32px;color:var(--brass)}
.note{font-size:12.5px;color:var(--muted);line-height:1.5}
.savepill{align-self:flex-start;font-size:12.5px;color:var(--surf);
  border:1px solid color-mix(in srgb,var(--surf) 36%,transparent);padding:8px 13px;border-radius:100px;
  background:color-mix(in srgb,var(--surf) 9%,transparent)}
@media (max-width:880px){.calc{grid-template-columns:1fr}.calc-in{border-right:0;border-bottom:1px solid var(--line)}}

/* gallery */
.gal{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:clamp(160px,11.5vw,232px);gap:12px}
.gal figure{margin:0;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;position:relative;
  display:grid;place-items:center;cursor:pointer;background:linear-gradient(140deg,var(--surface-2),var(--ink-deep));
  transition:transform .6s var(--ease),border-color .4s var(--ease)}
.gal figure:hover{transform:scale(1.02);border-color:var(--brass);z-index:2}
.gal figure::after{content:"";position:absolute;inset:-8%;opacity:.5;transition:transform 1s var(--ease);
  background:radial-gradient(100% 80% at 30% 20%,color-mix(in srgb,var(--brass) 18%,transparent),transparent 60%)}
.gal figure:hover::after{transform:scale(1.16)}
.gal figure span{position:relative;z-index:2;font-family:var(--mono);font-size:10px;letter-spacing:.13em;
  text-transform:uppercase;color:var(--muted);text-align:center;padding:0 10px}
.gal .w2{grid-column:span 2}.gal .h2{grid-row:span 2}
@media (max-width:760px){.gal{grid-template-columns:repeat(2,1fr);grid-auto-rows:124px}}

/* voices */
.voices{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.voice{border:1px solid var(--line);border-radius:var(--r);padding:28px 26px;background:var(--surface);
  display:flex;flex-direction:column;gap:14px;transition:transform .55s var(--ease),border-color .45s var(--ease)}
.voice:hover{transform:translateY(-4px);border-color:var(--brass)}
.voice p{font-family:var(--display);font-size:19.5px;line-height:1.42;color:var(--bone)}
.voice .who{font-family:var(--mono);font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.stars{color:var(--brass);font-size:13px;letter-spacing:2px}
@media (max-width:880px){.voices{grid-template-columns:1fr}}

/* area */
.area{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.area a{border:1px solid var(--line);border-radius:var(--r);padding:24px 22px;background:var(--surface);
  display:flex;flex-direction:column;gap:7px;transition:transform .5s var(--ease),border-color .4s var(--ease)}
.area a:hover{border-color:var(--brass);transform:translateY(-4px)}
.area .d{font-family:var(--display);font-size:30px;color:var(--brass);font-variant-numeric:tabular-nums;line-height:1}
.area h3{font-size:18px}
.area p{font-size:13.5px;color:var(--bone-dim)}
@media (max-width:880px){.area{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.area{grid-template-columns:1fr}}

/* footer — rebuilt; see the FOOTER block at the end of this file */

/* booking bar */
.bookbar{position:sticky;top:61px;z-index:55;background:var(--surface);border-bottom:1px solid var(--line);box-shadow:var(--shadow-sm)}
.bb-in{max-width:var(--maxw);margin:0 auto;padding:13px 26px;display:grid;grid-template-columns:1fr 1fr 1fr auto;gap:14px;align-items:end}
.f{display:flex;flex-direction:column;gap:5px}
.f label{font-family:var(--mono);font-size:10px;letter-spacing:.15em;text-transform:uppercase;color:var(--muted)}
.f input,.f select{background:var(--ink);border:1px solid var(--line);color:var(--bone);font-family:var(--body);
  font-size:14.5px;padding:10px 12px;border-radius:var(--r);width:100%;transition:border-color .3s var(--ease)}
.f input:focus,.f select:focus{border-color:var(--brass);outline:none}
@media (max-width:820px){
  .bookbar{position:fixed;top:auto;bottom:0;left:0;right:0;border-top:1px solid var(--line);border-bottom:0}
  .bb-in{grid-template-columns:1fr 1fr;padding:11px 16px 14px;gap:9px}
  .bb-in .f:nth-child(3){display:none}
  .bb-in .btn{grid-column:1/-1;width:100%}
  body{padding-bottom:134px}
}

/* ---------- utility controls: theme, currency, data saver ---------- */
.utils{display:flex;align-items:center;gap:8px}
.util{min-width:44px;min-height:44px;display:inline-flex;align-items:center;justify-content:center;gap:6px;
  background:transparent;border:1px solid var(--line);border-radius:var(--r);color:var(--bone-dim);
  font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;padding:0 11px;
  cursor:pointer;transition:color .3s var(--ease),border-color .3s var(--ease),transform .3s var(--ease)}
.util:hover{color:var(--brass);border-color:var(--brass);transform:translateY(-1px)}
.util[aria-pressed="true"]{color:var(--brass);border-color:var(--brass);
  background:color-mix(in srgb,var(--brass) 10%,transparent)}
@media (max-width:880px){.utils .lbl{display:none}}
/* At phone width the header was cramming a two-line wordmark, two toggles and
   a wrapping CTA into one row. Give the brand room and shorten the CTA. */
@media (max-width:560px){
  .nav{padding:11px 16px;gap:10px}
  .brand{flex-direction:column;align-items:flex-start;gap:1px}
  .brand .mark{font-size:21px;white-space:nowrap}
  .brand .sub{font-size:8.5px;letter-spacing:.18em}
  .utils{gap:6px}
  .util{padding:0 9px;min-width:40px}
  .utils .btn{padding:11px 14px;font-size:12.5px;white-space:nowrap}
  .utils .btn .full{display:none}
}

/* ---------- enquiry form ---------- */
.enq{display:grid;grid-template-columns:1.05fr .95fr;gap:40px;align-items:start}
.form-card{background:var(--surface);border:1px solid var(--line);border-radius:var(--r);
  padding:34px 32px;box-shadow:var(--shadow)}
.frow{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.fg{display:flex;flex-direction:column;gap:6px}
.fg.full{grid-column:1/-1}
.fg label{font-family:var(--mono);font-size:10.5px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.fg label .req{color:var(--brass)}
.fg input,.fg select,.fg textarea{background:var(--ink);border:1px solid var(--line);color:var(--bone);
  font-family:var(--body);font-size:15px;padding:13px 14px;border-radius:var(--r);width:100%;
  min-height:48px;transition:border-color .3s var(--ease),background .3s var(--ease)}
.fg textarea{min-height:96px;resize:vertical}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--brass);outline:none;
  box-shadow:0 0 0 3px color-mix(in srgb,var(--brass) 22%,transparent)}
.fg .hint{font-size:12px;color:var(--muted)}
.fg input:user-invalid{border-color:var(--clay)}
.fg input:user-invalid ~ .hint{color:var(--clay)}
.aside-card{border:1px solid var(--line);border-radius:var(--r);padding:28px 26px;background:var(--ink-deep);
  display:flex;flex-direction:column;gap:18px}
.aside-card h3{font-size:22px}
.steps{display:flex;flex-direction:column;gap:15px}
.steps > div{display:flex;gap:13px;align-items:flex-start}
.steps .num{flex:0 0 30px;height:30px;border-radius:50%;display:grid;place-items:center;
  border:1px solid color-mix(in srgb,var(--brass) 46%,transparent);color:var(--brass);
  font-family:var(--mono);font-size:12px}
.steps b{display:block;font-size:14.5px;color:var(--bone)}
.steps p{font-size:13px;color:var(--bone-dim)}
@media (max-width:900px){.enq{grid-template-columns:1fr;gap:26px}.frow{grid-template-columns:1fr}}

/* ---------- FAQ (native details = accessible + zero JS) ---------- */
.faq{max-width:820px;margin:0 auto;border-top:1px solid var(--line)}
.faq details{border-bottom:1px solid var(--line)}
.faq summary{list-style:none;cursor:pointer;padding:22px 44px 22px 0;position:relative;
  font-family:var(--display);font-size:20px;min-height:44px;display:flex;align-items:center;
  transition:color .3s var(--ease)}
.faq summary::-webkit-details-marker{display:none}
.faq summary:hover{color:var(--brass)}
.faq summary::after{content:"";position:absolute;right:8px;top:50%;width:13px;height:13px;
  border-right:1.5px solid var(--brass);border-bottom:1.5px solid var(--brass);
  transform:translateY(-60%) rotate(45deg);transition:transform .4s var(--ease)}
.faq details[open] summary::after{transform:translateY(-30%) rotate(-135deg)}
.faq .ans{padding:0 0 24px;color:var(--bone-dim);font-size:15.5px;max-width:66ch;
  animation:rise .5s var(--ease) both}

/* ---------- WhatsApp float (mobile) ---------- */
.wa{position:fixed;right:16px;bottom:150px;z-index:58;width:56px;height:56px;border-radius:50%;
  background:var(--surf);color:#04231D;display:none;place-items:center;box-shadow:var(--shadow);
  transition:transform .4s var(--ease)}
.wa:hover{transform:scale(1.06)}
.wa svg{width:28px;height:28px}
@media (max-width:820px){.wa{display:grid}}

/* ---------- data-saver mode ---------- */
:root[data-saver="on"] #sea,:root[data-saver="on"] .haze{display:none}
:root[data-saver="on"] .hero{background:linear-gradient(170deg,var(--surface-2),var(--ink-deep))}
:root[data-saver="on"] .ticker-track{animation:none}
.saver-note{display:none;font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--surf)}
:root[data-saver="on"] .saver-note{display:inline}

/* lightbox */
.lb{position:fixed;inset:0;z-index:210;background:color-mix(in srgb,var(--ink-deep) 93%,transparent);
  display:none;place-items:center;padding:30px;backdrop-filter:blur(8px)}
.lb[open]{display:grid;animation:fade .3s ease both}
.lb .panel{max-width:820px;width:100%;background:var(--surface);border:1px solid var(--line);border-radius:var(--r);
  padding:32px 34px;box-shadow:var(--shadow);animation:rise .5s var(--ease) both}
.lb h3{font-size:26px;margin-bottom:10px}
.lb p{color:var(--bone-dim);font-size:15px}

/* ---- tap-target cleanup (audit: 18/26 under 44px on the old live site) ---- */
.seg button{min-height:44px}
.brand{min-height:44px}
/* the range track was a 16px tap strip; give the control real height while
   leaving the visual track thin */
.slider{height:44px;padding:0;background:transparent}
.slider::-webkit-slider-runnable-track{height:4px;border-radius:2px;background:var(--line)}
.slider::-moz-range-track{height:4px;border-radius:2px;background:var(--line)}
.slider::-webkit-slider-thumb{-webkit-appearance:none;width:22px;height:22px;border-radius:50%;
  background:var(--brass);border:0;margin-top:-9px;cursor:pointer}
.slider::-moz-range-thumb{width:22px;height:22px;border-radius:50%;background:var(--brass);
  border:0;cursor:pointer}

/* ============================================================
   HERO IMAGE RAIL — a continuous strip drifting left behind the
   headline. Pure transform on a duplicated track, so it is
   compositor-only and seamless. Photos drop straight in; until they
   arrive each tile renders as a toned panel.
   ============================================================ */
.rail{position:absolute;left:0;right:0;bottom:0;z-index:2;padding-bottom:26px;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.rail-track{display:flex;gap:14px;width:max-content;animation:rail 64s linear infinite;will-change:transform}
.rail:hover .rail-track{animation-play-state:paused}
@keyframes rail{from{transform:translate3d(0,0,0)}to{transform:translate3d(-50%,0,0)}}
.rail figure{margin:0;flex:0 0 auto;width:270px;aspect-ratio:4/3;border-radius:6px;overflow:hidden;
  border:1px solid color-mix(in srgb,var(--bone) 14%,transparent);position:relative;
  background:linear-gradient(150deg,var(--surface-2),var(--ink-deep));
  box-shadow:0 14px 40px rgba(0,0,0,.34);transition:transform .6s var(--ease)}
.rail figure:hover{transform:translateY(-6px) scale(1.02)}
.rail figure img{width:100%;height:100%;object-fit:cover}
.rail figure::after{content:"";position:absolute;inset:0;
  background:radial-gradient(120% 90% at 70% 20%,color-mix(in srgb,var(--brass) 18%,transparent),transparent 62%)}
.rail figure figcaption{position:absolute;left:11px;bottom:10px;z-index:2;font-family:var(--mono);
  font-size:9.5px;letter-spacing:.13em;text-transform:uppercase;color:var(--bone-dim);
  background:color-mix(in srgb,var(--ink) 66%,transparent);padding:5px 9px;border-radius:100px}
@media (max-width:760px){.rail figure{width:190px}.rail-track{animation-duration:46s}}
@media (prefers-reduced-motion:reduce){.rail-track{animation:none}.rail{overflow-x:auto}}
:root[data-saver="on"] .rail-track{animation:none}
:root[data-saver="on"] .rail{overflow-x:auto}

/* ============================================================
   LOCATION & ROUTE
   ============================================================ */
.loc-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:38px;align-items:start}
.mapcard{border:1px solid var(--line);border-radius:var(--r);overflow:hidden;background:var(--ink-deep);
  box-shadow:var(--shadow)}
.mapcard svg{display:block;width:100%;height:auto}
/* the route draws itself in as the map scrolls into view */
.route{stroke-dasharray:1000;stroke-dashoffset:1000}
@supports (animation-timeline: view()){
  .route{animation:draw 1.4s var(--ease) both;animation-timeline:view();animation-range:entry 12% cover 46%}
}
@supports not (animation-timeline: view()){ .route{stroke-dashoffset:0} }
@keyframes draw{to{stroke-dashoffset:0}}
.pin{transform-box:fill-box;transform-origin:center}
@keyframes pulse{0%,100%{opacity:.25;r:11}50%{opacity:0;r:20}}
.pin-halo{animation:pulse 2.8s ease-in-out infinite}
@media (prefers-reduced-motion:reduce){.pin-halo{animation:none}}

.legs{display:flex;flex-direction:column;gap:12px}
.leg{display:flex;align-items:center;gap:15px;border:1px solid var(--line);border-radius:var(--r);
  padding:16px 18px;background:var(--surface);transition:transform .45s var(--ease),border-color .4s var(--ease)}
.leg:hover{transform:translateX(4px);border-color:var(--brass)}
.leg .t{flex:0 0 auto;font-family:var(--display);font-size:26px;color:var(--brass);
  font-variant-numeric:tabular-nums;min-width:76px}
.leg b{display:block;font-size:15px}
.leg p{font-size:13px;color:var(--bone-dim)}
.dir-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.addr{margin-top:18px;padding:16px 18px;border:1px dashed var(--line);border-radius:var(--r);
  font-size:14.5px;color:var(--bone-dim);display:flex;justify-content:space-between;gap:14px;align-items:center}
.addr button{background:transparent;border:1px solid var(--line);color:var(--bone-dim);cursor:pointer;
  font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;
  padding:9px 12px;border-radius:var(--r);min-height:44px;transition:.3s var(--ease)}
.addr button:hover{color:var(--brass);border-color:var(--brass)}
.mapload{display:grid;place-items:center;padding:26px;border-top:1px solid var(--line);text-align:center}
.mapload p{font-size:13px;color:var(--muted);margin-bottom:12px;max-width:44ch}
.mapframe{width:100%;height:420px;border:0;display:block}
@media (max-width:920px){.loc-grid{grid-template-columns:1fr;gap:26px}}

/* ---- hero must reserve room for the rail, or the rail sits on the copy ---- */
.hero{min-height:100svh}
.hero-in{padding-bottom:262px}
.hero .scroll-cue{bottom:250px}
@media (max-width:760px){
  .hero-in{padding-bottom:206px}
  .hero .scroll-cue{display:none}
}
@media (max-height:680px){
  .hero-in{padding-bottom:230px}
  .hero h1{font-size:clamp(32px,6vw,54px)}
}

/* ---- logo lockup: coral mark stays brand, wordmark follows the theme ---- */
.logo-mark{display:block;color:var(--bone)}
.logo-mark svg{display:block;height:44px;width:auto}
.brand{gap:0;align-items:center}
.brand .sub{display:none}          /* the lockup already carries the descriptor */
@media (max-width:560px){.logo-mark svg{height:36px}}

/* ============================================================
   HERO SLIDESHOW — backdrop and copy change together
   Crossfade on opacity only; the old headline is never faded from
   zero on first paint, so LCP is untouched.
   ============================================================ */
.slides{position:absolute;inset:0;z-index:1}
.slide{position:absolute;inset:0;opacity:0;transition:opacity 1.15s var(--ease-soft)}
.slide.on{opacity:1}
.slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;
  background-repeat:no-repeat;transform:scale(1.06);transition:transform 8s linear}
.slide.on .slide-bg{transform:scale(1)}
/* Generated backdrops until photographs land — one per slide, distinct.
   These MUST set background-image, not the `background` shorthand: the
   shorthand resets background-size to `auto` and background-repeat to
   `repeat`, and since the photo arrives as an inline background-image on the
   same element, a real photograph then painted at its natural size and TILED —
   a hard vertical seam down the hero at the image's own width. */
.slide[data-i="0"] .slide-bg{background-image:
  radial-gradient(60% 44% at 74% 38%,rgba(214,163,84,.34),transparent 66%),
  linear-gradient(180deg,#0A2831,#14404A 44%,#0B2A33 55%,#030F13)}
.slide[data-i="1"] .slide-bg{background-image:
  radial-gradient(52% 40% at 26% 34%,rgba(214,163,84,.26),transparent 64%),
  linear-gradient(160deg,#123039,#0C2630 52%,#05161B)}
.slide[data-i="2"] .slide-bg{background-image:
  radial-gradient(48% 36% at 62% 28%,rgba(240,96,95,.24),transparent 62%),
  linear-gradient(190deg,#10333B,#0A2630 50%,#04141A)}
.slide[data-i="3"] .slide-bg{background-image:
  radial-gradient(56% 42% at 40% 46%,rgba(87,183,166,.22),transparent 66%),
  linear-gradient(200deg,#0D2E37,#0A2731 54%,#031218)}
.hero-copy{position:relative;min-height:clamp(230px,32vh,340px)}
.hcopy{position:absolute;inset:0;opacity:0;transform:translate3d(0,14px,0);pointer-events:none;
  transition:opacity .7s var(--ease),transform .7s var(--ease)}
.hcopy.on{opacity:1;transform:none;pointer-events:auto}
/* the first slide's copy must paint immediately — never delay the LCP text */
.hcopy[data-i="0"]{transition:none}
.hcopy[data-i="0"].on{opacity:1;transform:none}
.dots{display:flex;gap:9px;margin-top:24px}
.dot{width:44px;height:44px;display:grid;place-items:center;background:none;border:0;cursor:pointer;padding:0}
.dot i{display:block;width:34px;height:2px;background:color-mix(in srgb,var(--bone) 26%,transparent);
  transition:background .4s var(--ease),transform .4s var(--ease)}
.dot.on i{background:var(--brass);transform:scaleY(2)}
.dot:hover i{background:var(--bone-dim)}
@media (prefers-reduced-motion:reduce){
  .slide{transition:none}.hcopy{transition:none}.slide-bg{transition:none;transform:none}
}
:root[data-saver="on"] .slide-bg{transition:none;transform:none}
@media (max-width:760px){.hero-copy{min-height:clamp(250px,42vh,380px)}}

/* Slide 0 shows the drawn sea rather than a flat gradient — the canvas sits
   behind the slide stack, so letting slide 0 be transparent keeps the
   animated Atlantic as the first impression and the others fade over it. */
.slide[data-i="0"] .slide-bg{background-image:none}
#sea{z-index:0}

/* Stack the slide copy in ONE grid cell instead of absolutely positioning it
   inside a guessed min-height. The container then sizes itself to the tallest
   slide automatically, so no slide can ever overlap the chips below — which a
   fixed clamp could not guarantee across four different headlines, two themes
   and every viewport. */
.hero-copy{display:grid;min-height:0}
.hcopy{position:static;grid-area:1/1}
.mapviews{display:flex;gap:9px;flex-wrap:wrap;justify-content:center}
.mapbtn[aria-pressed="true"]{border-color:var(--brass);color:var(--brass);
  background:color-mix(in srgb,var(--brass) 12%,transparent)}

/* ---- transfer add-on ---- */
.transfer{border:1px solid var(--line);border-radius:var(--r);padding:18px 18px 6px;
  margin-bottom:18px;background:color-mix(in srgb,var(--brass) 5%,transparent)}
.transfer .frow{margin-bottom:8px}
.transfer-note{margin:4px 0 14px}

/* ============================================================
   AUDIT FIXES — measured findings, 2026-07-25
   ============================================================ */

/* ---- 1. HERO COPY MUST NOT FOLLOW THE THEME ----
   The hero backdrop is ALWAYS dark, but the copy inherited --bone, which
   inverts to #132229 in light mode. Measured result: h1 at 1.06–1.09:1
   against its own backdrop — invisible. And light is what any visitor with a
   light OS sees. The hero therefore carries its own fixed inks. */
.hero{--hero-ink:#F2EADC;--hero-ink-dim:#C6C0B4;--hero-accent:#D6A354}
.hero h1{color:var(--hero-ink)}
.hero h1 em,.hero .eyebrow,.hero .chip b,.hero .dot.on i{color:var(--hero-accent)}
.hero .dot.on i{background:var(--hero-accent)}
.hero p.lead{color:var(--hero-ink-dim)}
.hero .chip{color:var(--hero-ink-dim);background:rgba(14,42,50,.58);
  border-color:rgba(242,234,220,.18)}
.hero .dot i{background:rgba(242,234,220,.26)}
.hero .scroll-cue{color:rgba(242,234,220,.55)}

/* ---- 2. THE SCRIM WAS PAINTING UNDERNEATH THE SLIDES ----
   .hero::after had z-index:auto while .slides and .haze carry z-index:1, so
   the scrim that keeps the copy legible was occluded on 3 of 4 slides — and
   its var(--ink) colour inverted to near-WHITE in light mode. Now above the
   backdrop, and hard-coded dark so it cannot invert. */
.hero::after{z-index:2;background:
  linear-gradient(90deg,rgba(3,15,19,.80),rgba(3,15,19,.55) 45%,rgba(3,15,19,0) 72%),
  linear-gradient(180deg,rgba(3,15,19,.70),rgba(3,15,19,.28) 26%,rgba(3,15,19,.60))}
.hero-in{z-index:3}
.rail{z-index:3}

/* ---- 3. THE EYEBROW WAS 100% CLIPPED ----
   .hero-in ran `drift` on a view() timeline, but .hero{overflow:hidden} makes
   .hero the scroll container, so the timeline froze at 50% and applied a
   permanent translateY(-65px) — pushing the eyebrow above the hero's top edge
   where overflow:hidden ate it. `exit` resolves to no transform at scroll 0
   and still drifts as the hero leaves. */
@supports (animation-timeline: view()){
  .hero-in{animation-range:exit}
}
.hero-in{padding-top:clamp(24px,4vh,52px)}
/* 900px-tall laptops were the crush case; the old guard at 680px never fired */
@media (max-height:940px){
  .hero h1{font-size:clamp(34px,4.6vw,64px)}
  .hero-in{padding-bottom:224px}
}

/* ---- 4. GLOW WAS BLOWING OUT BODY COPY AT 375px (3.02:1) ---- */
@keyframes haze-a{0%,100%{opacity:.30;transform:translate3d(-2%,0,0) scale(1.05)}
  50%{opacity:.10;transform:translate3d(2%,-1%,0) scale(1.1)}}

/* ---- 5. THE SHOWCASE HAD NO CSS AT ALL ----
   Zero of 322 rules matched .sc-*. The tiles were bare <figure>s at 20:1 with
   UA margins — which is exactly why they read as unfinished rather than
   designed. This is the framed gallery. */
.sc-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:44px;align-items:start}
.sc-tiles{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.sc-tile{margin:0;position:relative;aspect-ratio:4/3;display:grid;place-items:end start;
  border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  background:linear-gradient(140deg,var(--surface-2),var(--ink-deep));
  transition:transform .6s var(--ease),border-color .45s var(--ease)}
.sc-tile::before{content:"";position:absolute;inset:-10%;transition:transform .9s var(--ease);
  background:radial-gradient(110% 85% at 30% 18%,
    color-mix(in srgb,var(--tone,var(--brass)) 20%,transparent),transparent 62%)}
.sc-tile:hover{transform:translateY(-4px);border-color:var(--brass)}
.sc-tile:hover::before{transform:scale(1.14)}
.sc-tile img{width:100%;height:100%;object-fit:cover;grid-area:1/1}
.sc-tile > span{position:relative;z-index:2;margin:0 0 12px 13px;
  font-family:var(--mono);font-size:9.5px;letter-spacing:.14em;text-transform:uppercase;
  color:var(--bone-dim);background:color-mix(in srgb,var(--ink) 62%,transparent);
  padding:6px 10px;border-radius:100px;line-height:1.3}
.sc-tile > span b{color:var(--bone);font-weight:600;letter-spacing:.1em}
.sc-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:15px}
.sc-list li{display:flex;flex-direction:column;gap:2px;padding-bottom:14px;
  border-bottom:1px solid var(--line)}
.sc-list li:last-child{border-bottom:0}
.sc-list strong{font-size:15px;color:var(--bone)}
.sc-list span{font-size:13.5px;color:var(--bone-dim)}
@media (max-width:1024px){.sc-grid{grid-template-columns:1fr;gap:28px}
  .sc-tiles{grid-template-columns:repeat(3,1fr)}}
@media (max-width:620px){.sc-tiles{grid-template-columns:repeat(2,1fr)}}

/* tiles reveal in sequence like everything else on the site */
.sc-tile:nth-child(1){--i:0}.sc-tile:nth-child(2){--i:1}
.sc-tile:nth-child(3){--i:2}.sc-tile:nth-child(4){--i:3}
.sc-tile:nth-child(5){--i:4}.sc-tile:nth-child(6){--i:5}
.sc-tile:nth-child(7){--i:6}.sc-tile:nth-child(8){--i:7}
@supports (animation-timeline: view()){
  .sc-tile{animation:rise .9s var(--ease) both;animation-timeline:view();
    animation-range:entry 0% cover 30%;animation-delay:calc(var(--i,0) * 70ms)}
}
@media (prefers-reduced-motion:reduce){.sc-tile{animation:none}}

/* ---- 6. LOGO ---- */
/* The coral failed 3:1 on the light header (2.76:1). --clay is already defined
   per theme and passes on both grounds; a CSS fill beats the SVG's
   presentation attribute, so no markup change is needed. */
:root{--logo-coral:#B14428}
:root[data-theme="dark"]{--logo-coral:#F0605F}
@media (prefers-color-scheme:dark){:root{--logo-coral:#F0605F}}
:root[data-theme="light"]{--logo-coral:#B14428}
.logo-mark svg > g:first-of-type{fill:var(--logo-coral)}
/* "FURNISHED APARTMENTS" rendered at 4.13px — an illegible smear. Suppress it
   at header sizes; the footer lockup is large enough to carry it. */
.logo-mark svg text:last-of-type{display:none}
footer .fbrand .logo-mark svg text:last-of-type{display:block}
@media (min-width:561px){.logo-mark svg{height:52px}}

/* ---- 7. NO NAVIGATION AT ALL BETWEEN 375px AND 880px ----
   .nav nav was display:none with no hamburger anywhere, so the five pages were
   reachable only from the footer. Keep them as a scrollable rail instead. */
@media (max-width:880px){
  .nav nav{display:flex;order:3;flex-basis:100%;gap:6px;overflow-x:auto;
    scrollbar-width:none;-webkit-overflow-scrolling:touch;
    padding-top:4px;margin-top:2px;border-top:1px solid var(--line)}
  .nav nav::-webkit-scrollbar{display:none}
  .nav{flex-wrap:wrap}
  .nav nav a{white-space:nowrap;font-size:13px;padding:0 10px}
}
/* current page was never indicated — the underline machinery only fired on hover */
.nav nav a[aria-current="page"]{color:var(--bone)}
.nav nav a[aria-current="page"]::after{transform:scaleX(1);transform-origin:left}

/* ---- 8. DISPLAY SERIF INHERITED THE BODY'S 1.62 LINE-HEIGHT ----
   Only h1/h2/h3 got 1.05, so every other serif-set element sat in a box ~1.6x
   its own size, loosening the vertical rhythm everywhere. */
.res .price,.rows .total span:last-child,.fbrand .mark,.leg .t,.faq summary,
.nights,.saving,.area .d{line-height:1.04}

/* ---- 9. WIDOWS — the hero lead ended on the single word "water." ---- */
p,li,dd,.ans,summary{text-wrap:pretty}
.hero p.lead{text-wrap:balance}

/* ---- 10. the fixed book bar was covering the last row of content ---- */
@media (max-width:820px){footer{padding-bottom:calc(144px + 28px)}}

/* The rail sits ON the permanently-dark hero, so like the hero copy it must not
   follow the theme — its tiles were inheriting --surface-2/--ink-deep and
   inverting to near-white boxes against a dark backdrop in light mode. */
.rail figure{background:linear-gradient(150deg,#14363F,#061A20);
  border-color:rgba(242,234,220,.14)}
.rail figure figcaption{color:#C6C0B4;background:rgba(6,20,26,.7)}

/* The hero is theme-independent: fixed inks, hard-coded scrim, dark sea. The
   haze must follow suit or light mode gets a multiply blend over a dark
   backdrop, which is what made the light hero look wrong. */
:root[data-theme="light"] .haze{mix-blend-mode:screen;opacity:1}
@media (prefers-color-scheme:light){:root:not([data-theme="dark"]) .haze{mix-blend-mode:screen;opacity:1}}
/* real photographs sit under the scrim, so they need no theme handling */
.slide-bg{background-size:cover;background-position:center}
.rail figure img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.rail figure figcaption{z-index:2}
.res .ph img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}
.sc-tile img{position:absolute;inset:0}
.sc-tile:not(.sc-empty)::before{display:none}
.sc-tile:not(.sc-empty) > span{background:rgba(6,20,26,.72)}
.mapframe{width:100%;height:clamp(400px,30vw,560px);border:0;display:block;background:var(--ink-deep)}
@media (max-width:760px){.mapframe{height:340px}}

/* ============================================================
   PROPERTY SHOWCASE — one large stage instead of eight thumbnails
   At 177px a photograph is a swatch, not a selling image. The stage
   fills the column (~700px at 1440) and cycles.
   ============================================================ */
.sc-viewer{display:flex;flex-direction:column;gap:12px}
.sc-stage{position:relative;aspect-ratio:16/10;border:1px solid var(--line);
  border-radius:var(--r);overflow:hidden;background:var(--ink-deep);box-shadow:var(--shadow)}
.sc-slide{position:absolute;inset:0;margin:0;opacity:0;display:grid;place-items:center;
  transition:opacity 1s var(--ease-soft);pointer-events:none}
.sc-slide.on{opacity:1;pointer-events:auto}
.sc-slide img{width:100%;height:100%;object-fit:cover;display:block;
  transform:scale(1.04);transition:transform 7s linear}
.sc-slide.on img{transform:scale(1)}
/* slots still waiting on a photograph read as art direction, not a broken box */
.sc-slide.sc-empty{background:
  radial-gradient(90% 70% at 32% 22%,color-mix(in srgb,var(--tone) 22%,transparent),transparent 64%),
  linear-gradient(150deg,var(--surface-2),var(--ink-deep))}
.sc-await{font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;
  color:var(--muted)}
.sc-caption{position:absolute;left:0;right:0;bottom:0;z-index:3;display:flex;
  align-items:baseline;justify-content:space-between;gap:16px;padding:44px 22px 18px;
  background:linear-gradient(180deg,transparent,rgba(3,15,19,.85));pointer-events:none}
.sc-caption b{font-family:var(--display);font-size:clamp(20px,2.4vw,30px);color:#F2EADC;
  line-height:1.04;font-weight:400}
.sc-caption span{font-family:var(--mono);font-size:11px;letter-spacing:.14em;color:#C6C0B4}
.sc-arrow{position:absolute;top:50%;transform:translateY(-50%);z-index:4;width:46px;height:46px;
  display:grid;place-items:center;border:1px solid rgba(242,234,220,.22);border-radius:50%;
  background:rgba(3,15,19,.5);color:#F2EADC;font-size:24px;line-height:1;cursor:pointer;
  backdrop-filter:blur(6px);opacity:0;transition:opacity .35s var(--ease),background .3s,transform .3s}
.sc-stage:hover .sc-arrow,.sc-arrow:focus-visible{opacity:1}
.sc-arrow:hover{background:rgba(3,15,19,.78);transform:translateY(-50%) scale(1.06)}
.sc-arrow.prev{left:14px}.sc-arrow.next{right:14px}
@media (hover:none){.sc-arrow{opacity:1}}
/* thin progress bar shows the auto-advance without shouting */
.sc-bar{position:absolute;left:0;right:0;bottom:0;height:2px;z-index:5;
  background:rgba(242,234,220,.14)}
.sc-bar i{display:block;height:100%;width:0;background:var(--brass)}

.sc-thumbs{display:grid;grid-template-columns:repeat(8,1fr);gap:8px}
.sc-thumb{position:relative;aspect-ratio:4/3;padding:0;border:1px solid var(--line);
  border-radius:3px;overflow:hidden;cursor:pointer;background:
  linear-gradient(150deg,var(--surface-2),var(--ink-deep));
  transition:border-color .35s var(--ease),transform .35s var(--ease),opacity .35s}
.sc-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.sc-thumb span{position:absolute;inset:0;display:grid;place-items:center;padding:2px;
  font-family:var(--mono);font-size:7.5px;letter-spacing:.06em;text-transform:uppercase;
  color:var(--bone-dim);text-align:center;background:rgba(3,15,19,.42)}
.sc-thumb img + span{opacity:0;transition:opacity .3s}
.sc-thumb:hover img + span{opacity:1}
.sc-thumb:hover{transform:translateY(-2px);border-color:var(--brass)}
.sc-thumb.on{border-color:var(--brass);box-shadow:0 0 0 1px var(--brass)}
.sc-thumb:not(.on){opacity:.62}
@media (max-width:1024px){.sc-thumbs{grid-template-columns:repeat(4,1fr)}}
@media (max-width:520px){.sc-thumbs{grid-template-columns:repeat(4,1fr);gap:6px}
  .sc-stage{aspect-ratio:4/3}}
@media (prefers-reduced-motion:reduce){
  .sc-slide,.sc-slide img{transition:none}.sc-bar{display:none}
}

/* place-items:center on the slide left the image auto-sized, so height:100%
   resolved to its NATURAL height (993px for a portrait source) and it simply
   overflowed the stage top-aligned — which is why object-position appeared to
   do nothing and every portrait photo showed sky. Pin the image to the box so
   object-fit/object-position actually govern the crop. */
.sc-slide{display:block}
.sc-slide.sc-empty{display:grid;place-items:center}
.sc-slide img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}

/* ============================================================
   HERO / RAIL BALANCE
   The rail was 270px tiles reserving 262px of hero height — it ate the
   photograph it was supposed to complement. Smaller tiles, less reserved
   height, and the strip fades into the hero instead of sitting on it as a
   solid band.
   ============================================================ */
.rail{padding-bottom:20px}
.rail figure{width:184px;border-radius:5px;opacity:.92}
.rail figure:hover{opacity:1}
.rail-track{gap:11px}
.rail figure figcaption{font-size:8.5px;padding:4px 8px;left:8px;bottom:7px}
/* soften the strip into the backdrop, top and sides */
.rail::before{content:"";position:absolute;left:0;right:0;top:-46px;height:46px;z-index:1;
  pointer-events:none;background:linear-gradient(180deg,transparent,rgba(3,15,19,.42))}
.hero-in{padding-bottom:186px}
.hero .scroll-cue{bottom:176px}
@media (max-height:940px){.hero-in{padding-bottom:172px}}
@media (max-width:760px){
  .rail figure{width:132px}
  .hero-in{padding-bottom:150px}
}
/* a taller stage on big screens so the photograph actually reads */
@media (min-width:1200px){.hero{min-height:104svh}}

/* ============================================================
   RESPONSIVE / COMPATIBILITY CLOSE-OUT
   ============================================================ */

/* The one tap target still failing at every width: the residence card's
   "Enquire" link was 65x18. Give it a real hit area without changing how it
   looks — the row already has the space. */
.res .go{min-height:44px;display:inline-flex;align-items:center;padding-left:6px}
.res .foot{padding-top:8px}

/* color-mix() is Chrome 111 / Safari 16.2 / Firefox 113. Where it fails the
   declaration is dropped and the surface goes transparent, which would be very
   visible on the sticky header and the hero chips. Declare a solid fallback
   first so an older browser lands on something sensible rather than nothing. */
header{background:#071A20;background:color-mix(in srgb,var(--ink) 84%,transparent)}
:root[data-theme="light"] header{background:#F3EDE3;
  background:color-mix(in srgb,var(--ink) 84%,transparent)}
@media (prefers-color-scheme:light){
  :root:not([data-theme="dark"]) header{background:#F3EDE3;
    background:color-mix(in srgb,var(--ink) 84%,transparent)}
}
.hero .chip{background:rgba(14,42,50,.58)}
.sc-tile > span{background:rgba(6,20,26,.72)}
.sc-caption span,.rail figure figcaption{background:rgba(6,20,26,.7)}

/* svh is Chrome 108 / Safari 15.4; vh is the universal fallback and only
   differs by the mobile browser chrome. */
.hero{min-height:100vh;min-height:100svh}
@media (min-width:1200px){.hero{min-height:104vh;min-height:104svh}}

/* aspect-ratio has a fallback path for anything older than Chrome 88 */
@supports not (aspect-ratio: 16/10){
  .sc-stage{height:460px}
  .sc-thumb{height:64px}
  .res .ph{height:210px}
}

/* ============================================================
   FAQ — RESTRUCTURED (2026-07-25)
   Was: one centred 820px stack of six accordions, undifferentiated at the
   end of a long page. Now: a sticky category rail beside four numbered
   groups, closing on an action.

   Native <details> is retained wholesale — the list keeps the .faq and .ans
   classes above, so chevron, focus ring, keyboard toggle and the text-wrap
   pass are inherited rather than re-implemented. Only the width assumptions
   of the old single column are overridden, and .faq.faq-list is used rather
   than .faq-list alone so the override wins on specificity, not source order.
   ============================================================ */

/* -- the list, inside a group rather than alone in the page -- */
.faq.faq-list{max-width:none;margin:0}
.faq-list summary{font-size:18.5px;padding:18px 40px 18px 0}
.faq-list summary::after{right:6px;width:11px;height:11px}
/* Reading measure is protected in ch, so widening the container never
   lengthens a line. */
.faq-list .ans{max-width:65ch;font-size:15px;padding-bottom:20px}
.faq-list details:last-child{border-bottom:0}

/* -- rail + groups -- */
.faq-grid{display:grid;grid-template-columns:minmax(230px,.68fr) minmax(0,2fr);
  gap:clamp(30px,4.4vw,72px);align-items:start}

.faq-rail{position:sticky;top:92px}
.faq-rail .sec-head{max-width:32ch;margin-bottom:28px}
.faq-rail .sec-head h2{font-size:clamp(26px,3.1vw,42px)}
.faq-rail .sec-head p{font-size:14.5px;max-width:36ch}

/* Jump links, not filters — anchors need no JavaScript and survive with it off. */
.faq-index{display:flex;flex-direction:column;border-top:1px solid var(--line)}
.faq-index a{display:flex;align-items:center;gap:13px;min-height:52px;padding:10px 2px;
  border-bottom:1px solid var(--line);color:var(--bone-dim);
  transition:color .35s var(--ease),padding-left .35s var(--ease)}
.faq-index a:hover{color:var(--brass);padding-left:8px}
.fx-n{font-family:var(--mono);font-size:10.5px;letter-spacing:.16em;color:var(--brass);opacity:.85}
.fx-l{flex:1;font-size:14.5px;line-height:1.3}
.fx-c{font-family:var(--mono);font-size:10.5px;color:var(--muted);line-height:1;
  border:1px solid var(--line);border-radius:100px;padding:5px 9px}

.faq-groups{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(30px,3.2vw,58px) clamp(30px,3.4vw,60px)}
/* sticky header clearance for the rail's jump links */
.faq-group{scroll-margin-top:100px;min-width:0}
.faq-gh{display:grid;grid-template-columns:auto minmax(0,1fr);gap:5px 12px;
  align-items:baseline;padding-bottom:12px}
.faq-n{font-family:var(--mono);font-size:11px;letter-spacing:.16em;color:var(--brass)}
.faq-gh h3{font-size:clamp(19px,1.55vw,24px);letter-spacing:-.008em}
.faq-gn{grid-column:2;font-size:12.5px;color:var(--muted);line-height:1.5}

/* -- closing call to action -- */
.faq-cta{margin-top:clamp(48px,5vw,80px);position:relative;overflow:hidden;
  border:1px solid var(--line);border-radius:var(--r);background:var(--surface-2);
  padding:clamp(26px,3vw,46px);display:grid;grid-template-columns:1.25fr .75fr;
  gap:clamp(22px,3vw,48px);align-items:center}
.faq-cta::before{content:"";position:absolute;left:0;top:0;bottom:0;width:2px;
  background:var(--brass);opacity:.8}
.faq-cta h3{font-size:clamp(23px,2.6vw,34px);margin:12px 0;max-width:20ch}
.faq-cta p{color:var(--bone-dim);font-size:15px;max-width:56ch}
.faq-cta-act{display:flex;flex-direction:column;gap:12px}
.faq-cta-act .btn{width:100%;min-height:48px}
.faq-cta-act .note{text-align:center}
.faq-cta-act .note a{color:var(--brass);
  border-bottom:1px solid color-mix(in srgb,var(--brass) 40%,transparent)}
.faq-cta-act .note a:hover{border-bottom-color:var(--brass)}

/* -- collapse -- */
/* Two columns of groups stop earning their keep once each is under ~46ch. */
@media (max-width:1280px){.faq-groups{grid-template-columns:minmax(0,1fr)}}
@media (max-width:1024px){
  .faq-grid{grid-template-columns:minmax(0,1fr);gap:30px}
  .faq-rail{position:static}
  .faq-rail .sec-head{max-width:60ch;margin-bottom:22px}
  .faq-rail .sec-head p{max-width:60ch;font-size:16px}
  /* the index becomes a row of pills rather than a vertical list */
  .faq-index{flex-direction:row;flex-wrap:wrap;gap:9px;border-top:0}
  .faq-index a{min-height:44px;padding:0 15px;gap:9px;border:1px solid var(--line);
    border-radius:100px}
  .faq-index a:hover{padding-left:15px;border-color:var(--brass)}
  .fx-l{flex:0 1 auto}
  .fx-c{border:0;padding:0}
  .faq-cta{grid-template-columns:minmax(0,1fr)}
}
@media (max-width:620px){
  .faq-list summary{font-size:17px;padding:17px 34px 17px 0}
  .faq-cta{padding:24px 20px}
  .faq-cta h3{max-width:none}
}

/* The .ans open-animation predates the reduced-motion pass above and was never
   covered by it — a translate on every disclosure. Swap it for a fade. */
@media (prefers-reduced-motion:reduce){
  .faq-index a{transition-duration:.01ms!important}
  .faq-list .ans{animation:fade .2s linear both!important;transform:none!important}
}

/* ============================================================
   FINDING US — full-width stack: film band · landscape map · legs
   Supersedes .loc-grid / .mapcard / .mapload / .legs / .leg /
   .dir-actions / .addr, which were used by that section and nothing else.
   Everything here is namespaced .lcx-* so it cannot reach them.
   ============================================================ */
.lcx-stack{display:grid;gap:clamp(20px,2.4vw,36px)}

/* ---- the film band ---------------------------------------------------
   One frame, full width, landscape at every size. The still, the drawn
   illustration and the video occupy the same box, so the band never changes
   height when footage arrives — no layout shift, and no empty state. */
.lcx-film{margin:0}
.lcx-frame{position:relative;width:100%;height:clamp(300px,44vw,620px);
  border:1px solid var(--line);border-radius:var(--r) var(--r) 0 0;overflow:hidden;
  background:linear-gradient(162deg,#14363F,#061A20);box-shadow:var(--shadow);isolation:isolate}
.lcx-art{position:absolute;inset:0;z-index:0;width:100%;height:100%;display:block}
.lcx-poster{position:absolute;inset:0;z-index:2;width:100%;height:100%;
  object-fit:cover;display:block}
.lcx-video{position:absolute;inset:0;z-index:3;width:100%;height:100%;
  object-fit:cover;display:block;background:#030F13;
  opacity:0;visibility:hidden;transition:opacity .5s var(--ease-soft),visibility .5s}
.lcx-frame.is-playing .lcx-video{opacity:1;visibility:visible}

/* A very slow wash of light, only on the drawn frame — it keeps the
   illustration from reading as a static graphic. Transform and opacity only. */
.lcx-drawn::after{content:"";position:absolute;inset:-22%;z-index:1;pointer-events:none;
  background:radial-gradient(38% 46% at 60% 42%,rgba(214,163,84,.16),transparent 70%);
  animation:lcx-drift 26s var(--ease-soft) infinite alternate}
@keyframes lcx-drift{from{transform:translate3d(-2%,1%,0) scale(1)}
  to{transform:translate3d(3%,-2%,0) scale(1.08)}}

/* The frame always carries fixed light copy on a fixed dark scrim — the same
   decision already taken for the hero and the hero rail, and for the same
   reason: theme-following inks invert to near-invisible over it. */
.lcx-scrim{position:absolute;inset:0;z-index:4;pointer-events:none;
  background:linear-gradient(180deg,rgba(3,15,19,.14) 0%,rgba(3,15,19,.44) 46%,rgba(3,15,19,.88) 100%);
  transition:opacity .5s var(--ease-soft)}
.lcx-frame.is-playing .lcx-scrim{opacity:0}

.lcx-cover{position:absolute;left:0;right:0;bottom:0;z-index:5;
  display:grid;gap:6px;padding:clamp(18px,2.6vw,36px);pointer-events:none;
  transition:opacity .5s var(--ease-soft),visibility .5s}
.lcx-frame.is-playing .lcx-cover{opacity:0;visibility:hidden}
.lcx-eyebrow{font-family:var(--mono);font-size:11px;letter-spacing:.2em;
  text-transform:uppercase;color:#D6A354;display:block}
.lcx-cover h3{font-family:var(--display);font-weight:400;color:#F2EADC;
  font-size:clamp(21px,2.9vw,38px);line-height:1.04;margin:0;max-width:22ch}
.lcx-cover p{margin:2px 0 0;color:#C6C0B4;font-size:clamp(13px,1.05vw,15.5px);max-width:54ch}

/* Play control. It is an anchor to the file, so it works with JavaScript off;
   the script upgrades it to inline playback. 74px minimum, well past 44. */
.lcx-play{position:absolute;left:50%;top:44%;z-index:6;
  transform:translate(-50%,-50%);
  width:clamp(74px,7vw,96px);height:clamp(74px,7vw,96px);border-radius:50%;
  display:grid;place-items:center;color:#0C1A20;background:#D6A354;
  border:1px solid #D6A354;box-shadow:0 16px 44px rgba(0,0,0,.46);
  transition:transform .45s var(--ease),background .35s var(--ease),opacity .4s var(--ease)}
.lcx-play svg{width:26px;height:26px;margin-left:4px;position:relative;z-index:1}
.lcx-play:hover{background:#E4B76D;transform:translate(-50%,-50%) scale(1.06)}
.lcx-play::after{content:"";position:absolute;inset:-11px;border-radius:50%;
  border:1px solid rgba(214,163,84,.5);
  animation:lcx-ring 3.2s var(--ease-soft) infinite}
@keyframes lcx-ring{0%{transform:scale(.86);opacity:.85}70%{transform:scale(1.24);opacity:0}
  100%{transform:scale(1.24);opacity:0}}
.lcx-frame.is-playing .lcx-play{opacity:0;visibility:hidden}

/* Waiting on footage — the site's own established idiom, stated once and
   quietly, with the illustration carrying the frame. */
.lcx-await{position:absolute;left:50%;top:46%;z-index:6;transform:translate(-50%,-50%);
  font-family:var(--mono);font-size:11px;letter-spacing:.18em;text-transform:uppercase;
  color:#C6C0B4;white-space:nowrap;border:1px solid rgba(242,234,220,.22);
  border-radius:100px;padding:11px 20px;background:rgba(3,15,19,.4)}

.lcx-fcap{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;
  gap:12px 20px;padding:15px 18px;background:var(--surface);
  border:1px solid var(--line);border-top:0;border-radius:0 0 var(--r) var(--r)}
.lcx-fcap .note{flex:1 1 320px;min-width:0;max-width:76ch}
.lcx-cta{flex:0 0 auto;min-height:44px}

/* ---- map, full width and landscape ---- */
.lcx-map{border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  background:var(--ink-deep);box-shadow:var(--shadow)}
.lcx-bar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;
  gap:10px 18px;padding:13px 16px;background:var(--surface);border-bottom:1px solid var(--line)}
.lcx-bar .mapviews{justify-content:flex-start}
.lcx-bar .mapbtn{min-height:44px;padding:11px 17px;font-size:12.5px}
.lcx-bar .note{flex:0 1 auto;text-align:right;max-width:48ch}
/* wider than the shared .mapframe clamp: this frame now owns the whole column,
   and 2.8:1 at 1560px was reading as a letterbox rather than a map */
.lcx-map .mapframe{height:clamp(360px,32vw,620px);border-radius:0}

/* ---- the legs, read across instead of down ---- */
.lcx-legs{list-style:none;margin:0;padding:0;display:grid;gap:14px;
  grid-template-columns:repeat(auto-fit,minmax(min(236px,100%),1fr))}
.lcx-leg{min-width:0;border:1px solid var(--line);border-radius:var(--r);
  padding:20px 20px 18px;background:var(--surface);
  transition:transform .45s var(--ease),border-color .4s var(--ease)}
.lcx-leg:hover{transform:translateY(-3px);border-color:var(--brass)}
.lcx-t{display:block;font-family:var(--display);font-size:clamp(26px,2.5vw,34px);
  line-height:1.02;color:var(--brass);font-variant-numeric:tabular-nums;margin-bottom:10px}
.lcx-leg b{display:block;font-size:15px;margin-bottom:4px}
.lcx-leg p{font-size:13.5px;color:var(--bone-dim);line-height:1.5}

/* ---- address + deep links, one horizontal band ---- */
.lcx-foot{display:flex;flex-wrap:wrap;align-items:stretch;gap:12px 18px}
.lcx-addr{flex:1 1 380px;min-width:0;margin:0;display:flex;flex-wrap:wrap;
  align-items:center;gap:8px 14px;padding:13px 16px;border:1px dashed var(--line);
  border-radius:var(--r);font-size:14.5px;color:var(--bone-dim)}
.lcx-addr > span{min-width:0;overflow-wrap:anywhere}
.lcx-alabel{flex:0 0 auto;font-family:var(--mono);font-size:10px;letter-spacing:.18em;
  text-transform:uppercase;color:var(--muted)}
.lcx-addr button{margin-left:auto;background:transparent;border:1px solid var(--line);
  color:var(--bone-dim);cursor:pointer;font-family:var(--mono);font-size:10.5px;
  letter-spacing:.1em;text-transform:uppercase;padding:9px 14px;border-radius:var(--r);
  min-height:44px;transition:.3s var(--ease)}
.lcx-addr button:hover{color:var(--brass);border-color:var(--brass)}
.lcx-acts{display:flex;flex-wrap:wrap;align-items:center;gap:10px}
.lcx-acts .btn{min-height:44px}
.lcx-late{margin-top:2px}

/* ---- narrow ---- */
@media (max-width:760px){
  .lcx-frame{height:clamp(260px,62vw,380px)}
  .lcx-bar{justify-content:center}
  .lcx-bar .note{flex:1 1 100%;text-align:center;order:2}
  .lcx-map .mapframe{height:340px}
}
@media (max-width:640px){
  .lcx-cover p{display:none}
  .lcx-fcap{justify-content:center}
  .lcx-cta{width:100%}
  .lcx-acts{width:100%}
  .lcx-acts .btn{flex:1 1 100%}
  .lcx-addr button{margin-left:0;width:100%}
}

/* ---- data saver: the still is the only byte this band can cost, so drop it.
   The drawn frame underneath is inline and already paid for. ---- */
:root[data-saver="on"] .lcx-poster{display:none}
:root[data-saver="on"] .lcx-play::after,
:root[data-saver="on"] .lcx-drawn::after{animation:none}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion:reduce){
  .lcx-play::after,.lcx-drawn::after{animation:none}
  .lcx-leg,.lcx-play,.lcx-scrim,.lcx-cover,.lcx-video{transition-duration:.01ms}
}

/* ============================================================
   ENQUIRY RIGHT RAIL — everything beneath "What happens next".
   Namespaced .enq-rail / .lcw-* so nothing here can reach any existing rule.
   The rail reads as one column of cards in the same register as .aside-card:
   --ink-deep panel, --line hairline, which keeps it legible on every section
   background the rail is used against (--ink on home, --surface on contact).
   ============================================================ */
.enq-rail{display:flex;flex-direction:column;gap:22px;min-width:0}
.enq-rail > *{min-width:0}

/* ---------- the arrival reel ---------- */
.lcw{border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  background:var(--ink-deep);box-shadow:var(--shadow-sm)}
/* aspect-ratio sets the box before any pixel arrives, so there is no layout
   shift; max-height stops a 700px-wide rail on a 2560 display turning one
   photograph into a billboard. */
.lcw-stage{position:relative;aspect-ratio:4/3;max-height:440px;overflow:hidden;
  background:linear-gradient(150deg,var(--surface-2),var(--ink-deep))}
.lcw-shot{position:absolute;inset:0;margin:0;opacity:0;
  transition:opacity 1s var(--ease-soft)}
.lcw-shot.on{opacity:1}
.lcw-shot img{width:100%;height:100%;object-fit:cover}
.lcw-eyebrow{position:absolute;left:12px;top:12px;z-index:2;font-family:var(--mono);
  font-size:9.5px;letter-spacing:.16em;text-transform:uppercase;color:var(--bone);
  background:color-mix(in srgb,var(--ink-deep) 74%,transparent);
  border:1px solid color-mix(in srgb,var(--bone) 18%,transparent);
  padding:5px 10px;border-radius:100px;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px)}

.lcw-under{padding:14px 16px 10px;border-top:1px solid var(--line);background:var(--ink-deep)}
.lcw-caps{position:relative;min-height:76px}
.lcw-cap{position:absolute;inset:0;opacity:0;pointer-events:none;
  transition:opacity .5s var(--ease-soft)}
.lcw-cap.on{opacity:1}
.lcw-cap b{display:block;font-family:var(--display);font-size:17px;color:var(--bone);line-height:1.2}
.lcw-cap span{display:block;font-size:13px;color:var(--bone-dim);line-height:1.45;margin-top:4px}

/* Controls appear only once the script has taken charge — without JS the reel
   is one honest still photograph, not a row of dead buttons. */
.lcw-dots{display:none;flex-wrap:wrap;gap:2px;margin-top:4px}
.lcw.lcw-live .lcw-dots{display:flex}
.lcw-dot{appearance:none;-webkit-appearance:none;background:none;border:0;padding:0;
  width:34px;height:44px;display:grid;place-items:center;cursor:pointer}
.lcw-dot i{display:block;width:22px;height:2px;border-radius:2px;
  background:color-mix(in srgb,var(--bone) 26%,transparent);
  transition:background .4s var(--ease),transform .4s var(--ease)}
.lcw-dot:hover i{background:var(--bone-dim)}
.lcw-dot.on i{background:var(--brass);transform:scaleY(2.5)}

/* ---------- welcome film (inert until a clip exists) ---------- */
.lcw-film{margin:0;border:1px solid var(--line);border-radius:var(--r);overflow:hidden;
  background:var(--ink-deep);box-shadow:var(--shadow-sm)}
.lcw-film video{display:block;width:100%;aspect-ratio:16/9;object-fit:cover;background:#000}
.lcw-film figcaption{padding:13px 16px;border-top:1px solid var(--line)}
.lcw-film figcaption b{display:block;font-family:var(--display);font-size:17px;color:var(--bone)}
.lcw-film figcaption span{display:block;font-size:12.5px;color:var(--muted);margin-top:2px}

/* ---------- the reassurance card ---------- */
.lcw-trust{border:1px solid var(--line);border-radius:var(--r);padding:26px 24px 24px;
  background:var(--ink-deep);box-shadow:var(--shadow-sm)}
.lcw-trust h3{font-size:21px;margin:9px 0 18px}
.lcw-ledger{margin:0;display:flex;flex-direction:column;gap:14px}
.lcw-ledger > div{position:relative;padding-left:24px}
.lcw-ledger > div::before{content:"";position:absolute;left:3px;top:4px;width:6px;height:11px;
  border-right:1.6px solid var(--brass);border-bottom:1.6px solid var(--brass);
  transform:rotate(42deg)}
.lcw-ledger dt{font-size:14.5px;color:var(--bone);font-weight:600;line-height:1.35}
.lcw-ledger dd{margin:3px 0 0;font-size:13px;color:var(--bone-dim);line-height:1.5}

.lcw-lbl{display:block;font-family:var(--mono);font-size:10px;letter-spacing:.15em;
  text-transform:uppercase;color:var(--muted);margin:22px 0 10px}
.lcw-chips{list-style:none;margin:0;padding:0;display:flex;flex-wrap:wrap;gap:7px}
.lcw-chips li{font-size:12px;color:var(--bone-dim);line-height:1.3;
  border:1px solid var(--line);border-radius:100px;padding:6px 11px;
  background:color-mix(in srgb,var(--brass) 6%,transparent)}

.lcw-transfer{margin-top:20px;padding-top:17px;border-top:1px solid var(--line)}
.lcw-transfer b{display:block;color:var(--bone);font-size:14.5px;margin-bottom:3px}
.lcw-transfer span{display:block;font-size:13px;color:var(--bone-dim);line-height:1.55}
.lcw-jump{display:inline-flex;align-items:center;min-height:44px;background:none;border:0;
  padding:0;cursor:pointer;font-family:var(--mono);font-size:11px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--brass);
  box-shadow:inset 0 -1px 0 color-mix(in srgb,var(--brass) 40%,transparent);
  transition:color .3s var(--ease),box-shadow .3s var(--ease)}
.lcw-jump:hover{color:var(--brass-deep);box-shadow:inset 0 -1px 0 var(--brass-deep)}

/* the field the jump lands on, briefly ringed so the eye finds it */
.lcw-flash{animation:lcw-ring 1.3s var(--ease) both}
@keyframes lcw-ring{
  0%,100%{box-shadow:0 0 0 0 color-mix(in srgb,var(--brass) 0%,transparent)}
  25%    {box-shadow:0 0 0 4px color-mix(in srgb,var(--brass) 38%,transparent)}
}

/* ---------- mobile: the rail stacks under the form ----------
   Order matters more than layout here. The card stays first so the WhatsApp
   button and the address are still the next thing under the form; the plain-
   terms card follows because it is the cheapest, highest-value block; the
   photographs go last, where they cost a scroll rather than a decision. */
@media (max-width:900px){
  .enq-rail{gap:18px}
  .enq-rail > .aside-card{order:1}
  .enq-rail > .lcw-trust{order:2;padding:22px 20px}
  .enq-rail > .lcw-film{order:3}
  .enq-rail > .lcw{order:4}
  .lcw-stage{aspect-ratio:16/10;max-height:300px}
}
@media (max-width:420px){
  .lcw-caps{min-height:92px}
  .lcw-cap b{font-size:16px}
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion:reduce){
  .lcw-shot,.lcw-cap,.lcw-dot i{transition:none!important}
  .lcw-flash{animation:none!important}
}

/* ---------- data saver ----------
   Belt and braces: the script already withholds every frame but the one on
   screen, and display:none guarantees a lazy image is never fetched even if
   the script does not run. */
:root[data-saver="on"] .lcw-shot:not(.on) img{display:none}
:root[data-saver="on"] .lcw-shot,:root[data-saver="on"] .lcw-cap{transition:none}
:root[data-saver="on"] .lcw-under .saver-note{display:block;margin-top:8px}

/* ============================================================
   FOOTER — enterprise rebuild
   Supersedes the four-column stub (removed above). Five zones: a
   verified-facts strip, a brand/place column, two link navs, a
   contact column, and the legal bar.

   Rules of the room:
   · every colour is a token, so light and dark both work with no
     second palette;
   · every grid child gets min-width:0 and every minmax() is
     min(Xpx,100%) — a multi-column footer is the classic place a
     page grows a horizontal scrollbar, and those two lines are
     what make that impossible from 320px to 2560px;
   · nothing here animates in on scroll. The footer is the site's
     structural navigation; it must not be able to fail to opacity 0.
   ============================================================ */

footer{background:var(--ink-deep);border-top:1px solid var(--line);
  padding:clamp(46px,4.6vw,78px) 0 26px}
footer .wrap{display:flex;flex-direction:column;gap:clamp(30px,3vw,44px)}

/* The sticky mobile action bar (.bookbar goes position:fixed at 820px) still
   has to be cleared. Restated here so it cannot be lost to source order. */
@media (max-width:820px){footer{padding-bottom:calc(144px + 28px)}}

/* every footer target clears 44px; inline links opt back out individually */
footer a{min-height:44px;transition:color .3s var(--ease),transform .35s var(--ease)}
footer h4{font-family:var(--mono);font-size:10.5px;letter-spacing:.18em;
  text-transform:uppercase;color:var(--muted);margin:0 0 13px}

/* ---------- 1. the verified-facts strip ---------- */
.ffacts-head{margin-bottom:16px}
.ffacts{list-style:none;margin:0;padding:0 0 clamp(28px,2.8vw,40px);
  border-bottom:1px solid var(--line);
  display:grid;grid-template-columns:repeat(auto-fill,minmax(min(228px,100%),1fr));
  gap:20px clamp(22px,2vw,34px)}
.ffact{position:relative;min-width:0;padding-left:16px;
  display:flex;flex-direction:column;gap:3px}
.ffact::before{content:"";position:absolute;left:0;top:8px;width:5px;height:5px;
  border-radius:50%;background:var(--brass)}
.ffact b{font-size:13.5px;font-weight:600;color:var(--bone);line-height:1.4}
.ffact span{font-size:12.5px;color:var(--muted);line-height:1.5}

/* ---------- 2. the main grid ---------- */
.fgrid{display:grid;grid-template-columns:1.55fr .85fr 1fr 1.1fr;
  gap:clamp(30px,2.4vw,44px) clamp(26px,2.2vw,42px);
  padding-bottom:clamp(28px,2.6vw,40px);border-bottom:1px solid var(--line)}
.fgrid > *{min-width:0}          /* the single line that prevents grid overflow */

/* ---------- 3. brand + place ---------- */
.fbrand{display:flex;flex-direction:column;align-items:flex-start;gap:15px}
.fbrand-link{display:inline-block;min-height:0}
.fbrand-link:hover{transform:none}
footer .fbrand .logo-mark{color:var(--bone)}
/* Width-driven, not height-driven: the lockup is 430x96, so sizing by height
   is what would push it past a 320px viewport. aspect-ratio is belt and
   braces for anything that mis-measures an inline SVG's intrinsic ratio. */
footer .fbrand .logo-mark svg{width:clamp(204px,17vw,262px);max-width:100%;
  height:auto;aspect-ratio:430/96;margin:0}
.fbrand .mark{font-family:var(--display);font-size:30px;color:var(--bone);line-height:1.04}
.fbrand-line{font-size:14px;line-height:1.62;color:var(--bone-dim);max-width:40ch}

.faddr{font-style:normal;display:flex;flex-direction:column;gap:3px;
  font-size:13.5px;line-height:1.5;color:var(--bone-dim);max-width:36ch}
.fcoord{font-family:var(--mono);font-size:11.5px;letter-spacing:.07em;color:var(--muted)}

.factions{display:flex;flex-wrap:wrap;gap:10px;width:100%}
.factions .btn{flex:1 1 156px;min-height:44px}
.fminor{font-size:12.5px;color:var(--muted);line-height:1.5}
footer .fminor a{display:inline;min-height:0;color:var(--muted);
  border-bottom:1px solid color-mix(in srgb,var(--muted) 40%,transparent)}
footer .fminor a:hover{color:var(--brass);border-bottom-color:var(--brass);transform:none}

/* Distances as rows, not columns: "Roberts International" set in 9.5px mono
   cannot fit a third of a 320px screen, and a three-column version overflowed.
   Rows also echo the legs in the location section. */
.fdist{list-style:none;margin:0;padding:15px 0 0;width:100%;
  border-top:1px solid var(--line);display:flex;flex-direction:column;gap:9px}
.fdist li{display:flex;align-items:baseline;gap:12px;min-width:0}
.fdist b{flex:0 0 auto;min-width:72px;font-family:var(--display);font-weight:400;
  font-size:19px;line-height:1.04;color:var(--brass);font-variant-numeric:tabular-nums}
.fdist span{font-family:var(--mono);font-size:9.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--muted);line-height:1.4;overflow-wrap:anywhere}

/* ---------- 4. link columns ---------- */
.fcol{display:flex;flex-direction:column;min-width:0}
.flist{list-style:none;margin:0;padding:0;display:flex;flex-direction:column}
.flist li{min-width:0}
footer .flist a{display:flex;align-items:center;min-height:44px;padding:3px 0;
  font-size:14px;color:var(--bone-dim);overflow-wrap:anywhere}
footer .flist a:hover{color:var(--brass);transform:translateX(3px)}

footer .fsub{margin-top:12px;padding-top:10px;border-top:1px solid var(--line)}
footer .fsub a{font-size:13px;color:var(--muted)}
footer .fsub a:hover{color:var(--brass)}

/* two-line rows: value over qualifier (residences) or label over value (contact) */
footer .funits a,footer .fcontact a{flex-direction:column;align-items:flex-start;
  justify-content:center;gap:1px;padding:5px 0;min-height:46px}
.fk{font-family:var(--mono);font-size:9.5px;letter-spacing:.16em;
  text-transform:uppercase;color:var(--muted);line-height:1.3}
.fq{font-family:var(--mono);font-size:10px;letter-spacing:.1em;
  text-transform:uppercase;color:var(--muted);line-height:1.3}
.fv{font-size:14.5px;color:var(--bone-dim);line-height:1.35;overflow-wrap:anywhere}
footer .fgrid a:hover .fv{color:var(--brass)}
footer .fgrid a:hover .fq,footer .fgrid a:hover .fk{color:var(--bone-dim)}

.fmore{display:inline-flex;align-items:center;gap:7px;margin-top:11px;min-height:44px;
  font-family:var(--mono);font-size:10.5px;letter-spacing:.12em;
  text-transform:uppercase;color:var(--brass)}
.fmore i{font-style:normal;transition:transform .4s var(--ease)}
.fmore:hover i{transform:translateX(4px)}

/* ---------- 5. legal bar ---------- */
.fbot{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;
  gap:12px clamp(20px,2vw,34px);padding-top:clamp(18px,2vw,26px);
  font-size:12.5px;color:var(--muted)}
.fbot-left{display:flex;flex-direction:column;gap:4px;min-width:0}
.fbot-left p{max-width:64ch;line-height:1.5}
.fbot-right{display:flex;flex-wrap:wrap;align-items:center;justify-content:flex-end;
  gap:10px clamp(14px,1.4vw,22px);min-width:0}
.fcredit{color:var(--muted)}
footer .fcredit a{display:inline;min-height:0;color:var(--bone-dim);
  border-bottom:1px solid color-mix(in srgb,var(--bone-dim) 38%,transparent)}
footer .fcredit a:hover{color:var(--brass);border-bottom-color:var(--brass);transform:none}
.ftop{display:inline-flex;align-items:center;gap:7px;min-height:44px;padding:0 15px;
  border:1px solid var(--line);border-radius:100px;font-family:var(--mono);font-size:10px;
  letter-spacing:.14em;text-transform:uppercase;color:var(--muted);white-space:nowrap;
  transition:color .3s var(--ease),border-color .3s var(--ease),transform .35s var(--ease)}
.ftop:hover{color:var(--brass);border-color:var(--brass);transform:translateY(-2px)}

/* ---------- 6. the column ladder ---------- */
/* 1080: four columns start starving the contact strings, so the brand and the
   contact block each take the full width and the two link navs pair up. */
@media (max-width:1080px){
  .fgrid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .fbrand{grid-column:1/-1}
  .fcontact{grid-column:1/-1;padding-top:22px;border-top:1px solid var(--line)}
  .fcontact .flist{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0 clamp(18px,2.4vw,34px)}
  .fbrand-line,.faddr{max-width:52ch}
}
/* 620: one column, hairline-separated. The two short-string lists go to two
   columns so the footer does not become a screen and a half of stacked links;
   the contact list stays one column because a 26-character email cannot fit
   half of a 320px screen without breaking mid-word. */
@media (max-width:620px){
  .fgrid{grid-template-columns:minmax(0,1fr)}
  .fbrand,.fcontact{grid-column:auto}
  .fcol{padding-top:20px;border-top:1px solid var(--line)}
  .fcontact .flist{grid-template-columns:minmax(0,1fr)}
  .fcol > .flist:first-of-type,.funits{display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));gap:0 18px}
  footer .fsub{display:flex;flex-direction:column}
  .fbot{grid-template-columns:minmax(0,1fr)}
  .fbot-right{justify-content:flex-start}
}
@media (max-width:400px){
  .fcol > .flist:first-of-type,.funits{grid-template-columns:minmax(0,1fr)}
  .factions .btn{flex:1 1 100%}
}

/* ---------- 7. motion + focus ---------- */
@media (prefers-reduced-motion:reduce){
  footer a,.ftop,.fmore i{transition:none}
  footer .flist a:hover,.ftop:hover,.fmore:hover i,.fbrand-link:hover{transform:none}
}
footer a:focus-visible,footer .btn:focus-visible{outline:3px solid var(--brass);
  outline-offset:2px;border-radius:2px}

/* The four remaining inline links — the footer's map/Waze pair, the Global IT
   Firm credit, and the FAQ email — sit inside running text, which WCAG 2.5.8
   exempts from the 24px target minimum. Padding on an INLINE box grows the hit
   rectangle without affecting the line box, so they get a bigger target at no
   layout cost; making them 44px blocks would break the sentences they live in. */
footer .fminor a,footer .fcredit a,.faq-cta-act .note a{padding-block:7px}
