/* ═══════════════════════════════════════════════════════════════
   MAISON LUMIÈRE — Golden Dusk Neutral
   Chantilly Veil #FBF7F1 · Golden Dune Silk #D9C6A3
   Cashmere Taupe #8B7A65 · Marble Whisper #D6CEC4 · Ebony #2B2520
   ═══════════════════════════════════════════════════════════════ */

:root {
  --cream: #FBF7F1;
  --gold: #D9C6A3;
  --gold-deep: #C3AB7E;
  --taupe: #8B7A65;
  --marble: #D6CEC4;
  --ebony: #2B2520;
  --ebony-soft: #3A322B;
  --text: #5C4A3A;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --ease-lux: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

::selection { background: var(--gold); color: var(--ebony); }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(3rem, 7vh, 6rem); }

.hidden-field { display: none; }

/* ── Typography helpers ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2px;
  height: 1.1rem;
  background: var(--gold-deep);
  flex: none;
  border-radius: 2px;
}
.eyebrow--light { color: var(--gold); }

.title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.12;
  color: var(--ebony);
  letter-spacing: 0.01em;
  margin-bottom: 1.8rem;
}
.title em {
  font-style: italic;
  font-weight: 300;
  color: var(--taupe);
}
.title--light { color: var(--cream); }
.title--light em { color: var(--gold); }

.lead {
  max-width: 38rem;
  font-weight: 300;
  font-size: 1.04rem;
}

/* ── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 1.05rem 2.4rem;
  border: 1px solid transparent;
  transition: all 0.5s var(--ease-lux);
  text-align: center;
}
.btn--gold {
  background: var(--gold);
  color: var(--ebony);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost {
  border-color: rgba(251, 247, 241, 0.5);
  color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--ebony);
  border-color: var(--cream);
}
.btn--dark {
  background: var(--ebony);
  color: var(--cream);
  border-color: var(--ebony);
}
.btn--dark:hover {
  background: transparent;
  color: var(--ebony);
}
.btn--full { width: 100%; }

/* ── Preloader ─────────────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--cream);
  display: grid;
  place-items: center;
  transition: opacity 0.9s var(--ease-lux), visibility 0.9s;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preloader__logo {
  width: clamp(120px, 18vw, 180px);
  height: auto;
  animation: logo-breathe 2.4s ease-in-out infinite;
}
@keyframes logo-breathe { 50% { opacity: 0.4; } }

/* ── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.6s var(--ease-lux), box-shadow 0.6s, padding 0.6s;
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.6rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.5s var(--ease-lux);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  transition: color 0.5s;
}
.nav__mark {
  position: relative;
  width: 28px;
  height: 41px;
  flex: none;
}
.nav__mark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s var(--ease-lux);
}
.nav__mark-img--dark { opacity: 0; }
.nav.is-scrolled .nav__mark-img--light,
.nav.is-open .nav__mark-img--light { opacity: 0; }
.nav.is-scrolled .nav__mark-img--dark,
.nav.is-open .nav__mark-img--dark { opacity: 1; }
.nav__wordmark {
  position: relative;
  display: block;
  height: 2.8rem;
  width: 8.5rem;
  flex: none;
}
.nav__wordmark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transition: opacity 0.5s var(--ease-lux);
}
.nav__wordmark-img--dark { opacity: 0; }
.nav.is-scrolled .nav__wordmark-img--light,
.nav.is-open .nav__wordmark-img--light { opacity: 0; }
.nav.is-scrolled .nav__wordmark-img--dark,
.nav.is-open .nav__wordmark-img--dark { opacity: 1; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding-block: 0.3rem;
  transition: color 0.5s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ebony);
  background: var(--gold);
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  transition: all 0.5s var(--ease-lux);
}
.nav__cta:hover { background: transparent; color: var(--gold); }

.nav.is-scrolled {
  background: rgba(245, 240, 232, 0.72);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(139, 122, 101, 0.18), 0 4px 24px rgba(0, 0, 0, 0.07);
}
.nav.is-scrolled .nav__inner { padding-block: 0.9rem; }
.nav.is-scrolled .nav__brand,
.nav.is-scrolled .nav__link { color: var(--ebony); }
.nav.is-scrolled .nav__cta { color: var(--ebony); }
.nav.is-scrolled .nav__cta:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 42px;
  height: 42px;
  align-items: center;
  z-index: 110;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.45s var(--ease-lux);
}
.nav.is-scrolled .nav__toggle span,
.nav.is-open .nav__toggle span { background: var(--ebony); }
.nav.is-open .nav__toggle span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ebony);
}
.hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
  will-change: transform;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% 22%;
  transform: scale(1.18);
  animation: hero-settle 5s var(--ease-lux) forwards;
}
@keyframes hero-settle { to { transform: scale(1); } }
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(43, 37, 32, 0.82) 18%, rgba(43, 37, 32, 0.35) 55%, rgba(43, 37, 32, 0.15) 100%),
    linear-gradient(to top, rgba(43, 37, 32, 0.55) 0%, transparent 35%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: 8rem 6rem;
}
.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 1.04;
  color: var(--cream);
  letter-spacing: 0.012em;
  margin-bottom: 2rem;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.hero__title .line span {
  display: block;
  transform: translateY(110%);
  animation: line-rise 1.4s var(--ease-lux) forwards;
}
.hero__title .line:nth-child(2) span { animation-delay: 0.22s; }
@keyframes line-rise { to { transform: translateY(0); } }
.hero__sub {
  max-width: 30rem;
  font-size: 1.06rem;
  font-weight: 200;
  color: rgba(251, 247, 241, 0.85);
  margin-bottom: 2.8rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(251, 247, 241, 0.7);
  transition: color 0.4s;
}
.hero__scroll:hover { color: var(--gold); }
.hero__scroll-label {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 52px;
  background: currentColor;
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(-100%);
  animation: scroll-drip 2.2s var(--ease-lux) infinite;
}
@keyframes scroll-drip {
  0% { transform: translateY(-100%); }
  55% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

/* ── Maison ────────────────────────────────────────────────────── */
.maison { background: var(--cream); }
.maison__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.maison__copy p { margin-bottom: 0.9rem; max-width: 34rem; }
.maison__copy em { font-style: italic; color: var(--gold-deep); }
.maison__virtues {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.maison__virtues li {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--taupe);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.maison__virtues li span {
  font-style: normal;
  color: var(--ebony);
}
.maison__media {
  position: relative;
}
.maison__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 15%;
}
.maison__media::before {
  content: "";
  position: absolute;
  inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 1px solid var(--gold);
  z-index: -1;
}
.maison__media figcaption {
  margin-top: 1.2rem;
  padding-left: 1.8rem;
  letter-spacing: 0.12em;
  color: var(--taupe);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

/* ── Interlude ─────────────────────────────────────────────────── */
.interlude {
  position: relative;
  background: var(--ebony);
  padding-block: clamp(3rem, 7vh, 5rem);
  text-align: center;
}
.interlude::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/pattern-art-deco.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.07;
  pointer-events: none;
}
.interlude__lines {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 300;
  color: rgba(251, 247, 241, 0.88);
  line-height: 1.4;
}
.interlude__lines em { color: var(--gold); }

