/* ================================================
   BV HOUSE — Estelle-style motion + BV palette
   ================================================ */

:root {
  /* === BV HOUSE brand palette (from Colours 1 & 2) === */
  /* Cream / paper */
  --paper:        #faf2e5;   /* main page paper */
  --paper-warm:   #f8f3ec;   /* warm cream */
  --cream:        #ede4d7;   /* soft cream blocks */
  --cream-2:      #e6dcc7;
  /* Inks */
  --ink:          #271a14;   /* near-black coal */
  --ink-soft:     #3a3027;
  --ink-mute:     #7a6f64;
  /* Forest greens */
  --green:        #496345;   /* signature brand green */
  --green-mid:    #445c44;
  --green-deep:   #34492e;   /* paneled panel face — the brand wood-panel green */
  --green-deep-2: #2a3a26;   /* slightly darker — gradient end + recessed seams */
  --green-line:   #425440;   /* lighter panel-edge highlight */
  --green-sage:   #859474;
  --green-sage-d: #556b55;
  /* Wines / reds */
  --wine:         #ae2f2e;
  --wine-d:       #7a1c2a;
  /* Terracotta / clay */
  --clay:         #bc6540;
  --clay-2:       #bc6846;
  --clay-soft:    #d18f6d;
  /* Blush */
  --blush:        #daa89f;
  --blush-soft:   #d5a49a;
  /* Subtle gold from the wax seal */
  --gold:         #b89a5d;
  /* Rules */
  --rule:         rgba(39, 26, 20, 0.14);
  --rule-light:   rgba(250, 242, 229, 0.20);

  /* === Type — brand spec (Cormorant + Corinthia script + Jost) === */
  --serif:  "Cormorant Garamond", "Times New Roman", serif;
  --serif-i: "Cormorant Garamond", "Times New Roman", serif;
  --script: "Corinthia", "Cormorant Garamond", cursive;
  --sans:   "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Lock scroll while intro is on */
body.is-intro { overflow: hidden; }

/* ================================================
   PAGE-LOAD INTRO
   ================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  pointer-events: none;
  transform-origin: top;
  animation: introCurtain 1.6s 1.0s var(--ease-out) forwards;
}
.intro__mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: introMarkIn 0.9s 0.1s var(--ease-out) forwards,
             introMarkOut 0.5s 1.0s var(--ease) forwards;
}
.intro__bv {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(4.5rem, 12vw, 8rem);
  color: var(--green-deep);
  line-height: 1;
  letter-spacing: -0.01em;
}
.intro__house {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--green-deep);
  padding-left: 0.5em;
  font-weight: 300;
}
.intro__logo { width: clamp(140px, 18vw, 220px); height: auto; opacity: 0.95; }
.intro__columns {
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: introColsIn 0.8s 0.05s var(--ease-out) forwards;
}
.intro__columns span {
  display: block;
  width: 10px;
  height: 86px;
  background: var(--green-deep);
  opacity: 0.92;
  border-radius: 1px;
}
@keyframes introMarkIn {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes introMarkOut {
  to { opacity: 0; transform: translateY(-8px) scale(1.01); }
}
@keyframes introColsIn {
  from { opacity: 0; transform: scaleY(0.4); }
  to   { opacity: 1; transform: scaleY(1); }
}
@keyframes introCurtain {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}

/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(245, 236, 214, 0.06);
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--wine), var(--gold));
  transform: scaleX(var(--scroll, 0));
  transform-origin: left;
  transition: transform 0.08s linear;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
.center { text-align: center; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--ink);
}
.display--m { font-size: clamp(1.8rem, 3.2vw, 3rem); }
.display--s { font-size: clamp(1.5rem, 2.2vw, 2rem); margin-bottom: 16px; }

.h4 {
  font-family: "Cormorant SC", var(--serif);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin: 0 0 14px;
  text-transform: uppercase;
  color: var(--ink);
}

em { font-style: italic; color: var(--wine-d); font-weight: 400; font-family: var(--serif); }
/* On dark sections, terracotta/wine reads muddy — lift to blush soft so it sings */
.hero em,
.benefits em,
.tiers em,
.behind em,
.footer em,
.welcome__quote em,
.book-hero em,
.panel-green em {
  color: var(--blush-soft);
}
.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
}

.eyebrow {
  font-family: "Cormorant SC", var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 24px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow.center, .center .eyebrow { justify-content: center; }
.eyebrow--light { color: var(--blush-soft); }
.eyebrow--bare::before, .eyebrow--bare::after { display: none; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  color: var(--ink-soft);
  max-width: 680px;
  line-height: 1.4;
  margin: 0 0 64px;
}
.center.lede { margin-left: auto; margin-right: auto; }

.signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  margin-top: 32px;
}

.section-head {
  text-align: center;
  margin: 0 auto 80px;
  max-width: 880px;
}
.section-head .lede { margin-left: auto; margin-right: auto; }

/* ================================================
   BUTTONS / LINKS
   ================================================ */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--sans);
  position: relative;
  overflow: hidden;
  transition: color 0.4s var(--ease);
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateY(0); }

.btn--primary {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
}
.btn--primary::before { background: var(--wine-d); }
.btn--primary:hover { color: var(--paper); }

.btn--blush {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--ink);
}
.btn--blush::before { background: var(--blush-soft); }
.btn--blush:hover { color: var(--ink); }

.btn--ghost { background: transparent; }
.btn--ghost-light {
  border-color: var(--paper);
  color: var(--paper);
}
.btn--ghost-light::before { background: var(--paper); }
.btn--ghost-light:hover { color: var(--ink); }

.link-arrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-d);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), letter-spacing 0.4s var(--ease);
}
.link-arrow:hover {
  color: var(--ink);
  letter-spacing: 0.28em;
}

/* ================================================
   IMAGE FRAMES (real photography)
   ================================================ */
.frame {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  aspect-ratio: 4/3;
}
.frame--tall { aspect-ratio: 3/4; }
.frame__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
  will-change: transform;
}
.frame--hover:hover .frame__img { transform: scale(1.04); }
.frame__caption {
  position: absolute;
  bottom: 18px; left: 22px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--paper);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  z-index: 2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.frame:hover .frame__caption { opacity: 1; transform: translateY(0); }

/* ================================================
   NAV
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 245, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  transition: none;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* Both states share the pale-paper bar — no transparent over hero */
.nav[data-state="top"],
.nav[data-state="scrolled"] {
  background: rgba(250, 245, 234, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--rule);
  color: var(--ink);
}
.nav .nav__cta {
  border-color: var(--wine);
  color: var(--wine);
}
.nav .nav__cta:hover { background: var(--wine); color: var(--paper); border-color: var(--wine); }

.nav__brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
}
.nav__brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
}
.nav__brand-house {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__item { position: relative; }
.nav__item > a {
  display: inline-block;
  padding: 12px 18px;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: opacity 0.3s var(--ease);
  opacity: 0.85;
}
.nav__item > a:hover { opacity: 1; }

/* Dropdown */
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translate(-50%, -8px);
  width: min(720px, 90vw);
  background: var(--paper);
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 30px 80px -30px rgba(29, 26, 21, 0.35);
  border: 1px solid var(--rule);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease-out), visibility 0.35s;
}
.nav__dropdown-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.nav__dd-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  border: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav__dd-card:hover {
  background: var(--cream);
  border-color: var(--rule);
}
.nav__dd-eyebrow {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
  font-size: 0.95rem;
}
.nav__dd-title {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.1;
}
.nav__dd-sub {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.nav__dd-link {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-d);
}

