/* ── The Drip Society — brand tokens ─────────────────────────
   Champagne   #F9F4EB  backgrounds
   Champagne 2 #F1E7D6  soft section tint
   Blush       #EDCFC7  cards, accents
   Blush soft  #F5E2DB  card tint
   Merlot      #5A2236  primary, headings, dark sections
   Merlot deep #421624  dark section depth
   Gold        #B4874C  price points, small accents
   Ink         #3A2530  body text
──────────────────────────────────────────────────────────── */

:root {
  --champagne: #F9F4EB;
  --champagne-2: #F1E7D6;
  --blush: #EDCFC7;
  --blush-soft: #F5E2DB;
  --wine: #5A2236;
  --wine-deep: #421624;
  --gold: #B4874C;
  --gold-text: #8A6234;
  --rose: #C4848D; /* the infusion in the line: rosé, matches assets/bag.png fluid */
  --ink: #3A2530;
  --card: #FFFCF5;
  --display: "Marcellus", serif; /* interim luxe face; swap here when final fonts land */
  --body: "Figtree", sans-serif;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(66, 22, 36, 0.05), 0 24px 60px -32px rgba(90, 34, 54, 0.28);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  --drop-ghost: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32' fill='none'%3E%3Cpath d='M12 1C12 1 2.5 14 2.5 20.5C2.5 26.3 6.8 30.5 12 30.5C17.2 30.5 21.5 26.3 21.5 20.5C21.5 14 12 1 12 1Z' stroke='%23F9F4EB' stroke-opacity='0.05' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
  --drop-blush: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 32' fill='none'%3E%3Cpath d='M12 1C12 1 2.5 14 2.5 20.5C2.5 26.3 6.8 30.5 12 30.5C17.2 30.5 21.5 26.3 21.5 20.5C21.5 14 12 1 12 1Z' stroke='%235A2236' stroke-opacity='0.08' stroke-width='1.2' stroke-linejoin='round'/%3E%3C/svg%3E");
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* Native smooth scroll is the no-JS / no-Lenis fallback only;
   when Lenis is driving (html.lenis-smooth) it must be off. */
html { scroll-behavior: smooth; scroll-padding-top: 92px; color-scheme: light; }
::selection { background: var(--blush); color: var(--wine-deep); }
html.lenis { scroll-behavior: auto !important; }
html.lenis, html.lenis body { height: auto; }
html.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--champagne);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 400; /* Marcellus is single-weight; avoid faux-bold */
  color: var(--wine);
  line-height: 1.14;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.section { padding: 112px 0; }
.section-soft { background: var(--champagne-2); }

.section-head { max-width: 640px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: 0; margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: rgba(58, 37, 48, 0.78); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 16px 34px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: var(--body);
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
.btn-primary { background: var(--wine); color: var(--champagne); box-shadow: var(--shadow); }
.btn-primary:hover {
  background: var(--wine-deep);
  box-shadow: 0 2px 4px rgba(66, 22, 36, 0.08), 0 30px 70px -28px rgba(90, 34, 54, 0.46);
}
.btn-ghost { border-color: rgba(90, 34, 54, 0.35); color: var(--wine); }
.btn-ghost:hover { border-color: var(--wine); }
.btn-gold { background: var(--champagne); color: var(--wine-deep); }
.btn-gold:hover { background: #fff; box-shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.35); }
.btn-full { width: 100%; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249, 244, 235, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90, 34, 54, 0.08);
  transition:
    background 0.5s ease,
    backdrop-filter 0.5s ease,
    border-color 0.5s ease,
    box-shadow 0.5s ease;
}
.site-header.is-scrolled {
  background: rgba(249, 244, 235, 0.8);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(90, 34, 54, 0.14);
  box-shadow: 0 14px 34px -26px rgba(66, 22, 36, 0.3);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 20px 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--wine); }
.logo-drop { width: 24px; height: 32px; color: var(--gold); }
.logo-text { font-family: var(--display); font-size: 1.35rem; font-weight: 400; letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-link {
  text-decoration: none; color: rgba(58, 37, 48, 0.78); font-weight: 500; font-size: 0.95rem;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:hover { color: var(--wine); }
.nav-cta {
  background: var(--wine); color: var(--champagne);
  padding: 11px 22px; border-radius: 6px;
}
.nav-cta:hover { color: var(--champagne); background: var(--wine-deep); }
.hamburger { display: none; background: none; border: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--wine); display: block; }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; padding: 96px 0 90px; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.03; mix-blend-mode: multiply;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-glow-1 { width: 560px; height: 560px; background: rgba(237, 207, 199, 0.75); top: -180px; right: -120px; }
.hero-glow-2 { width: 420px; height: 420px; background: rgba(180, 135, 76, 0.18); bottom: -200px; left: -100px; }
.hero-inner {
  position: relative; display: grid;
  grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
}
.hero-copy { max-width: 640px; }
.hero-art {
  aspect-ratio: 4 / 5; border-radius: 240px 240px 22px 22px; overflow: hidden;
  position: relative;
  background: linear-gradient(170deg, #F5E2DB 0%, #EDCFC7 45%, #E3B9AE 100%);
}
.hero-art img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hero-headline { font-size: clamp(2.8rem, 6vw, 4.7rem); line-height: 1.08; letter-spacing: 0.005em; margin-bottom: 26px; }
.hero-sub { font-size: 1.18rem; color: rgba(58, 37, 48, 0.8); max-width: 620px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.95rem; color: rgba(58, 37, 48, 0.65); font-weight: 500; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }

/* ── Loved strip ── */
.loved-strip { background: var(--wine); padding: 40px 0; }
.loved-inner p {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); line-height: 1.4;
  color: rgba(249, 244, 235, 0.92); text-align: center;
  max-width: 720px; margin: 0 auto;
}

/* ── Manifesto ── */
.manifesto { padding: 140px 0; }
.manifesto-inner { max-width: 880px; }
.mf-line {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.2vw, 3.3rem);
  line-height: 1.22;
  color: var(--wine);
  margin-bottom: 18px;
}
.mf-line-accent { color: var(--gold-text); }

