/* ============ Tokens — Saurabh U Jain brand system ============ */
:root {
  /* brand palette (from the identity kit) */
  --navy:     #0F2346;   /* premium navy   */
  --navy-2:   #091830;   /* deeper navy for overlays/preloader */
  --gold:     #C8922D;   /* primary gold   */
  --gold-2:   #E2B65C;   /* lifted gold — hover, on-dark accents */
  --offwhite: #FAF9F7;   /* off white      */
  --slate:    #6B7280;   /* slate grey     */
  --sand:     #F2EFE9;   /* warm light section tone */
  --sand-2:   #E8E2D6;

  /* semantic aliases — the rest of the sheet speaks in these */
  --ink: var(--navy);
  --ink-2: var(--navy-2);
  --stone: var(--sand);
  --stone-2: var(--sand-2);
  --brass: var(--gold);
  --brass-2: var(--gold-2);
  --paper: var(--offwhite);
  --ink-muted: var(--slate);

  --ease-out: cubic-bezier(.16, 1, .3, 1);

  /* brand typography */
  --display: "Cormorant Garamond", Georgia, serif;   /* logo + headings */
  --caps:    "Montserrat", system-ui, sans-serif;    /* taglines, caps, tags */
  --body:    "Poppins", system-ui, sans-serif;       /* body copy, UI */
  --serif: var(--display);
  --sans: var(--body);
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-var.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/montserrat-var.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-300.woff2") format("woff2"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Poppins"; src: url("../fonts/poppins-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

/* ============ Reset-ish ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.js.lenis { scroll-behavior: auto; }
body {
  font-family: var(--body);
  font-weight: 300;
  background: var(--ink);
  color: var(--paper);
  line-height: 1.7;
  letter-spacing: .005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
figure { margin: 0; }

::selection { background: var(--brass); color: var(--ink); }

/* ============ Shared section furniture ============ */
.section-ink   { background: var(--ink);   color: var(--paper); }
.section-stone { background: var(--stone); color: var(--ink); }
.section-paper { background: var(--paper); color: var(--ink); }

.section-kicker {
  font-family: var(--caps);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.3rem;
}
.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -.005em;
  max-width: 16em;
}
.section-sub {
  margin-top: 1.3rem;
  max-width: 48ch;
  opacity: .74;
  font-weight: 300;
  font-size: clamp(.95rem, 1.15vw, 1.05rem);
}

/* Reveal primitives (JS adds .in) */
html.js .reveal, html.js .reveal-line {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
html.js .reveal.in, html.js .reveal-line.in { opacity: 1; transform: none; }

/* ============ Preloader ============ */
.preloader {
  position: fixed; inset: 0; z-index: 60;
  background: var(--ink-2);
  display: grid; place-items: center;
  transition: opacity .8s ease, visibility .8s;
}
html.no-js .preloader { display: none; }
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; display: grid; gap: .9rem; justify-items: center; }
.preloader-kicker { font-family: var(--caps); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-muted); }
.preloader-word {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 500; color: var(--paper);
  letter-spacing: .16em; text-transform: uppercase;
}
.preloader-word em { font-style: normal; color: var(--gold); }
.preloader-rule { width: 0; height: 1px; background: var(--brass); animation: rule 1.4s var(--ease-out) forwards .2s; }
@keyframes rule { to { width: 140px; } }
.preloader-sub { font-family: var(--caps); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass); }

/* ============ Nav — hamburger left, brand lockup centred ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: .85rem clamp(1.2rem, 4vw, 3rem);
  background: linear-gradient(to bottom, rgb(9 24 48 / .82), rgb(9 24 48 / 0));
  transition: background .45s ease, box-shadow .45s ease, padding .45s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--navy-2) 94%, transparent);
  backdrop-filter: blur(14px);
  padding-top: .55rem; padding-bottom: .55rem;
  box-shadow: 0 1px 0 color-mix(in srgb, var(--gold) 28%, transparent);
}

/* hamburger */
.nav-burger {
  justify-self: start;
  width: 46px; height: 34px; padding: 0;
  display: grid; align-content: center; gap: 7px;
  background: none; border: 0; cursor: pointer;
}
.nav-burger span {
  display: block; height: 1.5px; width: 30px; background: var(--offwhite);
  transition: transform .45s var(--ease-out), opacity .3s, background .3s;
}
.nav-burger:hover span { background: var(--gold-2); }
.nav-burger.open span:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

/* centred brand lockup — Westin  x  Saurabh, minimal */
.brand-lockup {
  justify-self: center;
  display: flex; align-items: center; gap: clamp(.7rem, 1.8vw, 1.3rem);
  line-height: 1;
}
.lk-westin, .lk-suj { display: grid; justify-items: center; }