/* ── Sensorial gallery ─────────────────────────────────────────── */
.gallery { background: var(--cream); padding-bottom: clamp(2rem, 5vh, 4rem); }
.gallery__head { max-width: 40rem; margin-bottom: 3.5rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}
.gallery__item--lift { margin-top: clamp(2rem, 5vw, 4.5rem); }
.gallery__frame { overflow: hidden; }
.gallery__frame img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-lux);
}
.gallery__item:hover .gallery__frame img { transform: scale(1.07); }
.gallery__item figcaption {
  margin-top: 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}
.gallery__item figcaption span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
}

/* ── Menu ──────────────────────────────────────────────────────── */
.menu { background: var(--cream); padding-top: clamp(1.5rem, 3vh, 2.5rem); }
.menu__head { max-width: 44rem; margin-bottom: 1.8rem; }

.menu__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  border-bottom: 1px solid var(--marble);
  margin-bottom: 2rem;
  padding-bottom: 0;
}
.menu__tab {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0.8rem 1.5rem;
  position: relative;
  transition: color 0.4s, background 0.4s;
  border-radius: 2px 2px 0 0;
}
.menu__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gold-deep);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-lux);
}
.menu__tab:hover { color: var(--ebony); background: rgba(217, 198, 163, 0.08); }
.menu__tab.is-active { color: var(--ebony); }
.menu__tab.is-active::after { transform: scaleX(1); }