/* ── Image break ── */
.image-break {
  position: relative; overflow: hidden;
  min-height: 72vh;
  display: flex; align-items: flex-end;
}
.image-break-media {
  position: absolute; inset: -8% 0;
  background: url("assets/moment.jpg") center / cover no-repeat #EDCFC7;
}
.image-break-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(66, 22, 36, 0) 40%, rgba(66, 22, 36, 0.52) 100%);
}
.image-break-inner { position: relative; padding-top: 120px; padding-bottom: 72px; }
.image-break-line {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  line-height: 1.2;
  color: var(--champagne);
}

/* ── Voices ── */
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.voice { border-top: 1px solid rgba(90, 34, 54, 0.16); padding-top: 28px; }
.voice blockquote {
  font-family: var(--display);
  font-size: 1.35rem; line-height: 1.4;
  color: var(--wine);
  margin-bottom: 18px;
}
.voice blockquote::before { content: "\201C"; color: var(--gold); }
.voice blockquote::after { content: "\201D"; color: var(--gold); }
.voice figcaption { font-weight: 600; color: rgba(58, 37, 48, 0.6); font-size: 0.95rem; }

/* ── Menu ── */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: drip; }
.menu-card {
  background: var(--card);
  border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex; flex-direction: column;
  /* hover lift rides the individual `translate` property so the JS
     tilt (inline transform, lerped in the rAF loop) composes with it */
  transition: translate 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-card::before {
  counter-increment: drip;
  content: "0" counter(drip);
  font-family: var(--display);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 14px;
  font-variant-numeric: lining-nums;
}
.menu-card:hover { translate: 0 -4px; box-shadow: 0 26px 60px -24px rgba(90, 34, 54, 0.38); }
.menu-card h3 { font-size: 1.55rem; margin-bottom: 6px; }
.menu-tag { color: var(--gold-text); font-weight: 600; font-size: 0.98rem; margin-bottom: 14px; }
.menu-desc { color: rgba(58, 37, 48, 0.78); font-size: 0.99rem; flex: 1; }
.menu-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 22px 0 16px; padding-top: 16px;
  border-top: 1px solid rgba(90, 34, 54, 0.1);
  font-weight: 500; color: rgba(58, 37, 48, 0.6);
}
.menu-price { font-family: var(--display); font-size: 1.7rem; color: var(--wine); font-weight: 400; font-variant-numeric: tabular-nums lining-nums; }
.menu-book { color: var(--wine); font-weight: 700; text-decoration: none; font-size: 0.98rem; position: relative; }
.menu-card-feature { background: var(--blush-soft); border-color: rgba(180, 135, 76, 0.35); }
.menu-boosters { margin-top: 34px; font-weight: 500; color: rgba(58, 37, 48, 0.7); }
.peptide-band {
  margin-top: 30px;
  border: 1px solid rgba(180, 135, 76, 0.45);
  border-radius: var(--radius);
  padding: 38px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.peptide-band h3 { font-size: 1.6rem; margin-bottom: 8px; }
.peptide-band p { max-width: 620px; color: rgba(58, 37, 48, 0.8); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--blush); color: var(--wine);
  font-family: var(--display); font-size: 1.3rem; font-weight: 400;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.35rem; margin-bottom: 10px; }
.step p { color: rgba(58, 37, 48, 0.78); font-size: 0.99rem; }