/* project lockup, set in type until an official mark is supplied */
.westin-type { display: grid; justify-items: center; gap: .14rem; }
.wt-a {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(.98rem, 1.55vw, 1.3rem);
  letter-spacing: .04em; text-transform: uppercase; color: var(--offwhite);
  white-space: nowrap;
}
.wt-b, .wt-c {
  font-family: var(--caps); font-weight: 400;
  text-transform: uppercase; color: var(--offwhite);
  white-space: nowrap;
}
.wt-b { font-size: clamp(.44rem, .68vw, .58rem); letter-spacing: .38em; padding-left: .38em; opacity: .92; }
.wt-c { font-size: clamp(.38rem, .56vw, .48rem); letter-spacing: .34em; padding-left: .34em; opacity: .62; }
.westin-mark { height: clamp(28px, 3.4vw, 40px); width: auto; }

/* the join */
.lk-x {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(.85rem, 1.3vw, 1.1rem);
  color: var(--gold); opacity: .85;
}
.brand-mark { height: clamp(30px, 3.7vw, 44px); width: auto; }

/* until Saurabh's mark is uploaded, show the project lockup alone */
.lk-x, .lk-suj { display: none; }
html.has-brand-mark .lk-x { display: block; }
html.has-brand-mark .lk-suj { display: grid; }

.nav-spacer { justify-self: end; }

/* full-screen menu overlay */
.menu {
  position: fixed; inset: 0; z-index: 49;
  background: var(--navy-2);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility .5s;
}
.menu.open { opacity: 1; visibility: visible; }
.menu-inner { display: grid; gap: clamp(.9rem, 2.4vh, 1.6rem); text-align: center; padding: 5rem 1.5rem 2rem; }
.menu a {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.9rem, 5.2vw, 3.4rem); line-height: 1.1;
  color: var(--offwhite); opacity: 0; transform: translateY(20px);
  transition: color .3s, opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.menu.open a { opacity: 1; transform: none; }
.menu a:hover { color: var(--gold); }
.menu-foot {
  margin-top: clamp(1.2rem, 4vh, 2.4rem);
  font-family: var(--caps); font-size: .64rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold);
}
html.no-js .menu { position: static; opacity: 1; visibility: visible; background: var(--navy-2); padding: 5rem 0 2rem; }
html.no-js .menu a { opacity: 1; transform: none; font-size: 1.4rem; }
html.no-js .nav-burger { display: none; }

/* ============ Sticky CTA ============ */
.sticky-cta {
  font-family: var(--caps); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  z-index: 55;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--brass); color: var(--ink);
  font-size: .85rem; font-weight: 500; letter-spacing: .03em;
  padding: .8rem 1.25rem; border-radius: 999px;
  box-shadow: 0 10px 30px rgb(0 0 0 / .35);
  transition: transform .6s var(--ease-out), opacity .6s, background .25s;
}
.sticky-cta:hover { background: var(--brass-2); }
html.js .sticky-cta { opacity: 0; transform: translateY(80px); pointer-events: none; }
html.js .sticky-cta.on { opacity: 1; transform: none; pointer-events: auto; }
@media (max-width: 600px) {
  .sticky-cta span { display: none; }
  .sticky-cta { padding: .9rem; }
}

/* ============ HERO — the scroll walkthrough ============ */
.hero-walk { position: relative; background: var(--ink-2); }
.walk-pin { position: relative; height: 100svh; min-height: 560px; overflow: clip; }

/* Desktop plays the 16:9 landscape reel, so it fills the frame edge to edge.
   Mobile plays the vertical gimbal cut, which also fills its portrait screen.
   Either way the video covers — the blurred plate below is only a fallback
   for the letterboxing that appears at extreme aspect ratios. */
.walk-backdrop {
  position: absolute; inset: 0; z-index: 0;
  background: url("../assets/walkthrough/ambient.webp") center / cover no-repeat;
}
.walk-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(115% 85% at 50% 45%, rgb(14 22 30 / .25) 0%, rgb(14 22 30 / .82) 100%);
}
.walk-video {
  position: absolute; z-index: 1; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* The hero fills the screen on phones too. It costs some of the frame's
   width, but full-bleed is the point of the opening shot — letterboxing it
   made the arrival feel small. The gallery further down does the opposite,
   because there the whole room needs to be legible. */

/* legibility scrim for the overlaid type */
.walk-pin::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to top, rgb(14 22 30 / .88) 0%, rgb(14 22 30 / .25) 34%, rgb(14 22 30 / 0) 60%);
}

.hero-copy {
  position: absolute; z-index: 3;
  left: clamp(1.2rem, 5vw, 4rem); right: clamp(1.2rem, 5vw, 4rem);
  bottom: clamp(4.5rem, 12vh, 7.5rem);
  max-width: 46rem;
}
.hero-kicker {
  font-family: var(--caps); font-weight: 500; font-size: .66rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass-2); margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  line-height: 1.04; letter-spacing: -.015em;
  text-shadow: 0 2px 30px rgb(0 0 0 / .5);
}
.hero-title span { display: block; }
.hero-sub { margin-top: 1.3rem; opacity: .85; max-width: 40ch; }

