/* ═══════════════════════════════════════════════════════════
   LES LION · v0.5
   premium hotel brand · refined craft
   ═══════════════════════════════════════════════════════════ */

:root {
  /* atmosphere — warm noir, not pure black */
  --bg:        #14110D;
  --bg-2:      #181410;
  --bg-3:      #1F1A14;
  --bg-4:      #261F17;
  --bg-soft:   #2C241B;

  /* cream / sand interlude — for light sections */
  --bg-cream:    #ECE2CD;
  --bg-cream-2:  #E3D7BE;
  --bg-stone:    #1A1611;

  --line:      rgba(225,213,189,.08);
  --line-2:    rgba(225,213,189,.14);
  --line-3:    rgba(225,213,189,.22);

  --ink:       #ECE3CE;
  --ink-mute:  #968B78;
  --ink-dim:   #5E5749;

  /* refined champagne */
  --gold:        #B89968;
  --gold-2:      #C9AC7D;
  --gold-3:      #DBC299;
  --gold-soft:   #ECDBB4;
  --gold-deep:   #8E764F;

  --ivory:       #F4ECD7;

  --f-display: "Fraunces", "Times New Roman", serif;
  --f-sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease:       cubic-bezier(.6,.05,.05,.95);
  --ease-soft:  cubic-bezier(.22,.61,.36,1);
  --ease-deep:  cubic-bezier(.16,1,.3,1);

  --container: 1380px;
  --gutter: clamp(20px, 4vw, 60px);
  --section: clamp(90px, 12vw, 160px);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 26px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.65 var(--f-sans);
  font-feature-settings: "ss01","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: rgba(184,153,104,.35); color: var(--ivory); }

.container {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

em { font-style: italic; }


/* ═══════════════════════════════════════════════════════════
   ATOMS · curtain · grain · cursor
   ═══════════════════════════════════════════════════════════ */

.curtain {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg);
  pointer-events: none;
  transition: opacity 1.1s var(--ease-soft);
}
.is-loading .curtain { opacity: 1; }
body:not(.is-loading) .curtain { opacity: 0; }

.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}


/* ═══════════════════════════════════════════════════════════
   TYPE atoms
   ═══════════════════════════════════════════════════════════ */

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: linear-gradient(90deg, var(--gold-2), transparent);
}

.display {
  margin: 0;
  font: 300 clamp(38px, 5.4vw, 78px)/1 var(--f-display);
  letter-spacing: -0.025em;
  color: var(--ivory);
}
.display em { font-style: italic; font-weight: 300; color: var(--gold-3); }


/* ═══════════════════════════════════════════════════════════
   CTA SYSTEM — proper buttons
   ═══════════════════════════════════════════════════════════ */

.cta {
  --bg: transparent;
  --fg: var(--ink);
  --bd: rgba(225,213,189,.18);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 14px;
  height: 46px;
  padding: 0 22px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--bd);
  border-radius: 999px;
  font: 500 11.5px/1 var(--f-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  white-space: nowrap;
  transition: transform .55s var(--ease-deep), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .5s var(--ease);
}

.cta i {
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  transition: background .35s var(--ease), color .35s var(--ease), transform .55s var(--ease-deep);
  margin-right: -6px;
}
.cta:hover i { transform: translateX(2px); }

.cta--md { height: 42px; padding: 0 18px; font-size: 11px; }
.cta--lg { height: 54px; padding: 0 26px; font-size: 12px; gap: 16px; }
.cta--lg i { width: 28px; height: 28px; }

/* gold filled */
.cta--gold {
  --bg: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  --fg: #1A1208;
  --bd: rgba(220,194,153,.45);
  box-shadow:
    0 1px 0 rgba(255,255,255,.18) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 14px 28px -14px rgba(184,153,104,.6),
    0 0 0 1px rgba(184,153,104,.15);
}
.cta--gold i {
  background: rgba(0,0,0,.22);
  color: var(--gold-soft);
}
.cta--gold:hover {
  --bg: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold-2) 60%, var(--gold) 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,.28) inset,
    0 -1px 0 rgba(0,0,0,.18) inset,
    0 18px 36px -14px rgba(220,194,153,.75),
    0 0 0 1px rgba(184,153,104,.3);
  transform: translateY(-1px);
}
.cta--gold:hover i { background: rgba(0,0,0,.18); }

