/* ============================================================
   Compass Rose Property Management
   World: nautical chart table — depth contours, compass rose,
   drawn coastal figures. Wine primary / sunset orange secondary (2026
   rebrand from the client's own logo) / fog paper neutrals.
   ============================================================ */

@font-face{
  font-family:'Young Serif';
  src:url('../fonts/youngserif-latin.woff2') format('woff2');
  font-weight:400; font-style:normal; font-display:swap;
}
@font-face{
  font-family:'Hanken Grotesk';
  src:url('../fonts/hankengrotesk-latin.woff2') format('woff2');
  font-weight:100 900; font-style:normal; font-display:swap;
}

:root{
  /* Primary — from the client's logo, exact hex. Anchor colour: headings,
     solid sections, footer/scrim base, button fill at rest. */
  --deep:#5D093A;
  --deep-2:#7A1250;
  --deep-3:#3D052A;
  /* Secondary — from the client's logo, exact hex. Sharp accent: hover
     states, active indicators, badges. Used deliberately, not everywhere. */
  --amber:#FC6327;
  --amber-2:#FD8A57;
  --amber-ink:#9C3A12;
  /* Subtle tint for light pill/badge backgrounds (amenity tags, avatar
     grounds) that need a slight warm shade rather than a loud fill. */
  --tint:#FFD4C1;
  --fog:#F2F5F4;
  --paper:#FBFCFB;
  --ink:#12242A;
  --muted:#4E6A73;
  --line:#D6E2DF;

  --d-display:'Young Serif', Georgia, 'Times New Roman', serif;
  --d-body:'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r:14px;
  --r-sm:10px;
  --shell:1240px;
  --pad:clamp(3.5rem, 7vw, 6.5rem);

  --out:cubic-bezier(.23,1,.32,1);
  --inout:cubic-bezier(.77,0,.175,1);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--d-body);font-size:17px;line-height:1.62;
  font-weight:400;-webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}
button{font:inherit;color:inherit;cursor:pointer;border:0;background:none}
input,select{font:inherit;color:inherit}
h1,h2,h3,h4{font-family:var(--d-display);font-weight:400;margin:0;line-height:1.1;letter-spacing:-.022em}
p{margin:0}

.shell{width:100%;max-width:var(--shell);margin-inline:auto;padding-inline:clamp(1.1rem,4vw,2.2rem)}