/* Driven by a class, not a JS tween: the caption must still appear if the
   animation engine is throttled (background tabs, embedded webviews). */
.walk-room {
  position: absolute; z-index: 3;
  opacity: 0; transform: translateY(14px);
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
  left: clamp(1.2rem, 5vw, 4rem); bottom: clamp(2.6rem, 8vh, 4.4rem);
  font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 500;
  text-shadow: 0 2px 24px rgb(0 0 0 / .6);
}
.walk-room.show { opacity: 1; transform: none; }
html.no-js .walk-room { display: none; }

.hero-scrollcue {
  font-family: var(--caps);
  position: absolute; z-index: 3;
  left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  display: grid; justify-items: center; gap: .5rem;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase; opacity: .75;
  transition: opacity .6s;
}
.hero-scrollcue.off { opacity: 0; }
.scrollcue-bar {
  width: 1px; height: 44px;
  background: linear-gradient(var(--paper), transparent);
  animation: cue 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cue { 0%,100% { transform: scaleY(.4); } 50% { transform: scaleY(1); } }

.walk-loader {
  position: absolute; z-index: 4; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 120px; height: 1px; background: rgb(255 255 255 / .18); overflow: hidden;
  transition: opacity .6s ease, visibility .6s;
}
.walk-loader span { display: block; width: 40%; height: 100%; background: var(--brass-2); animation: load 1.3s ease-in-out infinite; }
@keyframes load { 0% { transform: translateX(-100%); } 100% { transform: translateX(350%); } }
.walk-loader.done { opacity: 0; visibility: hidden; }
html.no-js .walk-loader { display: none; }
.walk-noscript-note { position: absolute; z-index: 3; left: 50%; bottom: 6rem; transform: translateX(-50%); font-size: .85rem; opacity: .8; }

/* no-JS: plain, scrollable video */
html.no-js .walk-pin { height: auto; }
html.no-js .walk-video { position: static; transform: none; width: 100%; height: auto; }
html.no-js .walk-pin::after { display: none; }
html.no-js .hero-copy { position: static; padding: 2rem clamp(1.2rem, 5vw, 4rem); }
html.no-js .hero-scrollcue { display: none; }

/* ============ Concept ============ */
.concept { padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 6vw, 4rem); }
.concept-inner { max-width: 60rem; margin: 0 auto; }
.concept-kicker { font-family: var(--caps); font-weight: 500; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-bottom: 1.4rem; }
.concept-line {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.9rem, 4.4vw, 3.4rem);
  line-height: 1.12; letter-spacing: -.01em;
}
.concept-body { margin-top: 1.6rem; max-width: 56ch; color: var(--ink-muted); font-size: 1.02rem; }
.concept-facts {
  margin-top: 3rem; display: grid; gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  background: color-mix(in srgb, var(--ink) 14%, transparent);
  border-block: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.concept-facts li { background: var(--stone); padding: 1.4rem 1.2rem; display: grid; gap: .3rem; }
.fact-num { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.fact-label { font-family: var(--caps); font-size: .68rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-muted); }
@media (max-width: 700px) { .concept-facts { grid-template-columns: 1fr; } }

/* ============ Vision ============ */
.vision { position: relative; }
.vision-pin { position: relative; height: 100svh; min-height: 560px; overflow: clip; }
.vision-layer { position: absolute; inset: 0; }
.vision-layer img { width: 100%; height: 100%; object-fit: cover; }
html.js .vision-promise { opacity: 0; }
html.no-js .vision-pin { height: auto; }
html.no-js .vision-layer { position: static; }
html.no-js .vision-promise { opacity: 1; }
.vision-captions {
  position: absolute; left: clamp(1.2rem, 5vw, 4rem); bottom: clamp(3.2rem, 9vh, 5rem);
  z-index: 3; display: grid;
}
.vision-cap {
  grid-area: 1 / 1;
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  max-width: 22em;
  text-shadow: 0 2px 24px rgb(0 0 0 / .55);
  display: flex; align-items: baseline; gap: .8rem;
}
html.js .vision-cap-b { opacity: 0; }
html.no-js .vision-captions { position: static; padding: 1rem clamp(1.2rem, 5vw, 4rem); }
html.no-js .vision-cap { grid-area: auto; text-shadow: none; }
.cap-index {
  font-family: var(--caps); font-size: .68rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--brass-2); white-space: nowrap;
}
.vision-note {
  position: absolute; right: clamp(1.2rem, 5vw, 4rem); bottom: 1.3rem; z-index: 3;
  font-size: .72rem; letter-spacing: .08em; opacity: .7;
}
html.no-js .vision-note { position: static; padding: 0 clamp(1.2rem, 5vw, 4rem) 2rem; }

