/* ============================================================
   CAPELLA HANOI — Editorial / Opera reimagining
   Shared design system
   ============================================================ */

/* ---- Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Marcellus&family=Jost:wght@300;400;500&display=swap');

:root{
  /* ===== Default theme — Ivory & Lacquer (light, editorial) ===== */
  --ink:        #f1ebdf;   /* page base — warm ivory */
  --ink-2:      #e9e0cf;   /* footer / deeper band */
  --noir:       #f7f2e8;   /* raised panel (overlay, concierge) */
  --noir-3:     #ece3d2;
  --gold:       #a8472f;   /* accent — Hanoi lacquer */
  --gold-soft:  #c25c40;
  --gold-deep:  #8a3823;
  --brass:      #9a7c3b;
  --ivory:      #211b13;   /* primary text — deep ink */
  --paper:      #16130d;   /* dramatic contrast band */
  --paper-ink:  #f1ebdf;   /* text on contrast band */
  --paper-accent:#cf9a6f;  /* accent that reads on the band */
  --paper-muted:#b1a489;   /* muted text on the band */
  --smoke:      #6e6453;   /* muted text on light */
  --smoke-2:    #978b76;
  --line:       rgba(33,27,19,.18);
  --line-soft:  rgba(33,27,19,.10);
  --tone:       #e7ddc9;   /* subtle light alt section */
  --nav-fg:     #f5efe3;   /* topbar text over hero photo */
  --nav-fg-scr: #211b13;   /* topbar text once scrolled */
  --nav-bg:     rgba(241,235,223,.85);
  --ribbon-bg:  rgba(247,242,232,.93);
  --hero-shade: 0.45;
  --vignette:   rgba(0,0,0,.05);
  --plate-1:    #ddd0b8;   /* photo placeholder — warm linen */
  --plate-2:    #cabd9f;
  --plate-glow: rgba(168,71,47,.10);
  --plate-edge: rgba(33,27,19,.20);

  /* Type families (tweakable) */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --roman: 'Marcellus', 'Cormorant Garamond', serif;
  --sans:  'Jost', system-ui, sans-serif;

  /* Fluid type scale */
  --fs-hero:    clamp(3.4rem, 9vw, 9.5rem);
  --fs-display: clamp(2.6rem, 6vw, 5.6rem);
  --fs-h2:      clamp(2rem, 4.6vw, 3.8rem);
  --fs-h3:      clamp(1.5rem, 2.6vw, 2.4rem);
  --fs-lead:    clamp(1.18rem, 1.7vw, 1.55rem);
  --fs-body:    1.075rem;

  --ease: cubic-bezier(.16,.84,.44,1);
  --maxw: 1320px;
}

/* ===== Gallery White — cool, museum ===== */
html[data-theme="gallery"]{
  --ink:#f4f2ec; --ink-2:#ebe9e0; --noir:#faf8f3; --noir-3:#efece4;
  --gold:#8c3b40; --gold-soft:#9b474c; --gold-deep:#6e2b30;
  --ivory:#1d1c18; --paper:#15140f; --paper-ink:#f0ede4;
  --paper-accent:#cf9499; --paper-muted:#aea892;
  --smoke:#6c6a61; --smoke-2:#9a978c;
  --line:rgba(29,28,24,.16); --line-soft:rgba(29,28,24,.09);
  --tone:#eae6dc; --nav-fg:#f7f5ef; --nav-fg-scr:#1d1c18;
  --nav-bg:rgba(244,242,236,.88); --ribbon-bg:rgba(250,248,243,.93);
  --hero-shade:0.42; --vignette:rgba(0,0,0,.04);
  --plate-1:#e2dccf; --plate-2:#d2cbba; --plate-glow:rgba(140,59,64,.10); --plate-edge:rgba(29,28,24,.18);
}

/* ===== Sage & Stone — soft, botanical ===== */
html[data-theme="sage"]{
  --ink:#e8e8dd; --ink-2:#dee0d1; --noir:#f0f1e8; --noir-3:#e1e3d5;
  --gold:#3f6b50; --gold-soft:#598467; --gold-deep:#2f5640;
  --ivory:#1e241f; --paper:#161f19; --paper-ink:#e9ede0;
  --paper-accent:#8fb38f; --paper-muted:#a7ad99;
  --smoke:#5f665a; --smoke-2:#8c9183;
  --line:rgba(30,36,31,.16); --line-soft:rgba(30,36,31,.09);
  --tone:#dfe2d3; --nav-fg:#eff1e7; --nav-fg-scr:#1e241f;
  --nav-bg:rgba(232,232,221,.9); --ribbon-bg:rgba(240,241,232,.93);
  --hero-shade:0.44; --vignette:rgba(0,0,0,.05);
  --plate-1:#d2d6c4; --plate-2:#c0c5af; --plate-glow:rgba(63,107,80,.12); --plate-edge:rgba(30,36,31,.18);
}

/* ===== Midnight Noir — the original dramatic dark ===== */
html[data-theme="noir"]{
  --ink:#100e0b; --ink-2:#15120d; --noir:#1c1812; --noir-3:#241f17;
  --gold:#c4a35a; --gold-soft:#dcc28a; --gold-deep:#9a7c3b;
  --ivory:#f1e9da; --paper:#ece3d2; --paper-ink:#211c14;
  --paper-accent:#9a7c3b; --paper-muted:#54493a;
  --smoke:#9b9281; --smoke-2:#756d5e;
  --line:rgba(196,163,90,.20); --line-soft:rgba(241,233,218,.12);
  --tone:#1a160f; --nav-fg:#f1e9da; --nav-fg-scr:#f1e9da;
  --nav-bg:rgba(16,14,11,.82); --ribbon-bg:rgba(20,17,12,.9);
  --hero-shade:0.55; --vignette:rgba(0,0,0,.45);
  --plate-1:#2b2418; --plate-2:#1a1610; --plate-glow:rgba(196,163,90,.12); --plate-edge:rgba(196,163,90,.30);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body{
  margin:0;
  background:var(--ink);
  color:var(--ivory);
  font-family:var(--serif);
  font-size:var(--fs-body);
  line-height:1.7;
  font-weight:400;
  overflow-x:hidden;
}
body.no-scroll{ overflow:hidden; }

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
::selection{ background:var(--gold); color:var(--ink); }

/* soft vignette for depth (theme-aware) */
body::after{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(120% 80% at 50% 0%, transparent 60%, var(--vignette) 100%);
  mix-blend-mode:multiply; opacity:.7;
}

