/* ============================================================
   AURUM — Mobile IV  ·  "ClearPath" light editorial system
   Calm, airy, editorial. Cream base · sage + warm-sand accents.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  /* Paper / surfaces */
  --paper:        #F3EFE7;   /* warm cream base */
  --paper-2:      #EDE7DC;   /* alt sections / cards */
  --paper-3:      #E6DFD1;   /* deeper sand panel */
  --card:         #FBF9F4;   /* lifted card surface */

  /* Ink */
  --ink:          #262420;
  --ink-soft:     rgba(38, 36, 32, 0.66);
  --ink-mute:     rgba(38, 36, 32, 0.46);
  --ink-faint:    rgba(38, 36, 32, 0.30);

  /* Accents */
  --sage:         #7E8B6E;   /* primary muted sage */
  --sage-deep:    #5E6A4E;
  --sage-soft:    rgba(126, 139, 110, 0.16);
  --sand:         #B89C76;   /* warm sand */
  --sand-soft:    rgba(184, 156, 118, 0.18);

  /* Lines */
  --line:         rgba(38, 36, 32, 0.13);
  --line-soft:    rgba(38, 36, 32, 0.08);

  --color-danger: #B4502F;
  --color-danger-bg: rgba(180, 80, 47, 0.12);

  /* Type */
  --font-serif: 'Cormorant', 'Times New Roman', serif;
  --font-sans:  'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --radius-pill: 999px;

  --btn-height-primary: 60px;
  --input-height: 58px;

  --ease-out-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0, 0.35, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}
::selection { background: var(--sage); color: #fff; }

img { display: block; max-width: 100%; }

/* Ambient dreamy blobs ------------------------------------- */
.ambient {
  position: fixed; z-index: 0; pointer-events: none;
  width: 62vw; height: 62vw; max-width: 880px; max-height: 880px; border-radius: 50%;
  filter: blur(40px); opacity: 0.5;
  background: radial-gradient(circle, rgba(126,139,110,0.40) 0%, rgba(126,139,110,0.06) 42%, transparent 70%);
  animation: drift 30s ease-in-out infinite alternate;
}
.ambient.a1 { top: -20vw; right: -14vw; }
.ambient.a2 { bottom: 6%; left: -22vw; width: 50vw; height: 50vw;
  background: radial-gradient(circle, rgba(184,156,118,0.40) 0%, rgba(184,156,118,0.05) 44%, transparent 72%);
  animation-duration: 38s; animation-delay: -10s; }
@keyframes drift { 0% { transform: translate3d(0,0,0) scale(1);} 100% { transform: translate3d(3vw,2vw,0) scale(1.12);} }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* Layout shell --------------------------------------------- */
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 34px; position: relative; z-index: 3; }
section { position: relative; z-index: 3; }
@media (max-width: 720px){ .wrap { padding: 0 22px; } }

/* Eyebrow -------------------------------------------------- */
.eyebrow {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--sage-deep);
}
.eyebrow.dot::before { content: "•"; margin-right: 9px; color: var(--sand); }

/* Announcement -------------------------------------------- */
.topbar {
  position: relative; z-index: 60; display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 9px 20px; text-align: center; background: var(--paper-3);
  border-bottom: 1px solid var(--line-soft);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft);
  white-space: nowrap;
}
.topbar span { overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 560px){ .topbar { font-size: 10px; letter-spacing: 0.08em; } }
.topbar a { color: var(--sage-deep); text-decoration: none; border-bottom: 1px solid var(--sage); padding-bottom: 1px; transition: color .3s, border-color .3s; }
.topbar a:hover { color: var(--ink); border-color: var(--ink); }
.topbar .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); animation: pulse 2.6s infinite; }
@keyframes pulse { 0%{ box-shadow:0 0 0 0 rgba(126,139,110,0.5);} 70%{ box-shadow:0 0 0 8px rgba(126,139,110,0);} 100%{ box-shadow:0 0 0 0 rgba(126,139,110,0);} }