/* ============ Gallery ============ */
.gallery { padding-top: clamp(5rem, 14vh, 9rem); }
.gallery-head { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(2.5rem, 6vh, 4rem); max-width: 70rem; }
.gallery-pin { position: relative; height: 100svh; min-height: 540px; overflow: clip; }
.gallery-slide { position: absolute; inset: 0; }
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
html.js .gallery-slide { opacity: 0; }
html.js .gallery-slide.is-active { opacity: 1; }
html.no-js .gallery-pin { height: auto; display: grid; gap: 2px; }
html.no-js .gallery-slide { position: static; }
.gallery-caption {
  position: absolute; left: clamp(1.2rem, 5vw, 4rem); bottom: clamp(2.6rem, 8vh, 4.4rem); z-index: 3;
  font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 2.1rem); font-weight: 500;
  text-shadow: 0 2px 24px rgb(0 0 0 / .55);
}
html.no-js .gallery-caption, html.no-js .gallery-progress { display: none; }

/* Phones: these are landscape interiors on a portrait screen. Filling the
   viewport crops them to a centre strip and the room stops reading, so show
   the whole frame instead and let the section colour hold the rest. The pin
   shortens to match, which also brings the caption in under the photo
   rather than floating over empty space. Desktop is untouched. */
@media (max-width: 767px) {
  .gallery-pin { height: 82svh; min-height: 0; }
  .gallery-slide { display: grid; align-content: center; }
  .gallery-slide img { height: auto; max-height: 62svh; object-fit: contain; }
  .gallery-caption { bottom: clamp(3.4rem, 11vh, 5.5rem); }
  .gallery-progress { bottom: 2.2rem; }
}
.gallery-progress {
  position: absolute; left: clamp(1.2rem, 5vw, 4rem); bottom: 1.6rem; z-index: 3;
  width: 180px; height: 1px; background: rgb(255 255 255 / .25); overflow: hidden;
}
.gallery-progress::after {
  content: ""; display: block; height: 100%; width: 100%;
  background: var(--brass-2);
  transform: translateX(calc(-100% + var(--p, 0%)));
}
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding-top: 2px; }
.gallery-grid figure { position: relative; aspect-ratio: 3 / 4; overflow: clip; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out); }
.gallery-grid figure:hover img { transform: scale(1.045); }
.gallery-grid figcaption {
  position: absolute; left: 1rem; bottom: .9rem;
  font-family: var(--caps); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase;
  text-shadow: 0 1px 12px rgb(0 0 0 / .6);
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Place (horizontal strip) ============ */
.place { padding-top: clamp(5rem, 14vh, 9rem); }
.place-head { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(2.5rem, 6vh, 4rem); max-width: 70rem; }
/* full-height pinned strip — sized to the viewport so no dead space is left
   under it while it scrolls horizontally */
.strip-pin { position: relative; overflow: clip; height: 100svh; min-height: 520px; display: flex; align-items: center; }
.strip-track {
  display: flex; gap: clamp(.8rem, 2vw, 1.6rem);
  padding: 0 clamp(1.2rem, 6vw, 4rem);
  width: max-content; align-items: flex-start;
}
.strip-card { position: relative; width: clamp(280px, 46vw, 700px); flex: none; }
.strip-card img { width: 100%; height: 62svh; min-height: 320px; object-fit: cover; }
.strip-card figcaption {
  display: grid; gap: .35rem;
  padding: .9rem .2rem 0;
  font-size: .92rem; color: var(--ink);
}
.tag-real, .tag-cgi {
  font-family: var(--caps); font-weight: 500; font-size: .58rem; letter-spacing: .18em; text-transform: uppercase;
}
.tag-real { color: color-mix(in srgb, var(--ink) 62%, var(--stone)); }
.tag-cgi  { color: var(--brass); }
.section-ink .tag-cgi { color: var(--brass-2); }
html.no-js .strip-pin, .strip-pin.native-scroll { overflow-x: auto; }
.place-facts {
  margin: clamp(3rem, 8vh, 5rem) clamp(1.2rem, 6vw, 4rem) 0;
  padding-bottom: clamp(5rem, 12vh, 8rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 14%, transparent);
}
.place-facts li { padding: 1.4rem 1.2rem 0; display: grid; gap: .3rem; }
@media (max-width: 700px) { .place-facts { grid-template-columns: 1fr; } }

/* ============ Official render showcase ============ */
.showcase { padding: clamp(5rem, 14vh, 9rem) 0 clamp(5rem, 12vh, 8rem); }
.showcase-head { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(2.5rem, 6vh, 4rem); max-width: 70rem; }

.showcase-feature { position: relative; }
.showcase-feature img { width: 100%; height: clamp(340px, 78svh, 820px); object-fit: cover; }
.showcase-feature figcaption {
  position: absolute; left: clamp(1.2rem, 6vw, 4rem); bottom: clamp(1.6rem, 5vh, 3rem);
  display: grid; gap: .5rem; max-width: 26ch;
}
.showcase-feature-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); line-height: 1.15;
  text-shadow: 0 2px 26px rgb(0 0 0 / .6);
}