/* ---- Typographic primitives ---- */
.label{
  font-family:var(--sans);
  font-weight:500;
  font-size:.72rem;
  letter-spacing:.34em;
  text-transform:uppercase;
  color:var(--gold);
}
.label--smoke{ color:var(--smoke); }
.numeral{
  font-family:var(--roman);
  font-size:.78rem;
  letter-spacing:.3em;
  color:var(--gold-deep);
  white-space:nowrap;
}
h1,h2,h3{ font-weight:300; margin:0; line-height:1.04; letter-spacing:-.012em; }
.display{ font-size:var(--fs-display); }
.hero-type{ font-size:var(--fs-hero); }
.h2{ font-size:var(--fs-h2); }
.h3{ font-size:var(--fs-h3); font-weight:400; }
em,.it{ font-style:italic; }
.lead{
  font-size:var(--fs-lead);
  line-height:1.55;
  color:var(--ivory);
  font-weight:300;
}
p{ margin:0 0 1.1em; color:var(--smoke); max-width:62ch; }
.body-dim{ color:var(--smoke); }

.rule{ width:54px; height:1px; background:var(--gold); opacity:.7; }
.center{ text-align:center; }

/* ---- Layout helpers ---- */
.wrap{ width:min(92vw,var(--maxw)); margin-inline:auto; }
.wrap-wide{ width:min(94vw,1560px); margin-inline:auto; }
.section{ position:relative; z-index:2; padding:clamp(6rem,12vh,11rem) 0; }
.section--tight{ padding:clamp(4rem,7vh,6rem) 0; }
.paper{ background:var(--paper); color:var(--paper-ink); }
.paper .label{ color:var(--paper-accent); }
.paper p,.paper .body-dim{ color:var(--paper-muted); }
.paper .rule{ background:var(--paper-accent); }
.tone{ background:var(--tone); }

/* Indochine / Gulf of Tonkin backdrop for .paper quote bands */
.section.paper{ overflow:hidden; }
.section.paper > .wrap{ position:relative; z-index:1; }
.paper-art{ position:absolute; inset:0; width:100%; height:100%; z-index:0;
  pointer-events:none; color:#cda05a; }

/* ============================================================
   TOP BAR / NAV
   ============================================================ */
.topbar{
  position:fixed; top:0; left:0; right:0; z-index:60;
  display:flex; align-items:center; justify-content:space-between;
  padding:1.5rem clamp(1.5rem,4vw,3.2rem);
  transition:background .6s var(--ease), padding .6s var(--ease), border-color .6s var(--ease);
  border-bottom:1px solid transparent;
}
/* legibility scrim behind a transparent bar — guarantees nav contrast over any hero photo */
.topbar::before{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:linear-gradient(180deg, rgba(12,10,7,.55), rgba(12,10,7,0));
  opacity:1; transition:opacity .6s var(--ease);
}
.topbar.scrolled::before{ opacity:0; }
.topbar.scrolled{
  --nav-fg:var(--nav-fg-scr);
  background:var(--nav-bg);
  backdrop-filter:blur(14px) saturate(1.1);
  padding-top:1rem; padding-bottom:1rem;
  border-bottom:1px solid var(--line);
}
.brand{ display:flex; flex-direction:row; align-items:center; gap:.7rem; line-height:1; }
.brand__text{ display:flex; flex-direction:column; gap:.34rem; }
.brand .mark{
  font-family:var(--roman); font-size:1.18rem; letter-spacing:.32em;
  text-transform:uppercase; color:var(--nav-fg); padding-left:.32em;
  transition:color .6s var(--ease);
}
.brand .sub{
  font-family:var(--sans); font-size:.56rem; letter-spacing:.46em;
  text-transform:uppercase; color:#e8c9a0; padding-left:.5em;
  transition:color .6s var(--ease);
}
.topbar.scrolled .brand .sub{ color:var(--gold); }
/* ===== Capella two-star mark (inline SVG → inherits currentColor) ===== */
.capella-mark{ display:inline-block; line-height:0; }
.capella-mark svg{ display:block; width:100%; height:100%; fill:currentColor; }
.brand__star{ width:18px; height:27px; color:#e8c9a0; flex:none; transition:color .6s var(--ease); }
.topbar.scrolled .brand__star{ color:var(--gold); }
/* footer lockup: centred mark above the wordmark */
.footer__brand{ display:flex; flex-direction:column; align-items:flex-start; }
.footer__star{ width:26px; height:39px; color:var(--gold); margin-bottom:1rem; }
/* contact overlay + curtain-call dividers */
.overlay__star{ width:22px; height:33px; color:var(--gold); display:block; margin-bottom:1.4rem; }
.kicker .capella-mark, .statement .capella-mark{ width:14px; height:21px; color:var(--gold); flex:none; }
.nav{ display:flex; align-items:center; gap:clamp(1.1rem,2.2vw,2.4rem); }
.nav a.navlink{
  font-family:var(--sans); font-size:.74rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--nav-fg); position:relative;
  padding:.4rem 0; transition:color .4s var(--ease); cursor:pointer;
  background:none; border:0; white-space:nowrap;
}
.nav a.navlink::after{
  content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
  background:var(--gold); transition:width .45s var(--ease);
}
.nav a.navlink:hover{ color:var(--gold-soft); }
.nav a.navlink:hover::after{ width:100%; }

.nav .divider{ width:1px; height:18px; background:var(--line-soft); }

/* language switcher */
.lang{ position:relative; }
.lang-btn{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--nav-fg); background:none; border:0;
  cursor:pointer; display:flex; align-items:center; gap:.45rem; padding:.4rem 0;
  transition:color .6s var(--ease);
}
.lang-btn .chev{ width:7px; height:7px; border-right:1px solid #e8c9a0;
  border-bottom:1px solid #e8c9a0; transform:rotate(45deg); margin-bottom:3px;
  transition:transform .4s var(--ease), border-color .6s var(--ease); }
.topbar.scrolled .lang-btn .chev{ border-right-color:var(--gold); border-bottom-color:var(--gold); }
.lang.open .lang-btn .chev{ transform:rotate(-135deg); margin-bottom:-2px; }
.lang-menu{
  position:absolute; top:calc(100% + .9rem); right:0;
  background:var(--noir); backdrop-filter:blur(14px);
  border:1px solid var(--line); padding:.5rem 0; min-width:188px;
  opacity:0; visibility:hidden; transform:translateY(-8px);
  transition:.45s var(--ease); box-shadow:0 30px 60px rgba(0,0,0,.22);
}
.lang.open .lang-menu{ opacity:1; visibility:visible; transform:none; }
.lang-menu button{
  display:flex; width:100%; align-items:baseline; gap:.7rem;
  background:none; border:0; cursor:pointer; text-align:left;
  padding:.62rem 1.3rem; color:var(--smoke);
  font-family:var(--sans); font-size:.74rem; letter-spacing:.14em; text-transform:uppercase;
  transition:color .3s, background .3s;
}
.lang-menu button .en{ font-family:var(--serif); font-size:.92rem; letter-spacing:0;
  text-transform:none; color:var(--smoke-2); margin-left:auto; }