/* Nav ------------------------------------------------------ */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 24px 34px; transition: padding .5s var(--ease-out-soft), background .5s, border-color .5s, backdrop-filter .5s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 13px 34px; background: rgba(243,239,231,0.82);
  backdrop-filter: blur(16px) saturate(130%); -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width:720px){ .nav, .nav.scrolled { padding-left: 22px; padding-right: 22px; } }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand .mark { font-family: var(--font-serif); font-weight: 500; font-size: 26px; letter-spacing: 0.16em; line-height: 1; text-transform: lowercase; }
.brand .bd { width: 6px; height: 6px; border-radius: 50%; background: var(--sand); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a:not(.btn) { color: var(--ink-soft); text-decoration: none; font-size: 14.5px; font-weight: 500; letter-spacing: 0.01em; position: relative; transition: color .3s; }
.nav-links a:not(.btn)::after { content:""; position:absolute; left:0; bottom:-5px; height:1px; width:0; background: var(--sage); transition: width .4s var(--ease-out-soft); }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
@media (max-width: 880px){ .nav-links .menu-link { display: none; } }

/* Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border-radius: var(--radius-pill); border: 1px solid transparent; cursor: pointer; text-decoration: none;
  padding: 0 26px; height: 50px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease-out-soft), box-shadow .35s, background .35s, color .35s, border-color .35s;
  -webkit-tap-highlight-color: transparent;
}
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #34312b; transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(38,36,32,0.6); }
.btn-ink:active { transform: translateY(0) scale(.99); }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-deep); transform: translateY(-2px); box-shadow: 0 16px 34px -16px rgba(94,106,78,0.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,0.14); color: #fff; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,0.24); transform: translateY(-2px); }
.btn-lg { height: var(--btn-height-primary); padding: 0 34px; font-size: 16px; }
.btn .arr { transition: transform .35s var(--ease-out-soft); }
.btn:hover .arr { transform: translateX(4px); }

/* Dreamy gradient backdrop (reusable) ---------------------- */
.dreamy {
  background:
    radial-gradient(58% 70% at 18% 26%, #cfd6c0 0%, transparent 60%),
    radial-gradient(54% 64% at 82% 16%, #ece0cd 0%, transparent 58%),
    radial-gradient(74% 90% at 72% 96%, #b6c2c6 0%, transparent 62%),
    radial-gradient(50% 60% at 38% 86%, #d9c6ac 0%, transparent 58%),
    linear-gradient(125deg, #c7cfbd 0%, #ddd2c0 55%, #cdc3bb 100%);
}

/* HERO (full-bleed dreamy) --------------------------------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero .hero-bg::after {
  content:""; position:absolute; inset:0; opacity:.4; mix-blend-mode:soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3C/svg%3E");
}
.hero .hero-veil { position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(34,32,28,0.62) 0%, rgba(34,32,28,0.18) 42%, transparent 70%); }
.hero .squiggle { position: absolute; right: 4%; top: 12%; width: min(38vw, 460px); height: auto; z-index: 2;
  stroke: rgba(255,255,255,0.72); fill: none; stroke-width: 1.2; opacity: 0; transition: opacity 1.4s ease, transform 1.6s var(--ease-out-soft); transform: translateY(20px) rotate(-4deg); }
body.loaded .hero .squiggle { opacity: 1; transform: translateY(0) rotate(0); }
.hero .squiggle path { stroke-dasharray: 2400; stroke-dashoffset: 2400; animation: drawLine 3s var(--ease-out-soft) .5s forwards; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
@media (max-width: 720px){ .hero .squiggle { display: none; } }

.hero-inner { position: relative; z-index: 4; width: 100%; padding-bottom: 64px; padding-top: 120px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero-eyebrow .eyebrow { color: rgba(255,255,255,0.86); }
.hero-eyebrow .line { width: 36px; height: 1px; background: rgba(255,255,255,0.5); }
.hero h1 {
  font-family: var(--font-serif); font-weight: 500; color: #fff;
  font-size: clamp(52px, 8vw, 124px); line-height: 0.96; letter-spacing: -0.01em; max-width: 14ch;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.hero h1 em { font-style: italic; }
.hero h1 .reveal-line { display: block; overflow: hidden; }
.hero h1 .reveal-line > span { display: block; transform: translateY(0); }
.hero p.lede { margin: 26px 0 34px; max-width: 500px; color: rgba(255,255,255,0.9); font-size: 18px; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { margin-top: 46px; display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.78); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.hero-scroll .ln { width: 46px; height: 1px; background: rgba(255,255,255,0.5); position: relative; overflow: hidden; }
.hero-scroll .ln::after { content:""; position:absolute; inset:0; width:40%; background:#fff; animation: scrollLn 2.4s var(--ease-in-out-soft) infinite; }
@keyframes scrollLn { 0%{ transform: translateX(-100%);} 100%{ transform: translateX(280%);} }

/* Marquee -------------------------------------------------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; background: var(--paper-2); }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: scroll-x 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track .item { display: flex; align-items: center; gap: 14px; color: var(--ink-soft); font-size: 14px; font-weight: 500; white-space: nowrap; letter-spacing: 0.04em; }
.marquee-track .sep { width: 5px; height: 5px; border-radius: 50%; background: var(--sand); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* Sections ------------------------------------------------- */
.sec { padding: 104px 0; }
@media (max-width:720px){ .sec { padding: 72px 0; } }
.sec.alt { background: var(--paper-2); }
.sec-head { max-width: 680px; margin-bottom: 60px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(38px, 5.2vw, 70px); line-height: 1.02; letter-spacing: -0.012em; margin-top: 18px; }
.sec-head h2 em { font-style: italic; color: var(--sage-deep); }
.sec-head p { margin-top: 20px; color: var(--ink-soft); font-size: 17.5px; line-height: 1.62; }

/* Statement block (big intro line) ------------------------- */
.statement { display: grid; grid-template-columns: 0.4fr 1.6fr; gap: 40px; align-items: start; padding: 84px 0; border-bottom: 1px solid var(--line); }
@media (max-width: 820px){ .statement { grid-template-columns: 1fr; gap: 20px; } }
.statement .lbl { font-family: var(--font-sans); font-size: 13px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); padding-top: 14px; }
.statement p { font-family: var(--font-serif); font-weight: 400; font-size: clamp(26px, 3.4vw, 44px); line-height: 1.24; letter-spacing: -0.01em; color: var(--ink); }
.statement p em { font-style: italic; color: var(--sage-deep); }

/* Menu / infusion cards ------------------------------------ */
.menu-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.menu-note {
  display: flex; align-items: flex-start; gap: 12px; max-width: 460px;
  font-size: 13.5px; line-height: 1.55; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 16px 18px;
}
.menu-note svg { flex: none; width: 18px; height: 18px; color: var(--sage); margin-top: 1px; }
.menu-note b { color: var(--ink); font-weight: 600; }

.drips-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width:900px){ .drips-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width:560px){ .drips-grid { grid-template-columns: 1fr; } }
.drip-card {
  position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px 26px; overflow: hidden; cursor: pointer;
  transition: transform .45s var(--ease-out-soft), border-color .45s, box-shadow .45s, background .45s;
}
.drip-card:hover { transform: translateY(-6px); border-color: var(--sage); box-shadow: 0 28px 50px -34px rgba(38,36,32,0.4); }
.drip-card .ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--sage-soft); color: var(--sage-deep); margin-bottom: 24px; transition: transform .45s var(--ease-out-soft); }
.drip-card:hover .ic { transform: rotate(-6deg) scale(1.06); }
.drip-card h3 { font-family: var(--font-serif); font-size: 30px; font-weight: 600; letter-spacing: 0; line-height: 1.08; }
.drip-card .blurb { color: var(--ink-soft); font-size: 14.5px; line-height: 1.56; margin: 9px 0 18px; min-height: 66px; }
.drip-card .chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.drip-card .chip { font-size: 11.5px; font-weight: 600; letter-spacing: 0.02em; color: var(--sage-deep); background: var(--sage-soft); border-radius: var(--radius-pill); padding: 5px 11px; }
.drip-card .foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.drip-card .price { font-size: 13px; color: var(--ink-mute); }
.drip-card .price b { font-family: var(--font-serif); font-size: 25px; color: var(--ink); font-weight: 600; margin-left: 3px; }
.drip-card .pick { font-size: 13px; font-weight: 600; color: var(--sage-deep); display: inline-flex; align-items: center; gap: 6px; transition: gap .35s; }
.drip-card:hover .pick { gap: 11px; }

/* IM injections / boosters strip --------------------------- */
.boosters { margin-top: 56px; }
.boosters .b-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; flex-wrap: wrap; }
.boosters .b-head h3 { font-family: var(--font-serif); font-weight: 500; font-size: 30px; }
.boosters .b-head span { font-size: 14px; color: var(--ink-mute); }
.booster-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width:760px){ .booster-grid { grid-template-columns: 1fr; } }
.booster {
  display: flex; align-items: flex-start; gap: 16px; padding: 22px 24px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
}
.sec.alt .booster { background: var(--card); }
.booster .bi { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--sand-soft); color: var(--sand); }
.booster .bt { font-family: var(--font-serif); font-size: 22px; font-weight: 600; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.booster .bt .bp { font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: var(--sage-deep); }
.booster .bd { font-size: 13px; color: var(--ink-soft); line-height: 1.5; margin-top: 4px; }
.addons-note { margin-top: 22px; font-size: 14px; color: var(--ink-soft); }
.addons-note b { color: var(--ink); font-weight: 600; }
.addons-note .ac { display: inline-block; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 3px 12px; font-size: 12.5px; font-weight: 600; color: var(--ink); margin: 0 3px; }

/* Ritual --------------------------------------------------- */
.ritual-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
@media (max-width:760px){ .ritual-grid { grid-template-columns: 1fr; } }
.ritual-step { position: relative; padding: 36px 32px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--card); }
.ritual-step .num { font-family: var(--font-serif); font-size: 60px; font-weight: 500; color: var(--sage); line-height: 1; }
.ritual-step h3 { font-family: var(--font-serif); font-size: 25px; font-weight: 600; margin: 16px 0 10px; }
.ritual-step p { color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* About ---------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width:860px){ .about-grid { grid-template-columns: 1fr; gap: 38px; } }
.about-photo { position: relative; aspect-ratio: 4/5; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 80px -50px rgba(38,36,32,0.5); }
.about-photo image-slot { width: 100%; height: 100%; display:block; }
.about-photo .sig { position: absolute; bottom: 20px; left: 24px; font-family: var(--font-serif); font-style: italic; font-size: 32px; color: #fff; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.about-copy h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(34px,4.6vw,58px); line-height: 1.04; letter-spacing: -0.01em; }
.about-copy h2 em { font-style: italic; color: var(--sage-deep); }
.about-copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-top: 20px; }
.about-copy .pull { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: var(--ink); border-left: 2px solid var(--sage); padding-left: 22px; margin-top: 30px; line-height: 1.4; }