.nav__cta {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid currentColor;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav__toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 6px;
  padding: 0;
}
.nav__toggle span {
  width: 22px; height: 1px; background: currentColor;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--paper);
  background: var(--green-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.85);
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s var(--ease-out);
}
.hero__bg.is-active {
  opacity: 1;
  animation: kenburns 18s ease-out forwards;
}
@keyframes kenburns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.2%, -1%); }
}

/* Cursor-following warm glow on the hero */
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 35%),
    rgba(232, 195, 130, 0.18) 0%,
    rgba(232, 195, 130, 0.06) 30%,
    transparent 60%
  );
  mix-blend-mode: screen;
  transition: background-position 0.2s var(--ease);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 50% 40%, rgba(21, 56, 31, 0.30), rgba(21, 56, 31, 0.78)),
    linear-gradient(180deg,
      rgba(21, 56, 31, 0.55) 0%,
      rgba(21, 56, 31, 0.30) 35%,
      rgba(21, 56, 31, 0.55) 70%,
      rgba(21, 56, 31, 0.92) 100%);
}
/* The BV column-stripe motif — top + bottom centred, like the deck cover */
.hero__columns {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  pointer-events: none;
  opacity: 0.55;
}
.hero__columns span {
  display: block;
  width: 10px;
  height: 130px;
  background: var(--blush-soft);
  opacity: 0.8;
  border-radius: 1px;
  animation: colPulse 4.5s ease-in-out infinite;
  transform-origin: center;
}
.hero__columns span:nth-child(2) { animation-delay: 0.5s; }
.hero__columns span:nth-child(3) { animation-delay: 1.0s; }
.hero__columns--top    { top: 0; }
.hero__columns--bottom { bottom: 0; }
@keyframes colPulse {
  0%, 100% { opacity: 0.45; transform: scaleY(0.92); }
  50%      { opacity: 0.85; transform: scaleY(1); }
}
@media (max-width: 700px) {
  .hero__columns span { height: 70px; width: 6px; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  padding: 140px 32px 110px;
  width: 100%;
  text-align: center;
}
.hero__logo {
  width: clamp(120px, 14vw, 180px);
  margin: 0 auto 24px;
  display: block;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.35));
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: 0.005em;
  margin: 8px auto 28px;
  max-width: 20ch;
  color: var(--paper);
}
.hero__title span { display: block; }
.hero__title-script {
  display: block;
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(5.5rem, 11vw, 9.5rem);
  line-height: 0.85;
  color: var(--blush-soft);
  margin-bottom: -0.1em;
  letter-spacing: 0;
}
.hero__title em { color: var(--blush-soft); font-style: italic; }
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(250, 242, 229, 0.88);
  max-width: 560px;
  line-height: 1.5;
  margin: 0 auto 40px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 222, 0.7);
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(245, 239, 222, 0.7), transparent);
  animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(-30%); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: translateY(30%); opacity: 0; }
}

/* ================================================
   MARQUEE
   ================================================ */
.marquee {
  background: var(--green-deep-2);
  color: rgba(250, 242, 229, 0.72);
  padding: 9px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.18);
}
.marquee__track {
  display: flex;
  gap: 22px;
  white-space: nowrap;
  font-family: "Cormorant SC", var(--serif);
  font-weight: 400;
  font-size: clamp(0.58rem, 0.74vw, 0.68rem);
  text-transform: uppercase;
  animation: marquee 56s linear infinite;
  width: max-content;
}
.marquee__track span:not(.marquee__dot) {
  letter-spacing: 0.32em;
  font-style: normal;
}
.marquee__track em { font-style: normal; color: inherit; }
.marquee em { color: inherit; }
.marquee__dot { color: inherit; opacity: 0.55; letter-spacing: 0; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ================================================
   WELCOME
   ================================================ */
.welcome { padding: 140px 0; background: var(--paper); position: relative; }
.welcome__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome__body p { margin: 0 0 18px; max-width: 52ch; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }
.welcome__media {
  position: relative;
}
.welcome__media .frame {
  max-width: 440px;
  margin-left: auto;
  box-shadow: 0 30px 60px -25px rgba(39, 26, 20, 0.45);
}
.welcome__quote {
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 280px;
  padding: 40px 28px 36px;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.16) 0 1px,
      transparent 1px 22px),
    var(--green-deep);
  color: var(--paper);
  box-shadow: 0 20px 50px -20px rgba(39, 26, 20, 0.5);
  z-index: 2;
}
.welcome__quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0 0 14px;
  color: var(--paper);
  max-width: none;
}
.welcome__quote-em {
  font-family: var(--script);
  font-size: 2.2rem;
  color: var(--blush-soft);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.welcome__quote-cite {
  display: block;
  font-family: "Cormorant SC", var(--serif);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blush-soft);
  margin-top: 14px;
}

/* ================================================
   PILLARS
   ================================================ */
.pillars {
  padding: 120px 0 60px;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar {
  padding: 80px 0;
}
.pillar__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.pillar--right .pillar__grid > .pillar__text { order: 1; }
.pillar--right .pillar__grid > .pillar__media { order: 2; }
.pillar__media .frame { aspect-ratio: 4/5; }
.pillar__media .drawing img { max-width: 100%; margin: 0 auto; }
.pillar--right .pillar__media .drawing { text-align: right; }
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
}
.pillar__text p { color: var(--ink-soft); margin: 0 0 28px; max-width: 46ch; }

/* ================================================
   BENEFITS
   ================================================ */
.benefits {
  padding: 140px 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.10) 0 1px,
      transparent 1px 110px),
    var(--green-deep);
  color: var(--paper);
}
.benefits .display { color: var(--paper); }
.benefits .display em { color: var(--blush-soft); }
.benefits .eyebrow { color: var(--blush-soft); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 96px;
  margin-top: 24px;
}
.benefit {
  padding-top: 36px;
  border-top: 1px solid var(--rule-light);
  position: relative;
}
.benefit__num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blush-soft);
  font-size: 1.1rem;
  margin-bottom: 16px;
}
.benefit .h4 { color: var(--paper); }
.benefit p {
  color: rgba(245, 239, 222, 0.78);
  margin: 0;
  max-width: 42ch;
}

/* Benefits widened to 3 cols for 6 items */
.benefits__grid { grid-template-columns: repeat(3, 1fr); gap: 56px 64px; }

/* ================================================
   PACKAGE
   ================================================ */
.package {
  padding: 140px 0;
  background: var(--paper-warm);
  border-top: 1px solid var(--rule);
}
.package__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.package__text p { color: var(--ink-soft); max-width: 46ch; margin: 0; }
.package__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.package__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink-soft);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
  line-height: 1.4;
}
.package__list li:last-child { border-bottom: none; }
.package__list strong { font-weight: 500; color: var(--ink); }
.package__check {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--wine);
  width: 18px;
  flex: none;
}

/* ================================================
   TIERS
   ================================================ */