.menu__panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
  gap: 1.4rem;
  animation: panel-in 0.55s ease-in-out;
}
.menu__panel[hidden] { display: none; }
@keyframes panel-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.ritual {
  background: #fff;
  border: 1px solid rgba(214, 206, 196, 0.5);
  padding: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-lux);
}
.ritual:hover {
  border-color: rgba(195, 171, 126, 0.7);
  box-shadow: 0 20px 48px -24px rgba(139, 122, 101, 0.28);
  transform: translateY(-3px);
}
.ritual--featured {
  background: linear-gradient(160deg, #fff 0%, #FAF4E9 100%);
  border-color: rgba(195, 171, 126, 0.75);
}
.ritual__img {
  height: 168px;
  flex: none;
  overflow: hidden;
  position: relative;
}
.ritual__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.54) 0%, rgba(0,0,0,0.1) 50%, transparent 78%);
  pointer-events: none;
  z-index: 1;
}
.ritual__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.2s var(--ease-lux);
}
.ritual:hover .ritual__img img { transform: scale(1.06); }
.ritual__img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  z-index: 2;
}
.ritual__body {
  padding: clamp(1.3rem, 2.5vw, 1.8rem);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ritual__head {
  margin-bottom: 0.3rem;
}
.ritual__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ebony);
  line-height: 1.15;
}
.ritual__badge {
  position: absolute;
  top: 0.7rem;
  right: 0.75rem;
  z-index: 2;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.95);
  background: rgba(195, 171, 126, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(217, 198, 163, 0.55);
  padding: 0.28rem 0.78rem;
  border-radius: 2px;
  white-space: nowrap;
}
.ritual__meta {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.92);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 0.26rem 0.72rem;
  border-radius: 2px;
  margin: 0;
}
.ritual__desc {
  font-size: 0.96rem;
  line-height: 1.72;
  max-width: 56rem;
  padding-top: 0.4rem;
  margin-top: auto;
}
.ritual__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  font-style: italic;
  color: var(--taupe);
}

.addons {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
  gap: 1.2rem;
}
.addon {
  border: 1px solid rgba(214, 206, 196, 0.5);
  background: #fff;
  padding: 1.8rem 2rem;
  position: relative;
  transition: border-color 0.5s, box-shadow 0.5s, transform 0.5s var(--ease-lux);
}
.addon::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.45s var(--ease-lux);
}
.addon:hover::after { width: 100%; }
.addon:hover { border-color: rgba(195, 171, 126, 0.5); box-shadow: 0 12px 32px -16px rgba(139,122,101,0.2); transform: translateY(-3px); }
.addon__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ebony);
  margin-bottom: 0.2rem;
}
.addon__meta {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0.45rem 0 0.75rem;
}
.addon__desc { font-size: 0.88rem; line-height: 1.65; }

.menu__footnote {
  margin-top: 2.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--taupe);
  font-style: italic;
}

/* ── Signature ─────────────────────────────────────────────────── */
.signature {
  position: relative;
  background: var(--ebony);
  overflow: hidden;
  padding-block: clamp(6rem, 16vh, 11rem);
}
.signature__media {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  will-change: transform;
}
.signature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 25%;
  opacity: 0.5;
}
.signature__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(43, 37, 32, 0.94) 30%, rgba(43, 37, 32, 0.55) 70%, rgba(43, 37, 32, 0.35) 100%);
}
.signature__content { position: relative; z-index: 1; max-width: var(--container); }
.signature__copy {
  max-width: 32rem;
  color: rgba(251, 247, 241, 0.82);
  font-weight: 200;
  margin-bottom: 3rem;
}
.signature__details {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: 3.2rem;
}
.signature__detail { display: flex; flex-direction: column; gap: 0.3rem; }
.signature__detail .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.signature__detail .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.6);
}

/* ── Membership ────────────────────────────────────────────────── */
.membership {
  position: relative;
  background: var(--ebony);
  overflow: hidden;
}
.membership__bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  will-change: transform;
}
.membership__bg img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  opacity: 0.80;
  transform: scaleX(-1) scale(1.14);
}
.membership__bg.is-visible img {
  animation: membership-settle 5.5s var(--ease-lux) forwards;
}
@keyframes membership-settle {
  from { transform: scaleX(-1) scale(1.14); }
  to   { transform: scaleX(-1) scale(1);    }
}
.membership__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(43, 37, 32, 0.78) 0%,
    rgba(43, 37, 32, 0.82) 32%,
    rgba(43, 37, 32, 0.95) 48%,
    rgba(43, 37, 32, 1.00) 55%
  );
}
.membership__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.membership__lead {
  color: rgba(251, 247, 241, 0.78);
}
.membership__privilege {
  margin-top: 1.5rem;
  padding: 1.1rem 1.5rem;
  border-left: 3px solid var(--gold-deep);
  background: rgba(217, 198, 163, 0.07);
  backdrop-filter: blur(12px);
  border-radius: 0 2px 2px 0;
}
.membership__privilege h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.membership__privilege p { font-size: 0.95rem; line-height: 1.7; color: rgba(251, 247, 241, 0.75); }