/* ── Settings ── */
.settings-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 26px; }
.setting-card {
  background: var(--card); border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius); padding: 24px 36px 40px;
}
.setting-media {
  height: 260px; border-radius: 12px; margin: 0 -12px 26px;
  position: relative; overflow: hidden;
  background-size: cover; background-position: center;
}
.setting-media-lounge {
  background-color: #EDCFC7;
  background-image: url("assets/lounge.jpg");
}
.setting-media-house {
  background-color: #EAD9BE;
  background-image: url("assets/house-call.jpg");
}
.setting-card h3 { font-size: 1.7rem; margin-bottom: 4px; }
.setting-loc { color: var(--gold-text); font-weight: 600; margin-bottom: 16px; }
.setting-card > p:not(.setting-loc) { color: rgba(58, 37, 48, 0.78); margin-bottom: 18px; }
.setting-card ul { list-style: none; }
.setting-card li {
  padding-left: 22px; position: relative; margin-bottom: 8px;
  color: rgba(58, 37, 48, 0.85); font-weight: 500; font-size: 0.98rem;
}
.setting-card li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--blush);
  border: 2px solid var(--gold);
}
.soiree-banner {
  background: var(--blush-soft); border-radius: var(--radius);
  padding: 38px 40px; display: flex; align-items: center; gap: 30px;
  justify-content: space-between; flex-wrap: wrap;
}
.soiree-banner h3 { font-size: 1.6rem; margin-bottom: 8px; }
.soiree-banner p { max-width: 560px; color: rgba(58, 37, 48, 0.8); }

/* ── Society (membership) ── */
.section-wine {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%);
}
.section-wine::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.05; mix-blend-mode: soft-light;
}
.society-inner { position: relative; z-index: 1; }
.society-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; }
.society-copy h2 { color: var(--champagne); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.society-copy > p { color: rgba(249, 244, 235, 0.85); font-size: 1.12rem; margin-bottom: 26px; }
.society-perks { list-style: none; }
.society-perks li {
  color: rgba(249, 244, 235, 0.92); font-weight: 500;
  padding-left: 26px; position: relative; margin-bottom: 12px;
}
.society-perks li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold);
}
.society-price-card {
  background: rgba(66, 22, 36, 0.35);
  border: 1px solid rgba(249, 244, 235, 0.22);
  box-shadow: inset 0 0 0 1px rgba(180, 135, 76, 0.35);
  border-radius: var(--radius); padding: 42px 38px; text-align: center;
}
.society-price-label { color: rgba(249, 244, 235, 0.75); font-weight: 600; margin-bottom: 6px; }
.society-price {
  font-family: var(--display); font-size: 3.4rem; font-weight: 400;
  color: var(--champagne); margin-bottom: 22px; font-variant-numeric: lining-nums;
}
.society-price span { font-size: 1.1rem; font-family: var(--body); font-weight: 500; color: rgba(249, 244, 235, 0.7); }
.society-note { margin-top: 16px; font-size: 0.9rem; color: rgba(249, 244, 235, 0.65); }

/* ── Safety ── */
.safety-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 44px 56px; }
.safety-item {
  border-top: 1px solid rgba(90, 34, 54, 0.16);
  padding: 28px 0 0;
}
.safety-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.safety-item p { color: rgba(58, 37, 48, 0.78); font-size: 0.98rem; }

/* ── FAQ ── */
.faq-container { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid rgba(90, 34, 54, 0.14);
}
.faq-item summary {
  cursor: pointer; list-style: none; padding: 24px 0;
  font-weight: 600; color: var(--wine); font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
  content: "+"; font-family: var(--display); font-size: 1.5rem; color: var(--gold);
  display: inline-block; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
html:not(.js) .faq-item[open] summary::after,
.faq-item.is-open summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: rgba(58, 37, 48, 0.8); }

/* ── Booking ── */
.book-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.book-copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }
.book-copy p { color: rgba(58, 37, 48, 0.8); font-size: 1.1rem; margin-bottom: 14px; }
.book-alt { font-weight: 600; }
.book-form {
  background: var(--card); border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.book-form label {
  display: block; font-weight: 600; font-size: 0.95rem;
  color: var(--ink); margin-bottom: 16px;
  transition: color 0.4s ease;
}
.book-form input, .book-form select, .book-form textarea {
  width: 100%; margin-top: 6px; padding: 13px 16px;
  border: 1.5px solid rgba(90, 34, 54, 0.18); border-radius: 12px;
  font-family: var(--body); font-size: 1rem; color: var(--ink);
  background: var(--champagne);
}
.book-form input, .book-form select, .book-form textarea {
  transition: border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
  box-shadow: 0 0 0 0 rgba(196, 132, 141, 0);
}
.book-form input:focus, .book-form select:focus, .book-form textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--card);
  box-shadow: 0 0 0 4px rgba(196, 132, 141, 0.22), 0 10px 28px -12px rgba(196, 132, 141, 0.5);
}
.form-note { margin-top: 14px; text-align: center; font-size: 0.9rem; color: rgba(58, 37, 48, 0.6); }

/* ── Footer ── */
.site-footer { position: relative; overflow: hidden; background: var(--wine-deep); padding: 112px 0 48px; }
.footer-close {
  grid-column: 1 / -1; font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.2rem); color: var(--champagne);
  line-height: 1.1; margin-bottom: 24px;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.05; mix-blend-mode: soft-light;
}
/* Ghost droplet watermark (was ::after on .section-wine / .site-footer;
   promoted to a real element so the parallax loop can move it) */