.tiers {
  padding: 140px 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.08) 0 1px,
      transparent 1px 92px),
    var(--green-deep);
  color: var(--paper);
}
.tiers .display { color: var(--paper); }
.tiers .eyebrow { color: var(--blush-soft); }
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.tier {
  position: relative;
  padding: 32px 24px 28px;
  background: rgba(245, 236, 214, 0.04);
  border: 1px solid var(--rule-light);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.tier:hover { background: rgba(245, 236, 214, 0.07); transform: translateY(-3px); }
.tier__flag {
  position: absolute;
  top: -10px; left: 24px;
  background: var(--wine);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin: 0;
}
.tier__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  margin: 0;
  color: var(--blush-soft);
  letter-spacing: 0.01em;
}
.tier__price {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.01em;
}
.tier__price span {
  font-size: 0.85rem;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 236, 214, 0.55);
  margin-left: 4px;
}
.tier__sub {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 236, 214, 0.55);
  margin: -8px 0 0;
}
.tier__list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(245, 236, 214, 0.78);
  line-height: 1.5;
  flex: 1;
}
.tier__list li {
  padding-left: 18px;
  position: relative;
}
.tier__list li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--blush-soft);
  font-size: 1.4em;
  line-height: 1;
  top: 0.05em;
}
.tier__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 18px;
  font-family: "Cormorant SC", var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--blush);
  color: var(--ink);
  border: 1px solid var(--blush);
  text-align: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tier__cta::after {
  content: "→";
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform 0.3s var(--ease);
}
.tier__cta:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--paper);
  transform: translateY(-2px);
}
.tier__cta:hover::after { transform: translateX(3px); }

.tier--soldout {
  opacity: 0.78;
  filter: saturate(0.55);
}
.tier--soldout::after {
  content: "Sold out";
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: "Cormorant SC", var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: var(--wine);
  color: var(--paper);
  padding: 5px 10px;
}
.tier--soldout .tier__name { color: rgba(245, 236, 214, 0.65); }
.tier--soldout .tier__price {
  color: rgba(245, 236, 214, 0.45);
  font-style: italic;
  font-size: 1.2rem;
  text-decoration: line-through;
  text-decoration-color: rgba(245, 236, 214, 0.4);
  text-decoration-thickness: 1px;
}
.tier--soldout .tier__list { opacity: 0.55; }
.tier--soldout:hover { background: rgba(245, 236, 214, 0.04); transform: none; }
.tier--featured {
  background: rgba(245, 236, 214, 0.09);
  border-color: var(--blush-soft);
}
.tiers__foot {
  margin: 56px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245, 236, 214, 0.6);
  font-family: var(--serif);
  font-style: italic;
}

/* ================================================
   VIP MANAGER
   ================================================ */
.manager {
  padding: 140px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.manager__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}
.manager__media .frame { max-width: 420px; aspect-ratio: 4/5; }
.manager__portrait { max-width: 420px; }
.manager__portrait img { aspect-ratio: 4/5; object-fit: cover; }
.manager__body p { color: var(--ink-soft); margin: 0 0 18px; max-width: 56ch; }

/* ================================================
   PROCESS (Apply / Review / Introduction / Onboarding)
   ================================================ */
.process { padding: 140px 0; background: var(--paper); }
.process__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 28px 28px 32px;
  background: var(--cream);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 4px;
}
.process__step p { color: var(--ink-soft); margin: 0; font-size: 0.95rem; }

/* ================================================
   FAQ
   ================================================ */
.faq {
  padding: 140px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 56px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--rule);
  padding: 22px 0;
}
.faq__item summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  line-height: 1.3;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--wine);
  transition: transform 0.3s var(--ease);
  flex: none;
  margin-top: -2px;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  color: var(--ink-soft);
  margin: 14px 0 4px;
  max-width: 60ch;
  line-height: 1.6;
}

/* Apply form select — match the inputs */
.apply__form select {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-weight: 300;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%23862c1c' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
}
.apply__form select:focus { border-bottom-color: var(--wine); }

/* ================================================
   APPLY
   ================================================ */
.apply {
  padding: 140px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.apply__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  text-align: left;
}
.apply__inner .center { text-align: left; }
.apply__inner .eyebrow.center, .apply__inner .display.center, .apply__inner .lede.center {
  justify-content: flex-start;
  text-align: left;
  margin-left: 0;
}
.apply__envelope-col {
  position: relative;
  padding-top: 24px;
  text-align: center;
}
.apply__form {
  margin-top: 32px;
  display: grid;
  gap: 24px;
}
@media (max-width: 1000px) {
  .apply__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .apply__inner .center, .apply__envelope-col { text-align: center; }
}
.apply__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.apply__form label {
  display: flex; flex-direction: column;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  gap: 10px;
}
.apply__form input,
.apply__form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-weight: 300;
  letter-spacing: normal;
  text-transform: none;
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.apply__form input:focus,
.apply__form textarea:focus { border-bottom-color: var(--wine); }
.apply__form textarea { resize: vertical; }
.apply__form .btn { justify-self: start; margin-top: 12px; }
.apply__msg {
  font-family: var(--serif);
  font-style: italic;
  color: var(--wine-d);
  margin: 8px 0 0;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--green-deep);
  color: var(--paper);
  padding: 56px 0 18px;
  position: relative;
}
.footer > .ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer__big {
  text-align: center;
  margin: 0 0 36px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__big img { display: block; margin: 0 auto; }

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule-light);
}
.footer__h {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 222, 0.5);
  margin: 0 0 22px;
}
.footer__col p,
.footer__col a {
  color: rgba(245, 239, 222, 0.85);
  font-size: 0.84rem;
  line-height: 1.55;
}
.footer__col p { margin: 0; }
.footer__col a:hover { color: var(--blush-soft); }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 3px; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  font-size: 0.74rem;
  color: rgba(245, 239, 222, 0.55);
}
.footer__bottom p { margin: 0; }
.footer__bottom a:hover { color: var(--blush-soft); }

/* ================================================
   REVEAL ON SCROLL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Word-by-word stagger reveal (applied to display headings via JS) */
.word-stagger { padding: 0; }
.word-stagger span {
  display: inline-block;
  transform: translateY(0.85em) rotate(1.5deg);
  opacity: 0;
  transition:
    transform 0.9s var(--ease-out) calc(var(--i, 0) * 60ms),
    opacity   0.9s var(--ease-out) calc(var(--i, 0) * 60ms);
  will-change: transform;
}
.word-stagger.is-in span {
  transform: translateY(0) rotate(0);
  opacity: 1;
}

/* Image reveal — frames clip in from the left as they enter view */
.frame {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease-out);
}
.frame.is-in { clip-path: inset(0 0 0 0); }
.frame .frame__img {
  --s: 1.18;
  --py: 0px;
  transform: translate3d(0, var(--py), 0) scale(var(--s));
  transition: transform 1.6s var(--ease-out);
}
.frame.is-in .frame__img { --s: 1.04; }
.frame--hover.is-in:hover .frame__img { --s: 1.08; }

/* Animated section divider — a hairline that draws in from the centre */
.section-divider {
  width: 1px;
  height: 64px;
  background: var(--rule);
  margin: 0 auto;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1s var(--ease-out);
}
.section-divider.is-in { transform: scaleY(1); }
.section-divider--light { background: rgba(245, 236, 214, 0.25); }