/* ghost gold (outlined) */
.cta--ghost-gold {
  --bg: transparent;
  --fg: var(--gold-3);
  --bd: rgba(184,153,104,.55);
  backdrop-filter: blur(8px);
}
.cta--ghost-gold i {
  background: transparent;
  border: 1px solid rgba(184,153,104,.45);
}
.cta--ghost-gold:hover {
  --fg: #1A1208;
  --bg: linear-gradient(180deg, var(--gold-3) 0%, var(--gold) 100%);
  --bd: var(--gold);
  box-shadow: 0 14px 28px -14px rgba(184,153,104,.55);
}
.cta--ghost-gold:hover i { background: rgba(0,0,0,.18); border-color: transparent; }

/* ghost (white-ish) */
.cta--ghost {
  --bg: rgba(225,213,189,.05);
  --bd: rgba(225,213,189,.16);
  --fg: var(--ivory);
  backdrop-filter: blur(14px);
}
.cta--ghost:hover {
  --bg: rgba(225,213,189,.1);
  --bd: rgba(225,213,189,.28);
}
.cta--ghost .cta__play {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-2);
  color: #1A1208;
  display: grid; place-items: center;
  margin-right: 4px;
}
.cta--ghost small {
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .26em;
  color: var(--ink-mute);
  margin-left: 2px;
}


/* ═══════════════════════════════════════════════════════════
   NAV — refined
   ═══════════════════════════════════════════════════════════ */

.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
  transition: background .55s var(--ease-soft), backdrop-filter .55s var(--ease-soft), padding .45s var(--ease-soft), border-color .45s var(--ease);
}
.nav.is-stuck {
  background: rgba(20,17,13,.78);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom-color: var(--line);
  padding: 12px 0;
}
.nav__inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* brand — crest + wordmark */
.brand {
  display: inline-flex; align-items: center;
  gap: 14px;
  color: var(--ivory);
}
.brand__crest {
  display: inline-flex; width: 38px; height: 38px;
  color: var(--gold-3);
  filter: drop-shadow(0 0 14px rgba(184,153,104,.18));
}
.brand__crest svg { width: 100%; height: 100%; }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__word {
  font: 400 19px/1 var(--f-display);
  font-style: italic;
  letter-spacing: -0.005em;
}
.brand__sub {
  font: 500 9px/1 var(--f-sans);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 8px;
}

/* menu */
.nav__menu { display: flex; justify-content: center; gap: 30px; }
.nav__menu a {
  font: 500 12.5px/1 var(--f-sans);
  letter-spacing: .04em;
  color: var(--ink-mute);
  padding: 6px 0;
  position: relative;
  transition: color .35s var(--ease-soft);
}
.nav__menu a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold-3);
  transform: scaleX(0); transform-origin: right;
  transition: transform .65s var(--ease-deep);
}
.nav__menu a:hover { color: var(--ivory); }
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left; }

/* actions */
.nav__actions { display: flex; align-items: center; gap: 18px; }
.nav__lang {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font: 500 10.5px/1 var(--f-sans);
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-mute);
  transition: color .35s var(--ease-soft), border-color .35s var(--ease-soft);
}
.nav__lang i { width: 1px; height: 10px; background: var(--line-3); }
.nav__lang-alt { color: var(--ink-dim); }
.nav__lang:hover { color: var(--ivory); border-color: var(--gold-3); }

.nav__phone {
  display: inline-flex; align-items: center; gap: 10px;
  font: 500 12px/1 var(--f-sans);
  color: var(--ink-mute);
  letter-spacing: .04em;
  transition: color .3s var(--ease-soft);
}
.nav__phone svg { color: var(--gold-3); }
.nav__phone:hover { color: var(--ivory); }

.nav__cta { height: 42px; padding: 0 18px; font-size: 11px; }

.nav__burger { display: none; }


/* ═══════════════════════════════════════════════════════════
   HERO — Aurora reference, elevated
   ═══════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
  transform: scale(1.06);
  animation: heroBreath 22s var(--ease-deep) forwards;
  filter: contrast(1.05) saturate(.85) brightness(.85) sepia(.04);
}
@keyframes heroBreath { to { transform: scale(1); } }
.hero__bg-grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 0% 100%, rgba(20,17,13,.96) 0%, rgba(20,17,13,.6) 30%, transparent 60%),
    linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.05) 25%, rgba(20,17,13,.4) 65%, var(--bg) 100%),
    radial-gradient(120% 100% at 50% 50%, transparent 40%, rgba(20,17,13,.55) 130%);
}

.hero__inner {
  width: 100%; max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.25fr .85fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

/* hero copy */
.hero__copy { max-width: 720px; }