.ghost-drop {
  position: absolute; right: -60px; bottom: -90px;
  width: 340px; height: 460px; pointer-events: none;
  background: var(--drop-ghost) no-repeat center / contain;
}
.footer-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr auto;
  gap: 48px; align-items: start;
}
.footer-brand .logo-drop { width: 28px; height: 37px; margin-bottom: 12px; }
.footer-name { font-family: var(--display); font-size: 1.6rem; color: var(--champagne); font-weight: 400; }
.footer-brand p:not(.footer-name) { color: rgba(249, 244, 235, 0.65); font-size: 0.95rem; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  color: rgba(249, 244, 235, 0.85); text-decoration: none; font-weight: 500;
  transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer-links a:hover { color: var(--champagne); }
.footer-cta { border: 1px solid rgba(249, 244, 235, 0.4); color: var(--champagne); }
.footer-cta:hover { border-color: var(--champagne); color: var(--champagne); }
.footer-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(249, 244, 235, 0.14);
  padding-top: 28px; margin-top: 36px;
  color: rgba(249, 244, 235, 0.45); font-size: 0.83rem;
}
.footer-disclaimer span { display: block; max-width: 760px; }

/* ── Motion layer ─────────────────────────────────────────────
   transform/opacity only (FAQ height is the one sanctioned
   exception). Everything collapses under prefers-reduced-motion.
──────────────────────────────────────────────────────────── */

/* Micro-interactions */
.btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.08s; }
.menu-price { transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1); }
.menu-card:hover .menu-price { transform: translateY(-3px); }

.nav-link:not(.nav-cta) { position: relative; }
.nav-link:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -5px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-link:not(.nav-cta):hover::after,
.nav-link:not(.nav-cta):focus-visible::after { transform: scaleX(1); }

/* Menu "Book" links: the gold underline grows in, like the nav */
.menu-book::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-book:hover::after,
.menu-book:focus-visible::after { transform: scaleX(1); }

/* Booking form: rose glow on focus, label warms to merlot, and the
   submit's shadow deepens once the form is valid (state changes stay
   under reduced motion; the global reduce block zeroes the easing). */
.book-form label:focus-within { color: var(--wine); }
.book-form.is-valid .btn-primary {
  box-shadow: 0 3px 6px rgba(66, 22, 36, 0.1), 0 30px 72px -26px rgba(90, 34, 54, 0.62);
}

/* FAQ smooth open: JS keeps <details> open and toggles .is-open;
   the row animates 0fr -> 1fr. Without JS, <details> is native. */
.js .faq-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .faq-body-inner { overflow: hidden; visibility: hidden; transition: visibility 0.55s; }
.js .faq-item.is-open .faq-body { grid-template-rows: 1fr; }
.js .faq-item.is-open .faq-body-inner { visibility: visible; }