.showcase-duo, .showcase-trio {
  display: grid; gap: 2px; margin-top: 2px;
}
.showcase-duo { grid-template-columns: repeat(2, 1fr); }
.showcase-trio { grid-template-columns: repeat(3, 1fr); }
.showcase-duo figure, .showcase-trio figure { position: relative; overflow: clip; }
.showcase-duo img { width: 100%; height: clamp(260px, 46svh, 520px); object-fit: cover; }
.showcase-trio img { width: 100%; height: clamp(220px, 34svh, 400px); object-fit: cover; }
.showcase-duo figcaption, .showcase-trio figcaption {
  position: absolute; left: 1.1rem; bottom: .95rem; right: 1.1rem;
  display: grid; gap: .3rem;
  font-size: .88rem; text-shadow: 0 1px 14px rgb(0 0 0 / .7);
}
.showcase-note {
  margin: clamp(2rem, 5vh, 3rem) clamp(1.2rem, 6vw, 4rem) 0;
  font-size: .76rem; line-height: 1.7; max-width: 68ch;
  color: rgb(247 245 240 / .5);
}
@media (max-width: 860px) {
  .showcase-duo, .showcase-trio { grid-template-columns: 1fr; }
  .showcase-duo img, .showcase-trio img { height: clamp(240px, 42svh, 420px); }
}


/* ============ Amenities ============ */
.amen { padding: clamp(5rem, 14vh, 9rem) 0 clamp(4rem, 10vh, 7rem); }
.amen-head { padding: 0 clamp(1.2rem, 6vw, 4rem) clamp(2.4rem, 6vh, 3.6rem); max-width: 72rem; }

/* shared veil so captions stay legible on any render */
.amen-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgb(9 24 48 / .88) 0%, rgb(9 24 48 / .38) 34%, rgb(9 24 48 / 0) 62%);
  transition: background .6s var(--ease-out);
}
.amen-hero:hover .amen-veil, .amen-tile:hover .amen-veil {
  background: linear-gradient(to top, rgb(9 24 48 / .92) 0%, rgb(9 24 48 / .5) 46%, rgb(9 24 48 / .08) 100%);
}

.amen-hero { position: relative; overflow: clip; }
.amen-hero img {
  width: 100%; height: clamp(360px, 82svh, 880px); object-fit: cover;
  transition: transform 2s var(--ease-out);
}
.amen-hero:hover img { transform: scale(1.04); }
.amen-hero figcaption {
  position: absolute; z-index: 2; left: clamp(1.2rem, 6vw, 4rem); bottom: clamp(1.6rem, 5vh, 3rem);
  display: grid; gap: .6rem; max-width: 24ch;
}
.amen-hero-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem); line-height: 1.08;
  text-shadow: 0 2px 30px rgb(0 0 0 / .6);
}
.amen-hero-stat {
  display: inline-block; width: fit-content;
  font-family: var(--caps); font-weight: 600;
  font-size: clamp(.7rem, 1vw, .82rem); letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: var(--gold);
  padding: .4rem .8rem; border-radius: 999px;
  box-shadow: 0 4px 16px rgb(0 0 0 / .35);
}

.amen-mosaic {
  margin-top: 2px;
  display: grid; gap: 2px;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(215px, 31svh, 340px);
}
.amen-tile { position: relative; overflow: clip; }
.amen-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 2s var(--ease-out); }
.amen-tile:hover img { transform: scale(1.05); }
.amen-tall { grid-row: span 2; }
.amen-wide { grid-column: span 2; }
.amen-tile figcaption {
  position: absolute; z-index: 2; left: 1.2rem; right: 1.2rem; bottom: 1.1rem;
  display: grid; gap: .3rem;
  font-family: var(--display); font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 500;
  line-height: 1.2; text-shadow: 0 2px 18px rgb(0 0 0 / .7);
}

.amen-list {
  margin: clamp(2.6rem, 7vh, 4rem) clamp(1.2rem, 6vw, 4rem) 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0 clamp(1.2rem, 3vw, 2.5rem);
  border-top: 1px solid color-mix(in srgb, var(--gold) 30%, transparent);
}
.amen-list li {
  font-family: var(--caps); font-size: .66rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgb(250 249 247 / .09);
  opacity: .82;
}
.amen-list li::before { content: "— "; color: var(--gold); }
@media (max-width: 1000px) {
  .amen-mosaic { grid-template-columns: repeat(2, 1fr); }
  .amen-wide { grid-column: span 2; }
  .amen-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .amen-mosaic { grid-template-columns: 1fr; grid-auto-rows: clamp(200px, 34svh, 280px); }
  .amen-tall, .amen-wide { grid-row: auto; grid-column: auto; }
  .amen-list { grid-template-columns: 1fr; }
}