.skip{position:absolute;left:-9999px;top:0;z-index:200;background:var(--deep);color:#fff;padding:.8rem 1.2rem;border-radius:0 0 var(--r-sm) 0}
.skip:focus{left:0}

:where(a,button,input,select,[tabindex]):focus-visible{
  outline:2.5px solid var(--amber);outline-offset:3px;border-radius:4px;
}

/* ---------- compass rose mark ---------- */
.cr-ring{stroke:currentColor;stroke-width:1.1;opacity:.55;fill:none}
.cr-ring--in{opacity:.3}
.cr-n{fill:currentColor}
.cr-s{fill:currentColor;opacity:.62}
.cr-x{fill:currentColor;opacity:.26}

/* ---------- drawn illustration (the connective ground) ----------
   Motifs from the subject's own world: spruce treeline, lupine stalks,
   swell, granite, a stretch of coast with soundings, and a chart pin whose
   head is a compass star. Placed low-contrast behind content, never as a
   framed picture. */
.il{position:absolute;pointer-events:none;z-index:0;display:block;color:var(--deep)}
.il svg{display:block;width:100%;height:auto;overflow:visible}

.il--treeline{bottom:-6px;left:-2%;width:min(112%,1180px);opacity:.085}
.il--coast{top:4%;right:-6%;width:min(56vw,560px);opacity:.13;color:var(--amber)}
.il--lupine{bottom:-10px;right:2%;width:min(46vw,430px);opacity:.13}
.il--waves-deep{top:0;left:0;width:130%;opacity:.16;color:#fff}

@media (max-width:720px){
  .il--treeline{opacity:.07;width:150%}
  .il--coast{width:88vw;opacity:.1}
  .il--lupine{width:62vw;opacity:.1}
}

/* ============ HEADER ============ */
.hdr{
  position:sticky;top:0;z-index:90;
  background:rgba(251,252,251,.86);
  backdrop-filter:blur(14px) saturate(1.4);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease, background .3s ease;
}
.hdr[data-stuck="1"]{border-bottom-color:var(--line);background:rgba(251,252,251,.95)}
.hdr-in{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;min-height:124px}

.brand{display:flex;align-items:center;color:var(--deep);min-height:44px}
.brand-logo{height:104px;width:auto;display:block;transition:transform .3s var(--out)}
.brand:hover .brand-logo{transform:scale(1.04)}

/* Footer's own small compass mark (separate from the header logo above) */
.brand-mark{display:block}
.brand-mark svg{width:100%;height:100%;display:block}

.nav{display:flex;gap:2.1rem}
.nav a{font-size:.94rem;font-weight:500;color:var(--deep);position:relative;padding:.35rem 0}
.nav a::after{
  content:'';position:absolute;left:0;bottom:0;height:1.5px;width:100%;
  background:var(--amber);transform:scaleX(0);transform-origin:right;
  transition:transform .38s var(--out);
}
@media(hover:hover) and (pointer:fine){
  .nav a:hover::after{transform:scaleX(1);transform-origin:left}
}
/* Current page: the same amber underline, held open rather than a second
   treatment. Set on every page's nav since the site is now multi-page. */
.nav a.nav-active{font-weight:600}
.nav a.nav-active::after{transform:scaleX(1);transform-origin:left}

.hdr-act{display:flex;align-items:center;gap:.9rem}

.burger{display:none;width:44px;height:44px;align-items:center;justify-content:center;flex-direction:column;gap:5px}
.burger span{display:block;width:20px;height:1.8px;background:var(--deep);border-radius:2px;transition:transform .3s var(--out)}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  min-height:46px;padding:0 1.5rem;border-radius:999px;
  font-size:.93rem;font-weight:600;letter-spacing:-.005em;
  transition:transform .16s ease-out, background-color .3s ease, box-shadow .3s ease;
  will-change:transform;
}
.btn--lg{min-height:54px;padding:0 1.9rem;font-size:1rem}
.btn--full{width:100%}
.btn--amber{background:var(--deep);color:#fff;box-shadow:0 2px 0 0 rgba(61,5,42,.3)}
@media(hover:hover) and (pointer:fine){
  .btn--amber:hover{background:var(--amber);color:var(--deep-3);box-shadow:0 8px 22px -8px rgba(252,99,39,.6)}
}
/* Hero and Close are the two full-bleed photo bookends — their CTA reverses
   the site-wide button pattern (secondary at rest, white on hover) by
   direct request, since they sit on a photo rather than a solid surface. */
.hero .btn--amber,
.close .btn--amber{background:var(--amber);color:var(--deep-3);box-shadow:0 2px 0 0 rgba(61,5,42,.3)}
@media(hover:hover) and (pointer:fine){
  .hero .btn--amber:hover,
  .close .btn--amber:hover{background:#fff;color:var(--deep);box-shadow:0 8px 22px -8px rgba(0,0,0,.35)}
}
.btn:active{transform:scale(.973)}
.btn--line{border:1.5px solid var(--line);color:var(--deep);background:var(--paper)}
@media(hover:hover) and (pointer:fine){.btn--line:hover{border-color:var(--deep);background:var(--fog)}}
.btn--ghost{border:1.5px solid rgba(255,255,255,.4);color:#fff}
@media(hover:hover) and (pointer:fine){.btn--ghost:hover{background:rgba(255,255,255,.12)}}

/* ---------- drawer ---------- */
.drawer{
  position:fixed;inset:0;z-index:120;background:var(--deep);
  padding:5.5rem 1.6rem 2rem;
  opacity:0;transform:translateY(-10px);
  transition:opacity .28s var(--out), transform .28s var(--out);
}
.drawer[data-open="1"]{opacity:1;transform:translateY(0)}
.drawer nav{display:flex;flex-direction:column;gap:.35rem}
.drawer nav a{font-family:var(--d-display);font-size:1.7rem;color:#fff;padding:.55rem 0}
.drawer nav .btn{margin-top:1.4rem;align-self:flex-start;font-family:var(--d-body)}
.drawer-x{position:absolute;top:1.4rem;right:1.4rem;width:44px;height:44px;color:#fff;display:flex;align-items:center;justify-content:center}
.drawer-x svg{width:24px;height:24px}

/* ============ HERO ============ */
/* Full-bleed photograph at full brightness. Contrast is bought locally with a
   solid panel rather than by dimming the whole image — the photographs are the
   product, and a page-wide scrim is what makes every rental hero look alike.
   No scale drift: a slow zoom is the most recognisable AI-site tell. */
.hero{
  position:relative;min-height:min(86vh,780px);
  display:flex;align-items:center;
  padding:6rem 0 8.5rem;overflow:hidden;background:var(--deep-3);
}
.hero-stage{position:absolute;inset:0}
.hero-slide{
  position:absolute;inset:0;background-size:cover;background-position:center;
  opacity:0;transition:opacity 1.1s ease;
}
.hero-slide[data-on="1"]{opacity:1}
/* Reaches ~52% and stops: the right half of every photograph is untouched. */
.hero-veil{
  position:absolute;inset:0;
  background:
    linear-gradient(94deg, rgba(61,5,42,.55) 0%, rgba(61,5,42,.2) 34%, rgba(61,5,42,0) 52%),
    linear-gradient(0deg, rgba(61,5,42,.5) 0%, rgba(61,5,42,0) 30%);
}
.hero-in{position:relative;z-index:2;width:100%}

.hero-panel{
  background:rgba(61,5,42,.72);
  border-radius:var(--r);
  padding:clamp(1.8rem,3vw,2.6rem);
  max-width:min(660px,92%);
  color:#fff;
}
.hero-eyebrow{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--amber);margin-bottom:.6rem}
.hero-h{font-size:clamp(1.9rem,3.2vw,2.85rem);line-height:1.1;letter-spacing:-.028em;color:#fff}
.hero-sub{margin-top:.55rem;font-size:clamp(.98rem,1.3vw,1.07rem);color:rgba(255,255,255,.82)}
.hero-h + .hero-sub{margin-top:1.15rem}
.hero-sub-close{font-weight:700;color:#fff}
.hero-act{margin-top:1.9rem;display:flex;gap:.8rem;flex-wrap:wrap}

/* Caption and dots ride the bottom edge, clear of the panel. */
.hero-meta{
  position:absolute;left:0;right:0;bottom:3.4rem;z-index:3;
  display:flex;align-items:center;justify-content:flex-end;gap:1.2rem;
  padding-inline:clamp(1.1rem,4vw,2.2rem);
  max-width:var(--shell);margin-inline:auto;
}
.hero-cap{display:flex;align-items:baseline;gap:.65rem;flex-wrap:wrap;justify-content:flex-end;text-align:right}
.hero-cap-line{
  font-family:var(--d-display);font-size:1rem;color:#fff;letter-spacing:-.018em;
  text-shadow:0 1px 14px rgba(61,5,42,.75);
  transition:opacity .45s ease, transform .5s var(--out);
}
.hero-cap-place{
  font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--amber);
  text-shadow:0 1px 12px rgba(61,5,42,.8);
  transition:opacity .45s ease, transform .5s var(--out);
}
.hero[data-swap="1"] .hero-cap-line,
.hero[data-swap="1"] .hero-cap-place{opacity:0;transform:translateY(7px)}

.hero-dots{
  display:flex;gap:.2rem;padding:0 .3rem;flex:none;
  background:rgba(61,5,42,.42);backdrop-filter:blur(8px);border-radius:999px;
}
.hero-dot{position:relative;width:44px;height:44px;background:none}
.hero-dot::before{
  content:'';position:absolute;left:8px;right:8px;top:50%;
  height:3.5px;border-radius:999px;background:rgba(255,255,255,.45);
  transform:translateY(-50%) scaleX(.62);transform-origin:left center;
  transition:background-color .4s ease, transform .55s var(--out);
}
.hero-dot[aria-selected="true"]::before{background:var(--amber);transform:translateY(-50%) scaleX(1)}

/* ============ FINDER ============ */
.finder{position:relative;z-index:20;margin-top:-3.4rem}
.finder-card{
  background:var(--paper);border-radius:var(--r);
  box-shadow:0 26px 60px -30px rgba(61,5,42,.45);
  padding:1.25rem 1.4rem 1.1rem;
}
/* Primary row reads like a booking bar; amenities sit under it as a compact
   inline strip rather than a third full-height column. */
.finder-main{display:grid;grid-template-columns:1.25fr 1fr 1fr .95fr auto;gap:1.1rem}
.fld{display:flex;flex-direction:column;gap:.45rem;min-width:0}
.fld label,.fld .lbl{font-size:.7rem;letter-spacing:.13em;text-transform:uppercase;font-weight:700;color:var(--muted)}

.finder-sub{
  display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;
  margin-top:1.05rem;padding-top:.95rem;border-top:1px solid var(--line);
}
.finder-sub .lbl{flex:none}
.finder-end{margin-left:auto;display:flex;align-items:center;gap:1rem;flex:none}
.fld--search{justify-content:flex-end}
.finder-search-btn{width:100%}
.finder-note{
  margin-top:.7rem;font-size:.83rem;color:var(--muted);
  display:flex;align-items:center;gap:.45rem;
}
.finder-note strong{color:var(--deep);font-weight:700}

.date-wrap{position:relative}
.date-wrap input{
  width:100%;background:var(--fog);border:1px solid var(--line);
  border-radius:var(--r-sm);padding:.72rem 2.4rem .72rem .9rem;
  font-size:.95rem;font-weight:500;min-height:46px;
  transition:border-color .25s ease, background-color .25s ease;
}
.date-wrap input:hover{border-color:var(--amber)}
.date-wrap input::-webkit-calendar-picker-indicator{
  position:absolute;inset:0;width:100%;height:100%;opacity:0;cursor:pointer;
}
.date-wrap input::-webkit-datetime-edit{color:var(--ink)}
.date-wrap input:not(:valid)::-webkit-datetime-edit{color:var(--muted)}
.cal{position:absolute;right:.8rem;top:50%;transform:translateY(-50%);width:18px;height:18px;color:var(--muted);pointer-events:none}

.sel-wrap{position:relative}
.sel-wrap select{
  appearance:none;width:100%;background:var(--fog);border:1px solid var(--line);
  border-radius:var(--r-sm);padding:.72rem 2.4rem .72rem .9rem;font-size:.95rem;font-weight:500;
  transition:border-color .25s ease, background-color .25s ease;
}
.sel-wrap select:hover{border-color:var(--amber)}
.chev{position:absolute;right:.85rem;top:50%;transform:translateY(-50%);width:17px;height:17px;color:var(--muted);pointer-events:none}

.amen-row{display:flex;flex-wrap:wrap;gap:.42rem}
.chip{
  display:inline-flex;align-items:center;gap:.4rem;
  min-height:44px;padding:.5rem .95rem;border-radius:999px;
  background:var(--fog);border:1px solid var(--line);
  font-size:.845rem;font-weight:500;color:var(--ink);
  cursor:pointer;user-select:none;
  transition:background-color .25s ease, border-color .25s ease, color .25s ease, transform .16s ease-out;
}
.chip svg{width:15px;height:15px;color:var(--deep);transition:color .25s ease}
.chip input{position:absolute;opacity:0;width:0;height:0}
@media(hover:hover) and (pointer:fine){.chip:hover{border-color:var(--amber);background:var(--tint)}}
.chip:active{transform:scale(.965)}
.chip[data-on="1"]{background:var(--deep);border-color:var(--deep);color:#fff}
.chip[data-on="1"] svg{color:var(--amber)}

.link-reset{display:inline-flex;align-items:center;min-height:44px;font-size:.85rem;font-weight:600;color:var(--muted);text-decoration:underline;text-underline-offset:3px;transition:color .25s ease}
.link-reset:hover{color:var(--deep)}
.count{font-size:.82rem;font-weight:600;color:var(--muted);white-space:nowrap}

/* ============ SECTIONS ============ */
.sec{position:relative;padding:var(--pad) 0;overflow:hidden}
.sec--paper{background:var(--paper)}
.sec--glass{background:var(--fog)}

/* Every section head is centred. */
.sec-head{max-width:54ch;margin:0 auto 3rem;text-align:center;position:relative;z-index:1}
.sec-head--wide{max-width:60ch}
.sec-head--stack{max-width:74ch}
.sec-head h2{font-size:clamp(1.85rem,3.6vw,3rem);letter-spacing:-.028em}
.sec-head--stack h2{font-size:clamp(1.7rem,3vw,2.5rem);line-height:1.1}
.sec-head p{margin:1rem auto 0;color:var(--muted);font-size:1.04rem;max-width:58ch}
.sec-head p.sec-eyebrow{
  display:inline-flex;align-items:center;gap:.7rem;
  margin:0 0 1rem;
  font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;font-weight:700;color:var(--deep);
}
.sec-eyebrow::before,.sec-eyebrow::after{content:'';width:26px;height:1px;background:var(--amber);flex:none}
.sec-eyebrow-ic{width:15px;height:15px;color:var(--amber);flex:none}

/* ============ PROPERTY GRID ============ */
.grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem}
.card{
  position:relative;border-radius:var(--r);overflow:hidden;background:var(--paper);
  box-shadow:0 3px 10px -4px rgba(61,5,42,.16), 0 18px 40px -26px rgba(61,5,42,.4);
  display:flex;flex-direction:column;
  transition:transform .5s var(--out), box-shadow .5s var(--out);
}
@media(hover:hover) and (pointer:fine){
  .card:hover{transform:translateY(-6px);box-shadow:0 6px 14px -6px rgba(61,5,42,.2), 0 34px 60px -30px rgba(61,5,42,.5)}
  .card:hover .card-img img{transform:scale(1.055)}
  .card:hover .card-go{background:var(--amber);color:var(--deep-3)}
}
.card-img{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--deep-2)}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform 1s var(--out)}
.card-fallback{position:absolute;inset:0;display:grid;place-items:center;color:rgba(255,255,255,.28)}
.card-fallback svg{width:34%;max-width:70px}

.card-tag{
  position:absolute;left:.85rem;top:.85rem;z-index:2;
  background:rgba(61,5,42,.78);backdrop-filter:blur(6px);
  color:#fff;font-size:.72rem;font-weight:600;letter-spacing:.02em;
  padding:.36rem .7rem;border-radius:999px;
  display:inline-flex;align-items:center;gap:.34rem;
}
.card-tag svg{width:12px;height:12px;color:var(--amber)}
.card-new{
  position:absolute;right:.85rem;top:.85rem;z-index:2;background:var(--amber);color:var(--deep-3);
  font-size:.68rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  padding:.34rem .62rem;border-radius:999px;
}

.card-body{padding:1.15rem 1.25rem 1.3rem;display:flex;flex-direction:column;gap:.72rem;flex:1}
.card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:.7rem;min-height:2.6em}
.card-body h3{font-size:1.04rem;letter-spacing:-.018em;line-height:1.26;text-wrap:balance}
.card-rate{display:inline-flex;align-items:center;gap:.25rem;font-size:.85rem;font-weight:700;color:var(--deep);white-space:nowrap;padding-top:.1rem}
.card-rate svg{width:13px;height:13px;color:var(--amber)}
.card-rate--new{color:var(--amber-ink);font-weight:600}

.card-meta{display:flex;gap:.9rem;font-size:.85rem;color:var(--muted);flex-wrap:wrap}
.card-meta span{display:inline-flex;align-items:center;gap:.32rem}
.card-meta svg{width:15px;height:15px;color:var(--deep)}

.card-amen{display:flex;flex-wrap:wrap;gap:.34rem}
.pill{display:inline-flex;align-items:center;gap:.3rem;background:var(--tint);color:var(--deep);font-size:.735rem;font-weight:600;padding:.28rem .6rem;border-radius:999px}
.pill svg{width:12px;height:12px;color:var(--deep)}

.card-foot{margin-top:auto;padding-top:.9rem;border-top:1px solid var(--line);display:flex;align-items:center;justify-content:flex-end}
.card-go{
  display:inline-flex;align-items:center;gap:.4rem;font-size:.85rem;font-weight:700;color:var(--deep);
  background:var(--tint);padding:.5rem 1rem;border-radius:999px;min-height:40px;
  transition:background-color .35s ease, color .35s ease, gap .35s var(--out);
}
.card-go svg{width:14px;height:14px}
.card:hover .card-go{gap:.6rem}
.card-link{position:absolute;inset:0;z-index:3;border-radius:var(--r)}

.empty{grid-column:1/-1;text-align:center;padding:4rem 1rem;color:var(--muted)}
.empty h3{font-size:1.4rem;color:var(--ink);margin-bottom:.5rem}
.empty button{margin-top:1.2rem}

/* ============ DIRECT (solid colour) ============ */
.direct{background:var(--deep);color:#fff}
.direct-top{max-width:50ch;margin-bottom:3.4rem;position:relative;z-index:1}
.direct-top h2{font-size:clamp(1.9rem,3.8vw,3.05rem);color:#fff;letter-spacing:-.028em}
.direct-top p{margin-top:1rem;color:rgba(255,255,255,.72);font-size:1.05rem}

/* Three solid boxes. Icon sits inline with its heading; the drawn figure is a
   small corner hint at low opacity, not a background picture. */
.direct-boxes{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,1fr);gap:1.1rem}
.dbox{
  position:relative;overflow:hidden;border-radius:var(--r);
  background:var(--deep-2);
  padding:1.5rem 1.4rem 1.6rem;
  display:flex;flex-direction:column;gap:.85rem;
  transition:background-color .45s ease, transform .5s var(--out);
}
.dbox-hint{
  position:absolute;right:.9rem;bottom:.7rem;height:58px;width:auto;
  color:#fff;opacity:.16;pointer-events:none;
  transition:opacity .5s ease, color .5s ease, transform .55s var(--out);
}
.dbox-hint svg{height:100%;width:auto;display:block}

.dbox-head{display:flex;align-items:center;gap:.75rem}
.dbox-ico{
  width:42px;height:42px;flex:none;border-radius:var(--r-sm);
  background:rgba(255,255,255,.14);color:#fff;
  display:grid;place-items:center;
  transition:background-color .4s ease, color .4s ease, transform .5s var(--out);
}
.dbox-ico svg{width:21px;height:21px}
.dbox h3{font-size:1.16rem;color:#fff;letter-spacing:-.022em;line-height:1.2}
.dbox p{color:rgba(255,255,255,.74);font-size:.96rem;max-width:36ch;position:relative;z-index:1}

@media(hover:hover) and (pointer:fine){
  .dbox:hover{background:#6E0E45;transform:translateY(-5px)}
  .dbox:hover .dbox-ico{background:var(--amber);color:var(--deep-3);transform:rotate(-5deg)}
  .dbox:hover .dbox-hint{opacity:.28;color:var(--amber);transform:translateY(-3px)}
}

/* ============ PLACES ============ */
/* The photograph leads. Only the name sits on it at rest; the line of
   description is revealed on hover, which keeps the veil light enough for the
   image to read. */
.places{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.place{
  position:relative;border-radius:var(--r);overflow:hidden;
  background:var(--deep);color:#fff;aspect-ratio:3/3.4;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding:1.15rem 1.1rem;text-align:left;
  transition:transform .5s var(--out), box-shadow .5s var(--out);
}
.place-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform 1s var(--out)}
.place-vig{
  position:absolute;inset:0;
  background:linear-gradient(0deg, rgba(61,5,42,.86) 0%, rgba(61,5,42,.34) 38%, rgba(61,5,42,.02) 68%);
  transition:background .5s ease;
}
.place-in{position:relative;z-index:2;display:block}
.place-n{display:block;font-family:var(--d-display);font-size:1.12rem;letter-spacing:-.02em;line-height:1.18}
.place-c{
  display:block;font-size:.79rem;color:rgba(255,255,255,.82);margin-top:.3rem;
  font-weight:500;line-height:1.35;
}
@media(hover:hover) and (pointer:fine){
  .place-c{opacity:0;transform:translateY(6px);transition:opacity .4s ease, transform .45s var(--out)}
  .place:hover{transform:translateY(-5px);box-shadow:0 24px 44px -22px rgba(61,5,42,.6)}
  .place:hover .place-bg{transform:scale(1.06)}
  .place:hover .place-vig{background:linear-gradient(0deg, rgba(61,5,42,.9) 0%, rgba(61,5,42,.5) 50%, rgba(61,5,42,.12) 85%)}
  .place:hover .place-c{opacity:1;transform:none}
}
.place:active{transform:scale(.985)}

/* ============ GALLERY ============ */
.gal{position:relative;margin-top:.5rem;--gw:min(760px,80vw)}
.gal-track{
  display:flex;gap:1rem;overflow-x:auto;scroll-snap-type:x mandatory;
  /* side padding is derived from the slide width so the first and last
     slides can actually reach the centre of the scrollport */
  padding:1.5rem max(1rem, calc((100% - var(--gw)) / 2));
  scrollbar-width:none;-ms-overflow-style:none;
}
.gal-track::-webkit-scrollbar{display:none}
.gslide{
  flex:0 0 var(--gw);scroll-snap-align:center;
  border-radius:var(--r);overflow:hidden;aspect-ratio:16/10;
  background:var(--deep-2);
  transform:scale(.9);opacity:.42;
  transition:transform .65s var(--out), opacity .65s ease;
}
.gslide[data-on="1"]{transform:scale(1);opacity:1}
.gslide img{width:100%;height:100%;object-fit:cover}

.gnav{
  position:absolute;top:50%;transform:translateY(-50%);z-index:5;
  width:52px;height:52px;border-radius:50%;
  background:var(--paper);color:var(--deep);
  display:grid;place-items:center;
  box-shadow:0 10px 30px -12px rgba(61,5,42,.5);
  transition:transform .2s ease-out, background-color .3s ease;
}
.gnav svg{width:21px;height:21px}
.gnav--prev{left:clamp(.6rem,3vw,2.4rem)}
.gnav--next{right:clamp(.6rem,3vw,2.4rem)}
@media(hover:hover) and (pointer:fine){.gnav:hover{background:var(--amber)}}
.gnav:active{transform:translateY(-50%) scale(.93)}

/* ============ REVIEWS ============ */
.rev-foot{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:1.6rem}
.rnav{
  width:48px;height:48px;border-radius:50%;border:1.4px solid var(--line);
  color:var(--deep);display:grid;place-items:center;
  transition:background-color .3s ease, border-color .3s ease, color .3s ease, transform .2s ease-out;
}
.rnav svg{width:19px;height:19px}
@media(hover:hover) and (pointer:fine){.rnav:hover{background:var(--deep);border-color:var(--deep);color:#fff}}
.rnav:active{transform:scale(.93)}

.rev{position:relative;z-index:1;overflow:hidden}
.rev-track{display:flex;gap:1.4rem;transition:transform .7s var(--out);will-change:transform}
.rcard{
  flex:0 0 calc((100% - 2.8rem)/3);
  background:var(--paper);border-radius:var(--r);
  border:1px solid var(--line);
  padding:1.7rem 1.6rem;display:flex;flex-direction:column;gap:1rem;
  transition:border-color .4s ease, transform .5s var(--out);
}
@media(hover:hover) and (pointer:fine){.rcard:hover{border-color:var(--amber);transform:translateY(-4px)}}
.rstars{display:flex;gap:.16rem}
.rstars svg{width:16px;height:16px;color:var(--amber)}
.rq{font-size:1.02rem;line-height:1.6;color:var(--ink);flex:1}
.rwho{display:flex;align-items:center;gap:.7rem;padding-top:.4rem;border-top:1px solid var(--line)}
.rinit{width:38px;height:38px;border-radius:50%;background:var(--tint);color:var(--deep);display:grid;place-items:center;font-weight:700;font-size:.83rem;flex:none}
.rname{font-weight:700;font-size:.9rem;display:block;line-height:1.3}
.rprop{font-size:.78rem;color:var(--muted)}

.rev-dots{display:flex;justify-content:center;gap:0}
.rdot{position:relative;width:30px;height:44px;background:none}
.rdot::before{
  content:'';position:absolute;left:50%;top:50%;
  width:8px;height:8px;border-radius:50%;background:var(--line);
  transform:translate(-50%,-50%);
  transition:background-color .35s ease, transform .35s var(--out);
}
.rdot[aria-selected="true"]::before{background:var(--amber);transform:translate(-50%,-50%) scale(1.5)}

/* ============ QUESTIONS ============ */
/* Deliberate exception to the centred-heading rule: an aside carrying the
   heading and the compass mark, with the accordion beside it. */
.qa-wrap{display:grid;grid-template-columns:minmax(230px,.7fr) 1.3fr;gap:clamp(2rem,6vw,5rem);align-items:start}
.qa-side{position:sticky;top:140px;text-align:left}
.qa-side h2{font-size:clamp(1.85rem,3.4vw,2.7rem);letter-spacing:-.028em}
.qa-side p{margin-top:.9rem;color:var(--muted);max-width:34ch}
.qa-mark{display:block;width:124px;height:124px;margin-top:2.2rem;color:var(--deep);opacity:.5}
.qa-mark svg{width:100%;height:100%}

.qa{display:grid}
.qitem{border-bottom:1px solid var(--line)}
.qitem:first-child{border-top:1px solid var(--line)}
.qq{
  width:100%;display:flex;align-items:center;justify-content:space-between;gap:1.4rem;
  padding:1.45rem 0;text-align:left;
  font-family:var(--d-display);font-size:1.12rem;letter-spacing:-.018em;color:var(--deep);
  transition:color .3s ease;
}
@media(hover:hover) and (pointer:fine){.qq:hover{color:var(--amber-ink)}}
.qico{width:30px;height:30px;flex:none;border-radius:50%;background:var(--tint);display:grid;place-items:center;transition:background-color .4s ease}
.qico svg{width:14px;height:14px;color:var(--deep);transition:transform .45s var(--out)}
.qitem[data-open="1"] .qico{background:var(--amber)}
.qitem[data-open="1"] .qico svg{transform:rotate(135deg)}
/* grid-template-rows 0fr->1fr: no per-frame layout thrash, no JS height sync. */
.qa-panel{display:grid;grid-template-rows:0fr;transition:grid-template-rows .45s var(--out)}
.qitem[data-open="1"] .qa-panel{grid-template-rows:1fr}
.qa-inner{overflow:hidden;min-height:0}
.qa-inner p{padding:0 0 1.5rem;max-width:70ch;color:var(--muted)}
.qa-more{display:inline-flex;align-items:center;gap:.45rem;min-height:44px;margin-top:1.1rem;padding:.55rem 0;font-size:.93rem;font-weight:500;color:var(--deep);text-decoration:none;border-bottom:1.5px solid var(--line);transition:color .2s,border-color .2s}
.qa-more:hover{color:var(--amber-ink);border-color:var(--amber-ink)}
.qa-more svg{width:16px;height:16px;flex-shrink:0;transition:transform .22s var(--out)}
.qa-more:hover svg{transform:translateX(3px)}

/* ============ CLOSE ============ */
/* Compact closing band: one line, one sentence, two actions. The photograph
   keeps a light veil rather than the heavy scrim used before. */
.close{position:relative;padding:clamp(3.4rem,6vw,5rem) 0;overflow:hidden;background:var(--deep-3)}
/* The photograph itself is attached by app.js once this section comes near the
   viewport (see the lazy-background block there) — as a CSS background it
   could not be lazy-loaded and was ~313KB on the critical path. The deep
   fill stands in until it lands, so the scrimmed text is readable either way. */
.close-photo{position:absolute;inset:0;background:var(--deep-3) center/cover}
.close-scrim{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(61,5,42,.82) 0%, rgba(61,5,42,.7) 55%, rgba(61,5,42,.86) 100%);
}
.il--waves-close{bottom:-24px;left:-8%;width:130%;opacity:.14;color:#fff;z-index:1}
.close-in{position:relative;z-index:2;text-align:center}
.close-in h2{font-size:clamp(1.9rem,3.8vw,2.9rem);color:#fff;letter-spacing:-.03em;max-width:18ch;margin-inline:auto}
.close-in p{margin:1rem auto 0;color:rgba(255,255,255,.8);font-size:1.05rem;max-width:48ch}
.close-act{margin-top:2rem;display:flex;gap:.9rem;justify-content:center;flex-wrap:wrap}
.close-act .btn svg{width:19px;height:19px}

/* ============ FOOTER ============ */
.ftr{background:var(--deep-3);color:rgba(255,255,255,.72);padding:4.5rem 0 2rem}
.ftr-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:2.5rem;padding-bottom:3rem;border-bottom:1px solid rgba(255,255,255,.16)}
.ftr-brand .brand-mark--ftr{width:42px;height:42px;color:var(--amber);margin-bottom:1rem}
.ftr-line{font-family:var(--d-display);font-size:1.2rem;color:#fff;letter-spacing:-.02em}
.ftr-small{margin-top:.6rem;font-size:.88rem;max-width:32ch;line-height:1.55}
.ftr-col h4{font-family:var(--d-body);font-size:.7rem;letter-spacing:.14em;text-transform:uppercase;color:#fff;font-weight:700;margin-bottom:1.1rem}
.ftr-col ul{display:grid;gap:.62rem}
.ftr-col a{font-size:.89rem;line-height:1.4;transition:color .25s ease}
.ftr-col a:hover{color:var(--amber)}
.ftr-base{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding-top:1.6rem;font-size:.8rem;color:rgba(255,255,255,.5);flex-wrap:wrap}
.ftr-legal{display:flex;gap:1.4rem}
.ftr-legal a:hover{color:var(--amber)}

/* ============ SCROLL MOTION ============ */
/* Hidden state and revealed state are written at the SAME specificity so the
   reveal always wins on the cascade order, never by accident of selector
   weight. Without JS the html[data-anim] flag is never set and everything
   stays visible. */
html[data-anim="1"] .rise{opacity:0;transform:translateY(22px)}
html[data-anim="1"] .rise-img{opacity:0;clip-path:inset(28% 0 0 0)}
html[data-anim="1"] .rise-card{opacity:0;transform:translateY(16px) scale(.985)}

.rise,.rise-img,.rise-card{
  transition:opacity .75s var(--out), transform .85s var(--out), clip-path .95s var(--out);
  transition-delay:var(--dly,0ms);
}

html[data-anim="1"] .rise.is-in{opacity:1;transform:none}
html[data-anim="1"] .rise-img.is-in{opacity:1;clip-path:inset(0 0 0 0)}
html[data-anim="1"] .rise-card.is-in{opacity:1;transform:none}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  html[data-anim="1"] .rise,
  html[data-anim="1"] .rise-img,
  html[data-anim="1"] .rise-card,
  html[data-anim="1"] .rise.is-in,
  html[data-anim="1"] .rise-img.is-in,
  html[data-anim="1"] .rise-card.is-in{opacity:1!important;transform:none!important;clip-path:none!important}
  .hero-slide{transition:opacity .3s ease}
}

/* ============ RESPONSIVE ============ */
@media (max-width:1080px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .places{grid-template-columns:repeat(2,1fr)}
  .rcard{flex:0 0 calc((100% - 1.4rem)/2)}
  .finder-main{grid-template-columns:1fr 1fr}
  .fld--search{grid-column:1/-1}
  .direct-boxes{grid-template-columns:1fr 1fr}
  .ftr-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:980px){
  .hero-panel{max-width:none}
  .hero-veil{background:
    linear-gradient(94deg, rgba(61,5,42,.6) 0%, rgba(61,5,42,.28) 45%, rgba(61,5,42,.08) 70%),
    linear-gradient(0deg, rgba(61,5,42,.55) 0%, rgba(61,5,42,0) 34%)}
}
@media (max-width:900px){
  /* Below this width there is no pointer, and footer links were shipping as
     18px text rows — the one place on either page that missed the 44px
     minimum. Rows tighten so the column does not get taller for it. */
  .ftr-col ul{gap:.1rem}
  .ftr-col a,.ftr-legal a{display:inline-flex;align-items:center;min-height:44px}
  .nav{display:none}
  .hdr-act .btn{display:none}
  .burger{display:flex}
  .hdr-in{min-height:82px}
  .brand-logo{height:64px}
  .close-in h2{max-width:none}
  .qa-wrap{grid-template-columns:1fr;gap:2rem}
  .qa-side{position:static}
  .qa-mark{display:none}
}
@media (max-width:720px){
  body{font-size:16px}
  .grid{grid-template-columns:1fr}
  .places{grid-template-columns:repeat(2,1fr)}
  .place{aspect-ratio:3/2.6}
  .rcard{flex:0 0 100%}
  .ftr-grid{grid-template-columns:1fr;gap:2rem}
  .finder{margin-top:-1.8rem}
  .finder-main{grid-template-columns:1fr}
  .finder-end{margin-left:0;width:100%;justify-content:space-between}
  .direct-boxes{grid-template-columns:1fr;gap:.9rem}
  .dbox{padding:1.3rem}
  .dbox-hint{height:46px}
  .gal{--gw:86vw}
  .gnav{width:44px;height:44px}
  .close-act .btn{width:100%}
  .hero{min-height:0;padding:3.5rem 0 7rem;flex-direction:column;align-items:stretch}
  .hero-meta{position:static;margin-top:1.4rem;justify-content:space-between;max-width:none;width:100%}
  .hero-cap{text-align:left;justify-content:flex-start}
  .hero-act .btn{flex:1 1 auto}
  .il--treeline{opacity:.07;width:150%}
  .il--coast{width:88vw;opacity:.1}
  .il--lupine{width:62vw;opacity:.1}
}
@media (max-width:420px){
  .places{grid-template-columns:1fr}
  .place{aspect-ratio:16/9}
  .hero-dot{width:34px}
}