.lang-menu button:hover{ color:var(--gold-soft); background:rgba(196,163,90,.06); }
.lang-menu button.active{ color:var(--gold); }

/* reserve pill in nav (discreet) */
.reserve-link{
  font-family:var(--sans); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink); background:var(--gold); padding:.62rem 1.3rem;
  transition:.4s var(--ease); cursor:pointer; border:1px solid var(--gold);
}
.reserve-link:hover{ background:transparent; color:var(--gold-soft); }
/* nav RESERVE mirrors the star: luminous gold over the dark hero (bar transparent),
   garnet once the bar turns light on scroll */
.topbar:not(.scrolled) .nav .reserve-link{ background:#e8c9a0; border-color:#e8c9a0; color:#1d1c18; }
.topbar:not(.scrolled) .nav .reserve-link:hover{ background:transparent; color:#e8c9a0; }

/* hamburger (mobile) */
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:0;
  cursor:pointer; padding:6px; }
.burger span{ width:24px; height:1px; background:var(--nav-fg); transition:.4s; }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.discover{
  display:inline-flex; align-items:center; gap:.85rem;
  font-family:var(--sans); font-size:.74rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold-soft); cursor:pointer; background:none; border:0; padding:0;
  transition:gap .45s var(--ease), color .4s;
}
.discover .arr{ width:34px; height:1px; background:var(--gold); position:relative;
  transition:width .45s var(--ease); }
.discover .arr::after{ content:""; position:absolute; right:0; top:-3px;
  width:7px; height:7px; border-top:1px solid var(--gold); border-right:1px solid var(--gold);
  transform:rotate(45deg); }
.discover:hover{ gap:1.2rem; color:var(--gold); }
.discover:hover .arr{ width:50px; }
/* hero arrow: warm gold to match the luminous hero label */
.hero .discover .arr{ background:#e8c9a0; }
.hero .discover .arr::after{ border-top-color:#e8c9a0; border-right-color:#e8c9a0; }
.paper .discover{ color:var(--gold-deep); }
.paper .discover .arr,.paper .discover .arr::after{ background:var(--gold-deep); border-color:var(--gold-deep); }

.btn-ghost{
  display:inline-flex; align-items:center; gap:.7rem;
  font-family:var(--sans); font-size:.72rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ivory); border:1px solid var(--line); padding:1rem 2rem;
  cursor:pointer; background:none; transition:.45s var(--ease);
}
.btn-ghost:hover{ border-color:var(--gold); color:var(--gold-soft); background:rgba(196,163,90,.05); }

/* ============================================================
   IMAGE SLOTS — make empty plates feel theatrical
   ============================================================ */
.ph-img{
  color:var(--gold); width:100%;
  background:
    radial-gradient(130% 130% at 50% 30%, var(--plate-glow), transparent 60%),
    linear-gradient(160deg, var(--plate-1), var(--plate-2) 78%);
}
.ph-img::part(frame){
  background:
    radial-gradient(130% 130% at 50% 30%, var(--plate-glow), transparent 60%),
    repeating-linear-gradient(135deg, rgba(168,71,47,.04) 0 2px, transparent 2px 9px),
    linear-gradient(160deg, var(--plate-1), var(--plate-2) 78%);
  box-shadow:inset 0 0 0 1px var(--plate-edge), inset 0 0 90px rgba(0,0,0,.18);
}
.ph-img::part(ring){ border-color:var(--plate-edge) !important; border-width:1px !important; }

/* ============================================================
   PAGE HERO (inner pages) — shared so every page stays consistent
   ============================================================ */
.page-hero{ position:relative; min-height:78svh; display:flex; align-items:flex-end; overflow:hidden; }
.page-hero__bg{ position:absolute; inset:0; z-index:0; }
.page-hero__bg .ph-img{ width:100%; height:100%; }
.page-hero__bg .ph-img::part(frame){ border-radius:0; }
.page-hero__scrim{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(16,14,11,.5) 0%, transparent 35%, rgba(16,14,11,.78) 100%); }
.page-hero__inner{ position:relative; z-index:3; width:100%; color:#f5efe3; pointer-events:none;
  padding:0 clamp(1.5rem,5vw,4.5rem) clamp(3rem,7vh,5rem); }
/* keep any links/buttons inside the hero clickable, but let drags reach the slot */
.page-hero__inner a,.page-hero__inner button{ pointer-events:auto; }