/* ============ Luxury polish ============ */
/* hairline gold rule where a light section meets the next */
.section-stone + .section-paper, .section-paper + .section-stone {
  border-top: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
}
/* feature images get a slow reveal-scale rather than a hard cut */
.showcase-feature { position: relative; overflow: clip; }
.showcase-feature img { transition: transform 2s var(--ease-out); }
.showcase-feature:hover img { transform: scale(1.03); }
.showcase-feature figcaption { z-index: 2; }
.showcase-duo figure img, .showcase-trio figure img { transition: transform 1.6s var(--ease-out); }
.showcase-duo figure:hover img, .showcase-trio figure:hover img { transform: scale(1.05); }
/* gold focus ring for keyboard users, on brand */
:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--gold); outline-offset: 3px;
}

/* ============ Plans ============ */
.plans { padding: clamp(5rem, 14vh, 9rem) 0; position: relative; }
.plans-inner { max-width: none; margin: 0; position: relative; z-index: 1; }
.plans-head { padding-inline: clamp(1.2rem, 6vw, 4rem); }
.plans-head { text-align: center; display: grid; justify-items: center; }
.plans-head .section-title { max-width: 14em; }
.plans-flourish {
  width: 190px; height: 9px; margin: 1.6rem 0 .4rem;
  background:
    linear-gradient(90deg, transparent, var(--gold) 45%, var(--gold) 55%, transparent) center / 100% 1px no-repeat;
  position: relative;
}
.plans-flourish::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px; transform: translate(-50%, -50%) rotate(45deg);
  background: var(--gold);
}

/* three typology cards — real photography, text overlaid */
.plans-cards {
  margin-top: clamp(2.4rem, 6vh, 3.6rem);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px;                       /* edge to edge — no dead paper between them */
}
.plan-card {
  position: relative; display: block; overflow: clip;
  height: clamp(420px, 78svh, 820px); color: var(--offwhite);
}
.plan-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease-out);
}
.plan-card:hover img { transform: scale(1.06); }
.plan-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgb(9 24 48 / .92) 0%, rgb(9 24 48 / .62) 34%, rgb(9 24 48 / .12) 68%, rgb(9 24 48 / .28) 100%);
  transition: background .5s ease;
}
.plan-card:hover .plan-scrim { background: linear-gradient(to top, rgb(9 24 48 / .94) 0%, rgb(9 24 48 / .68) 40%, rgb(9 24 48 / .22) 100%); }
.plan-body {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  display: grid; justify-items: start; gap: .5rem;
  padding: clamp(1.2rem, 2.4vw, 1.9rem);
}
.plan-index {
  font-family: var(--caps); font-size: .6rem; font-weight: 500;
  letter-spacing: .3em; color: var(--gold-2);
}
.plan-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem); line-height: 1;
  letter-spacing: .01em;
}
.plan-desc { font-size: .95rem; font-weight: 300; opacity: .82; max-width: 30ch; }
.plan-cta {
  margin-top: .5rem;
  font-family: var(--caps); font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2);
  border-bottom: 1px solid color-mix(in srgb, var(--gold) 60%, transparent);
  padding-bottom: .3rem;
  transition: color .3s, border-color .3s;
}
.plan-card:hover .plan-cta { color: var(--offwhite); border-color: var(--offwhite); }
@media (max-width: 860px) {
  .plans-cards { grid-template-columns: 1fr; }
  .plan-card { height: clamp(340px, 56svh, 520px); }
}

.plans-note {
  margin: 2rem clamp(1.2rem, 6vw, 4rem) 0; font-size: .82rem; font-weight: 300;
  color: var(--ink-muted); max-width: 62ch;
}