/* Subtle tilt on tier cards (controlled by JS via CSS vars) */
.tier {
  transform-style: preserve-3d;
  transform: perspective(900px)
             rotateY(calc(var(--ry, 0) * 1deg))
             rotateX(calc(var(--rx, 0) * 1deg))
             translateY(var(--ly, 0px));
  transition: transform 0.5s var(--ease), background 0.4s var(--ease);
}
.tier:hover { --ly: -3px; }

/* Smooth marquee fade on edges so it feels less hard */
.marquee {
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--green-deep-2), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--green-deep-2), transparent); }

/* Letter-spacing breathing for hero scroll cue */
.hero__scroll span:first-child { animation: scrollText 3.5s ease-in-out infinite; }
@keyframes scrollText {
  0%, 100% { letter-spacing: 0.32em; opacity: 0.7; }
  50%      { letter-spacing: 0.46em; opacity: 1; }
}

/* Underline-grow on nav items */
.nav__item > a {
  position: relative;
}
.nav__item > a::after {
  content: "";
  position: absolute;
  left: 18px; right: 18px; bottom: 6px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.nav__item > a:hover::after { transform: scaleX(1); }

/* Pillar number — gentle float */
.pillar__num {
  display: inline-block;
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

/* Apply form: focus halo */
.apply__form label { position: relative; }
.apply__form input,
.apply__form textarea,
.apply__form select {
  transition: border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.apply__form input:focus,
.apply__form textarea:focus,
.apply__form select:focus { padding-left: 2px; }

/* FAQ smooth open */
.faq__item p {
  overflow: hidden;
  max-height: 0;
  margin: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
}
.faq__item[open] p {
  max-height: 320px;
  opacity: 1;
  margin: 14px 0 4px;
}

/* ================================================
   BRAND MOTIFS — added with the asset library
   ================================================ */

/* Dashed ribbon — the cream + green + wine flag motif */
.ribbon { display: none; }
.ribbon--thin { display: none; }
.ribbon--thick { display: none; }

/* Top + bottom dashed-line ribbon (CSS-drawn alternative) */
.dash-rule {
  position: relative;
  height: 1px;
  width: 100%;
  background-image: linear-gradient(to right, var(--ink) 0 8px, transparent 8px 16px);
  background-size: 16px 1px;
  background-repeat: repeat-x;
  opacity: 0.45;
}
.dash-rule--light { background-image: linear-gradient(to right, var(--paper) 0 8px, transparent 8px 16px); opacity: 0.35; }

/* Vertical-panelled green section background — wood-panel motif */
.panel-green {
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.28) 0 1px,
      transparent 1px 120px),
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
  color: var(--paper);
}
.panel-cream { background: var(--cream); }

/* Watercolour drawings — sit directly on the section, no paper-card frame */
.drawing {
  position: relative;
  display: inline-block;
  max-width: 460px;
  padding: 0 0 44px;
  transition: transform 0.7s var(--ease-out);
  filter: drop-shadow(0 26px 30px rgba(39, 26, 20, 0.18));
}
.drawing img {
  display: block;
  width: 100%;
  height: auto;
}
.drawing__caption {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.drawing--tilt-l { transform: rotate(-1.6deg); }
.drawing--tilt-r { transform: rotate(1.6deg); }
.drawing:hover { transform: rotate(0) translateY(-3px); }

/* "Three Doors" row (Stay / Gather / Wellness) */
.doors {
  padding: 130px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.doors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px;
  margin: 56px auto 0;
  align-items: start;
  justify-items: center;
  max-width: 980px;
}
.door {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 240px;
}
.door__img {
  display: block;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 917 / 1536;
  height: auto;
  margin: 0 auto 28px;
  object-fit: contain;
  object-position: center bottom;
  transition: transform 0.7s var(--ease-out);
  transform-origin: bottom center;
}
.door:hover .door__img { transform: rotate(-2deg) translateY(-6px); }
.door__name {
  font-family: "Cormorant SC", var(--serif);
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 14px;
  color: var(--green-deep);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  min-height: 1.2em;
}
.door__desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink-soft);
  max-width: 26ch;
  margin: 0 auto;
  line-height: 1.55;
  min-height: calc(1.55em * 3);
}
.door__rule {
  width: 28px;
  height: 1px;
  background: var(--clay);
  margin: 0 auto 14px;
  display: block;
}

/* "Behind the door" — green panel headline strip */
.behind {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}
.behind__inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}
.behind__eyebrow {
  font-family: "Cormorant SC", var(--serif);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blush-soft);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.behind__eyebrow::before, .behind__eyebrow::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.6;
}
.behind__title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--paper);
  margin: 0 0 22px;
}
.behind__title em { color: var(--blush-soft); font-style: italic; }
.behind__sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 242, 229, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  margin: 0 auto;
  max-width: 60ch;
  line-height: 1.55;
}
.behind__ribbon-top { position: absolute; top: 0; left: 0; right: 0; }
.behind__ribbon-bottom { position: absolute; bottom: 0; left: 0; right: 0; }
.behind .feature-row {
  margin: 80px auto 0;
  max-width: 980px;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 28px;
  justify-items: center;
  text-align: center;
}
.behind .feature {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  max-width: 22ch;
}
.behind .feature__icon { margin-top: 0; }
.behind .feature__title { color: var(--paper); margin: 0; }
.behind .feature__desc { color: rgba(250, 242, 229, 0.72); margin: 4px 0 0; }
@media (max-width: 820px) {
  .behind .feature-row { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 520px) {
  .behind .feature-row { grid-template-columns: 1fr; gap: 26px; }
}

/* Apply section gets a sealed-envelope motif on the side */
.apply { position: relative; }
.apply__envelope {
  display: block;
  margin: 0 auto 22px;
  width: clamp(220px, 32vw, 360px);
  height: auto;
  filter: drop-shadow(0 24px 36px rgba(39, 26, 20, 0.22));
  animation: floatY 6s ease-in-out infinite;
}
.apply__envelope-cite {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 1.05rem;
  line-height: 1.5;
  margin: 8px auto 0;
}

/* Ribbon icon used inside the small "house feature" lines */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 64px;
  max-width: 980px;
  margin: 64px auto 0;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.feature__icon {
  flex: none;
  width: 22px;
  height: 22px;
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}
.feature__icon span {
  background: var(--green-deep);
  border-radius: 0;
  width: 2px;
  height: 100%;
  justify-self: center;
  opacity: 0.95;
}
.feature__icon--light span { background: var(--paper); opacity: 0.7; }
.feature__title {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--ink);
  margin: 0 0 6px;
  font-weight: 500;
}
.feature__desc { font-size: 0.95rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* Brand-mark logo image used in nav + footer */
.brand-mark {
  display: inline-block;
  height: 38px;
  width: auto;
  vertical-align: middle;
}
.nav__brand-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s var(--ease);
}
.nav__brand-img { content: url("assets/brand/logo-bv-house.png?v=2"); }

/* Pretty pull-quote used inside the welcome / behind sections */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.3;
  color: var(--paper);
  max-width: 38ch;
  margin: 0;
}
.pull-quote--ink { color: var(--ink); }

@media (max-width: 1000px) {
  .doors__grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; }
}

/* ================================================
   BOOK PAGE
   ================================================ */
.page-book { background: var(--paper); }
.page-book .nav { position: sticky; top: 0; }