.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 16px 8px 14px;
  border: 1px solid rgba(184,153,104,.4);
  border-radius: 999px;
  background: rgba(184,153,104,.06);
  backdrop-filter: blur(10px);
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.kicker i {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 4px rgba(184,153,104,.18);
}

.hero__title {
  margin: 26px 0 28px;
  font: 200 clamp(58px, 9vw, 140px)/0.96 var(--f-display);
  letter-spacing: -0.038em;
  color: var(--ivory);
  text-shadow: 0 1px 30px rgba(0,0,0,.4);
}
.hero__title em { font-style: italic; font-weight: 200; color: var(--gold-3); }

.hero__lede {
  max-width: 540px;
  font-size: clamp(15px, 1.05vw, 17px);
  color: var(--ink);
  opacity: .85;
  line-height: 1.75;
  margin: 0 0 36px;
}

.hero__cta {
  display: flex; flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* hero panel */
.hero__panel {
  display: grid; gap: 1px;
  background: rgba(184,153,104,.1);
  border: 1px solid rgba(225,213,189,.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}
.panel {
  display: flex; gap: 18px;
  padding: 22px 26px;
  background: linear-gradient(180deg, rgba(20,16,11,.78), rgba(15,12,8,.78));
  align-items: flex-start;
  transition: background .4s var(--ease);
}
.panel:hover { background: linear-gradient(180deg, rgba(40,30,18,.78), rgba(28,21,12,.78)); }
.panel__no {
  flex: 0 0 auto;
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .26em;
  color: var(--gold-2);
  padding-top: 4px;
}
.panel h4 {
  margin: 0 0 6px;
  font: 500 14px/1.2 var(--f-sans);
  color: var(--ivory);
  letter-spacing: .02em;
}
.panel p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════
   BOOKING — premium widget (Aurora reference, elevated)
   ═══════════════════════════════════════════════════════════ */

.booking {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}
.bk {
  display: grid;
  grid-template-columns: 1.05fr 1.05fr 1fr 1fr 1fr auto;
  align-items: stretch;
  padding: 14px;
  background: linear-gradient(180deg, rgba(38,31,23,.88), rgba(28,23,17,.88));
  border: 1px solid rgba(184,153,104,.28);
  border-radius: var(--r-xl);
  backdrop-filter: blur(28px) saturate(150%);
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.7),
    0 0 0 1px rgba(184,153,104,.06),
    inset 0 1px 0 rgba(255,255,255,.05);
  position: relative;
}
.bk::before, .bk::after {
  content: "";
  position: absolute;
  width: 16px; height: 16px;
  border: 1px solid var(--gold-3);
  opacity: .5;
}
.bk::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.bk::after  { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.bk__field {
  position: relative;
  padding: 14px 18px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 12px;
}
.bk__field:last-of-type { border-right: 0; }

.bk__field label {
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--ink-dim);
}
.bk__input {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ivory);
  transition: color .3s var(--ease-soft);
}
.bk__input:hover { color: var(--gold-3); }
.bk__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--gold-3);
  transition: border-color .3s var(--ease-soft), color .3s var(--ease-soft);
}
.bk__input:hover .bk__icon { border-color: var(--gold-3); }
.bk__val { display: flex; flex-direction: column; gap: 4px; }
.bk__val strong {
  font: 500 15.5px/1.1 var(--f-sans);
  color: var(--ivory);
  letter-spacing: -0.005em;
}
.bk__val small {
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink-dim);
}
.bk__chev {
  color: var(--ink-mute);
  transition: transform .35s var(--ease-soft), color .3s var(--ease-soft);
}
.bk__input:hover .bk__chev { color: var(--gold-3); transform: translateY(2px); }

.bk__submit {
  height: auto;
  align-self: stretch;
  padding: 0 22px;
  margin: 0;
  font-size: 11px;
  letter-spacing: .18em;
}