.membership__card {
  background: rgba(15, 12, 10, 0.72);
  color: var(--cream);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 198, 163, 0.22);
  border-top: 2px solid var(--gold-deep);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.membership__card::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(217, 198, 163, 0.18) 0%, transparent 65%);
  pointer-events: none;
}
.membership__card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(217, 198, 163, 0.2);
}
.membership__mark { width: 38px; height: auto; opacity: 0.9; }
.membership__price-block { text-align: right; }
.membership__tier-label {
  font-size: 0.64rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.45);
  margin-bottom: 0.3rem;
}
.membership__price {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--gold);
  line-height: 1;
}
.membership__price span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.5);
  margin-left: 0.4rem;
}
.membership__list {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
}
.membership__list li {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(251, 247, 241, 0.88);
  padding: 0.48rem 0;
  border-bottom: 1px solid rgba(251, 247, 241, 0.09);
  display: flex;
  gap: 0.85rem;
  align-items: center;
}
.membership__list li::before {
  content: "✓";
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 400;
  flex: none;
  line-height: 1;
}
.membership__card .btn--dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ebony);
  width: 100%;
}
.membership__card .btn--dark:hover {
  background: transparent;
  color: var(--gold);
}

/* ── Journey ───────────────────────────────────────────────────── */
.journey { background: var(--cream); }
.journey__head { max-width: 40rem; margin-bottom: 4rem; }
.journey__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  counter-reset: step;
  margin-bottom: 5rem;
}
.journey__step {
  position: relative;
}
.journey__step-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}
.journey__num {
  flex: none;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
  opacity: 0.65;
}
.journey__step h3 {
  flex: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ebony);
  white-space: nowrap;
  margin-bottom: 0;
}
.journey__rule {
  flex: 1;
  height: 1px;
  background: var(--marble);
  display: block;
  min-width: 1rem;
}
.journey__step p { font-size: 0.93rem; line-height: 1.72; }

.journey__notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.journey__note {
  background: rgba(217, 198, 163, 0.09);
  border: 1px solid rgba(214, 206, 196, 0.35);
  border-top: 2px solid var(--gold-deep);
  padding: 1.6rem 1.8rem;
}
.journey__note-icon {
  display: block;
  width: 1.3rem;
  height: 1.3rem;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  flex: none;
}
.journey__note h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ebony);
  margin-bottom: 0.65rem;
}
.journey__note p { font-size: 0.85rem; line-height: 1.68; }

/* ── Reserve ───────────────────────────────────────────────────── */
.reserve {
  position: relative;
  overflow: hidden;
  background: var(--ebony);
  color: var(--cream);
  padding-block: 0;
}

/* Cinematic atmospheric gradient — no solid zones, image breathes through everywhere */
.reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Left reading surface: never fully opaque so image texture lives beneath the text */
    linear-gradient(105deg,
      rgba(18, 13, 10, 0.92)      0%,
      rgba(24, 18, 14, 0.86)     10%,
      rgba(32, 25, 19, 0.74)     22%,
      rgba(38, 31, 24, 0.55)     34%,
      rgba(42, 35, 28, 0.30)     46%,
      rgba(43, 37, 32, 0.10)     58%,
      transparent                 68%),
    /* Warm amber atmospheric depth bleeding from the scene */
    radial-gradient(ellipse 48% 58% at 68% 44%,
      rgba(175, 142, 88, 0.13)   0%,
      transparent                 65%),
    /* Top edge — dissolves into section above */
    linear-gradient(to bottom,
      rgba(18, 13, 10, 0.70)      0%,
      rgba(25, 19, 14, 0.28)      9%,
      transparent                 22%),
    /* Bottom edge — dissolves into footer below */
    linear-gradient(to top,
      rgba(18, 13, 10, 0.78)      0%,
      rgba(25, 19, 14, 0.32)      7%,
      transparent                 20%);
  z-index: 1;
  pointer-events: none;
}