.book-hero {
  position: relative;
  padding: 140px 0 130px;
  text-align: center;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56vh;
}
.book-hero__content { display: flex; flex-direction: column; align-items: center; }
.book-hero__bg {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.28) 0 1px,
      transparent 1px 120px),
    radial-gradient(80% 60% at 50% 30%, rgba(133, 148, 116, 0.10), transparent 70%),
    linear-gradient(180deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
}
.book-hero__content { position: relative; z-index: 2; }
.book-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  margin: 14px 0 22px;
  color: var(--paper);
  letter-spacing: -0.018em;
}
.book-hero__title em { color: var(--blush-soft); font-style: italic; }
.book-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(250, 242, 229, 0.82);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.55;
}

.book-engine {
  padding: 110px 0 130px;
  background: var(--paper);
}
.book-engine__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.book-engine__head .lede { margin-left: auto; margin-right: auto; }

/* Date pad on /book.html — feels like an embedded form, opens the Mews modal on click */
.book-engine__pad {
  appearance: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: var(--paper-warm);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 28px 32px 26px;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 30px 60px -32px rgba(39, 26, 20, 0.28);
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s var(--ease-out);
  font: inherit;
  color: inherit;
  position: relative;
}
.book-engine__pad::before,
.book-engine__pad::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 1px;
  background: var(--clay);
  opacity: 0.7;
}
.book-engine__pad::before { top: -1px; }
.book-engine__pad::after  { bottom: -1px; }
.book-engine__pad:hover,
.book-engine__pad:focus-visible {
  border-color: var(--wine);
  box-shadow: 0 36px 72px -30px rgba(39, 26, 20, 0.34);
  transform: translateY(-2px);
  outline: none;
}
.book-engine__pad-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0 24px;
  padding: 6px 4px 18px;
  border-bottom: 1px solid var(--rule);
}
.book-engine__pad-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0;
}
.book-engine__pad-label {
  font-family: "Cormorant SC", var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.7rem;
  color: var(--green-deep);
}
.book-engine__pad-value {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  color: var(--ink-soft);
  line-height: 1.2;
}
.book-engine__pad-divider {
  width: 1px;
  height: 36px;
  background: var(--rule);
}
.book-engine__pad-cta {
  display: block;
  margin: 18px 0 4px;
  font-family: "Cormorant SC", var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.86rem;
  color: var(--wine-d);
  text-align: right;
}
.book-engine__pad-hint {
  margin: 22px auto 0;
  max-width: 760px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ink-mute);
  text-align: center;
}
.book-engine__pad-hint a { color: var(--wine-d); border-bottom: 1px solid currentColor; }
@media (max-width: 720px) {
  .book-engine__pad { padding: 22px 22px 20px; }
  .book-engine__pad-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 14px;
  }
  .book-engine__pad-divider { display: none; }
  .book-engine__pad-cta { text-align: center; margin-top: 14px; }
}

.book-engine__noscript {
  background: var(--cream);
  border: 1px solid var(--rule);
  padding: 22px 24px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin-top: 24px;
  text-align: center;
}
.book-engine__noscript a { color: var(--wine-d); border-bottom: 1px solid currentColor; }

.book-engine__assist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 56px;
  max-width: 1080px;
  margin: 64px auto 0;
}
.book-engine__assist a { color: var(--wine-d); border-bottom: 1px solid currentColor; }