@media (prefers-reduced-motion: no-preference) {

  /* ── Press ink bloom: a soft blush radial swells from the press
     point (--ink-x/--ink-y set on pointerdown), then fades. Class is
     added by JS, so no-JS never carries the pseudo. Composes with the
     magnetic translate and the :active press scale. ── */
  .js .btn, .js .nav-cta { position: relative; overflow: hidden; }
  .btn::after, .nav-cta::after {
    content: ""; position: absolute;
    left: var(--ink-x, 50%); top: var(--ink-y, 50%);
    width: 20px; height: 20px; margin: -10px 0 0 -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(237, 207, 199, 0.55) 0%, rgba(237, 207, 199, 0) 70%);
    transform: scale(0); opacity: 0;
    pointer-events: none;
  }
  .btn.is-inking::after, .nav-cta.is-inking::after {
    animation: ink-bloom 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  @keyframes ink-bloom {
    from { transform: scale(0); opacity: 0.9; }
    to { transform: scale(48); opacity: 0; }
  }

  /* Nav links: a whisper of tracking on hover (letter-spacing is a
     sanctioned property; ~2px eased over 0.3s, no visible jitter) */
  .nav-link:not(.nav-cta) {
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), letter-spacing 0.3s ease;
  }
  .nav-link:not(.nav-cta):hover,
  .nav-link:not(.nav-cta):focus-visible { letter-spacing: 0.01em; }

  /* ── Menu cards: pointer-following light sheen (the 3D tilt itself
     is inline transform, lerped in main.js's rAF loop). Fine pointers
     only; --mx/--my are set on pointermove. ── */
  @media (hover: hover) and (pointer: fine) {
    .menu-card { position: relative; overflow: hidden; }
    .menu-card::after {
      content: ""; position: absolute; inset: 0; pointer-events: none;
      border-radius: inherit;
      background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%),
        rgba(245, 226, 219, 0.55), rgba(237, 207, 199, 0.18) 45%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .menu-card:hover::after { opacity: 1; }

    /* Logo droplet: a tiny jelly wobble when the wordmark is hovered */
    @keyframes drop-jelly {
      0% { transform: scale(1, 1); }
      30% { transform: scale(1.12, 0.88); }
      55% { transform: scale(0.94, 1.08); }
      78% { transform: scale(1.04, 0.97); }
      100% { transform: scale(1, 1); }
    }
    .logo:hover .logo-drop {
      transform-origin: 50% 78%;
      animation: drop-jelly 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
  }

  @keyframes rise-in {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }

  /* Scroll-triggered reveals (hidden state only when JS is on) */
  .js [data-reveal] { opacity: 0; }
  .js [data-reveal].is-visible {
    opacity: 1;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  /* Voices land like people speaking one after another
     (their slower 150ms cadence is set inline by JS) */
  .js .voice[data-reveal].is-visible { animation-duration: 1s; }

  /* Section heads: the h2 line-mask leads, so the head itself no
     longer fades as a block — only its sub-copy keeps the fade,
     a beat behind the lines. (html.masks = JS armed the masks.) */
  .masks .section-head[data-reveal],
  .masks .section-head[data-reveal].is-visible { opacity: 1; animation: none; }
  .masks .section-head[data-reveal] > p { opacity: 0; }
  .masks .section-head[data-reveal].is-visible > p {
    opacity: 1;
    animation: rise-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s backwards;
  }

  /* ── Line-mask type reveals (the signature move) ──
     JS wraps each visual line: .mask-line clips, .mask-line-inner
     rises 110% → 0. The hidden state only exists once .masked is
     applied, so no-JS (and pre-split) text stays plainly visible. */
  .mask-line {
    display: block;
    overflow: hidden;
    /* let descenders breathe at rest without shifting layout */
    padding-bottom: 0.1em;
    margin-bottom: -0.1em;
  }
  .masked .mask-line-inner {
    display: block;
    transform: translateY(110%);
    will-change: transform;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .masked.lines-in .mask-line-inner { transform: translateY(0); }

  /* Hero entrance cascade — no-JS: plain CSS from first paint */
  html:not(.js) .hero-headline, html:not(.js) .hero-sub, html:not(.js) .hero-actions,
  html:not(.js) .hero-trust, html:not(.js) .hero-art {
    animation: rise-in 1s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }
  html:not(.js) .hero-sub { animation-delay: 0.1s; }
  html:not(.js) .hero-actions { animation-delay: 0.2s; }
  html:not(.js) .hero-trust { animation-delay: 0.3s; }
  html:not(.js) .hero-art { animation-delay: 0.15s; animation-duration: 1.1s; }

  /* Hero entrance cascade — JS: held while the headline masks are
     built (html.mask-pending → html.hero-ready) so the line reveal
     and the cascade share one t0. Headline lines lead at 0/130ms. */
  .mask-pending .hero-headline, .mask-pending .hero-sub, .mask-pending .hero-actions,
  .mask-pending .hero-trust, .mask-pending .hero-art { opacity: 0; }
  .hero-ready .hero-sub { animation: rise-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s backwards; }
  .hero-ready .hero-actions { animation: rise-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.32s backwards; }
  .hero-ready .hero-trust { animation: rise-in 1s cubic-bezier(0.16, 1, 0.3, 1) 0.42s backwards; }
  .hero-ready .hero-art { animation: rise-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s backwards; }

  /* Parallax layers (driven by the rAF loop via the `translate` property,
     which composes with keyframe transforms instead of fighting them) */
  .hero-art, .ghost-drop, .image-break-media { will-change: transform; }

  /* Breathing photography: an almost-subliminal Ken Burns. Uses
     `transform: scale()` so it composes with the parallax `translate`. */
  @keyframes ken-burns {
    from { transform: scale(1); }
    to { transform: scale(1.045); }
  }
  .hero-art img {
    transform-origin: center;
    animation: ken-burns 28s ease-in-out infinite alternate;
    will-change: transform;
  }
  /* setting-media: the pseudo carries (and scales) the inherited
     background inside the card's own overflow clip — zero layout cost */
  .setting-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    transform-origin: center;
    animation: ken-burns 28s ease-in-out infinite alternate;
    will-change: transform;
  }
  .setting-media-house::before { animation-delay: -14s; } /* out of phase with the lounge */

  /* Hero glows: imperceptibly slow drift */
  @keyframes glow-drift-a { to { transform: translate3d(-48px, 34px, 0) scale(1.06); } }
  @keyframes glow-drift-b { to { transform: translate3d(42px, -30px, 0) scale(1.1); } }
  .hero-glow-1 { animation: glow-drift-a 26s ease-in-out infinite alternate; will-change: transform; }
  .hero-glow-2 { animation: glow-drift-b 34s ease-in-out infinite alternate; will-change: transform; }

  /* Logo droplet: slow inner-arc draw loop */
  @keyframes drip-arc {
    0% { stroke-dashoffset: 1; }
    45%, 62% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1; }
  }
  .logo-arc { stroke-dasharray: 1; animation: drip-arc 7s ease-in-out infinite; }
}

/* Reduced motion: state changes stay, movement goes */
@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;
    transition-delay: 0ms !important;
  }
}