/* Booking -------------------------------------------------- */
.booking { background: var(--paper-2); }
.booking-card {
  max-width: 780px; margin: 0 auto; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 40px; position: relative; overflow: hidden; box-shadow: 0 50px 110px -60px rgba(38,36,32,0.5);
}
@media (max-width:560px){ .booking-card { padding: 26px 20px; } }
.book-progress { display: flex; align-items: center; margin-bottom: 34px; }
.book-progress .node { display: flex; align-items: center; flex: 1; }
.book-progress .node:last-child { flex: 0; }
.book-progress .dot { width: 30px; height: 30px; border-radius: 50%; flex: none; display: grid; place-items: center; font-size: 12px; font-weight: 700; background: var(--paper-2); color: var(--ink-mute); border: 1px solid var(--line); transition: all .4s var(--ease-out-soft); }
.book-progress .dot.active { background: var(--sage); color: #fff; border-color: var(--sage); box-shadow: 0 0 0 5px var(--sage-soft); }
.book-progress .dot.done { background: var(--sage-soft); color: var(--sage-deep); border-color: var(--sage); }
.book-progress .bar { flex: 1; height: 2px; background: var(--line); margin: 0 10px; position: relative; overflow: hidden; }
.book-progress .bar > i { position: absolute; inset: 0; width: 0; background: var(--sage); transition: width .6s var(--ease-out-soft); }
.book-progress .bar.filled > i { width: 100%; }

.book-step { display: none; animation: stepIn .55s var(--ease-out-soft); }
.book-step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(16px);} to { opacity: 1; transform: translateX(0);} }
.book-step .step-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); font-weight: 600; }
.book-step h3 { font-family: var(--font-serif); font-weight: 500; font-size: 34px; margin: 10px 0 24px; }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width:560px){ .opt-grid { grid-template-columns: 1fr; } }
.opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); cursor: pointer; transition: border-color .3s, background .3s, transform .25s; }
.opt:hover { border-color: var(--sage); transform: translateY(-2px); }
.opt.sel { border-color: var(--sage); background: var(--sage-soft); }
.opt .o-name { font-family: var(--font-serif); font-size: 21px; font-weight: 600; }
.opt .o-desc { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.opt .o-price { font-size: 14px; color: var(--ink-soft); font-weight: 600; white-space: nowrap; }
.opt .o-check { width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--line); flex: none; display: grid; place-items: center; transition: all .3s; }
.opt.sel .o-check { background: var(--sage); border-color: var(--sage); }
.opt .o-check svg { opacity: 0; transition: opacity .3s; color: #fff; }
.opt.sel .o-check svg { opacity: 1; }

.booster-toggle { margin-top: 26px; }
.booster-toggle .bt-label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 12px; }
.bt-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.bt-chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius-pill); background: var(--paper); cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: all .25s; }
.bt-chip .plus { width: 16px; height: 16px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--ink-faint); font-size: 13px; line-height: 1; transition: all .25s; }
.bt-chip:hover { border-color: var(--sand); color: var(--ink); }
.bt-chip.sel { border-color: var(--sand); background: var(--sand-soft); color: var(--ink); }
.bt-chip.sel .plus { background: var(--sand); border-color: var(--sand); color: #fff; transform: rotate(45deg); }

.date-row { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; margin-bottom: 22px; scrollbar-width: none; }
.date-row::-webkit-scrollbar { display: none; }
.date-pill { flex: none; width: 76px; text-align: center; padding: 14px 0; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); cursor: pointer; transition: all .3s; }
.date-pill:hover { border-color: var(--sage); }
.date-pill.sel { background: var(--sage); border-color: var(--sage); }
.date-pill .dow { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.date-pill .dnum { font-family: var(--font-serif); font-size: 25px; font-weight: 600; color: var(--ink); margin-top: 2px; }
.date-pill.sel .dow, .date-pill.sel .dnum { color: #fff; }
.time-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width:560px){ .time-grid { grid-template-columns: repeat(3,1fr); } }
.time-slot { padding: 13px 0; text-align: center; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--paper); cursor: pointer; font-size: 14px; font-weight: 600; color: var(--ink-soft); transition: all .3s; }
.time-slot:hover { border-color: var(--sage); color: var(--ink); }
.time-slot.sel { background: var(--sage); border-color: var(--sage); color: #fff; }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; margin-bottom: 8px; }
.field input { width: 100%; height: var(--input-height); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 0 18px; color: var(--ink); font-family: var(--font-sans); font-size: 16px; transition: border-color .3s, box-shadow .3s; }
.field input::placeholder { color: var(--ink-faint); }
.field input:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 4px var(--sage-soft); }
.field input.err { border-color: var(--color-danger); box-shadow: 0 0 0 4px var(--color-danger-bg); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width:560px){ .field-row { grid-template-columns: 1fr; } }