@media (max-width: 800px) {
  .book-hero { padding: 160px 0 80px; }
  .book-engine { padding: 80px 0 100px; }
  .book-engine__widget { padding: 28px 18px; }
  .book-engine__assist { grid-template-columns: 1fr; gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .word-stagger > span { transform: none; opacity: 1; transition: none; }
  .frame { clip-path: none; transition: none; }
  .frame .frame__img { --s: 1; transition: none; }
  .section-divider { transform: scaleY(1); }
  .marquee__track,
  .hero__scroll-line,
  .hero__bg.is-active,
  .hero__columns span,
  .pillar__num,
  .hero__scroll span:first-child,
  .apply__envelope {
    animation: none !important;
  }
  .door:hover .door__img { transform: none; }
  .intro { display: none; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1000px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__menu {
    display: flex;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    color: var(--ink);
    padding: 24px 32px;
    gap: 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav.is-open .nav__item > a {
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    opacity: 1;
  }
  .nav.is-open .nav__dropdown { display: none; }

  .welcome__grid,
  .pillar__grid,
  .package__grid,
  .manager__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pillar--right .pillar__grid > .pillar__text { order: 2; }
  .pillar--right .pillar__grid > .pillar__media { order: 1; }
  .welcome__media .frame,
  .manager__media .frame { margin: 0 auto; max-width: 100%; }

  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  .tiers__grid { grid-template-columns: 1fr 1fr; }
  .process__list { grid-template-columns: 1fr 1fr; }
  .faq__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .welcome, .apply, .benefits, .package, .tiers, .manager, .process, .faq { padding: 90px 0; }
  .pillars { padding: 80px 0 30px; }
  .pillar { padding: 50px 0; }
  .benefits__grid,
  .tiers__grid,
  .process__list { grid-template-columns: 1fr; }
  .apply__form .row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; }
  .hero__title { font-size: clamp(3.5rem, 18vw, 6rem); }
}

/* ================================================
   MOBILE POLISH — door images + tier cards
   ================================================
   Two specific fixes for phones:

   1. Doors on the homepage default to 240px wide and aspect-ratio 917/1536
      (~3:5). Stacked vertically on a phone that's ~340px wide of usable
      space, three doors became three giant ~400px-tall blocks separated by
      40px voids — too much scroll, too much empty space around centred
      doors. Cap the image at a smaller width on phones and tighten the
      vertical rhythm so the section reads as a tight little triptych.

   2. Tier "doors" on /membership.html have a 3D perspective tilt driven by
      JS-set CSS vars on hover. On touch devices that hover never gets a
      clean enter/leave, leaving cards stuck in a half-rotated state that
      looks broken. Disable the perspective on coarse pointers and tighten
      padding so the cards stack cleanly on a narrow column. Also nudge
      grid gap up so the "Only a few left" flag (top: -10px) doesn't bleed
      into the previous card. */

@media (max-width: 600px) {
  /* Smaller, tighter doors so they don't dominate the scroll on phone. */
  .doors__grid { gap: 28px; max-width: 100%; }
  .door { max-width: 200px; }
  .door__img { max-width: 170px; margin-bottom: 18px; }

  /* Tighter tier cards so the stacked column doesn't feel airy/cramped. */
  .tier { padding: 24px 20px 22px; gap: 12px; }
  .tier__price { font-size: 1.7rem; }
  .tier__list { font-size: 0.88rem; }
  .tiers__grid { gap: 28px; }   /* extra room for the -10px flag overlap */
  .tier__cta { padding: 12px 16px; }
}

/* Kill the perspective tilt anywhere there's no fine pointer (touch). */
@media (hover: none) {
  .tier {
    --rx: 0;
    --ry: 0;
    --ly: 0px;
    transform: none;
  }
  .tier:hover { transform: none; --ly: 0px; }
  .door:hover .door__img { transform: none; }
}

/* ============================================================
   BUNNY + DICE — watercolour brand accents that hop in on scroll.
   The PNGs ship with a baked cream-paper background; mix-blend-mode:
   multiply melts that into our cream/paper sections so only the
   bunny + its watercolour shadow remain visible.
   ============================================================ */
.bunny {
  position: absolute;
  pointer-events: none;
  user-select: none;
  width: clamp(110px, 12vw, 170px);
  height: auto;
  opacity: 0;
  transform: translate3d(-40px, 30px, 0) rotate(-6deg) scale(0.92);
  z-index: 3;
}
.bunny.is-in {
  animation: bunny-hop-in 1100ms cubic-bezier(.32, 1.4, .42, 1) both,
             bunny-idle 4.2s ease-in-out 1300ms infinite;
}
@keyframes bunny-hop-in {
  0%   { opacity: 0; transform: translate3d(-60px, 30px, 0) rotate(-6deg) scale(0.92); }
  35%  { opacity: 1; transform: translate3d(-20px, -28px, 0) rotate(-3deg) scale(1.02); }
  60%  { transform: translate3d(-6px, 6px, 0) rotate(-1deg) scale(1); }
  78%  { transform: translate3d(-2px, -10px, 0) rotate(0deg) scale(1); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
}
@keyframes bunny-idle {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50%      { transform: translate3d(0, -3px, 0) rotate(-1deg); }
}

/* book-engine — bunny in the top-right of the booking section, balanced */
.book-engine { position: relative; }
.bunny--book {
  right: clamp(12px, 3vw, 48px);
  top: 32px;
  width: clamp(100px, 9vw, 140px);
  z-index: 1;
  transform: scaleX(-1);
}

/* welcome — bunny tucked next to the quote box */
.welcome { position: relative; }
.welcome__media { position: relative; }
.bunny--welcome {
  right: -16px;
  bottom: -44px;
  width: clamp(110px, 12vw, 160px);
  transform-origin: bottom right;
}

/* apply — bunny peeks in from the left margin */
.apply { position: relative; overflow: hidden; }
.bunny--apply {
  left: 3%;
  top: 56px;
  width: clamp(100px, 10vw, 140px);
  opacity: 0.95;
}

@media (max-width: 720px) {
  .bunny--welcome { right: 6%; bottom: -26px; width: 100px; }
  .bunny--apply   { display: none; }
  .bunny--book    { right: 8px; top: 16px; width: 80px; }
}

/* Dice — small accent that rolls in next to the FAQ heading */
.dice {
  display: inline-block;
  width: clamp(56px, 6vw, 84px);
  height: auto;
  margin: 18px auto 0;
  opacity: 0;
  transform: translateY(8px) rotate(-220deg) scale(0.6);
}
.dice.is-in {
  animation: dice-roll 900ms cubic-bezier(.34, 1.5, .4, 1) 200ms forwards,
             dice-wobble 5.5s ease-in-out 1300ms infinite;
}
@keyframes dice-roll {
  0%   { opacity: 0; transform: translateY(8px) rotate(-220deg) scale(0.6); }
  60%  { opacity: 1; transform: translateY(-6px) rotate(15deg) scale(1.05); }
  100% { opacity: 1; transform: translateY(0)    rotate(0)     scale(1); }
}
@keyframes dice-wobble {
  0%, 100% { transform: translateY(0) rotate(0); }
  45%      { transform: translateY(-2px) rotate(-3deg); }
  55%      { transform: translateY(-2px) rotate(3deg); }
}

@media (prefers-reduced-motion: reduce) {
  .bunny, .dice, .brand-object { transform: none; opacity: 1; animation: none !important; }
}

/* ============================================================
   MELLOW HERO (homepage) — sun-bed photo with a warm veil that
   diffuses into the cream of the welcome section below.
   ============================================================ */
.hero--mellow {
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 120px;
  background: var(--green-deep);
}
.hero--mellow .hero__media {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero--mellow .hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.92);
  opacity: 1;
  animation: hero-mellow-pan 28s ease-out infinite alternate;
}
@keyframes hero-mellow-pan {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.10) translate3d(-1.5%, -1%, 0); }
}
/* Warm tone-on-image veil — preserves the photo, lifts text legibility */
.hero--mellow .hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 56% at 50% 46%, rgba(8, 22, 12, 0.78), rgba(20, 38, 24, 0.20) 80%),
    linear-gradient(180deg,
      rgba(20, 38, 24, 0.55) 0%,
      rgba(20, 38, 24, 0.30) 50%,
      rgba(20, 38, 24, 0.40) 100%);
}
/* The diffuse — bottom of the photo melts into the dark green of the
   marquee strip below, so hero → marquee reads as one continuous wash */
.hero--mellow .hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 32%;
  background: linear-gradient(180deg,
    rgba(42, 58, 38, 0) 0%,
    rgba(42, 58, 38, 0.45) 55%,
    rgba(42, 58, 38, 0.92) 92%,
    var(--green-deep-2) 100%);
  pointer-events: none;
}
.hero--mellow .hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.hero--mellow .hero__title {
  font-family: var(--script);
  font-weight: 400;
  font-size: clamp(4rem, 10vw, 8.5rem);
  line-height: 0.82;
  margin: 14px 0 22px;
  color: var(--paper);
  letter-spacing: -0.01em;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.38);
}
.hero--mellow .hero__title em {
  color: var(--blush-soft);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.6em;
  display: inline-block;
  margin-top: -0.32em;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.32);
}
.hero--mellow .hero__title > span { display: block; }
.hero--mellow .hero__title > span + span { margin-top: -0.18em; }
.hero--mellow .hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  color: rgba(250, 242, 229, 0.94);
  max-width: 56ch;
  margin: 0 auto 36px;
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}
.hero--mellow .eyebrow--light {
  color: rgba(250, 242, 229, 0.88);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}
.hero--mellow .hero__ctas {
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 720px) {
  .hero--mellow { min-height: 86vh; padding: 130px 0 90px; }
  .hero--mellow .hero__fade { height: 22%; }
}

/* Marquee follows the hero diffuse — drop its hairline border on top
   so the gradient lands seamlessly into the dark band */
.hero--mellow + .marquee { border-top: 0; }

/* ============================================================
   MEMBERSHIP PAGE — hero, three-pillar intro, included panel
   ============================================================ */
.member-hero {
  position: relative;
  padding: 200px 0 130px;
  text-align: center;
  overflow: hidden;
  color: var(--paper);
}
.member-hero__inner { position: relative; z-index: 2; }
.member-hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin: 14px 0 22px;
  color: var(--paper);
  letter-spacing: -0.018em;
}
.member-hero__title em { color: var(--blush-soft); font-style: italic; }
.member-hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: rgba(250, 242, 229, 0.82);
  max-width: 60ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.member-hero__ctas {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.member-hero__seal {
  position: absolute;
  right: 4%;
  top: 14%;
  width: clamp(220px, 24vw, 360px);
  z-index: 1;
  opacity: 1;
  transform: rotate(-4deg);
  filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.45));
  pointer-events: none;
}
@media (max-width: 920px) {
  .member-hero__seal { right: -4%; top: 8%; width: 220px; opacity: 0.75; }
}
@media (max-width: 600px) {
  .member-hero__seal { display: none; }
}

/* Three short statements — sets the tone before tiers */
.member-intro {
  background: var(--paper);
  padding: 110px 0;
}
.member-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 64px;
  max-width: 1080px;
  margin: 0 auto;
}
.member-intro__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.member-intro__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--wine-d);
  margin: 0;
}
.member-intro__h {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 1.8vw, 1.75rem);
  margin: 0 0 4px;
  color: var(--ink);
  line-height: 1.2;
}
.member-intro__item p:last-child {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
}
@media (max-width: 820px) {
  .member-intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .member-intro { padding: 90px 0; }
}