/* ── IV drip line (built by drip-line.js; absent without JS) ── */
#iv-line-overlay {
  position: absolute; top: 0; left: 0; width: 100%;
  pointer-events: none; z-index: 5;
}
#iv-line-overlay svg { display: block; overflow: visible; }
.iv-bag-img {
  position: absolute;
  height: auto;
  filter: drop-shadow(0 22px 34px rgba(66, 22, 36, 0.22));
}
#iv-path { stroke: var(--rose); opacity: 0.6; fill: none; stroke-width: 3.5; stroke-linecap: round; }
#iv-path-pulse { stroke: var(--rose); fill: none; stroke-width: 4; stroke-linecap: round; opacity: 0; }
.arm-caption {
  font-family: var(--display);
  color: var(--gold-text);
  font-size: 1.15rem;
  margin-top: 48px;
  display: flex; align-items: center; gap: 12px;
}
.line-port {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 3px rgba(196, 132, 141, 0.25);
  flex: none;
}

#iv-bead { fill: var(--rose); filter: drop-shadow(0 0 6px rgba(196, 132, 141, 0.8)); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .menu-grid, .steps-grid { grid-template-columns: 1fr 1fr; }
  .society-inner, .book-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { aspect-ratio: 4 / 3; border-radius: 22px; }
  /* clearance for the small IV bag hanging top-right on mobile */
  .hero { padding-top: 132px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .voices-grid { grid-template-columns: 1fr; gap: 36px; }
  .manifesto { padding: 100px 0; }
  .image-break { min-height: 56vh; }
}
@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding: 132px 0 64px; }
  .setting-media { height: 190px; }
  .loved-strip { padding: 30px 0; }
  .menu-grid, .steps-grid, .settings-grid, .safety-grid, .form-row { grid-template-columns: 1fr; }
}
/* Nav collapses to hamburger at 900px: between 640-900 the full link row wraps badly */
@media (max-width: 900px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--champagne); flex-direction: column; align-items: flex-start;
    padding: 20px 24px; gap: 18px; border-bottom: 1px solid rgba(90, 34, 54, 0.1);
    /* Slide + fade instead of an instant display toggle. Stays display:flex;
       visibility flips after the fade so it never traps focus while closed. */
    visibility: hidden; opacity: 0; transform: translateY(-10px);
    pointer-events: none;
    transition:
      opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 0.45s;
  }
  .nav-links.open {
    visibility: visible; opacity: 1; transform: none;
    pointer-events: auto;
    transition:
      opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s;
  }
  .hamburger { display: flex; }
  .soiree-banner { padding: 30px 26px; }
}

/* ── Final pass: black card, shadow menu, wine booking finale, Express Lane ── */

/* menu formulation lines */
.menu-mix { color: var(--gold-text); font-size: 0.9rem; font-weight: 500; margin: -8px 0 12px; }

/* the black card: one dark object in the cream grid */
.menu-card-feature { background: linear-gradient(160deg, var(--wine), var(--wine-deep)); border-color: rgba(180, 135, 76, 0.5); }
.menu-card-feature h3, .menu-card-feature .menu-price { color: var(--champagne); }
.menu-card-feature .menu-tag { color: var(--blush); }
.menu-card-feature .menu-mix { color: var(--gold); }
.menu-card-feature .menu-desc { color: rgba(249, 244, 235, 0.8); }
.menu-card-feature .menu-meta { color: rgba(249, 244, 235, 0.6); border-top-color: rgba(249, 244, 235, 0.15); }
.menu-card-feature .menu-book { color: var(--gold); }

/* peptide band: the shadow menu */
.peptide-band {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%);
  border-color: rgba(180, 135, 76, 0.5);
  padding: 48px 52px;
}
.peptide-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: var(--grain); opacity: 0.05; mix-blend-mode: soft-light;
}
.peptide-band h3 { color: var(--champagne); }
.peptide-band p { color: rgba(249, 244, 235, 0.85); }

/* booking finale on wine */
#book .book-copy h2 { color: var(--champagne); font-size: clamp(2.4rem, 5vw, 3.4rem); }
#book .book-copy > p { color: rgba(249, 244, 235, 0.85); }
#book .book-promise { font-weight: 600; color: var(--champagne); }
#book .arm-caption { color: var(--blush); }
.book-panel { min-width: 0; }
.book-form { box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.5); }

/* de-generic the selects; warm the placeholders */
.book-form select {
  appearance: none; -webkit-appearance: none;
  background: var(--champagne) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23B4874C' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 16px center;
  padding-right: 44px;
}
.book-form ::placeholder, .express-form ::placeholder { color: rgba(58, 37, 48, 0.42); }