/* ============ Enquiry form ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.2rem; margin-top: 2.2rem; }
.field { display: grid; gap: .5rem; }
.field.wide { grid-column: 1 / -1; }
.field label {
  font-family: var(--caps); font-size: .62rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
}
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: .95rem; font-weight: 300;
  color: inherit; background: transparent;
  border: 0; border-bottom: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  padding: .6rem .1rem; border-radius: 0;
  transition: border-color .3s;
}
.field textarea { resize: vertical; min-height: 3.2rem; }
.field select { cursor: pointer; }
.field select option { color: #111; background: #fff; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--gold);
}
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, currentColor 40%, transparent); }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: .8rem; }
.form-note { font-size: .74rem; font-weight: 300; opacity: .6; max-width: 42ch; }
.form-error { grid-column: 1 / -1; font-size: .78rem; color: #E86A5D; min-height: 1.1em; }
button.btn-brass { border: 0; cursor: pointer; font-family: var(--body); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* enquiry section */
.enquiry { padding: clamp(5rem, 14vh, 9rem) clamp(1.2rem, 6vw, 4rem); }
.enquiry-inner {
  max-width: 62rem; margin: 0 auto;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 4.5rem);
}
.enquiry-aside .section-title { max-width: 11em; }
.enquiry-points { margin-top: 1.8rem; display: grid; gap: .9rem; }
.enquiry-points li {
  position: relative; padding-left: 1.5rem; font-size: .9rem; font-weight: 300; opacity: .8;
}
.enquiry-points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 6px; height: 6px; transform: rotate(45deg); background: var(--gold);
}
@media (max-width: 820px) { .enquiry-inner { grid-template-columns: 1fr; } }

/* ============ Popup enquiry modal ============ */
.modal {
  position: fixed; inset: 0; z-index: 70;
  display: grid; place-items: center; padding: 1.2rem;
  background: rgb(9 24 48 / .78); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease-out), visibility .5s;
}
.modal.open { opacity: 1; visibility: visible; }
/* author display:grid would otherwise beat the UA [hidden] rule */
.modal[hidden] { display: none; }
html.no-js .modal { display: none; }
.modal-card {
  position: relative; width: min(560px, 100%);
  max-height: 90svh; overflow-y: auto;
  background: var(--offwhite); color: var(--navy);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-top: 3px solid var(--gold);
  box-shadow: 0 30px 90px rgb(0 0 0 / .45);
  transform: translateY(24px) scale(.98);
  transition: transform .55s var(--ease-out);
}
.modal.open .modal-card { transform: none; }
.modal-close {
  position: absolute; top: .7rem; right: .9rem;
  background: none; border: 0; cursor: pointer; line-height: 1;
  font-size: 1.7rem; color: var(--ink-muted); transition: color .25s;
}
.modal-close:hover { color: var(--gold); }
.modal-kicker {
  font-family: var(--caps); font-size: .6rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase; color: var(--gold);
}
.modal-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem); line-height: 1.1; margin-top: .5rem;
}
.modal-sub { margin-top: .6rem; font-size: .88rem; font-weight: 300; color: var(--ink-muted); }
.modal-card .form-grid { margin-top: 1.5rem; }

/* ============ Night film ============ */
.film { position: relative; min-height: 92svh; display: grid; place-items: end start; overflow: clip; }
.film-media, .film-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.film-video { object-fit: cover; }
.film-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgb(14 22 30 / .86) 0%, rgb(14 22 30 / .2) 55%, rgb(14 22 30 / .35) 100%);
}
.film-copy {
  position: relative; z-index: 2;
  padding: clamp(3rem, 10vh, 6rem) clamp(1.2rem, 6vw, 4rem);
  max-width: 44rem;
}
.film-title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1.06;
}
.film-sub { margin-top: 1rem; opacity: .82; }