/* "What's included" — panel-green section, breaks up the cream stretch
   between the intro pillars and the price tiers. Text is flipped to
   paper-on-green; the layout (text left + checklist right) is unchanged. */
.included {
  padding: 120px 0;
  position: relative;
  background:
    repeating-linear-gradient(90deg,
      rgba(0,0,0,0.18) 0 1px,
      transparent 1px 92px),
    var(--green-deep);
  color: var(--paper);
}
.included__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.included__text {
  position: relative;
  display: flex;
  flex-direction: column;
}
.included .display { color: var(--paper); }
.included .display em { color: var(--blush-soft); }
.included__text .eyebrow {
  white-space: nowrap;
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  margin: 0 0 18px;
  justify-content: flex-start;
  color: var(--blush-soft);
}
.included__text .eyebrow::before,
.included__text .eyebrow::after { width: 22px; }
.included__text p {
  margin: 22px 0 0;
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 242, 229, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36ch;
}
.included__teacup {
  margin-top: 36px;
  width: clamp(140px, 14vw, 200px);
  align-self: flex-start;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.4));
}
.included__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.included__list li {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--paper);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.included__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--blush-soft);
  font-family: var(--sans);
  font-weight: 300;
}
.included__list li em { color: var(--blush-soft); font-style: italic; }
.included__list li strong { color: var(--paper); font-weight: 500; }
@media (max-width: 820px) {
  .included { padding: 90px 0; }
  .included__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   BECOMING A MEMBER — panelled-green apply section with integrated
   process steps + form, all centred (replaces split apply layout)
   ============================================================ */
.becoming {
  padding: 130px 0 110px;
  position: relative;
  text-align: center;
  color: var(--paper);
}
.becoming__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.becoming__title {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 1.05;
  margin: 12px 0 24px;
  color: var(--paper);
  letter-spacing: -0.018em;
}
.becoming__title em { color: var(--blush-soft); font-style: italic; }
.becoming__sub {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 242, 229, 0.82);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  max-width: 56ch;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.becoming__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: left;
  border-top: 1px solid rgba(250, 242, 229, 0.18);
  border-bottom: 1px solid rgba(250, 242, 229, 0.18);
  padding: 28px 0;
}
.becoming__steps li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px;
}
.becoming__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush-soft);
  letter-spacing: 0.04em;
}
.becoming__step-h {
  font-family: "Cormorant SC", var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: rgba(250, 242, 229, 0.78);
  margin: 0;
}
.becoming__step-d {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 242, 229, 0.78);
  font-size: 0.95rem;
  line-height: 1.45;
  margin: 0;
}
.becoming__form {
  display: grid;
  gap: 18px;
  text-align: left;
}
.becoming__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.becoming__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.becoming__form label span {
  font-family: "Cormorant SC", var(--serif);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.66rem;
  color: rgba(250, 242, 229, 0.7);
}
.becoming__form input,
.becoming__form textarea {
  background: rgba(250, 242, 229, 0.06);
  border: 1px solid rgba(250, 242, 229, 0.18);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  padding: 14px 16px;
  width: 100%;
  border-radius: 0;
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.becoming__form input::placeholder,
.becoming__form textarea::placeholder { color: rgba(250, 242, 229, 0.42); font-style: italic; }
.becoming__form input:focus,
.becoming__form textarea:focus {
  border-color: var(--blush-soft);
  background: rgba(250, 242, 229, 0.10);
}
.becoming__form textarea { resize: vertical; }
.becoming__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 8px auto 0;
}
.becoming__submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding-left: 32px;
  padding-right: 32px;
  letter-spacing: 0.18em;
}
.becoming__msg {
  font-family: var(--serif);
  font-style: italic;
  color: var(--blush-soft);
  text-align: center;
  margin: 8px 0 0;
}
.becoming__fine {
  font-family: var(--serif);
  font-style: italic;
  color: rgba(250, 242, 229, 0.5);
  font-size: 0.82rem;
  text-align: center;
  margin: 8px 0 0;
}
@media (max-width: 820px) {
  .becoming { padding: 90px 0 80px; }
  .becoming__steps { grid-template-columns: repeat(2, 1fr); gap: 22px 28px; }
  .becoming__row { grid-template-columns: 1fr; }
}

/* Member CTA section on the homepage */
.member-cta {
  background: var(--paper);
  padding: 130px 0 140px;
  text-align: center;
  border-top: 1px solid var(--rule);
}
.member-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.member-cta .display { margin: 14px 0 22px; }
.member-cta .lede {
  margin: 0 auto 36px;
  max-width: 56ch;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.6;
}
.member-cta .btn { margin-top: 8px; }

/* ============================================================
   BRAND OBJECTS — watercolour accents that drift / settle into place.
   Each placement gets its own keyframe for character: tea steams,
   smoke sways, towel falls, oysters rise.
   ============================================================ */
.brand-object {
  display: block;
  pointer-events: none;
  user-select: none;
  height: auto;
  opacity: 0;
}
.brand-object.is-in { opacity: 1; }

/* DOORS — small object tucked under each door. Positioned absolute
   inside .door (relative). Each appears with a soft float-in. */
.door { position: relative; }
.door__object {
  position: absolute;
  z-index: 2;
  filter: drop-shadow(0 10px 14px rgba(39, 26, 20, 0.16));
  transform: translate3d(-12px, 14px, 0) rotate(-4deg) scale(0.92);
  transition: transform .8s var(--ease-out);
}
.door__object.is-in {
  animation: object-float-in 1100ms cubic-bezier(.32, 1.2, .42, 1) both,
             object-bob 6.5s ease-in-out 1400ms infinite;
}
@keyframes object-float-in {
  0%   { opacity: 0; transform: translate3d(-14px, 22px, 0) rotate(-6deg) scale(0.88); }
  60%  { opacity: 1; transform: translate3d(2px, -4px, 0) rotate(2deg) scale(1.02); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}
@keyframes object-bob {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  50%      { transform: translate3d(0, -3px, 0) rotate(-1deg); }
}

/* Stay door — teacup nestles low-left, like a morning ritual */
.door__object--teacup {
  width: clamp(90px, 11vw, 140px);
  left: -8%;
  bottom: 38%;
}
/* Gather door — oysters + candle peek from the lower-right, dinner pose */
.door__object--oysters {
  width: clamp(100px, 12vw, 150px);
  right: -14%;
  bottom: 30%;
}
/* Wellness door — folded towel sits low-left, ready for the spa */
.door__object--towel {
  width: clamp(80px, 10vw, 120px);
  left: -6%;
  bottom: 32%;
}

@media (max-width: 720px) {
  .door__object--teacup  { width: 78px; left: -4%; bottom: 30%; }
  .door__object--oysters { width: 86px; right: -8%; bottom: 26%; }
  .door__object--towel   { width: 70px; left: -2%; bottom: 28%; }
}

/* BEHIND THE DOOR — detective bust on the right of the green panel */
.behind__detective {
  position: absolute;
  right: -2%;
  top: 14%;
  width: clamp(220px, 24vw, 380px);
  z-index: 1;
  pointer-events: none;
  transform: translate3d(60px, 0, 0) rotate(2deg) scale(0.96);
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.35));
}
.behind__detective.is-in {
  animation: detective-arrive 1500ms cubic-bezier(.22, 1, .32, 1) 200ms both;
}
@keyframes detective-arrive {
  0%   { opacity: 0; transform: translate3d(60px, 12px, 0) rotate(2deg) scale(0.96); }
  100% { opacity: 0.92; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}
.behind__inner { position: relative; z-index: 2; }
@media (max-width: 920px) {
  .behind__detective { right: -10%; top: auto; bottom: 8%; width: 200px; opacity: 0.6; }
}
@media (max-width: 600px) {
  .behind__detective { display: none; }
}

/* VIP MANAGER — cigar with smoke, wafting near Danny's portrait */
.manager { position: relative; overflow: hidden; }
.manager__cigar {
  position: absolute;
  right: 7%;
  top: 8%;
  width: clamp(70px, 7vw, 110px);
  z-index: 3;
  pointer-events: none;
  transform-origin: bottom center;
  filter: drop-shadow(0 10px 16px rgba(39, 26, 20, 0.18));
}
.manager__cigar.is-in {
  animation: cigar-arrive 1200ms cubic-bezier(.22, 1, .32, 1) 200ms both,
             smoke-sway 8s ease-in-out 1400ms infinite;
}
@keyframes cigar-arrive {
  0%   { opacity: 0; transform: translate3d(0, -16px, 0) rotate(-4deg); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0); }
}
@keyframes smoke-sway {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  33%      { transform: translate3d(2px, -1px, 0) rotate(1.4deg); }
  66%      { transform: translate3d(-2px, -1px, 0) rotate(-1.2deg); }
}
@media (max-width: 720px) {
  .manager__cigar { right: 4%; top: 4%; width: 64px; }
}