.reserve__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
}
.reserve__intro {
  padding-block: clamp(4rem, 9vh, 7rem);
  position: relative;
  z-index: 2;
}
.reserve__copy {
  max-width: 26rem;
  font-weight: 200;
  color: rgba(251, 247, 241, 0.78);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.reserve__contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(217, 198, 163, 0.18);
}
.reserve__line {
  font-family: var(--font-body);
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  color: rgba(251, 247, 241, 0.75);
  width: fit-content;
  position: relative;
  transition: color 0.4s;
}
a.reserve__line::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-lux);
}
a.reserve__line:hover { color: var(--gold); }
a.reserve__line:hover::after { transform: scaleX(1); transform-origin: left; }
.reserve__line--muted {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.38);
  margin-top: 0.6rem;
}

.reserve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

/* Full-bleed image — atmosphere, not a panel */
.reserve__panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  margin: 0;
}
.reserve__panel::after { content: none; }
.reserve__panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 30%;
  display: block;
  filter: brightness(0.72) saturate(0.88);
  transform: scale(1.14);
}
.reserve__panel.is-visible img {
  animation: reserve-settle 5.5s var(--ease-lux) forwards;
}
@keyframes reserve-settle {
  from { transform: scale(1.14); }
  to   { transform: scale(1);    }
}

/* ── Footer ────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: #221D18;
  overflow: hidden;
  color: rgba(251, 247, 241, 0.75);
  padding-top: clamp(3.5rem, 8vh, 5.5rem);
}
.footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(251, 247, 241, 0.1);
}
.footer__logo {
  width: clamp(120px, 14vw, 160px);
  height: auto;
  margin-bottom: 1.2rem;
}
.footer__tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.45);
  margin-top: 0.5rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__links a,
.footer__contact a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: fit-content;
  transition: color 0.4s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--gold); }
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__base {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-block: 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(251, 247, 241, 0.4);
}
.footer__whisper {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(217, 198, 163, 0.55);
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(251, 247, 241, 0.75);
  transition: color 0.4s;
}
.footer__social-link:hover { color: var(--gold); }
.footer__social-icon {
  width: 1rem;
  height: 1rem;
  flex: none;
  opacity: 0.7;
}
.footer__social-link:hover .footer__social-icon { opacity: 1; }

/* Social links in reserve section */
.btn__icon {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.reserve__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.reserve__social {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
}
.reserve__social-icon {
  width: 0.95rem;
  height: 0.95rem;
  flex: none;
  opacity: 0.6;
  color: var(--gold);
}

/* ── Reveal animations ─────────────────────────────────────────── */
.reveal,
.reveal-img {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-img { transform: translateY(48px); }
.reveal.is-visible,
.reveal-img.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-img { opacity: 1; transform: none; }
  .hero__title .line span { transform: none; }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1020px) {
  .maison__grid,
  .membership__grid,
  .reserve__grid {
    grid-template-columns: 1fr;
  }
  .maison__media { max-width: 540px; }
  .journey__steps { grid-template-columns: 1fr; gap: 2.6rem; }
  .journey__notes { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2.2rem; }
}

@media (max-width: 820px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    z-index: 105;
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s var(--ease-lux), visibility 0.6s;
  }
  .nav.is-open .nav__links { opacity: 1; visibility: visible; }
  .nav__link {
    color: var(--ebony) !important;
    font-size: 0.95rem;
    letter-spacing: 0.34em;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease-lux), transform 0.6s var(--ease-lux);
  }
  .nav.is-open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }
  .nav.is-open .nav__link:nth-child(1) { transition-delay: 0.1s; }
  .nav.is-open .nav__link:nth-child(2) { transition-delay: 0.17s; }
  .nav.is-open .nav__link:nth-child(3) { transition-delay: 0.24s; }
  .nav.is-open .nav__link:nth-child(4) { transition-delay: 0.31s; }
  .nav.is-open .nav__link:nth-child(5) { transition-delay: 0.38s; }
  .nav__cta {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s var(--ease-lux) 0.45s, transform 0.6s var(--ease-lux) 0.45s, background 0.5s, color 0.5s;
  }
  .nav.is-open .nav__cta { opacity: 1; transform: translateY(0); }
  .nav.is-open .nav__brand { color: var(--ebony); }

  .hero__content { padding-block: 7rem 7rem; }
  .hero__img {
    object-position: 52% 8%;
    transform: scale(1.08);
    animation-name: hero-settle-mobile;
  }
  @keyframes hero-settle-mobile { to { transform: scale(1); } }
  .signature__details { gap: 2rem; }
  .menu__tab { padding: 0.8rem 1rem; letter-spacing: 0.2em; }
  .footer__base { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .nav__wordmark { height: 2rem; width: 5.8rem; }
  .hero__actions .btn { width: 100%; }
  .maison__media::before { inset: 1rem -0.8rem -1rem 1rem; }
}