/* full-bleed plates stay dark in every theme so overlay text stays legible */
.hero__bg .ph-img,
.cinema .ph-img,
.page-hero__bg .ph-img{ background:linear-gradient(160deg, #2a2419, #14110b 80%); }
.hero__bg .ph-img::part(frame),
.cinema .ph-img::part(frame),
.page-hero__bg .ph-img::part(frame){
  background:
    radial-gradient(120% 120% at 50% 25%, rgba(196,163,90,.10), transparent 60%),
    linear-gradient(160deg, #2a2419, #14110b 80%);
  box-shadow:inset 0 0 200px rgba(0,0,0,.45);
}
/* empty full-bleed heroes: hide the small "browse files" plate chrome so the
   hero reads as a clean cinematic panel until a photo is dropped (drop still works) */
.hero__bg .ph-img:not([data-filled])::part(ring),
.cinema .ph-img:not([data-filled])::part(ring),
.page-hero__bg .ph-img:not([data-filled])::part(ring){ display:none !important; }
.plate-cap{
  font-family:var(--sans); font-size:.64rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--smoke-2); margin-top:1rem; display:flex; align-items:center; gap:.7rem;
}
.plate-cap::before{ content:""; width:22px; height:1px; background:var(--gold-deep); }

/* ============================================================
   HERO / OVERTURE
   ============================================================ */
.hero{ position:relative; min-height:100svh; display:flex; align-items:flex-end;
  overflow:hidden; }
.hero__bg{ position:absolute; inset:0; z-index:0; }
.hero__bg .ph-img{ width:100%; height:100%; }
.hero__bg .ph-img::part(frame){ border-radius:0; }
.hero__scrim{ position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    linear-gradient(180deg, rgb(16 14 11 / calc(var(--hero-shade) + .05)) 0%, transparent 28%, transparent 45%, rgb(16 14 11 / calc(var(--hero-shade) + .25)) 100%),
    radial-gradient(90% 70% at 50% 120%, rgb(16 14 11 / calc(var(--hero-shade) + .38)), transparent 70%);
}
.hero__inner{ position:relative; z-index:3; width:100%; color:#f5efe3;
  padding:0 clamp(1.5rem,5vw,4.5rem) clamp(3.5rem,8vh,6rem); }
/* Eyebrow labels sit on the DARK hero — the body accent (garnet) is too dark
   to read there, so heroes get a luminous warm tone for the label + its rule. */
.page-hero .label{ color:#e8c9a0; }
.hero .label{ color:#f6efe1; text-shadow:0 1px 14px rgba(8,6,4,.55); }
.hero__eyebrow .rule{ background:#f6efe1; opacity:.85; }
.page-hero .kicker .rule{ background:#e8c9a0; opacity:.85; }
.hero__eyebrow{ display:flex; align-items:center; gap:1.1rem; margin-bottom:2rem; }
.hero__eyebrow .rule{ width:42px; }
.hero h1{ max-width:16ch; }
/* German hero title: longer words need a wider box + slightly smaller type to keep 2 lines */
html[lang="de"] .hero h1{ max-width:24ch; font-size:clamp(3.4rem,8.5vw,8.2rem); }
.hero h1 .small{ display:block; font-size:.34em; letter-spacing:.02em; color:#f6efe1;
  font-style:italic; margin-bottom:.4rem; text-shadow:0 2px 24px rgba(8,6,4,.55); }
.hero h1 .small span{ color:#f6efe1 !important; }
.hero__foot{ display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between;
  gap:2rem; margin-top:2.6rem; }
.hero__foot .lead{ max-width:42ch; color:#f5efe3; }

/* scroll cue */
.scrollcue{ position:absolute; left:50%; bottom:2rem; transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:.8rem; }
.scrollcue .ln{ width:1px; height:54px; background:linear-gradient(var(--gold),transparent);
  animation:cue 2.6s var(--ease) infinite; transform-origin:top; }
.scrollcue .txt{ font-family:var(--sans); font-size:.58rem; letter-spacing:.34em;
  text-transform:uppercase; color:rgba(245,239,227,.7); }
@keyframes cue{ 0%{ transform:scaleY(0); opacity:0;} 40%{opacity:1;} 100%{ transform:scaleY(1); opacity:0;} }

/* ============================================================
   EDITORIAL SECTION LAYOUTS
   ============================================================ */
.kicker{ display:flex; align-items:center; gap:1.1rem; margin-bottom:1.8rem; flex-wrap:nowrap; }

/* split: text + tall image */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2.5rem,6vw,7rem); align-items:center; }
.split--rev .split__media{ order:-1; }
.split__media .ph-img{ height:clamp(420px,68vh,760px); }
.split__body{ max-width:34rem; }
.split__body .h2{ margin:1.4rem 0 1.6rem; }

/* overture narrative — large centered statement */
.statement{ max-width:min(92vw,54rem); margin:0 auto; text-align:center; }
.statement .h2{ margin-bottom:0; }
.statement .display{ text-wrap:balance; }

/* full-bleed cinematic band */
.cinema{ position:relative; height:clamp(70vh,86vh,920px); }
.cinema .ph-img{ height:100%; }
.cinema .ph-img::part(frame){ border-radius:0; }
.cinema__video{ width:100%; height:100%; object-fit:cover; display:block; }
.cinema__cap{ position:absolute; z-index:3; left:0; right:0; bottom:clamp(2.5rem,6vh,5rem);
  text-align:center; padding:0 1.5rem; pointer-events:none; color:#f5efe3; }
.cinema__cap .display{ color:#f0d9a8;
  text-shadow:0 2px 34px rgba(8,6,4,.7), 0 1px 6px rgba(8,6,4,.5); }
.cinema__cap .label{ color:#f0d9a8; text-shadow:0 1px 18px rgba(8,6,4,.6); }
.cinema__scrim{ position:absolute; inset:0; z-index:2; pointer-events:none;
  background:
    radial-gradient(115% 80% at 50% 64%, rgba(16,14,11,.58), transparent 72%),
    linear-gradient(180deg, rgba(16,14,11,.32), rgba(16,14,11,.16) 38%, rgba(16,14,11,.66)); }

/* curated index (accommodation / dining overview rows) */
.index-row{ display:grid; grid-template-columns:1fr 1.15fr; gap:clamp(2rem,5vw,5.5rem);
  align-items:center; padding:clamp(3rem,7vh,6rem) 0; border-top:1px solid var(--line); }
.index-row:last-child{ border-bottom:1px solid var(--line); }
.index-row--rev .index-row__media{ order:-1; }
.index-row__media .ph-img{ height:clamp(360px,52vh,580px); }
.index-row__num{ font-family:var(--roman); font-size:.8rem; letter-spacing:.3em; color:var(--gold-deep); }
.index-row__body .h3{ margin:.9rem 0 1.1rem; }

/* spec block (room sizes, spa hours, etc.) — shared across pages */
.room-spec{ display:flex; flex-wrap:wrap; gap:1.6rem 2.6rem; margin:1.6rem 0; }
.room-spec .s{ display:flex; flex-direction:column; gap:.4rem; }
.room-spec .s .k{ font-family:var(--sans); font-size:.66rem; letter-spacing:.22em;
  text-transform:uppercase; color:var(--smoke); }
.room-spec .s .v{ font-family:var(--serif); font-size:1.2rem; line-height:1.2; color:var(--gold-soft); }
/* stacked action links under a spec block */
.row-actions{ display:flex; flex-direction:column; align-items:flex-start; gap:1rem; margin-top:1.7rem; }

/* trio of cards (dining venues / spa rituals overview) */
.trio{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(1.4rem,3vw,2.6rem); }
.tcard{ display:flex; flex-direction:column; }
.tcard .ph-img{ height:clamp(320px,44vh,460px); }
.tcard__meta{ padding:1.4rem 0 0; }
.tcard__meta .label{ color:var(--gold); }
.tcard__meta .h3{ font-size:1.5rem; margin:.7rem 0 .6rem; }

/* two-up cards (suites) */
.duo{ display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(1.8rem,3.5vw,3.2rem); }
/* four-up dining cards on the landing overview */
.trio.quad{ grid-template-columns:repeat(4,1fr); }
@media (max-width:1100px){ .trio.quad{ grid-template-columns:repeat(2,1fr); row-gap:2.6rem; } }
@media (max-width:680px){ .trio.quad{ grid-template-columns:1fr; } }
.scard{ display:flex; flex-direction:column; }
.scard .ph-img{ height:clamp(300px,42vh,440px); }
.scard__meta{ display:flex; justify-content:space-between; align-items:baseline; gap:1rem;
  padding:1.2rem 0 0; }
.scard__name{ font-family:var(--serif); font-size:1.55rem; font-weight:400; line-height:1.1; }
.scard__size{ font-family:var(--sans); font-size:.66rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--gold); white-space:nowrap; }
.scard p{ margin-top:.7rem; }
.opera-muse{ font-family:var(--serif); font-style:italic; color:var(--gold); font-size:1.18rem;
  margin:-.2rem 0 1.1rem; }

/* quote / atmosphere break */
.atmo{ text-align:center; max-width:30ch; margin-inline:auto; }
.atmo .mark{ font-family:var(--roman); color:var(--gold); font-size:2.4rem; line-height:0; }
.atmo .q{ font-size:clamp(1.6rem,3.4vw,2.8rem); font-style:italic; font-weight:300;
  line-height:1.3; margin:2rem 0; color:var(--ivory); }
.atmo .by{ font-family:var(--sans); font-size:.7rem; letter-spacing:.28em; text-transform:uppercase; color:var(--smoke); }
.paper .atmo .mark{ color:var(--paper-accent); }
.paper .atmo .q{ color:var(--paper-ink); }
.paper .atmo .by{ color:var(--paper-muted); }

/* fact strip */
.facts{ display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }
.fact{ text-align:center; }
.fact .n{ font-family:var(--serif); font-size:clamp(2.4rem,4vw,3.4rem); font-weight:300; color:var(--gold-soft); }
.fact .t{ font-family:var(--sans); font-size:.64rem; letter-spacing:.26em; text-transform:uppercase; color:var(--smoke); margin-top:.5rem; }
/* compact inline variant: a few facts sitting side-by-side at natural width,
   number stacked cleanly above its label (no awkward wrapping in narrow cells) */
.facts--inline{ display:flex; flex-wrap:wrap; gap:2.4rem 3.4rem; }
.facts--inline .fact{ text-align:left; }
.facts--inline .fact .n{ display:block; line-height:1; white-space:nowrap; }
.facts--inline .fact .t{ display:block; max-width:16ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ position:relative; z-index:2; background:var(--ink-2); border-top:1px solid var(--line);
  padding:clamp(4rem,9vh,7rem) 0 2.4rem; }
.footer__top{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:3rem; align-items:start; }
.footer .brand-lg{ font-family:var(--roman); font-size:1.7rem; letter-spacing:.4em;
  text-transform:uppercase; color:var(--ivory); margin-bottom:1.2rem; }
.footer__col h4{ font-family:var(--sans); font-size:.66rem; letter-spacing:.28em;
  text-transform:uppercase; color:var(--gold); margin:0 0 1.2rem; font-weight:500; }
.footer__col a{ display:block; color:var(--smoke); padding:.34rem 0; font-size:1rem;
  transition:color .3s; }
.footer__col a:hover{ color:var(--gold-soft); }
.footer__bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap;
  gap:1rem; margin-top:clamp(3rem,6vh,5rem); padding-top:1.8rem; border-top:1px solid var(--line-soft); }
.footer__bottom .fine{ font-family:var(--sans); font-size:.66rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--smoke-2); white-space:nowrap; }

/* ============================================================
   CONTACT OVERLAY (opened from toolbar)
   ============================================================ */
.overlay{ position:fixed; inset:0; z-index:90; display:flex; justify-content:flex-end;
  visibility:hidden; pointer-events:none; }
.overlay.open{ visibility:visible; pointer-events:auto; }
.overlay__scrim{ position:absolute; inset:0; background:rgba(8,7,5,0);
  transition:background .6s var(--ease); }
.overlay.open .overlay__scrim{ background:rgba(8,7,5,.66); backdrop-filter:blur(4px); }
.overlay__panel{ position:relative; width:min(92vw,520px); height:100%; background:var(--noir);
  border-left:1px solid var(--line); transform:translateX(100%);
  transition:transform .7s var(--ease); overflow-y:auto;
  padding:clamp(2.4rem,5vw,3.6rem); }
.overlay.open .overlay__panel{ transform:none; }
.overlay__close{ position:absolute; top:1.8rem; right:1.8rem; width:42px; height:42px;
  border:1px solid var(--line); background:none; cursor:pointer; color:var(--ivory);
  display:flex; align-items:center; justify-content:center; transition:.4s; }
.overlay__close:hover{ border-color:var(--gold); color:var(--gold); transform:rotate(90deg); }
.contact-block{ margin-top:2.4rem; padding-top:2.4rem; border-top:1px solid var(--line-soft); }
.contact-block:first-of-type{ border-top:0; }
.contact-block .label{ margin-bottom:.9rem; }
.contact-block .big{ font-size:1.5rem; font-weight:300; line-height:1.3; }
.contact-block a.big:hover{ color:var(--gold-soft); }
.contact-block p{ font-size:1rem; margin-bottom:.3rem; }

/* ============================================================
   INFO MODAL (Awards / Booking Policy pop-ups)
   ============================================================ */
.modal{ position:fixed; inset:0; z-index:95; display:flex; align-items:center; justify-content:center;
  padding:6vh 1.4rem; visibility:hidden; pointer-events:none; }
.modal.open{ visibility:visible; pointer-events:auto; }
.modal__scrim{ position:absolute; inset:0; background:rgba(8,7,5,0); transition:background .5s var(--ease); }
.modal.open .modal__scrim{ background:rgba(8,7,5,.62); backdrop-filter:blur(4px); }
.modal__panel{ position:relative; width:min(94vw,600px); max-height:86vh; overflow-y:auto;
  background:var(--noir); border:1px solid var(--line); padding:clamp(2.2rem,5vw,3.4rem);
  transform:translateY(22px) scale(.98); opacity:0; transition:.55s var(--ease); }
.modal.open .modal__panel{ transform:none; opacity:1; }
.modal__close{ position:absolute; top:1.4rem; right:1.4rem; width:40px; height:40px;
  border:1px solid var(--line); background:none; cursor:pointer; color:var(--ivory);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem; transition:.4s; }
.modal__close:hover{ border-color:var(--gold); color:var(--gold); transform:rotate(90deg); }
.modal__star{ width:18px; height:27px; color:var(--gold); display:block; margin-bottom:1.2rem; }
.modal__panel .label{ display:block; margin-bottom:.7rem; }
.modal__panel h2{ margin-bottom:1.6rem; }
.modal__body{ font-size:1.02rem; }
.modal__body p{ color:var(--smoke); margin:0 0 1.1em; }
.modal__body strong{ color:var(--ivory); font-weight:500; }
.modal__list{ list-style:none; margin:0 0 1.4rem; padding:0; }
.modal__list li{ position:relative; padding:.9rem 0 .9rem 1.6rem; border-top:1px solid var(--line-soft);
  color:var(--ivory); font-size:1.05rem; }
.modal__list li:first-child{ border-top:0; }
.modal__list li::before{ content:""; position:absolute; left:0; top:1.35rem; width:7px; height:7px;
  background:var(--gold); transform:rotate(45deg); }
.modal__list li .sub{ display:block; font-family:var(--sans); font-size:.66rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--smoke); margin-top:.3rem; }
.modal__row{ display:flex; justify-content:space-between; gap:1.5rem; padding:.85rem 0;
  border-top:1px solid var(--line-soft); }
.modal__row:first-child{ border-top:0; }
.modal__row .k{ font-family:var(--sans); font-size:.66rem; letter-spacing:.18em; text-transform:uppercase;
  color:var(--gold); flex:none; width:42%; padding-top:.2rem; }
.modal__row .v{ color:var(--ivory); font-size:1.02rem; }
.modal__note{ margin-top:1.6rem; padding-top:1.4rem; border-top:1px solid var(--line-soft);
  font-size:.92rem; color:var(--smoke); }
.mod-sec{ display:block; font-family:var(--sans); font-size:.66rem; letter-spacing:.24em;
  text-transform:uppercase; color:var(--gold); margin:0 0 .9rem; }
.mod-sec + .mod-sec, .modal__body--text .mod-sec{ margin-top:2rem; }
.modal__body--text p{ font-size:.96rem; line-height:1.6; }
.modal__body--text a{ color:var(--gold-soft); text-decoration:underline; text-underline-offset:3px; }
.modal__body--text a:hover{ color:var(--gold); }

/* ============================================================
   BOOKING RIBBON (understated, persistent)
   ============================================================ */
.ribbon{ position:fixed; left:0; right:0; bottom:0; z-index:55;
  background:var(--ribbon-bg); backdrop-filter:blur(16px) saturate(1.1);
  border-top:1px solid var(--line);
  transform:translateY(110%); transition:transform .7s var(--ease); }
.ribbon.show{ transform:none; }
.ribbon__inner{ width:min(94vw,var(--maxw)); margin-inline:auto;
  display:flex; align-items:center; gap:clamp(.6rem,2vw,2rem);
  padding:.8rem clamp(.5rem,2vw,1rem); }
.ribbon__field{ display:flex; flex-direction:column; gap:.25rem; padding-right:clamp(.6rem,2vw,1.6rem);
  border-right:1px solid var(--line-soft); }
.ribbon__field:last-of-type{ border-right:0; }
.ribbon__field .l{ font-family:var(--sans); font-size:.56rem; letter-spacing:.26em;
  text-transform:uppercase; color:var(--smoke); }
.ribbon__field .v{ font-family:var(--serif); font-size:1.04rem; color:var(--ivory); }
.ribbon__field input,.ribbon__field select{ background:none; border:0; color:var(--ivory);
  font-family:var(--serif); font-size:1.04rem; padding:0; cursor:pointer; }
.ribbon__field input::-webkit-calendar-picker-indicator{ filter:saturate(0) opacity(.5); cursor:pointer; }
.ribbon__cta{ margin-left:auto; }
.ribbon__cta .reserve-link{ white-space:nowrap; }
.ribbon__close{ background:none; border:0; color:var(--smoke); cursor:pointer; font-size:1.2rem;
  padding:.3rem .6rem; transition:color .3s; }
.ribbon__close:hover{ color:var(--gold); }

/* ============================================================
   VIRTUAL CONCIERGE
   ============================================================ */
.concierge-fab{ position:fixed; right:clamp(1.2rem,3vw,2.4rem); bottom:clamp(5.4rem,9vh,6.4rem);
  z-index:70; display:flex; align-items:center; gap:.8rem;
  background:var(--noir); border:1px solid var(--line); color:var(--ivory);
  padding:.85rem 1.3rem .85rem 1rem; cursor:pointer; border-radius:40px;
  box-shadow:0 18px 40px rgba(0,0,0,.2); transition:.5s var(--ease); }
.concierge-fab:hover{ border-color:var(--gold); transform:translateY(-2px); }
.concierge-fab.fab-hidden{ opacity:0; visibility:hidden; transform:translateY(14px); pointer-events:none; }
.concierge-fab .dot{ width:34px; height:34px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold-deep));
  display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.concierge-fab .dot svg{ width:18px; height:18px; }
.concierge-fab .txt{ display:flex; flex-direction:column; line-height:1.1; text-align:left; }
.concierge-fab .txt .a{ font-family:var(--sans); font-size:.6rem; letter-spacing:.24em;
  text-transform:uppercase; color:var(--gold); white-space:nowrap; }
.concierge-fab .txt .b{ white-space:nowrap; }
.concierge-fab .txt .b{ font-family:var(--serif); font-size:1rem; font-style:italic; }

.concierge{ position:fixed; right:clamp(1.2rem,3vw,2.4rem); bottom:clamp(1.2rem,3vh,2rem);
  z-index:80; width:min(94vw,420px); height:min(76vh,640px);
  background:var(--noir); border:1px solid var(--line); border-radius:6px;
  display:flex; flex-direction:column; overflow:hidden;
  box-shadow:0 40px 90px rgba(0,0,0,.25);
  opacity:0; visibility:hidden; transform:translateY(20px) scale(.98);
  transform-origin:bottom right; transition:.5s var(--ease); }
.concierge.open{ opacity:1; visibility:visible; transform:none; }
.concierge__head{ display:flex; align-items:center; gap:.9rem; padding:1.3rem 1.4rem;
  border-bottom:1px solid var(--line); background:linear-gradient(180deg, rgba(196,163,90,.06), transparent); }
.concierge__head .dot{ width:38px; height:38px; border-radius:50%;
  background:radial-gradient(circle at 35% 30%, var(--gold-soft), var(--gold-deep));
  display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.concierge__head .dot svg{ width:20px; height:20px; }
.concierge__head .ttl{ display:flex; flex-direction:column; line-height:1.2; }
.concierge__head .ttl .a{ font-family:var(--sans); font-size:.58rem; letter-spacing:.26em;
  text-transform:uppercase; color:var(--gold); }
.concierge__head .ttl .b{ font-family:var(--serif); font-size:1.18rem; }
.concierge__head .x{ margin-left:auto; background:none; border:0; color:var(--smoke);
  cursor:pointer; font-size:1.3rem; line-height:1; padding:.3rem; transition:color .3s; }
.concierge__head .x:hover{ color:var(--gold); }

.concierge__log{ flex:1; overflow-y:auto; padding:1.4rem; display:flex; flex-direction:column; gap:1.1rem; }
.concierge__log::-webkit-scrollbar{ width:5px; }
.concierge__log::-webkit-scrollbar-thumb{ background:var(--line); border-radius:3px; }
.msg{ max-width:84%; font-size:1rem; line-height:1.55; }
.msg.user{ align-self:flex-end; background:rgba(168,71,47,.10); border:1px solid var(--line);
  color:var(--ivory); padding:.7rem 1rem; border-radius:14px 14px 4px 14px; }
.msg.bot{ align-self:flex-start; color:var(--ivory); }
.msg.bot .who{ font-family:var(--sans); font-size:.58rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--gold); margin-bottom:.4rem; display:block; }
.msg.bot p{ color:var(--ivory); margin:0 0 .6rem; max-width:none; }
.msg.bot p:last-child{ margin:0; }
.typing{ display:inline-flex; gap:5px; align-items:center; }
.typing span{ width:6px; height:6px; border-radius:50%; background:var(--gold); opacity:.5;
  animation:blink 1.3s infinite; }
.typing span:nth-child(2){ animation-delay:.2s; } .typing span:nth-child(3){ animation-delay:.4s; }
@keyframes blink{ 0%,100%{ opacity:.25; transform:translateY(0);} 50%{ opacity:1; transform:translateY(-3px);} }

.concierge__chips{ display:flex; flex-wrap:wrap; gap:.5rem; padding:0 1.4rem .9rem; }
.chip{ font-family:var(--sans); font-size:.66rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--gold-soft); border:1px solid var(--line); background:none; cursor:pointer;
  padding:.5rem .8rem; border-radius:30px; transition:.35s; }
.chip:hover{ border-color:var(--gold); background:rgba(196,163,90,.08); }
.concierge__form{ display:flex; gap:.6rem; padding:1rem 1.2rem; border-top:1px solid var(--line); }
.concierge__form input{ flex:1; background:rgba(0,0,0,.04); border:1px solid var(--line);
  color:var(--ivory); font-family:var(--serif); font-size:1rem; padding:.75rem 1rem; border-radius:30px;
  outline:none; transition:border-color .3s; }
.concierge__form input:focus{ border-color:var(--gold); }
.concierge__form input::placeholder{ color:var(--smoke-2); }
.concierge__form button{ background:var(--gold); border:0; color:var(--ink); cursor:pointer;
  width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  flex-shrink:0; transition:.35s; }
.concierge__form button:hover{ background:var(--gold-soft); }
.concierge__form button svg{ width:18px; height:18px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity 1.2s var(--ease), transform 1.2s var(--ease); }
.reveal.in{ opacity:1; transform:none; }
.reveal-d1{ transition-delay:.12s; } .reveal-d2{ transition-delay:.24s; }
.reveal-d3{ transition-delay:.36s; } .reveal-d4{ transition-delay:.48s; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1 !important; transform:none !important; }
  .scrollcue .ln{ animation:none; }
  html{ scroll-behavior:auto; }
}

/* parallax wrapper */
.parallax{ will-change:transform; }

/* motion off (Tweaks) */
body.motion-off .reveal{ opacity:1 !important; transform:none !important; transition:none !important; }
body.motion-off .scrollcue .ln{ animation:none; }
body.motion-off [data-parallax]{ transform:none !important; }

/* ============================================================
   BOOKING MODAL (Select Dates → SynXis)
   ============================================================ */
.bk{ position:fixed; inset:0; z-index:95; display:flex; align-items:center; justify-content:center;
  padding:clamp(1rem,4vw,3rem); visibility:hidden; pointer-events:none; }
.bk.open{ visibility:visible; pointer-events:auto; }
.bk__scrim{ position:absolute; inset:0; background:rgba(8,7,5,0); transition:background .5s var(--ease); }
.bk.open .bk__scrim{ background:rgba(8,7,5,.6); backdrop-filter:blur(5px); }
.bk__panel{ position:relative; width:min(96vw,1080px); max-height:92vh; overflow-y:auto;
  background:var(--noir); border:1px solid var(--line); color:var(--ivory);
  padding:clamp(1.8rem,4vw,3.4rem); transform:translateY(24px) scale(.99); opacity:0;
  transition:.55s var(--ease); box-shadow:0 50px 110px rgba(0,0,0,.4); }
.bk.open .bk__panel{ transform:none; opacity:1; }
.bk__close{ position:absolute; top:1.4rem; right:1.4rem; width:44px; height:44px; border:1px solid var(--line);
  background:none; color:var(--ivory); cursor:pointer; display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; transition:.4s; z-index:2; }
.bk__close:hover{ border-color:var(--gold); color:var(--gold); transform:rotate(90deg); }
.bk__head{ margin-bottom:2rem; }
.bk__head .label{ margin-bottom:1rem; display:block; }
.bk__head h2{ font-size:clamp(2rem,4vw,3rem); font-weight:300; }
.bk__head p{ margin:1rem 0 0; max-width:48ch; }

.bk__grid{ display:grid; grid-template-columns:300px 1fr; gap:clamp(1.6rem,3vw,3rem); align-items:start; }
.bk__controls{ display:flex; flex-direction:column; gap:1.6rem; }
.bk__field{ border-bottom:1px solid var(--line); padding-bottom:1rem; }
.bk__field .bl{ font-family:var(--sans); font-size:.6rem; letter-spacing:.26em; text-transform:uppercase;
  color:var(--smoke); display:block; margin-bottom:.5rem; }
.bk__field .bv{ font-family:var(--serif); font-size:1.3rem; color:var(--ivory); }
.bk__dates{ display:flex; gap:1rem; }
.bk__date{ flex:1; min-width:0; border-bottom:1px solid var(--line); padding-bottom:1rem; cursor:pointer; transition:border-color .3s; }
.bk__date.active{ border-color:var(--gold); }
.bk__date .bl{ display:block; margin-bottom:.5rem; }
.bk__date .bv{ display:block; font-size:1.15rem; white-space:nowrap; }
.bk__date .bv.placeholder{ color:var(--smoke-2); }

.bk__stepper{ display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.bk__stepper .sname{ display:flex; flex-direction:column; }
.bk__stepper .sname .t{ font-family:var(--serif); font-size:1.15rem; }
.bk__stepper .sname .s{ font-family:var(--sans); font-size:.58rem; letter-spacing:.18em; text-transform:uppercase; color:var(--smoke); }
.bk__steps{ display:flex; align-items:center; gap:.9rem; }
.bk__steps button{ width:34px; height:34px; border:1px solid var(--line); background:none; color:var(--ivory);
  cursor:pointer; font-size:1.1rem; line-height:1; display:flex; align-items:center; justify-content:center;
  border-radius:50%; transition:.3s; }
.bk__steps button:hover:not(:disabled){ border-color:var(--gold); color:var(--gold); }
.bk__steps button:disabled{ opacity:.3; cursor:not-allowed; }
.bk__steps .num{ font-family:var(--serif); font-size:1.25rem; min-width:1.4ch; text-align:center; }
.bk__promo input{ width:100%; background:none; border:0; border-bottom:1px solid transparent; color:var(--ivory);
  font-family:var(--serif); font-size:1.1rem; padding:.2rem 0; outline:none; transition:border-color .3s; }
.bk__promo input:focus{ border-bottom-color:var(--gold); }
.bk__promo input::placeholder{ color:var(--smoke-2); }

/* calendar */
.bk__cal{ }
.bk__calhead{ display:flex; align-items:center; justify-content:space-between; margin-bottom:1.2rem; }
.bk__calhead button{ width:38px; height:38px; border:1px solid var(--line); background:none; color:var(--ivory);
  cursor:pointer; display:flex; align-items:center; justify-content:center; transition:.3s; }
.bk__calhead button:hover:not(:disabled){ border-color:var(--gold); color:var(--gold); }
.bk__calhead button:disabled{ opacity:.25; cursor:not-allowed; }
.bk__months{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(1.5rem,3vw,2.6rem); }
.bk__month .mname{ font-family:var(--roman); font-size:.82rem; letter-spacing:.22em; text-transform:uppercase;
  text-align:center; color:var(--gold-soft); margin-bottom:1rem; }
.bk__dow{ display:grid; grid-template-columns:repeat(7,1fr); margin-bottom:.4rem; }
.bk__dow span{ font-family:var(--sans); font-size:.56rem; letter-spacing:.1em; text-transform:uppercase;
  color:var(--smoke-2); text-align:center; }
.bk__days{ display:grid; grid-template-columns:repeat(7,1fr); gap:1px; }
.bk__day{ aspect-ratio:1; display:flex; align-items:center; justify-content:center; cursor:pointer;
  font-family:var(--serif); font-size:.98rem; color:var(--ivory); position:relative; transition:color .2s; }
.bk__day.empty{ pointer-events:none; }
.bk__day.disabled{ color:var(--smoke-2); opacity:.4; pointer-events:none; }
.bk__day:not(.disabled):not(.empty):hover{ color:var(--gold); }
.bk__day.inrange{ background:rgba(196,163,90,.12); }
.bk__day.endpoint{ background:var(--gold); color:var(--ink); font-weight:500; border-radius:2px; }
.bk__day.endpoint.start{ border-radius:2px 0 0 2px; } .bk__day.endpoint.end{ border-radius:0 2px 2px 0; }
html[data-theme="noir"] .bk__day.endpoint{ color:#1a1610; }

.bk__foot{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap;
  margin-top:2.4rem; padding-top:1.8rem; border-top:1px solid var(--line-soft); }
.bk__summary{ font-family:var(--serif); font-size:1.05rem; color:var(--smoke); }
.bk__summary b{ color:var(--ivory); font-weight:400; }
.bk__cta{ display:inline-flex; align-items:center; gap:.9rem; font-family:var(--sans); font-size:.74rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--ink); background:var(--gold); border:1px solid var(--gold);
  padding:1.05rem 2.4rem; cursor:pointer; transition:.4s var(--ease); }
.bk__cta:hover:not(:disabled){ background:transparent; color:var(--gold-soft); }
.bk__cta:disabled{ opacity:.4; cursor:not-allowed; }
.bk__note{ font-family:var(--sans); font-size:.58rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--smoke-2); margin-top:1.2rem; text-align:right; }
.bk__note a{ color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px; }

@media (max-width:820px){
  .bk__grid{ grid-template-columns:1fr; }
  .bk__months{ grid-template-columns:1fr; }
  .bk__month.m2{ display:none; }
  .bk__foot{ flex-direction:column; align-items:stretch; }
  .bk__cta{ justify-content:center; }
  .bk__note{ text-align:center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .footer__top{ grid-template-columns:1fr 1fr; }
  .trio{ grid-template-columns:1fr; }
  .facts{ grid-template-columns:repeat(2,1fr); row-gap:2.6rem; }
}
@media (max-width:1080px){
  .brand .mark{ font-size:1.05rem; letter-spacing:.26em; }
  .nav{ gap:1.1rem; }
  .nav a.navlink{ font-size:.68rem; letter-spacing:.16em; }
}
@media (max-width:820px){
  .nav .navlink.hide-sm,.nav .divider.hide-sm{ display:none; }
  .burger{ display:flex; }
  .split,.index-row{ grid-template-columns:1fr; gap:2.4rem; }
  .split--rev .split__media,.index-row--rev .index-row__media{ order:0; }
  .split__media .ph-img{ height:60vh; }
  .hero__foot{ flex-direction:column; align-items:flex-start; }
  .footer__top{ grid-template-columns:1fr; gap:2.4rem; }
}
@media (max-width:560px){
  .facts{ grid-template-columns:1fr; }
  .topbar{ padding:1rem 1.2rem; }
  .ribbon__field.opt{ display:none; }
}

/* mobile nav drawer */
.mobile-nav{ position:fixed; inset:0; z-index:85; background:var(--ink);
  display:flex; flex-direction:column; justify-content:center; padding:2rem 2.4rem;
  gap:.4rem; opacity:0; visibility:hidden; transition:.5s var(--ease); }
.mobile-nav.open{ opacity:1; visibility:visible; }
.mobile-nav a{ font-family:var(--serif); font-size:2rem; font-weight:300; color:var(--ivory);
  padding:.5rem 0; border-bottom:1px solid var(--line-soft); transition:color .3s; }
.mobile-nav a:hover{ color:var(--gold-soft); }
.mobile-nav .close-mob{ position:absolute; top:1.4rem; right:1.6rem; background:none; border:0;
  color:var(--ivory); font-size:2rem; cursor:pointer; }


/* Baked photography (was <image-slot> during design) */
img.ph-img{ display:block; width:100%; height:100%; object-fit:cover; }