.bk__note {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 0;
  padding-left: 14px;
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: .02em;
}
.bk__dot {
  width: 6px; height: 6px;
  background: var(--gold-2);
  border-radius: 50%;
  animation: pulse 2.6s var(--ease-soft) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(184,153,104,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(184,153,104,0); }
  100% { box-shadow: 0 0 0 0 rgba(184,153,104,0); }
}
.bk__note a {
  color: var(--gold-3);
  border-bottom: 1px solid var(--line-2);
  padding-bottom: 1px;
  transition: color .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.bk__note a:hover { color: var(--ivory); border-color: var(--gold-3); }


/* ═══════════════════════════════════════════════════════════
   PILLARS — feature strip
   ═══════════════════════════════════════════════════════════ */

.pillars { padding: clamp(70px, 8vw, 110px) 0; }
.pillars__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.pillars__list li {
  display: flex; gap: 18px;
  align-items: flex-start;
  padding: 0 24px;
  border-right: 1px solid var(--line);
}
.pillars__list li:first-child { padding-left: 0; }
.pillars__list li:last-child { padding-right: 0; border-right: 0; }
.pillars__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  color: var(--gold-3);
  transition: border-color .35s var(--ease-soft), background .35s var(--ease-soft), transform .55s var(--ease-deep);
}
.pillars__list li:hover .pillars__icon {
  border-color: var(--gold-3);
  background: rgba(184,153,104,.08);
  transform: rotate(-8deg);
}
.pillars__list h4 {
  margin: 4px 0 6px;
  font: 500 14px/1.2 var(--f-sans);
  color: var(--ivory);
  letter-spacing: .04em;
}
.pillars__list p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════
   STORY — heritage (cream interlude)
   ═══════════════════════════════════════════════════════════ */

.story {
  padding: var(--section) 0;
  background: var(--bg-cream);
  color: #2A211A;
  position: relative;
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.story__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}

.story .eyebrow {
  color: #876A3F;
}
.story .eyebrow::before {
  background: linear-gradient(90deg, #B58E58, transparent);
}
.story__copy .display {
  margin: 22px 0 28px;
  color: #1F1812;
}
.story__copy .display em {
  color: #876A3F;
}
.story__copy > p {
  margin: 0 0 18px;
  color: #574638;
  font-size: 16px;
  max-width: 540px;
  line-height: 1.78;
}
.story__copy strong { color: #1F1812; font-weight: 500; }

.story__facts {
  list-style: none;
  padding: 0; margin: 36px 0 36px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
  border-top: 1px solid rgba(31,24,18,.14);
  padding-top: 30px;
}
.story__facts li {
  display: flex; flex-direction: column;
  gap: 6px;
}
.story__facts strong {
  font: 300 26px/1 var(--f-display);
  font-style: italic;
  color: #876A3F;
  letter-spacing: -0.01em;
}
.story__facts span {
  font: 500 11px/1.4 var(--f-sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6B5A47;
}

.story .cta--ghost-gold {
  --fg: #876A3F;
  --bd: rgba(135,106,63,.5);
}
.story .cta--ghost-gold i { border-color: rgba(135,106,63,.4); }
.story .cta--ghost-gold:hover {
  --fg: #1F1812;
  --bg: linear-gradient(180deg, #D6B884 0%, #B58E58 100%);
  --bd: #B58E58;
}

.story__plate {
  position: relative;
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid rgba(31,24,18,.14);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.18);
}
.story__plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.85);
  transition: transform 1.8s var(--ease-deep);
}
.story__plate:hover img { transform: scale(1.04); }
.story__plate figcaption {
  position: absolute; left: 22px; bottom: 22px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 16px;
  background: rgba(20,17,13,.7);
  border: 1px solid rgba(225,213,189,.14);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}
.story__plate figcaption span {
  font: 400 13px/1 var(--f-display);
  font-style: italic;
  color: var(--ivory);
}
.story__plate figcaption small {
  font: 500 9px/1 var(--f-sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-3);
}


/* ═══════════════════════════════════════════════════════════
   SUITES — premium cards
   ═══════════════════════════════════════════════════════════ */

.suites {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}
.suites__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: 60px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.suites__head .display { margin-top: 18px; }
.suites__lede {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 480px;
}
.suites__lede p {
  margin: 0;
  color: var(--ink); opacity: .85;
  font-size: 16px;
  line-height: 1.75;
}
.suites__lede em { color: var(--gold-3); font-style: italic; }
.suites__lede .cta { align-self: flex-start; }

.suites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.suite {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform .8s var(--ease-deep), border-color .5s var(--ease), box-shadow .6s var(--ease);
}
.suite::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(120% 50% at 50% -10%, rgba(184,153,104,.08), transparent 60%);
  opacity: 0;
  transition: opacity .55s var(--ease);
}
.suite:hover {
  transform: translateY(-6px);
  border-color: rgba(184,153,104,.28);
  box-shadow: 0 50px 90px -40px rgba(0,0,0,.7);
}
.suite:hover::before { opacity: 1; }

.suite--featured {
  border-color: rgba(184,153,104,.22);
  background:
    linear-gradient(180deg, rgba(40,30,18,.55), var(--bg-3));
}