/* ============ Contact ============ */
.contact { padding: 0; }
.contact-inner {
  max-width: none; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.contact-portrait {
  position: relative; margin: 0; overflow: clip;
  min-height: clamp(460px, 86svh, 900px);
  background: var(--stone-2);
}
.contact-copy {
  align-self: center;
  padding: clamp(3rem, 8vh, 6rem) clamp(1.4rem, 5vw, 4.5rem);
}
.contact-portrait img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
}
.suj-lockup {
  display: grid; justify-items: start; gap: .3rem;
  margin: .2rem 0 1.4rem; line-height: 1;
}
.suj-name {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: .15em; text-transform: uppercase; color: var(--navy);
}
.suj-name em { font-style: normal; color: var(--gold); }
.suj-rule { width: 100%; max-width: 15rem; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.suj-role {
  font-family: var(--caps); font-weight: 500;
  font-size: clamp(.5rem, .72vw, .6rem);
  letter-spacing: .4em; text-transform: uppercase; color: var(--gold);
}
.contact-bio { margin-top: 1.4rem; color: var(--ink-muted); max-width: 52ch; }
.contact-cred {
  font-family: var(--caps); margin-top: 1rem; font-size: .64rem; letter-spacing: .16em; text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 55%, var(--stone));
}
.contact-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-brass {
  display: inline-block; background: var(--gold); color: var(--offwhite);
  font-family: var(--caps); font-size: .7rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  transition: background .3s, transform .4s var(--ease-out), box-shadow .4s;
}
.btn-brass:hover {
  background: var(--gold-2); transform: translateY(-2px);
  box-shadow: 0 12px 30px color-mix(in srgb, var(--gold) 32%, transparent);
}
.btn-brass[disabled] { opacity: .55; pointer-events: none; }
.btn-ghost {
  display: inline-block;
  font-family: var(--caps); font-size: .7rem; font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border: 1px solid color-mix(in srgb, currentColor 34%, transparent);
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
@media (max-width: 860px) {
  .contact-inner { grid-template-columns: 1fr; }
  .contact-portrait { min-height: clamp(380px, 62svh, 560px); }
}

/* ============ Closing ============ */

/* ============ Footer ============ */
.footer {
  background: var(--ink-2);
  padding: 3.5rem clamp(1.2rem, 6vw, 4rem) 4.5rem;
  border-top: 1px solid rgb(255 255 255 / .07);
}
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; max-width: 78rem; margin: 0 auto; }
.footer-word { font-family: var(--serif); font-size: 1.1rem; }
.footer-presenter { font-family: var(--caps); margin-top: .5rem; font-size: .64rem; text-transform: uppercase; letter-spacing: .1em; color: var(--brass); }
.footer-legal p { font-size: .74rem; line-height: 1.7; color: rgb(247 245 240 / .45); }
.footer-legal p + p { margin-top: .8rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ============ Reduced motion — static, readable, fully navigable ============ */
@media (prefers-reduced-motion: reduce) {
  html.js:not(.force-motion) .reveal,
  html.js:not(.force-motion) .reveal-line { opacity: 1; transform: none; transition: none; }
  .scrollcue-bar { animation: none; }

  html.js:not(.force-motion) .walk-pin { height: auto; }
  html.js:not(.force-motion) .walk-video { position: static; transform: none; width: 100%; height: auto; box-shadow: none; }
  html.js:not(.force-motion) .walk-backdrop { display: none; }
  html.js:not(.force-motion) .walk-pin::after { display: none; }
  html.js:not(.force-motion) .hero-copy { position: static; padding: 2rem clamp(1.2rem, 5vw, 4rem); }
  html.js:not(.force-motion) .hero-scrollcue,
  html.js:not(.force-motion) .walk-room,
  html.js:not(.force-motion) .walk-loader { display: none; }

  html.js:not(.force-motion) .vision-promise,
  html.js:not(.force-motion) .vision-cap-b { opacity: 1; }
  html.js:not(.force-motion) .vision-pin { height: auto; }
  html.js:not(.force-motion) .vision-layer { position: static; }
  html.js:not(.force-motion) .vision-captions { position: static; padding: 1rem clamp(1.2rem, 5vw, 4rem); }
  html.js:not(.force-motion) .vision-cap { grid-area: auto; text-shadow: none; }
  html.js:not(.force-motion) .vision-cap-b { margin-top: .6rem; }
  html.js:not(.force-motion) .vision-note { position: static; padding: 0 clamp(1.2rem, 5vw, 4rem) 2rem; }

  html.js:not(.force-motion) .gallery-pin { height: auto; display: grid; gap: 2px; }
  html.js:not(.force-motion) .gallery-slide { position: static; opacity: 1; }
  html.js:not(.force-motion) .gallery-caption,
  html.js:not(.force-motion) .gallery-progress { display: none; }
}

/* ============ Ambient audio toggle ============ */
.music-toggle {
  position: fixed; z-index: 56;
  right: clamp(1rem, 3vw, 2rem);
  bottom: calc(clamp(1rem, 3vw, 2rem) + 4.3rem);
  width: 44px; height: 44px; padding: 0;
  display: grid; place-items: center;
  border-radius: 50%; cursor: pointer;
  background: color-mix(in srgb, var(--navy-2) 82%, transparent);
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  backdrop-filter: blur(8px);
  transition: border-color .3s, background .3s, transform .5s var(--ease-out), opacity .5s;
}
.music-toggle:hover { border-color: var(--gold); transform: translateY(-2px); }
html.js .music-toggle { opacity: 0; transform: translateY(70px); pointer-events: none; }
html.js .music-toggle.on-screen { opacity: 1; transform: none; pointer-events: auto; }
html.no-js .music-toggle { display: none; }

.eq { display: flex; align-items: center; justify-content: center; gap: 2.5px; height: 16px; }
.eq i {
  display: block; width: 2px; height: 3px; border-radius: 1px;
  background: var(--gold-2);
  transition: height .35s var(--ease-out);
}
/* playing: bars dance */
.music-toggle.playing .eq i { animation: eqbar 1.1s ease-in-out infinite; }
.music-toggle.playing .eq i:nth-child(1) { animation-delay: 0s;    }
.music-toggle.playing .eq i:nth-child(2) { animation-delay: .18s;  }
.music-toggle.playing .eq i:nth-child(3) { animation-delay: .36s;  }
.music-toggle.playing .eq i:nth-child(4) { animation-delay: .12s;  }
@keyframes eqbar {
  0%, 100% { height: 3px;  }
  50%      { height: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  .music-toggle.playing .eq i { animation: none; height: 9px; }
}
