/* ===== design system: tokens/fonts.css ===== */
/* Silk and Blow — Webfonts
   Questrial: the signature display + body face (geometric humanist sans, airy & calm)
   Inter: UI face for buttons, eyebrows and letter-spaced labels
   Both served from Google Fonts. If you self-host, replace these with @font-face. */

@import url('https://fonts.googleapis.com/css2?family=Questrial&family=Inter:wght@400;500;600;700&display=swap');


/* ===== design system: tokens/colors.css ===== */
/* Silk and Blow — Color tokens
   A calm, luxury salon palette: soft sage mist, powder & sky blues, deep slate.
   Pulled directly from the brand site. */

:root {
  /* ---- Base palette ---- */
  --white:        #ffffff;
  --off-white:    #fafafa;
  --sage-mist:    #d8e2dc;  /* primary calming background band */
  --powder-blue:  #a2cce4;  /* soft section background */
  --sky-blue:     #008afc;  /* primary action / brand accent */
  --royal-blue:   #0d63d1;  /* deeper brand blue */
  --azure:        #116dff;  /* link blue */
  --slate:        #283446;  /* primary ink on light surfaces */
  --ink:          #000000;  /* pure black headlines */

  /* Slate tints for hairlines & muted text */
  --slate-70:     rgba(40, 52, 70, 0.70);
  --slate-45:     rgba(40, 52, 70, 0.45);
  --slate-12:     rgba(40, 52, 70, 0.12);

  /* Signature logo gradient (cyan → sky) */
  --grad-brand:   linear-gradient(135deg, #5bc6f5 0%, #008afc 55%, #0d63d1 100%); /* @kind color */

  /* ---- Semantic aliases ---- */
  --bg-page:        var(--white);
  --bg-calm:        var(--sage-mist);   /* hero / quiet sections */
  --bg-soft:        var(--powder-blue); /* feature sections */
  --bg-accent:      var(--sky-blue);    /* full-bleed accent panels */
  --surface-card:   var(--white);
  --surface-dark:   var(--slate);

  --text-heading:   var(--ink);
  --text-body:      var(--slate);
  --text-muted:     var(--slate-70);
  --text-on-accent: var(--white);
  --text-on-dark:   var(--off-white);

  --action:         var(--sky-blue);
  --action-hover:   #0072d6;
  --action-press:   var(--royal-blue);
  --link:           var(--azure);

  --border-hair:    var(--slate-12);
  --focus-ring:     var(--sky-blue);
}


/* ===== design system: tokens/typography.css ===== */
/* Silk and Blow — Typography tokens
   Questrial carries display + body; Inter handles letter-spaced UI labels.
   The brand sets type at 100% line-height for headlines and uses tight,
   sometimes negative, letter-spacing on big display sizes. */

:root {
  --font-display: 'Questrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-ui:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale (px) — drawn from the live site */
  --fs-display:   79px;  /* owner name / hero showpiece */
  --fs-h1:        75px;  /* "Our Vision" */
  --fs-h2:        50px;  /* hero headline */
  --fs-h3:        40px;  /* centered prompts */
  --fs-title:     25px;  /* long-form lead paragraph */
  --fs-lead:      20px;  /* body lead */
  --fs-body:      18px;  /* default body */
  --fs-base:      16px;
  --fs-label:     15px;  /* pill labels */
  --fs-ui:        13.5px;/* button text / eyebrows */
  --fs-meta:      12px;

  /* Line-heights */
  --lh-tight:     1;      /* @kind other */
  --lh-snug:      1.15;   /* @kind other */
  --lh-body:      1.45;   /* @kind other */

  /* Letter-spacing */
  --ls-display:   -0.04em;  /* @kind other */ /* big Questrial headlines tighten */
  --ls-head:      -0.01em;  /* @kind other */
  --ls-normal:    0;        /* @kind other */
  --ls-ui:        0.10em;   /* @kind other */ /* uppercase Inter labels open up */
  --ls-wide:      0.14em;   /* @kind other */

  /* Weights (Inter) */
  --fw-reg:       400;  /* @kind other */
  --fw-med:       500;  /* @kind other */
  --fw-semi:      600;  /* @kind other */
  --fw-bold:      700;  /* @kind other */
}


/* ===== design system: tokens/spacing.css ===== */
/* Silk and Blow — Spacing, radii, shadows
   The site is airy and grid-driven. Buttons are either flat rectangles
   (hero CTAs) or full pills (location chips). Shadows are soft and sparing. */

:root {
  /* Spacing scale (8px base) */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  24px;
  --sp-6:  32px;
  --sp-7:  48px;
  --sp-8:  64px;
  --sp-9:  96px;
  --sp-10: 128px;

  /* Section padding & gutters */
  --gutter:        clamp(24px, 8vw, 192px);  /* @kind spacing */
  --section-y:     clamp(48px, 10vw, 130px); /* @kind spacing */

  /* Radii — the brand mixes sharp rectangles with full pills */
  --radius-none:   0px;
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-pill:   50px;
  --radius-full:   9999px;

  /* Shadows */
  --shadow-card:   0 1px 4px rgba(0, 0, 0, 0.6);
  --shadow-soft:   0 0 20px rgba(0, 0, 0, 0.2);
  --shadow-raise:  0 12px 40px rgba(40, 52, 70, 0.18);

  /* Control sizing */
  --control-h:     44px;   /* min touch target */
  --control-h-sm:  40px;
  --control-h-lg:  52px;

  /* Motion — calm, unhurried */
  --ease-calm:     cubic-bezier(0.22, 0.61, 0.36, 1); /* @kind other */
  --dur-fast:      140ms; /* @kind other */
  --dur-base:      240ms; /* @kind other */
  --dur-slow:      420ms; /* @kind other */
}


/* ===== design system: styles.css ===== */
/* Silk and Blow — Design System
   Global entry point. Consumers link THIS file.
   Keep it a list of @imports only. */







/* ===== site theme ===== */
/* Silk and Blow — homepage theme layer
   DS-faithful (sage / powder / sky-blue, flat fields, Questrial + Inter)
   elevated with a sparing champagne/gold metallic accent for the luxury layer. */

:root {
  /* ---- Champagne / gold accent (harmonized warm complement to the cool DS) ---- */
  --champagne-50:  #faf6ee;
  --champagne-100: #f3ecdb;
  --champagne-200: #e9dcc1;
  --champagne-300: #ddc9a0;
  --gold:          #c2a35e;
  --gold-deep:     #a8853f;
  --gold-ink:      #7d6330;

  --grad-champagne: linear-gradient(160deg, #faf6ee 0%, #f1e7d2 60%, #e9dcc1 100%);
  --grad-champagne-soft: linear-gradient(180deg, #ffffff 0%, #faf6ee 100%);
  --grad-gold-text: linear-gradient(90deg, #a8853f 0%, #e0c789 45%, #b8924a 100%);
  --grad-gold-rule: linear-gradient(90deg, rgba(194,163,94,0) 0%, rgba(194,163,94,.7) 50%, rgba(194,163,94,0) 100%);
  --grad-hero-veil: linear-gradient(180deg, rgba(40,52,70,0) 25%, rgba(40,52,70,.42) 72%, rgba(40,52,70,.72) 100%);
  --grad-sky-deep:  linear-gradient(150deg, #0b4f9e 0%, #008afc 55%, #5bc6f5 120%);

  --maxw: 1440px;
  --pad-x: clamp(20px, 5.5vw, 104px);

  /* ---- Glass system ---- */
  --glass-radius: 20px;
  --glass-light: rgba(255,255,255,0.58);
  --glass-light-strong: rgba(255,255,255,0.74);
  --glass-tint: rgba(250,246,238,0.55);     /* champagne-frosted */
  --glass-dark: rgba(22,30,42,0.42);
  --glass-border: rgba(255,255,255,0.7);
  --glass-border-dark: rgba(255,255,255,0.16);
  --glass-blur: blur(22px) saturate(150%);
  --glass-shadow: 0 18px 50px -18px rgba(40,52,70,0.34), inset 0 1px 0 rgba(255,255,255,0.55);
  --glass-shadow-sm: 0 10px 30px -14px rgba(40,52,70,0.3), inset 0 1px 0 rgba(255,255,255,0.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white);
  font-family: var(--font-display);
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#root { width: 100%; overflow-x: clip; }

img { display: block; max-width: 100%; }
button { font-family: inherit; }

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.bleed { width: 100%; }
.section { position: relative; padding-block: clamp(64px, 9vw, 132px); }

/* ---------- gold accent atoms ---------- */
.gold-eyebrow {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  background: var(--grad-gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.gold-rule { height: 1px; width: 100%; background: var(--grad-gold-rule); border: 0; }
.gold-rule-v { width: 1px; align-self: stretch; background: linear-gradient(180deg, rgba(194,163,94,0), rgba(194,163,94,.55), rgba(194,163,94,0)); }
.gold-tick { width: 38px; height: 1.5px; background: var(--grad-gold-text); border-radius: 2px; }

.display {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.01;
  color: var(--ink);
  text-wrap: balance;
}
.lead {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--slate-70);
  text-wrap: pretty;
}
.kicker-num {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: 0.22em; color: var(--gold-deep); text-transform: uppercase;
}

/* ---------- buttons (DS sky-blue action + a refined dark + ghost) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 34px; border: 1px solid transparent; cursor: pointer;
  font-family: var(--font-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; line-height: 1; white-space: nowrap;
  border-radius: 0; background: var(--sky-blue); color: #fff;
  transition: background var(--dur-base) var(--ease-calm), transform var(--dur-fast) var(--ease-calm),
              box-shadow var(--dur-base) var(--ease-calm), color var(--dur-base) var(--ease-calm);
}
.btn:hover { background: var(--action-hover); }
.btn:active { background: var(--action-press); transform: translateY(1px); }
.btn--sm { height: 44px; padding: 0 24px; font-size: 12px; }
.btn--lg { height: 58px; padding: 0 42px; }
.btn--dark { background: var(--slate); color: var(--off-white); }
.btn--dark:hover { background: #1d2735; }
.btn--ghost { background: transparent; color: var(--slate); border-color: var(--slate-12); }
.btn--ghost:hover { border-color: var(--slate); background: transparent; }
.btn--on-dark { background: #fff; color: var(--slate); }
.btn--on-dark:hover { background: var(--champagne-100); }
.btn--gold { background: linear-gradient(120deg,#b8924a,#e0c789 55%,#b8924a); color: #3a2e12; border:0; }
.btn--gold:hover { filter: brightness(1.04); }
a.btn { text-decoration: none; }
.mem-cta > .btn--gold { background: #c0a06a; color: #2b2318; }
.mem-cta > .btn--gold:hover { background: #b0905c; filter: none; }
.mem-cta > .btn--gold-outline { background: transparent; color: #8f7233; border: 1px solid #c0a06a; }
.mem-cta > .btn--gold-outline:hover { background: rgba(192,160,106,.1); border-color: #a8853f; color: #7d6229; }
.btn--full { width: 100%; }
.suite-grid .btn--full { padding: 0 12px; font-size: 11.5px; letter-spacing: 0.08em; white-space: normal; text-align: center; line-height: 1.3; height: auto; min-height: 52px; }
.btn--gold-outline { background: transparent; color: #8f7233; border: 1px solid #c0a06a; }
.btn--gold-outline:hover { background: rgba(192,160,106,.1); border-color: #a8853f; color: #7d6229; }

.linkline {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--slate);
  background: none; border: 0; padding: 0; cursor: pointer;
  transition: gap var(--dur-base) var(--ease-calm), color var(--dur-base) var(--ease-calm);
}
.linkline:hover { gap: 15px; color: var(--gold-deep); }
.linkline .arr { transition: transform var(--dur-base) var(--ease-calm); }
.linkline:hover .arr { transform: translateX(2px); }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease-calm), transform .9s var(--ease-calm); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }
.reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(1.1);
       border-bottom: 1px solid var(--border-hair); transition: background var(--dur-base) var(--ease-calm), border-color var(--dur-base) var(--ease-calm); }
.hdr.is-top { background: rgba(255,255,255,.0); border-bottom-color: transparent; }
.hdr.on-dark { color: #fff; }
.navlink { position: relative; font-family: var(--font-ui); font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
           text-transform: uppercase; color: inherit; text-decoration: none; cursor: pointer; background: none; border: 0; padding: 6px 0; }
.navlink::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1.5px;
                  background: var(--grad-gold-text); transition: right var(--dur-base) var(--ease-calm); }
.navlink:hover::after { right: 0; }
.hdr-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
            border: 1px solid var(--slate-12); background: rgba(255,255,255,.6); cursor: pointer; color: inherit;
            transition: border-color var(--dur-base) var(--ease-calm), background var(--dur-base) var(--ease-calm); }
.hdr-cart:hover { border-color: var(--gold); }
.hdr-cart .cdot { position: absolute; top: -8px; right: -8px; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 50px;
                  background: var(--sky-blue); color: #fff; font-family: var(--font-ui); font-size: 11px; font-weight: 700;
                  display: grid; place-items: center; line-height: 1; }

/* ---------- cards / tiles ---------- */
.tile { position: relative; overflow: hidden; background: var(--slate); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-calm); }
.tile:hover img { transform: scale(1.06); }

.lift { transition: transform var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm); }
.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-raise); }

/* hide native scrollbar for carousels */
.no-bar { scrollbar-width: none; -ms-overflow-style: none; }
.no-bar::-webkit-scrollbar { display: none; }

/* ---------- overlay / drawer / modal ---------- */
.scrim { position: fixed; inset: 0; z-index: 80; background: rgba(20,28,40,.46); backdrop-filter: blur(3px); }
.scrim:not(.show) { pointer-events: none; }

.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 90; width: min(440px, 92vw); background: #fff;
          box-shadow: -20px 0 60px rgba(40,52,70,.18); display: flex; flex-direction: column; }

.modal { position: fixed; z-index: 90; inset: 0; display: grid; place-items: center; padding: 20px; pointer-events: none; }
.modal-card { width: min(900px, 96vw); max-height: 92vh; overflow: hidden; background: #fff; opacity: 0; transform: translateY(14px) scale(.99);
              transition: opacity var(--dur-base) var(--ease-calm), transform var(--dur-base) var(--ease-calm); display: flex; flex-direction: column; }
.modal.show { pointer-events: auto; }
.modal.show .modal-card { opacity: 1; transform: none; }

.iconbtn { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--slate-12);
           background: #fff; cursor: pointer; color: var(--slate); transition: border-color var(--dur-base) var(--ease-calm), color var(--dur-base) var(--ease-calm); }
.iconbtn:hover { border-color: var(--gold); color: var(--gold-deep); }

/* qty stepper */
.qty { display: inline-flex; align-items: center; border: 1px solid var(--slate-12); }
.qty button { width: 32px; height: 32px; border: 0; background: #fff; cursor: pointer; color: var(--slate); font-size: 16px; line-height: 1; }
.qty button:hover { color: var(--gold-deep); }
.qty span { min-width: 30px; text-align: center; font-family: var(--font-ui); font-size: 14px; }

/* selectable choice card (booking) */
.choice { position: relative; text-align: left; cursor: pointer; background: #fff; border: 1px solid var(--slate-12);
          transition: border-color var(--dur-base) var(--ease-calm), box-shadow var(--dur-base) var(--ease-calm), transform var(--dur-base) var(--ease-calm); }
.choice:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow-raise); }
.choice.sel { border-color: var(--sky-blue); box-shadow: 0 0 0 1px var(--sky-blue); }

/* time/date chips */
.chip { font-family: var(--font-ui); font-size: 13px; letter-spacing: .03em; padding: 11px 16px; border: 1px solid var(--slate-12);
        background: #fff; color: var(--slate); cursor: pointer; transition: all var(--dur-fast) var(--ease-calm); }
.chip:hover { border-color: var(--gold); }
.chip.sel { background: var(--sky-blue); border-color: var(--sky-blue); color: #fff; }
.chip:disabled { opacity: .32; cursor: not-allowed; text-decoration: line-through; }

/* product placeholder bottle */
.bottle { position: relative; width: 100%; height: 100%; display: grid; place-items: end center; }

/* segmented tabs */
.seg { display: inline-flex; background: rgba(255,255,255,.55); border: 1px solid var(--slate-12); padding: 4px; }
.seg button { font-family: var(--font-ui); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
              padding: 11px 22px; border: 0; background: transparent; color: var(--slate-70); cursor: pointer;
              transition: color var(--dur-base) var(--ease-calm), background var(--dur-base) var(--ease-calm); }
.seg button.on { background: var(--slate); color: #fff; }

.fadeimg { opacity: 1; }

/* =====================================================================
   GLASS + EDITORIAL LAYER (Lumiera-inspired treatment)
   ===================================================================== */

/* frosted glass panels */
.glass {
  background: var(--glass-light);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
}
.glass-strong { background: var(--glass-light-strong); }
.glass-tint {
  background: var(--glass-tint);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(221,201,160,0.45);
  border-radius: var(--glass-radius);
  box-shadow: var(--glass-shadow);
}
.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--glass-radius);
  box-shadow: 0 20px 60px -22px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.12);
}
.glass-sm { border-radius: 14px; box-shadow: var(--glass-shadow-sm); }

/* decorative blurred gradient orbs (the soft champagne/sky blooms) */
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.6; pointer-events: none; z-index: 0; }
.orb-champ { background: radial-gradient(circle at 30% 30%, rgba(224,199,137,0.85), rgba(216,226,220,0) 70%); }
.orb-sky   { background: radial-gradient(circle at 30% 30%, rgba(162,204,228,0.8), rgba(162,204,228,0) 70%); }
.orb-sage  { background: radial-gradient(circle at 30% 30%, rgba(216,226,220,0.95), rgba(216,226,220,0) 70%); }
.orb-gold  { background: radial-gradient(circle at 30% 30%, rgba(194,163,94,0.55), rgba(194,163,94,0) 70%); }
@media (prefers-reduced-motion: no-preference) {
  .orb-float { animation: orbFloat 16s ease-in-out infinite alternate; }
}
@keyframes orbFloat { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(0,-28px,0) scale(1.08); } }