/* the Express Lane: booked in four clicks */
.express-form {
  background: var(--card); border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius); padding: 40px 38px;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.5);
  position: relative; overflow: hidden;
}
.xp-progress { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: rgba(196, 132, 141, 0.18); }
#xp-progress-fill { display: block; height: 100%; width: 0; background: var(--rose); transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.xp-step { display: none; border: 0; padding: 0; margin: 0; }
.xp-step.is-active { display: block; }
.xp-q { font-size: 1.5rem; margin-bottom: 20px; }
.express-form input[type="text"], .express-form input[type="email"] {
  width: 100%; padding: 15px 18px; font-size: 1.05rem;
  border: 1.5px solid rgba(90, 34, 54, 0.18); border-radius: 12px;
  font-family: var(--body); color: var(--ink); background: var(--champagne);
  margin-bottom: 18px;
}
.express-form input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196, 132, 141, 0.18); }
.express-form input.xp-error { border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196, 132, 141, 0.32); }
.xp-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.xp-hint { color: rgba(58, 37, 48, 0.55); font-size: 0.92rem; }
.xp-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.xp-choice {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 14px 16px; border: 1.5px solid rgba(90, 34, 54, 0.15); border-radius: 12px;
  background: var(--champagne); font-family: var(--body); font-size: 0.98rem; font-weight: 600;
  color: var(--wine); cursor: pointer; text-align: left;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.xp-choice:hover { border-color: var(--rose); transform: translateY(-1px); }
.xp-choice.is-picked { border-color: var(--rose); background: rgba(196, 132, 141, 0.12); }
.xp-price { font-family: var(--display); color: var(--gold-text); font-weight: 400; font-size: 0.95rem; white-space: nowrap; }
.xp-back {
  background: none; border: none; color: rgba(58, 37, 48, 0.6);
  font-family: var(--body); font-size: 0.95rem; font-weight: 600; cursor: pointer; padding: 6px 0;
}
.xp-back:hover { color: var(--wine); }
.xp-done p { color: rgba(58, 37, 48, 0.75); }
@media (prefers-reduced-motion: no-preference) {
  .xp-step.xp-enter { animation: xp-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
  @keyframes xp-in { from { opacity: 0; transform: translateX(26px); } to { opacity: 1; transform: none; } }
}

/* the classic form: default without JS, one quiet click away with JS */
.book-form-toggle { margin: 18px 0 0; color: rgba(249, 244, 235, 0.75); font-size: 0.95rem; }
#full-form-toggle {
  background: none; border: none; color: var(--blush); font: inherit; font-weight: 600;
  cursor: pointer; text-decoration: underline; text-underline-offset: 4px;
}
#full-form-toggle:hover { color: var(--champagne); }
.js .book-form { display: none; }
.js .book-form.is-open { display: block; margin-top: 18px; }
html:not(.js) .express-form, html:not(.js) .book-form-toggle { display: none; }

@media (max-width: 640px) {
  .xp-choices { grid-template-columns: 1fr; }
  .express-form { padding: 32px 26px; }
  .peptide-band { padding: 36px 28px; }
}

/* mobile: the caption meets the line at the right edge, like the
   desktop port meets the left-gutter curve */
@media (max-width: 899px) {
  #book .arm-caption { flex-direction: row-reverse; text-align: right; justify-content: flex-start; }
}

/* ── Mobile optimisation: weight, touch, GPU ── */
* { -webkit-tap-highlight-color: transparent; }
.hero-art picture { position: absolute; inset: 0; }
.xp-choice:active { transform: scale(0.985); }
.faq-item summary { min-height: 44px; }

@media (max-width: 899px) {
  /* right-sized photography for small screens */
  .image-break-media { background-image: url("assets/moment-800.jpg"); }
  .setting-media-lounge { background-image: url("assets/lounge-800.jpg"); }
  .setting-media-house { background-image: url("assets/house-call-800.jpg"); }
}

@media (max-width: 640px) {
  /* cheaper glows for phone GPUs */
  .hero-glow { filter: blur(56px); }
  .hero-glow-1 { width: 340px; height: 340px; top: -120px; right: -100px; }
  .hero-glow-2 { width: 260px; height: 260px; bottom: -120px; left: -80px; }

  /* full-width tap targets where it reads naturally */
  .hero-actions .btn, .soiree-banner .btn, .peptide-band .btn, .footer-cta { width: 100%; text-align: center; }
  .soiree-banner { flex-direction: column; align-items: stretch; }

  .section-head { margin-bottom: 44px; }
  .society-price-card { padding: 34px 26px; }
  .image-break-inner { padding-top: 84px; padding-bottom: 56px; }
  .xp-q { font-size: 1.3rem; }
  .footer-close { font-size: 2.4rem; margin-bottom: 32px; }
  .site-footer { padding: 80px 0 44px; }
}

/* ── Retention pass: recap, honesty, restart, aria, footer capture ── */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* membership tile spans the full width of the 2-col choice grid */
.xp-choice-wide { grid-column: 1 / -1; }
@media (max-width: 640px) { .xp-choice-wide { grid-column: auto; } }

/* inline validation text in the brand voice (colour + words + aria) */
.xp-err-msg {
  color: var(--wine); font-size: 0.9rem; font-weight: 500;
  margin: -8px 0 12px; min-height: 0;
}
.xp-err-msg:empty { margin: 0; }

/* echo the pick back on the email step */
.xp-recap {
  font-family: var(--display); color: var(--gold-text);
  font-size: 1.05rem; margin: -6px 0 16px;
}
.xp-recap:empty { display: none; }

.xp-reassure { margin-top: 16px; font-size: 0.9rem; color: rgba(58, 37, 48, 0.6); }

/* done step */
.xp-done-recap {
  font-family: var(--display); color: var(--gold-text);
  font-size: 1.05rem; margin-bottom: 6px;
}
.xp-done-recap:empty { display: none; }
.xp-restart { margin-top: 18px; }
.xp-preview-note {
  margin-top: 20px; padding-top: 14px;
  border-top: 1px solid rgba(90, 34, 54, 0.1);
  font-size: 0.82rem; color: rgba(58, 37, 48, 0.5);
}

/* footer return-hook: lounge-evening list */
.footer-capture { margin-top: 22px; max-width: 340px; }
.footer-capture label {
  display: block; color: rgba(249, 244, 235, 0.8);
  font-size: 0.92rem; margin-bottom: 10px;
}
.fc-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-capture input {
  flex: 1 1 160px; min-width: 0; padding: 11px 14px;
  border: 1px solid rgba(249, 244, 235, 0.28); border-radius: 6px;
  background: rgba(249, 244, 235, 0.06); color: var(--champagne);
  font-family: var(--body); font-size: 0.95rem;
}
.footer-capture input::placeholder { color: rgba(249, 244, 235, 0.45); }
.footer-capture input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(196, 132, 141, 0.25); }
.footer-capture .btn-gold { padding: 11px 20px; }
.footer-capture .xp-err-msg { flex-basis: 100%; color: var(--blush); margin: 0; }
.fc-done { color: var(--blush); font-family: var(--display); font-size: 1.05rem; }