/* WELCOME — morning ritual watercolour (teacup + canapés) tucked beside
   the bedroom photo, replacing the earlier quote box + bunny */
.welcome__morning {
  position: absolute;
  right: -8%;
  bottom: -32px;
  width: clamp(160px, 18vw, 240px);
  z-index: 2;
  filter: drop-shadow(0 18px 26px rgba(39, 26, 20, 0.16));
  transform: translate3d(20px, 14px, 0) rotate(2deg) scale(0.94);
}
.welcome__morning.is-in {
  animation: morning-arrive 1300ms cubic-bezier(.22, 1, .32, 1) 200ms both;
}
@keyframes morning-arrive {
  0%   { opacity: 0; transform: translate3d(28px, 18px, 0) rotate(3deg) scale(0.92); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}
@media (max-width: 720px) {
  .welcome__morning { right: 4%; bottom: -22px; width: 140px; }
}

/* FAQ — games trio drifts in beneath the FAQ grid as a closing visual */
.faq__games {
  display: block;
  margin: 64px auto 0;
  width: clamp(320px, 50vw, 640px);
  filter: drop-shadow(0 14px 22px rgba(39, 26, 20, 0.14));
  transform: translate3d(0, 30px, 0) rotate(-1.5deg) scale(0.96);
}
.faq__games.is-in {
  animation: games-arrive 1400ms cubic-bezier(.22, 1, .32, 1) 200ms both;
}
@keyframes games-arrive {
  0%   { opacity: 0; transform: translate3d(0, 32px, 0) rotate(-2deg) scale(0.94); }
  60%  { opacity: 1; transform: translate3d(0, -4px, 0) rotate(0.6deg) scale(1.01); }
  100% { opacity: 0.95; transform: translate3d(0, 0, 0) rotate(0) scale(1); }
}
@media (max-width: 720px) {
  .faq__games { width: 80%; margin-top: 48px; }
}

/* ================================================
   VISITOR CHAT WIDGET — public-site floating chat
   ================================================
   Bubble bottom-right, panel rises from bottom on
   click. Vanilla CSS — no framework, lives on the
   marketing pages alongside the static HTML. */
.vchat-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-deep, #496345);
  color: var(--paper, #faf6ef);
  border: 0;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(20, 14, 10, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.vchat-bubble:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(20, 14, 10, 0.35); }
.vchat-bubble.is-active { background: var(--wine, #6e2738); }

.vchat-panel {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 79;
  width: min(380px, calc(100vw - 32px));
  max-height: 70vh;
  background: var(--paper, #faf6ef);
  color: var(--ink, #271a14);
  border: 1px solid rgba(39, 26, 20, 0.10);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(20, 14, 10, 0.30);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s var(--ease-out, cubic-bezier(0.22, 1, 0.36, 1)), opacity 0.3s ease;
}
.vchat-panel.is-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.vchat-panel__head {
  position: relative;
  padding: 16px 18px 14px;
  border-bottom: 1px solid rgba(39, 26, 20, 0.10);
  background: rgba(73, 99, 69, 0.05);
}
.vchat-panel__title {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
}
.vchat-panel__sub {
  margin: 2px 0 0;
  font-size: 11px;
  color: var(--ink-mute, #6b5a4d);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.vchat-panel__close {
  position: absolute;
  right: 10px;
  top: 8px;
  border: 0;
  background: transparent;
  color: var(--ink-mute, #6b5a4d);
  font-size: 22px;
  line-height: 1;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 50%;
}
.vchat-panel__close:hover { color: var(--ink, #271a14); }
.vchat-panel__messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 120px;
}
.vchat-msg {
  max-width: 80%;
  padding: 7px 10px;
  border-radius: 10px;
  word-wrap: break-word;
}
.vchat-msg p { margin: 0; white-space: pre-wrap; }
.vchat-msg span { display: block; font-size: 10px; opacity: 0.65; margin-top: 3px; }
.vchat-msg--you {
  align-self: flex-end;
  background: var(--green-deep, #496345);
  color: var(--paper, #faf6ef);
  border-bottom-right-radius: 2px;
}
.vchat-msg--them {
  align-self: flex-start;
  background: rgba(39, 26, 20, 0.08);
  color: var(--ink, #271a14);
  border-bottom-left-radius: 2px;
}
.vchat-panel__form {
  padding: 10px 12px 12px;
  border-top: 1px solid rgba(39, 26, 20, 0.10);
  background: var(--paper, #faf6ef);
}
.vchat-panel__contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 8px;
}
.vchat-panel__contact input {
  padding: 7px 8px;
  border: 1px solid rgba(39, 26, 20, 0.15);
  border-radius: 6px;
  font: inherit;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.65);
}
.vchat-panel__row {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.vchat-panel__row textarea {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid rgba(39, 26, 20, 0.15);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  resize: none;
  background: rgba(255, 255, 255, 0.85);
  min-height: 40px;
  max-height: 160px;
}
.vchat-panel__row button {
  padding: 0 14px;
  border: 0;
  background: var(--green-deep, #496345);
  color: var(--paper, #faf6ef);
  border-radius: 6px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.vchat-panel__row button:disabled { opacity: 0.55; cursor: not-allowed; }
.vchat-panel__err {
  margin: 6px 0 0;
  font-size: 11px;
  color: var(--wine, #6e2738);
  min-height: 14px;
}

/* Smaller screens — let the panel claim more space and tuck the bubble in. */
@media (max-width: 600px) {
  .vchat-bubble { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .vchat-panel {
    right: 12px; left: 12px;
    width: auto;
    bottom: 80px;
    max-height: 75vh;
  }
}