/* fine grain texture for premium film feel */
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC44NScgbnVtT2N0YXZlcz0nMycgc3RpdGNoVGlsZXM9J3N0aXRjaCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScgb3BhY2l0eT0nMC4wNScvPjwvc3ZnPg==");
}

/* benefit pill row (Lumiera-style icon + label strip) */
.benefit-strip { display: flex; align-items: stretch; flex-wrap: wrap; }
.benefit-item { display: flex; align-items: center; gap: 13px; padding: 18px 26px; flex: 1 1 0; min-width: 180px; }
.benefit-item + .benefit-item { border-left: 1px solid rgba(255,255,255,0.28); }
.benefit-ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
               background: rgba(255,255,255,0.16); color: #fff; flex-shrink: 0; border: 1px solid rgba(255,255,255,0.22); }

/* tag badge on cards (Most Booked / Editor's Pick / New) */
.tagbadge {
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-ui); font-size: 10px;
  font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 7px 12px;
  border-radius: 50px; background: rgba(255,255,255,0.72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--gold-ink); border: 1px solid rgba(221,201,160,0.6);
}
.tagbadge--sky { color: var(--royal-blue); border-color: rgba(162,204,228,0.7); }
.tagbadge--solid { background: var(--slate); color: #fff; border-color: transparent; }

/* glass segmented control (category tabs) */
.gtabs { display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 6px;
         background: var(--glass-light); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
         border: 1px solid var(--glass-border); border-radius: 50px; box-shadow: var(--glass-shadow-sm); }
.gtab { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-ui); font-size: 12px; font-weight: 600;
        letter-spacing: 0.1em; text-transform: uppercase; padding: 11px 20px; border: 0; border-radius: 50px;
        background: transparent; color: var(--slate-70); cursor: pointer; white-space: nowrap;
        transition: color var(--dur-base) var(--ease-calm), background var(--dur-base) var(--ease-calm); }