.summary { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 24px; }
.summary .row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid var(--line-soft); }
.summary .row:last-child { border-bottom: none; }
.summary .row .k { color: var(--ink-mute); font-size: 13px; letter-spacing: 0.04em; }
.summary .row .v { color: var(--ink); font-weight: 600; font-size: 15px; text-align: right; }
.summary .row .v.gold { font-family: var(--font-serif); color: var(--sage-deep); font-size: 24px; }

.book-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 28px; }
.book-nav .btn { flex: 1; }
.book-nav .back { flex: 0 0 auto; background: transparent; color: var(--ink-soft); border: 1px solid var(--line); }
.book-nav .back:hover { color: var(--ink); border-color: var(--ink-mute); }
.book-nav .back.hidden { display: none; }

.book-done { text-align: center; padding: 20px 0 6px; display: none; }
.book-done.show { display: block; animation: stepIn .6s var(--ease-out-soft); }
.confirm-ring { width: 96px; height: 96px; margin: 0 auto 26px; }
.confirm-ring circle, .confirm-ring path { stroke: var(--sage); fill: none; }
.confirm-ring .ring { stroke-width: 2; stroke-dasharray: 283; stroke-dashoffset: 283; animation: draw .9s var(--ease-out-soft) forwards; }
.confirm-ring .tick { stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .5s var(--ease-out-soft) .7s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.book-done h3 { font-family: var(--font-serif); font-weight: 500; font-size: 38px; margin-bottom: 12px; }
.book-done p { color: var(--ink-soft); font-size: 16px; max-width: 440px; margin: 0 auto; line-height: 1.6; }
.book-done p strong { color: var(--ink); }

/* CTA band ------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 84px 40px; text-align: center; }
.cta-band .cta-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,32,28,0.32), rgba(34,32,28,0.5)); z-index: 1; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band .eyebrow { color: rgba(255,255,255,0.82); }
.cta-band h2 { font-family: var(--font-serif); font-weight: 500; color: #fff; font-size: clamp(36px,5vw,68px); line-height: 1.02; margin: 16px 0 18px; }
.cta-band h2 em { font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 18px; line-height: 1.6; max-width: 560px; margin: 0 auto 30px; }
.trust-strip { display: inline-flex; align-items: center; gap: 16px; margin-top: 34px; color: rgba(255,255,255,0.9); font-size: 14px; font-weight: 500; }
.trust-strip .avatars { display: flex; }
.trust-strip .avatars span { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.85); margin-left: -10px; background-size: cover; }
.trust-strip .stars { color: #fff; letter-spacing: 2px; }

/* Footer --------------------------------------------------- */
.footer { background: var(--paper-3); padding: 80px 0 36px; margin-top: 0; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
@media (max-width:860px){ .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width:560px){ .footer-top { grid-template-columns: 1fr; } }
.footer .f-brand .mark { font-family: var(--font-serif); font-size: 30px; letter-spacing: 0.16em; text-transform: lowercase; font-weight: 500; }
.footer p.tag { color: var(--ink-soft); font-size: 15px; line-height: 1.6; margin-top: 18px; max-width: 300px; }
.footer h4 { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer ul a, .footer ul li { color: var(--ink-soft); text-decoration: none; font-size: 15px; transition: color .3s; }
.footer ul a:hover { color: var(--sage-deep); }
.news p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin-bottom: 16px; }
.news form { display: flex; gap: 8px; }
.news input { flex: 1; height: 50px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 0 18px; font-family: var(--font-sans); font-size: 14px; color: var(--ink); }
.news input:focus { outline: none; border-color: var(--sage); }
.news .btn { flex: none; height: 50px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; color: var(--ink-mute); font-size: 13px; }
.footer-bottom .socials { display: flex; gap: 16px; }
.footer-bottom .socials a { color: var(--ink-mute); transition: color .3s; }
.footer-bottom .socials a:hover { color: var(--sage-deep); }

/* Dreamy variants (for thumbnails) ------------------------- */
.dreamy-a { background:
  radial-gradient(60% 70% at 22% 28%, #d6d9c4 0%, transparent 60%),
  radial-gradient(56% 64% at 80% 20%, #efe3cf 0%, transparent 58%),
  radial-gradient(70% 90% at 70% 95%, #c3ccc0 0%, transparent 62%),
  linear-gradient(125deg, #ccd2c0, #e0d4c2); }
.dreamy-b { background:
  radial-gradient(58% 70% at 20% 26%, #e7cfc0 0%, transparent 60%),
  radial-gradient(54% 64% at 82% 18%, #ecdcc6 0%, transparent 58%),
  radial-gradient(74% 90% at 72% 96%, #cbb6c2 0%, transparent 62%),
  linear-gradient(125deg, #ddc9bd, #e6d6c6); }
.dreamy-c { background:
  radial-gradient(58% 70% at 22% 28%, #bfcad0 0%, transparent 60%),
  radial-gradient(54% 64% at 80% 18%, #d9dcd2 0%, transparent 58%),
  radial-gradient(72% 90% at 70% 96%, #aeb9bf 0%, transparent 62%),
  linear-gradient(125deg, #c2cbcd, #d6d3c8); }
.dreamy-d { background:
  radial-gradient(58% 70% at 20% 28%, #d4cdb6 0%, transparent 60%),
  radial-gradient(54% 64% at 82% 18%, #e8ddc4 0%, transparent 58%),
  radial-gradient(72% 90% at 72% 96%, #c0c3a8 0%, transparent 62%),
  linear-gradient(125deg, #cdc9ad, #e1d8bf); }

/* Hero — centered variant (journal) ------------------------ */
.hero.hero-mid { align-items: center; min-height: 80vh; text-align: center; }
.hero.hero-mid .hero-inner { padding-top: 150px; padding-bottom: 90px; }
.hero.hero-mid h1 { max-width: 17ch; margin: 0 auto; }
.hero.hero-mid p.lede { margin-left: auto; margin-right: auto; }
.hero.hero-mid .hero-eyebrow { justify-content: center; }
.hero.hero-mid .squiggle { right: auto; left: 50%; top: 8%; transform: translateX(-50%); width: min(30vw, 360px); opacity: .5; }
body.loaded .hero.hero-mid .squiggle { transform: translateX(-50%); }

/* Journal articles ----------------------------------------- */
.art-thumb { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.art-thumb::after { content:""; position:absolute; inset:0; opacity:.35; mix-blend-mode:soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23b)'/%3E%3C/svg%3E"); }
.art-thumb .tag { position: absolute; z-index: 2; top: 16px; left: 16px; background: rgba(251,249,244,0.88); backdrop-filter: blur(6px); color: var(--sage-deep); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill); }
.art-thumb image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.featured-card { display: grid; grid-template-columns: 1.12fr 1fr; gap: 48px; align-items: center; margin-bottom: 12px; }
@media (max-width: 820px){ .featured-card { grid-template-columns: 1fr; gap: 28px; } }
.featured-card .art-thumb { aspect-ratio: 16/11; }
.featured-card .f-body .meta { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ink-mute); font-weight: 500; margin-bottom: 16px; }
.featured-card .f-body .meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }
.featured-card .f-body h3 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.06; letter-spacing: -0.01em; }
.featured-card .f-body p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; margin: 18px 0 26px; max-width: 46ch; }

.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 56px; }
@media (max-width: 900px){ .articles-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px){ .articles-grid { grid-template-columns: 1fr; } }
.article-card { display: flex; flex-direction: column; cursor: pointer; }
.article-card .art-thumb { aspect-ratio: 4/3; transition: transform .5s var(--ease-out-soft); }
.article-card:hover .art-thumb { transform: translateY(-5px); box-shadow: 0 26px 46px -32px rgba(38,36,32,0.45); }
.article-card .meta { display: flex; align-items: center; gap: 11px; font-size: 12.5px; color: var(--ink-mute); font-weight: 500; margin: 20px 0 10px; }
.article-card .meta .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--sand); }
.article-card h3 { font-family: var(--font-serif); font-weight: 600; font-size: 26px; line-height: 1.12; letter-spacing: 0; }
.article-card p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 10px 0 16px; }
.read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--sage-deep); text-decoration: none; transition: gap .35s; margin-top: auto; }
.read-more:hover { gap: 13px; }
.read-more svg { transition: transform .35s var(--ease-out-soft); }

/* Scroll reveal -------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out-soft), transform .9s var(--ease-out-soft); }
.reveal.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) {
  *, *::before, *::after { animation-duration:.001s !important; transition-duration:.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .hero h1 .reveal-line > span { transform: none; }
  .hero .squiggle { opacity: 1; transform: none; }
}