/* ── Medical Director credential: the human authority anchor ── */
.director-card {
  margin-top: 56px; padding: 40px 44px;
  background: var(--card); border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 34px;
}
.director-portrait {
  flex: none; width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(160deg, var(--blush-soft), var(--blush));
  box-shadow: inset 0 0 0 1px rgba(180, 135, 76, 0.5);
  display: flex; align-items: center; justify-content: center;
}
.director-portrait span {
  font-family: var(--display); font-size: 1.9rem; color: var(--wine);
  letter-spacing: 0.02em;
}
.director-name { font-family: var(--display); font-size: 1.5rem; color: var(--wine); line-height: 1.1; }
.director-role { color: var(--gold-text); font-weight: 600; font-size: 0.95rem; margin-bottom: 12px; }
.director-copy > p:last-child { color: rgba(58, 37, 48, 0.8); font-size: 1rem; margin: 0; }

@media (max-width: 640px) {
  .director-card { flex-direction: column; text-align: center; align-items: center; gap: 20px; padding: 32px 26px; }
  .director-role { margin-bottom: 10px; }
}

/* ── Agency credit backlink ── */
.footer-credit {
  grid-column: 1 / -1;
  margin-top: 14px;
  font-size: 0.82rem;
  color: rgba(249, 244, 235, 0.4);
}
.footer-credit a {
  color: rgba(249, 244, 235, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s ease;
}
.footer-credit a:hover { color: var(--champagne); }

/* ── By-consultation gate (compliant enquiry, wine section) ── */
.consult-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: center; }
.consult-copy h2 { color: var(--champagne); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 18px; }
.consult-copy > p { color: rgba(249, 244, 235, 0.85); font-size: 1.08rem; margin-bottom: 16px; }
.consult-note { font-weight: 600; color: var(--blush); }
.consult-panel { min-width: 0; }
.consult-form {
  background: var(--card); border: 1px solid rgba(90, 34, 54, 0.08);
  border-radius: var(--radius); padding: 34px 32px;
  box-shadow: 0 40px 90px -40px rgba(0, 0, 0, 0.5);
}
.consult-form label { display: block; font-weight: 600; font-size: 0.92rem; color: var(--wine); margin-bottom: 14px; }
.consult-form input[type="text"], .consult-form input[type="email"], .consult-form input[type="tel"] {
  width: 100%; margin-top: 6px; padding: 12px 15px;
  border: 1.5px solid rgba(90, 34, 54, 0.18); border-radius: 10px;
  font-family: var(--body); font-size: 1rem; color: var(--ink); background: var(--champagne);
}
.consult-form input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(196, 132, 141, 0.18); }
.consult-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-consent {
  display: flex; align-items: flex-start; gap: 10px; font-weight: 500 !important;
  color: rgba(58, 37, 48, 0.8) !important; font-size: 0.92rem !important; cursor: pointer;
}
.cf-consent input { margin-top: 3px; accent-color: var(--wine); flex: none; width: 16px; height: 16px; }
.cf-note { margin-top: 14px; text-align: center; font-size: 0.82rem; color: rgba(58, 37, 48, 0.5); }
.cf-done { text-align: center; padding: 8px 0; }
.cf-done p { color: rgba(58, 37, 48, 0.75); margin-top: 8px; }

@media (max-width: 900px) { .consult-inner { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 640px) { .consult-form .form-row { grid-template-columns: 1fr; } .consult-form { padding: 28px 24px; } }