.suite__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.suite__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.85);
  transition: transform 1.6s var(--ease-deep);
}
.suite:hover .suite__media img { transform: scale(1.06); }
.suite__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,17,13,.65) 100%);
}

.suite__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 7px 14px;
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold-3);
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(0,0,0,.6);
}
.suite__badge--featured { background: linear-gradient(180deg, var(--gold-3), var(--gold)); color: #1A1208; }
.suite__badge--lux { background: var(--ivory); color: #1A1208; }
.suite__badge--popular { background: linear-gradient(180deg, #D6624A, #B14A33); color: var(--ivory); }

.suite__zoom {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(20,17,13,.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(225,213,189,.16);
  color: var(--ivory);
  transition: background .3s var(--ease-soft), border-color .3s var(--ease-soft);
}
.suite__zoom:hover { background: rgba(184,153,104,.6); border-color: var(--gold-3); }

.suite__body {
  padding: 26px 26px 28px;
  display: flex; flex-direction: column;
  gap: 14px;
  flex: 1;
}
.suite__kicker {
  margin: 0;
  font: 500 10.5px/1 var(--f-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.suite__body h3 {
  margin: 0;
  font: 400 27px/1.1 var(--f-display);
  color: var(--ivory);
  letter-spacing: -0.012em;
}
.suite__lede {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-mute);
  line-height: 1.6;
}
.suite__meta {
  list-style: none; padding: 0; margin: 4px 0 8px;
  display: flex; flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.suite__meta li {
  display: inline-flex; align-items: center;
  gap: 8px;
  font: 500 11.5px/1 var(--f-sans);
  color: var(--ink-mute);
}
.suite__meta li i { color: var(--gold-3); display: inline-grid; place-items: center; }

.suite__foot {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.suite__price { margin: 0; line-height: 1; }
.suite__price small {
  display: block;
  font: 500 9.5px/1 var(--f-sans);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 6px;
}
.suite__price strong {
  font: 400 24px/1 var(--f-display);
  color: var(--gold-3);
}


/* ═══════════════════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════════════════ */

.stats {
  padding: clamp(60px, 8vw, 100px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.stats__list li {
  display: flex; flex-direction: column;
  gap: 10px;
  text-align: left;
}
.stats__list strong {
  font: 300 clamp(28px, 3vw, 44px)/1 var(--f-display);
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.stats__list span {
  font: 500 11px/1.5 var(--f-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}


/* ═══════════════════════════════════════════════════════════
   DINING
   ═══════════════════════════════════════════════════════════ */

.dining {
  padding: var(--section) 0;
}
.dining__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.dining__plate {
  margin: 0;
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.dining__plate img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.85) brightness(.92);
  transition: transform 1.8s var(--ease-deep);
}
.dining__plate:hover img { transform: scale(1.04); }
.dining__plate figcaption {
  position: absolute; left: 22px; bottom: 22px;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 16px;
  background: rgba(20,17,13,.6);
  border: 1px solid rgba(225,213,189,.12);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}
.dining__plate figcaption span {
  font: 400 13px/1 var(--f-display);
  font-style: italic;
  color: var(--ivory);
}
.dining__plate figcaption small {
  font: 500 9px/1 var(--f-sans);
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-3);
}

.dining__copy .display { margin: 22px 0 26px; }
.dining__copy > p {
  margin: 0;
  font-size: 16px;
  color: var(--ink); opacity: .85;
  max-width: 480px;
  line-height: 1.75;
}
.dining__copy strong { color: var(--ivory); font-weight: 500; }

.venues {
  list-style: none;
  padding: 0;
  margin: 36px 0 30px;
  border-top: 1px solid var(--line);
}
.venues li {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .55s var(--ease-deep);
}
.venues li:hover { padding-left: 10px; }
.venues__no {
  font: 300 18px/1 var(--f-display);
  font-style: italic;
  color: var(--gold-3);
}
.venues h4 {
  margin: 0 0 4px;
  font: 400 22px/1.1 var(--f-display);
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.venues p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.venues small {
  font: 500 10.5px/1 var(--f-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-3);
  white-space: nowrap;
}


/* ═══════════════════════════════════════════════════════════
   WELLNESS — cream interlude
   ═══════════════════════════════════════════════════════════ */

.wellness {
  padding: var(--section) 0;
  background: var(--bg-cream-2);
  color: #2A211A;
  position: relative;
  overflow: hidden;
}
.wellness::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 .35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: .07;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.wellness > .container { position: relative; }
.wellness .eyebrow { color: #876A3F; }
.wellness .eyebrow::before { background: linear-gradient(90deg, #B58E58, transparent); }
.wellness__head {
  margin-bottom: 50px;
  display: grid; gap: 22px;
}
.wellness__head .display { max-width: 700px; color: #1F1812; }
.wellness__head .display em { color: #876A3F; }

.wellness__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(31,24,18,.18);
  border-bottom: 1px solid rgba(31,24,18,.18);
}
.ritual {
  padding: 36px 30px 38px;
  border-right: 1px solid rgba(31,24,18,.14);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: background .45s var(--ease);
}
.ritual:last-child { border-right: 0; }
.ritual:hover { background: rgba(31,24,18,.05); }
.ritual__no {
  font: 400 14px/1 var(--f-display);
  font-style: italic;
  color: #876A3F;
  letter-spacing: .04em;
}
.ritual h4 {
  margin: 0;
  font: 400 24px/1.1 var(--f-display);
  letter-spacing: -0.012em;
  color: #1F1812;
}
.ritual p {
  margin: 0;
  font-size: 13.5px;
  color: #574638;
  line-height: 1.65;
  flex: 1;
}
.ritual small {
  margin-top: 8px;
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #876A3F;
}


/* ═══════════════════════════════════════════════════════════
   EXPERIENCES
   ═══════════════════════════════════════════════════════════ */

.exp {
  padding: var(--section) 0;
}
.exp__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: end;
  margin-bottom: 50px;
}
.exp__head .display { margin-top: 18px; }
.exp__head p {
  max-width: 460px;
  margin: 0;
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.7;
}

.exp__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.exp__card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex; align-items: flex-end;
  isolation: isolate;
  transition: transform .8s var(--ease-deep), border-color .5s var(--ease);
}
.exp__card figure {
  position: absolute; inset: 0;
  margin: 0; z-index: -1;
}
.exp__card figure img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(.85) brightness(.85);
  transition: transform 1.8s var(--ease-deep);
}
.exp__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(20,17,13,.9) 100%);
  z-index: -1;
}
.exp__card:hover { border-color: rgba(184,153,104,.3); }
.exp__card:hover figure img { transform: scale(1.06); }

.exp__cap {
  padding: 26px;
  width: 100%;
  color: var(--ivory);
}
.exp__no {
  display: block;
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 16px;
}
.exp__cap h3 {
  margin: 0 0 12px;
  font: 400 24px/1.1 var(--f-display);
  letter-spacing: -0.012em;
}
.exp__cap h3 em { font-style: italic; color: var(--gold-3); display: block; }
.exp__cap small {
  font: 500 10.5px/1 var(--f-sans);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}


/* ═══════════════════════════════════════════════════════════
   VOICE
   ═══════════════════════════════════════════════════════════ */

.voice {
  padding: var(--section) 0;
  border-top: 1px solid var(--line);
}
.voice__quote {
  margin: 30px 0 0;
  max-width: 1100px;
}
.voice blockquote {
  margin: 0;
  font: 200 clamp(28px, 3.6vw, 50px)/1.32 var(--f-display);
  letter-spacing: -0.018em;
  color: var(--ivory);
  position: relative;
  padding-left: clamp(40px, 5vw, 80px);
}
.voice blockquote::before {
  content: "“";
  position: absolute; left: 0; top: -24px;
  font: 300 clamp(80px, 10vw, 140px)/1 var(--f-display);
  font-style: italic;
  color: var(--gold-3);
  opacity: .42;
}
.voice blockquote em { font-style: italic; color: var(--gold-3); font-weight: 200; }

.voice figcaption {
  margin-top: 32px;
  padding-left: clamp(40px, 5vw, 80px);
  display: flex; flex-wrap: wrap;
  gap: 18px; align-items: center;
  font: 500 12px/1 var(--f-sans);
  letter-spacing: .14em;
}
.voice figcaption strong { color: var(--ivory); text-transform: uppercase; letter-spacing: .26em; }
.voice figcaption span { color: var(--ink-mute); }
.voice figcaption small { color: var(--ink-dim); margin-left: auto; letter-spacing: .22em; text-transform: uppercase; }


/* ═══════════════════════════════════════════════════════════
   ENQUIRE — contact strip
   ═══════════════════════════════════════════════════════════ */

.enquire {
  padding: var(--section) 0 calc(var(--section) - 30px);
  border-top: 1px solid var(--line);
}
.enquire__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.enquire__inner .display { margin-top: 22px; }
.enquire__col p {
  margin: 0 0 32px;
  color: var(--ink); opacity: .85;
  font-size: 16px;
  max-width: 480px;
  line-height: 1.75;
}
.enquire__actions { display: flex; flex-wrap: wrap; gap: 14px; }


/* ═══════════════════════════════════════════════════════════
   FOOTER — magazine
   ═══════════════════════════════════════════════════════════ */

.foot {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0 30px;
  background: linear-gradient(180deg, var(--bg) 0%, #0A0805 100%);
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.foot::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,153,104,.4), transparent);
}

.foot__top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}
.foot__giant {
  margin: 0;
  font: 200 clamp(56px, 11vw, 170px)/0.92 var(--f-display);
  letter-spacing: -0.038em;
  color: var(--ivory);
  max-width: 1000px;
}
.foot__giant em { font-style: italic; color: var(--gold-3); }

.foot__back {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 18px;
  padding: 14px 22px 14px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  background: rgba(225,213,189,.03);
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--ink-mute);
  transition: color .35s var(--ease-soft), border-color .35s var(--ease-soft), background .35s var(--ease-soft);
  white-space: nowrap;
}
.foot__back i {
  width: 26px; height: 26px;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  position: relative;
}
.foot__back i::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold-3);
  border-right: 1px solid var(--gold-3);
  transform: translate(-50%, -25%) rotate(-45deg);
}
.foot__back:hover { color: var(--ivory); border-color: var(--gold-3); background: rgba(184,153,104,.06); }

.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
}
.foot__col h5 {
  margin: 0 0 22px;
  font: 500 10px/1 var(--f-sans);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-3);
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.foot__col a, .foot__col p {
  font-size: 14px;
  color: var(--ink); opacity: .85;
  line-height: 1.7;
  margin: 0;
  transition: color .25s var(--ease-soft);
}
.foot__col a:hover { color: var(--gold-3); }

.foot__col--brand .brand { margin-bottom: 14px; }
.foot__col--brand .brand__word { font-size: 24px; }
.foot__coord {
  font: 500 11px/1 var(--f-sans);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-dim) !important;
  margin-top: 14px !important;
}

.news {
  display: flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(225,213,189,.02);
  margin-top: 14px;
  transition: border-color .3s var(--ease-soft);
}
.news:focus-within { border-color: var(--gold-3); }
.news input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 14px 18px;
  color: var(--ivory);
  font: 400 13px/1 var(--f-sans);
  outline: none;
}
.news input::placeholder { color: var(--ink-dim); }
.news button {
  width: 50px;
  background: var(--gold-3);
  color: var(--bg);
  display: grid; place-items: center;
  transition: background .3s var(--ease-soft);
}
.news button:hover { background: var(--ivory); }

.foot__bottom {
  display: flex; flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between; align-items: center;
  padding-top: 28px;
  font-size: 11.5px;
  color: var(--ink-dim);
  letter-spacing: .04em;
}
.foot__legal { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin: 0; }
.foot__legal span { opacity: .5; }
.foot__legal a:hover { color: var(--gold-3); }
.foot__small em { font-style: italic; color: var(--gold-3); }


/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1240px) {
  .nav__menu { gap: 22px; }
  .nav__menu a { font-size: 11.5px; }
  .nav__phone span { display: none; }

  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__panel { grid-template-columns: 1fr 1fr; }
  .panel { padding: 18px 22px; }

  .bk { grid-template-columns: 1fr 1fr 1fr; }
  .bk__field { border-right: 1px solid var(--line); }
  .bk__field:nth-child(3n) { border-right: 0; }
  .bk__submit { grid-column: 1 / -1; height: 56px; }

  .pillars__list { grid-template-columns: repeat(3, 1fr); gap: 30px 0; }
  .pillars__list li:nth-child(3n) { border-right: 0; }
  .pillars__list li:nth-child(n+4) { padding-top: 0; }

  .story__inner, .dining__inner { grid-template-columns: 1fr; gap: 50px; }
  .story__plate, .dining__plate { aspect-ratio: 4/3; max-width: 760px; }

  .suites__head, .exp__head, .enquire__inner { grid-template-columns: 1fr; gap: 24px; }
  .suites__grid { grid-template-columns: repeat(2, 1fr); }
  .wellness__grid { grid-template-columns: repeat(2, 1fr); }
  .ritual { border-bottom: 1px solid var(--line); }
  .ritual:nth-child(2n) { border-right: 0; }
  .ritual:nth-child(n+3) { border-bottom: 0; }
  .exp__grid { grid-template-columns: repeat(2, 1fr); }

  .stats__list { grid-template-columns: repeat(3, 1fr); gap: 30px; }

  .foot__grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot__col--brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .nav__menu, .nav__lang, .nav__phone { display: none; }
  .nav__cta { padding: 0 16px; height: 40px; font-size: 10.5px; }
  .nav__burger {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px;
    border: 1px solid var(--line-2);
    border-radius: 50%;
  }
  .nav__burger span { width: 16px; height: 1px; background: var(--ivory); margin: 0 auto; }

  .hero { padding: 130px 0 80px; min-height: 92svh; }
  .hero__panel { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(48px, 13vw, 84px); }

  .pillars__list { grid-template-columns: 1fr 1fr; }
  .pillars__list li:nth-child(2n) { border-right: 0; }

  .suites__grid { grid-template-columns: 1fr; }

  .stats__list { grid-template-columns: 1fr 1fr; }

  .exp__grid { grid-template-columns: 1fr; }

  .voice blockquote { padding-left: 30px; font-size: clamp(22px, 5.4vw, 32px); }
  .voice blockquote::before { font-size: 70px; top: -10px; }
  .voice figcaption { padding-left: 30px; gap: 10px; }
  .voice figcaption small { margin-left: 0; }

  .foot__top { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 50px; }
  .foot__back { margin-top: 0; }
  .foot__grid { grid-template-columns: 1fr 1fr; padding: 50px 0; gap: 30px; }
  .foot__col--brand { grid-column: 1 / -1; }
  .foot__col--news { grid-column: 1 / -1; }
  .foot__bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }

  .hero__title { font-size: clamp(44px, 14vw, 64px); }
  .kicker { font-size: 10px; padding: 7px 14px; letter-spacing: .22em; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .cta { width: 100%; }

  .booking { margin-top: -40px; }
  .bk { grid-template-columns: 1fr 1fr; padding: 12px; }
  .bk__field { padding: 12px 14px; border-right: 0; }
  .bk__field:nth-child(odd) { border-right: 1px solid var(--line); }
  .bk__field:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .bk__icon { width: 32px; height: 32px; }
  .bk__val strong { font-size: 14px; }

  .pillars__list { grid-template-columns: 1fr; gap: 24px; }
  .pillars__list li { padding: 0; border-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
  .pillars__list li:last-child { border-bottom: 0; }

  .wellness__grid { grid-template-columns: 1fr; }
  .ritual { border-right: 0; }

  .stats__list { grid-template-columns: 1fr 1fr; gap: 24px; }
  .foot__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
}


/* ═══════════════════════════════════════════════════════════
   Generic page (legal/CMS) + flash
   ═══════════════════════════════════════════════════════════ */

.page-wrap {
  padding: 160px 0 var(--section);
  min-height: 70vh;
}
.page-content { max-width: 760px; }
.page-content .display { margin: 18px 0 30px; }
.prose {
  color: var(--ink);
  opacity: .85;
  font-size: 16px;
  line-height: 1.75;
}
.prose p { margin: 0 0 18px; }
.prose h2, .prose h3 { color: var(--ivory); font-family: var(--f-display); font-weight: 400; margin: 28px 0 14px; }
.prose a { color: var(--gold-3); border-bottom: 1px solid var(--line-2); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 18px; }

.page-back { margin-top: 50px; }
.page-back a { color: var(--gold-3); }

.error-wrap {
  padding: 200px 0 160px;
  min-height: 80vh;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.error-wrap .display { margin: 8px 0 8px; }
.error-wrap p { color: var(--ink-mute); margin: 0 0 10px; }

.flash {
  margin: 0 0 16px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  border: 1px solid;
}
.flash--success { background: rgba(31,122,79,.1); border-color: rgba(31,122,79,.3); color: #b8e0c5; }
.flash--error   { background: rgba(181,57,42,.12); border-color: rgba(181,57,42,.35); color: #f4baaf; }

/* booking inputs (real form) */
.bk__val select,
.bk__val input[type="date"],
.bk__val input[type="number"],
.bk__val input[type="text"] {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--ivory);
  font: 500 15.5px/1.1 var(--f-sans);
  outline: none;
  width: 100%;
  cursor: pointer;
}
.bk__val select { appearance: none; -webkit-appearance: none; }
.bk__val input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(.7) sepia(.5); cursor: pointer; }