.gtab.on { background: var(--slate); color: #fff; }
.gtab:not(.on):hover { color: var(--gold-deep); }

/* live availability dot */
.livedot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: #2bb673; flex-shrink: 0; }
.livedot::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1.5px solid rgba(43,182,115,0.5);
                  animation: pulse 2.2s var(--ease-calm) infinite; }
@keyframes pulse { 0% { transform: scale(0.7); opacity: 0.9; } 100% { transform: scale(1.5); opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .livedot::after { animation: none; } }

/* as-seen-in marquee */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
           mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; }
@media (prefers-reduced-motion: no-preference) { .marquee-track { animation: marquee 32s linear infinite; } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.press-name { font-family: var(--font-display); font-size: clamp(18px,1.8vw,24px); letter-spacing: 0.04em; color: var(--slate-45); white-space: nowrap; }

/* star rating */
.stars { display: inline-flex; gap: 2px; color: var(--gold); }

/* glass cart drawer + modal */
.drawer.glassy { background: rgba(255,255,255,0.82); backdrop-filter: blur(26px) saturate(150%); -webkit-backdrop-filter: blur(26px) saturate(150%); }
.modal-card.glassy { background: rgba(255,255,255,0.86); backdrop-filter: blur(26px) saturate(150%); -webkit-backdrop-filter: blur(26px) saturate(150%); border: 1px solid var(--glass-border); border-radius: var(--glass-radius); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* header sizing */
.hdr-bar { height: 96px; }
.site-logo { height: 56px; }

/* hero background focus — keep the subjects (right of frame) in view as it narrows */
.hero-bg { object-position: 62% 30%; }

/* benefit strip straddle — strip lives inside #booking (flow-root); negative
   top margin lets its upper edge escape over the hero, lower half on champagne */
.benefit-wrap { margin-top: -38px; }

@media (max-width: 1100px) {
  .hero-bg { object-position: 66% 30%; }
}

/* ---- tablet ---- */
@media (max-width: 900px) {
  .hide-mobile { display: none !important; }

  .hdr-bar { height: 74px; }
  .site-logo { height: 46px; }

  /* keep BOTH women (they sit on the right of the photo) framed on phones */
  .hero-bg { object-position: 87% 28%; }

  /* benefit strip → 2 columns, compact */
  .benefit-strip { display: grid !important; grid-template-columns: 1fr 1fr; }
  .benefit-item { flex: none; min-width: 0; border-left: 0 !important; border-top: 1px solid rgba(40,52,70,0.08); }
  .benefit-item:nth-child(odd) { border-right: 1px solid rgba(40,52,70,0.08); }
  .benefit-item:nth-child(1), .benefit-item:nth-child(2) { border-top: 0; }
  .benefit-wrap { margin-top: -26px !important; }

  /* founder → image on top, everything below */
  .founder-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .founder-photo { aspect-ratio: 4 / 3 !important; max-height: 440px !important; }

  /* split hero → stack */
  .hero-split-grid { grid-template-columns: 1fr !important; }

  /* footer columns → stack */
  .foot-cols { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  .foot-cols > div:first-child { grid-column: 1 / -1; }
}

/* ---- phone ---- */
@media (max-width: 560px) {
  .hero-bg { object-position: 90% 26%; }
  .benefit-strip { grid-template-columns: 1fr; }
  .benefit-item:nth-child(odd) { border-right: 0; }
  .benefit-item + .benefit-item { border-top: 1px solid rgba(40,52,70,0.08) !important; }
  .foot-cols { grid-template-columns: 1fr !important; }
  .marquee-track { gap: 40px; }
  .press-name { font-size: 18px; }
}

@media (max-width: 1100px) {
  .hide-narrow { display: none !important; }
}

/* funnel hero: keep the subjects OUT of frame on narrow screens so the
   overlay copy sits on the quiet left side of the room */
@media (max-width: 900px) {
  .mem-hero-bg { object-position: 14% 38% !important; }
}
@media (max-width: 560px) {
  .mem-hero-bg { object-position: 8% 44% !important; }
}

@media (min-width: 901px) {
  .only-mobile { display: none !important; }
}

/* ---------- suites / champagne panels ---------- */
.loc-scrim { position: fixed; inset: 0; z-index: 90; background: rgba(20,28,40,.55); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 18px; }
.loc-sheet { width: min(760px, 100%); max-height: 92vh; overflow-y: auto; background: #fff; border: 1px solid rgba(194,163,94,.5); border-radius: var(--glass-radius); padding: clamp(22px,3vw,38px); }
.loc-opts { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; margin-top: clamp(20px,2.6vw,28px); }
.salon-card { display: block; background: var(--champagne-50); border: 1px solid rgba(194,163,94,.5); border-radius: var(--glass-radius); padding: clamp(20px,2.4vw,26px); cursor: pointer; transition: background var(--dur-base) var(--ease-calm), border-color var(--dur-base) var(--ease-calm); }
.salon-card:hover, .salon-card:focus-visible { background: var(--champagne-100); border-color: var(--gold-deep); outline: none; }
.salon-card:focus-visible { box-shadow: 0 0 0 3px rgba(194,163,94,.45); }
.loc-suites { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--border-hair); }
@media (max-width: 720px) { .loc-scrim { padding: 0; align-items: stretch; } .loc-sheet { width: 100%; max-height: 100vh; min-height: 100vh; border: 0; border-radius: 0; padding: 22px 18px 34px; } .loc-opts { grid-template-columns: minmax(0,1fr); } }
.salon-badge button { background: none; border: 0; padding: 0; font: inherit; text-decoration: underline; cursor: pointer; }
.menu-bars { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: clamp(26px,3vw,40px); }
.news-form { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; flex: 1 1 380px; max-width: 460px; position: relative; }
.news-input { width: 100%; height: 52px; padding: 0 18px; border: 1px solid var(--slate-12); background: rgba(255,255,255,.7); font-family: var(--font-display); font-size: 15px; color: var(--slate); border-radius: 0; }
.news-input:focus { outline: none; border-color: var(--gold-deep); }
.news-input[aria-invalid="true"] { border-color: #9a3412; }
.news-err { font-family: var(--font-display); font-size: 13px; line-height: 1.4; color: #9a3412; margin: 6px 0 0; }
.news-form > button, .news-form > p { grid-column: 1 / -1; }
@media (max-width: 520px) { .news-form { grid-template-columns: minmax(0,1fr); } }
.menu-row { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; gap: clamp(16px,3vw,48px); align-items: center; padding: clamp(22px,3vw,34px) 0; border-bottom: 1px solid var(--border-hair); }
.menu-cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 22px; margin-top: clamp(30px,4vw,46px); padding-top: clamp(24px,3vw,32px); border-top: 1px solid rgba(194,163,94,.34); }
@media (max-width: 720px) { .menu-row { grid-template-columns: minmax(0,1fr) auto; gap: 14px; } .menu-row > span:first-child { display: none; } }
.mem-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; border-top: 1px solid rgba(194,163,94,.34); }
.mem-item { padding: clamp(26px,3vw,40px); border-bottom: 1px solid rgba(194,163,94,.34); border-right: 1px solid rgba(194,163,94,.34); }
.mem-item:nth-child(2n) { border-right: 0; }
.mem-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(24px,3vw,48px); }
.mem-faq-grid { grid-template-columns: minmax(0,.72fr) minmax(0,1.28fr); }
.mem-faq-q { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; padding: 26px 0; background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--font-display); font-size: clamp(18px,1.7vw,23px); color: var(--slate); letter-spacing: -0.01em; }
.mem-faq-q:hover { color: var(--gold-deep); }
.mem-faq-ico { transition: transform var(--dur-base) var(--ease-calm); color: var(--gold-deep); flex-shrink: 0; }
.mem-faq-q[aria-expanded="true"] .mem-faq-ico { transform: rotate(180deg); }
.mem-faq-a { overflow: hidden; transition: max-height var(--dur-slow) var(--ease-calm), opacity var(--dur-base) var(--ease-calm); }
.mem-check { width: 100%; display: flex; align-items: flex-start; gap: 12px; font-family: var(--font-display); font-size: 13.5px; line-height: 1.5; color: var(--slate-70); cursor: pointer; }
.mem-check input { margin: 2px 0 0; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--gold-deep); }

@media (max-width: 900px) {
  .mem-grid, .suites-2col { grid-template-columns: minmax(0,1fr) !important; }
  .mem-cta { flex-direction: column; align-items: stretch; }
  .mem-cta > .btn { width: 100%; justify-content: center; }
  .mem-photo { aspect-ratio: 4 / 3 !important; }
  .mem-list { grid-template-columns: 1fr; }
  .mem-item { border-right: 0 !important; }
  .mem-steps { grid-template-columns: 1fr; }
  .mem-faq-grid { grid-template-columns: 1fr; }
}
