/* ===================================================================
   Rediscover Her — premium funnel styles
   Editorial, calm, high-end. Fraunces display + Inter body.
   =================================================================== */

:root {
  /* palette */
  --bg: #faf6f1;
  --bg-2: #f3ebe1;
  --bg-3: #ece0d3;
  --ink: #2e2926;
  --ink-2: #6a5f58;
  --ink-3: #948a82;

  --plum: #5c3d55;
  --plum-deep: #3f2a3c;
  --plum-soft: #7a5670;
  --rose: #c58a7f;
  --rose-soft: #e8c4bb;
  --gold: #c79a4b;
  --gold-soft: #e7d3a8;
  --sage: #8a9a86;

  --card: #ffffff;
  --line: #ece0d3;
  --line-2: #e0d2c3;

  /* shadows — layered for depth */
  --sh-sm: 0 1px 2px rgba(63, 42, 60, .04), 0 6px 16px -10px rgba(63, 42, 60, .18);
  --sh-md: 0 2px 4px rgba(63, 42, 60, .04), 0 20px 40px -24px rgba(63, 42, 60, .35);
  --sh-lg: 0 4px 8px rgba(63, 42, 60, .05), 0 40px 80px -40px rgba(63, 42, 60, .45);
  --sh-ring: 0 0 0 1px rgba(63, 42, 60, .06);

  --radius: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
  --maxw: 1160px;
  --banner-h: 2.5rem;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* ===== Type scale ===== */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  color: var(--plum-deep);
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
p { margin: 0 0 1rem; }
em, .italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--rose); margin: 0 0 1.1rem; display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before {
  content: ''; width: 26px; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow.center { justify-content: center; }

.lede { font-size: 1.22rem; color: var(--ink-2); line-height: 1.6; }

/* ===== Buttons ===== */
.btn {
  --btn-bg: var(--plum);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .98rem; letter-spacing: -0.01em;
  padding: .85rem 1.6rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  line-height: 1;
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; }

.btn-primary { background: var(--plum); color: #fff; box-shadow: var(--sh-md); }
.btn-primary:hover { background: var(--plum-deep); transform: translateY(-2px); box-shadow: var(--sh-lg); }
.btn-primary:active { transform: translateY(0); }

.btn-outline { background: transparent; color: var(--plum); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--plum); background: var(--card); transform: translateY(-2px); box-shadow: var(--sh-sm); }

.btn-ghost { background: transparent; color: var(--ink-2); }
.btn-ghost:hover { color: var(--plum-deep); }
.btn-ghost .arrow { transition: transform .25s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

.btn-nav { background: var(--plum); color: #fff; padding: .62rem 1.25rem; font-size: .92rem; box-shadow: var(--sh-sm); }
.btn-nav:hover { background: var(--plum-deep); transform: translateY(-1px); }

/* ===== Header ===== */
.site-header {
  position: sticky; top: var(--banner-h); z-index: 60;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 246, 241, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--plum-deep);
  text-decoration: none; letter-spacing: -0.02em; display: inline-flex; align-items: baseline; gap: 1px;
}
.logo span { color: var(--rose); font-style: italic; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.btn) { color: var(--ink-2); text-decoration: none; font-weight: 500; font-size: .95rem; transition: color .2s; position: relative; }
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1.5px;
  background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav a:not(.btn):hover { color: var(--plum-deep); }
.nav a:not(.btn):hover::after { transform: scaleX(1); }

/* ===== Hero ===== */
.hero { position: relative; padding: clamp(3.5rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5.5rem); overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 55% at 78% 22%, rgba(197,138,127,.22), transparent 70%),
    radial-gradient(50% 50% at 15% 85%, rgba(138,154,134,.16), transparent 70%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.hero h1 { margin-bottom: .55em; }
.hero .lede { max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 2rem 0 1.1rem; }
.reassure { font-size: .9rem; color: var(--ink-3); display: inline-flex; align-items: center; gap: .5rem; }
.reassure::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); box-shadow: 0 0 0 4px rgba(138,154,134,.18); }

/* hero art — layered composition */
.hero-art { position: relative; min-height: 440px; }
.hero-frame {
  position: absolute; inset: 0; margin: auto; width: 100%; max-width: 400px; aspect-ratio: 4/5;
  border-radius: 220px 220px 26px 26px;
  background: #ecd9d2 url('hero-portrait.webp') center 18% / cover no-repeat;
  box-shadow: var(--sh-lg), inset 0 2px 10px rgba(255,255,255,.25);
  overflow: hidden;
}
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(80% 60% at 70% 90%, rgba(63,42,60,.4), transparent 60%);
}
.hero-badge {
  position: absolute; top: 8%; right: -4%; z-index: 3;
  background: var(--card); border-radius: 999px; padding: .55rem 1rem .55rem .6rem;
  box-shadow: var(--sh-md); display: flex; align-items: center; gap: .6rem; font-size: .82rem; font-weight: 600; color: var(--plum-deep);
}
.hero-badge .dot { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(145deg, var(--gold), var(--rose)); display: grid; place-items: center; color: #fff; font-family: var(--serif); }
.hero-quote {
  position: absolute; bottom: 4%; left: -6%; z-index: 3; margin: 0;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: var(--radius-md); padding: 1.3rem 1.4rem; box-shadow: var(--sh-lg);
  max-width: 260px; border: 1px solid rgba(255,255,255,.6);
}
.hero-quote p { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--plum-deep); margin-bottom: .5rem; line-height: 1.35; }
.hero-quote cite { font-style: normal; font-size: .78rem; color: var(--ink-3); }

/* ===== Example banner — moving marquee, pinned with the header ===== */
.example-banner {
  position: sticky; top: 0; z-index: 65; overflow: hidden; height: var(--banner-h);
  display: flex; align-items: center; color: #fff;
  background: linear-gradient(90deg, var(--plum-deep), var(--plum), var(--rose), var(--gold), var(--plum), var(--plum-deep));
  background-size: 300% 100%; animation: bannerShift 16s linear infinite;
  box-shadow: 0 2px 14px -6px rgba(63, 42, 60, .5);
}
.example-marquee { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.example-marquee__group { display: flex; }
.example-marquee span { white-space: nowrap; padding: 0 2.4rem; font-size: .85rem; font-weight: 600; letter-spacing: .01em; }
.example-banner strong { font-weight: 800; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255, 255, 255, .55); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bannerShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }

/* ===== Organic morphing blobs (ambient background motion) ===== */
.hero-orbs, .ambient, .cta-orbs { pointer-events: none; overflow: hidden; }
.hero-orbs { position: absolute; inset: 0; z-index: 0; }
.ambient { position: fixed; inset: 0; z-index: 0; }
.cta-orbs { position: absolute; inset: 0; z-index: 0; }
.ho, .blob { position: absolute; border-radius: 50%; filter: blur(44px); opacity: .45; will-change: transform, border-radius; }

/* hero blobs */
.ho-1 { width: 250px; height: 250px; background: var(--rose-soft); top: 5%; left: 3%; animation: drift1 15s ease-in-out infinite, morph 11s ease-in-out infinite; }
.ho-2 { width: 210px; height: 210px; background: #d9c3e2; bottom: 6%; right: 8%; animation: drift2 19s ease-in-out infinite, morph 13s ease-in-out infinite; }
.ho-3 { width: 160px; height: 160px; background: var(--gold-soft); top: 40%; left: 46%; opacity: .32; animation: drift3 17s ease-in-out infinite, morph 15s ease-in-out infinite; }
.ho-4 { width: 140px; height: 140px; background: #b9cbb4; bottom: 20%; left: 18%; opacity: .3; animation: drift1 21s ease-in-out infinite reverse, morph 12s ease-in-out infinite; }

/* ambient blobs (booking / thank-you pages) */
.blob.b1 { width: 340px; height: 340px; background: var(--rose-soft); top: -60px; left: -70px; animation: drift1 20s ease-in-out infinite, morph 12s ease-in-out infinite; }
.blob.b2 { width: 300px; height: 300px; background: #d9c3e2; bottom: -70px; right: -50px; animation: drift2 24s ease-in-out infinite, morph 14s ease-in-out infinite; }
.blob.b3 { width: 220px; height: 220px; background: var(--gold-soft); top: 45%; right: 12%; opacity: .28; animation: drift3 22s ease-in-out infinite, morph 16s ease-in-out infinite; }

/* glowing blobs on the dark final CTA */
.final-cta .blob { filter: blur(52px); opacity: .5; mix-blend-mode: screen; }
.cta-b1 { width: 300px; height: 300px; background: var(--rose); top: -50px; right: 8%; animation: drift2 18s ease-in-out infinite, morph 12s ease-in-out infinite; }
.cta-b2 { width: 240px; height: 240px; background: var(--gold); bottom: -60px; left: 10%; animation: drift1 22s ease-in-out infinite, morph 15s ease-in-out infinite; }

@keyframes drift1 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(34px, -26px) scale(1.08); } }
@keyframes drift2 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(-30px, 22px) scale(1.1); } }
@keyframes drift3 { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(20px, 28px) scale(0.92); } }
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
  50% { border-radius: 58% 42% 38% 62% / 55% 60% 40% 45%; }
}

/* gentle float on the hero composition */
.hero-frame { animation: floatY 7s ease-in-out infinite; }
.hero-badge { animation: floatY 5.5s ease-in-out infinite; }
.hero-quote { animation: floatY 8.5s ease-in-out .6s infinite; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-11px); } }

/* ===== Trust bar ===== */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.6rem 0; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .7rem; color: var(--ink-2); font-size: .92rem; font-weight: 500; }
.trust-item svg { width: 22px; height: 22px; fill: none; stroke: var(--plum-soft); stroke-width: 1.6; flex: none; }

/* ===== Sections ===== */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.subhead { max-width: 58ch; margin: 0 auto 3rem; color: var(--ink-2); font-size: 1.15rem; }

/* Story */
.story { background: var(--card); }
.feel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin: 3rem 0; }
.feel-card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem; font-size: 1.02rem; color: var(--ink); line-height: 1.5;
  display: flex; gap: .8rem; align-items: flex-start; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feel-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); border-color: var(--line-2); }
.feel-card::before { content: ''; flex: none; width: 8px; height: 8px; margin-top: .55rem; border-radius: 50%; background: var(--rose-soft); box-shadow: 0 0 0 4px rgba(232,196,187,.3); }
.story-close { font-size: 1.35rem; font-family: var(--serif); line-height: 1.45; text-align: center; max-width: 24ch; margin: 0 auto; color: var(--ink-2); }
.story-close strong { color: var(--plum-deep); font-weight: 500; }

/* Offer */
.offer { background: linear-gradient(180deg, rgba(250,246,241,.9), rgba(250,246,241,.93)), url('hero-abstract.webp') right center / cover no-repeat; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.4rem 2rem; box-shadow: var(--sh-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--plum)); opacity: 0; transition: opacity .3s; }
.step:hover::before { opacity: 1; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px;
  border-radius: 16px; background: linear-gradient(145deg, var(--plum-soft), var(--plum));
  color: #fff; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.2rem; box-shadow: var(--sh-sm);
}
.step p { color: var(--ink-2); margin: 0; }
.offer-cta { text-align: center; margin-top: 3rem; }

/* About */
.about { background: var(--card); }
.about-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: 3.5rem; align-items: center; }
.about-photo {
  aspect-ratio: 4/5; border-radius: 200px 200px 24px 24px; max-width: 380px;
  background: #e9d6cf url('about-coach.webp') center top / cover no-repeat;
  display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-lg);
  position: relative; overflow: hidden;
}
.about-photo::after { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 50% at 60% 95%, rgba(63,42,60,.25), transparent 60%); }
.about-photo span { display: none; }
.about-copy .lede { margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-2); }
.about-copy .btn { margin-top: .6rem; }

/* Voices */
.voices { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.voices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 1rem; }
.voice { margin: 0; background: var(--card); border-radius: var(--radius); padding: 2rem 1.9rem; border: 1px solid var(--line); box-shadow: var(--sh-sm); position: relative; }
.voice::before { content: '\201C'; font-family: var(--serif); font-size: 4rem; color: var(--rose-soft); position: absolute; top: .3rem; left: 1.2rem; line-height: 1; }
.voice blockquote { margin: 1.4rem 0 1.2rem; font-family: var(--serif); font-size: 1.14rem; color: var(--plum-deep); line-height: 1.45; position: relative; }
.voice figcaption { color: var(--ink-2); font-weight: 600; font-size: .9rem; display: flex; align-items: center; gap: .6rem; }
.voice figcaption::before { content: ''; width: 24px; height: 1px; background: var(--rose); }

/* Final CTA */
.final-cta { position: relative; background: linear-gradient(155deg, var(--plum) 0%, var(--plum-deep) 100%); color: #fff; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(50% 60% at 80% 20%, rgba(197,138,127,.35), transparent 60%), radial-gradient(45% 55% at 10% 90%, rgba(199,154,75,.22), transparent 60%); }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta .lede { color: rgba(255,255,255,.82); max-width: 52ch; margin: 0 auto 2.2rem; }
.final-cta .reassure { color: rgba(255,255,255,.72); margin-top: 1.8rem; justify-content: center; }
.final-cta .reassure::before { background: var(--gold-soft); box-shadow: 0 0 0 4px rgba(231,211,168,.15); }
.final-cta .btn-primary { background: #fff; color: var(--plum-deep); }
.final-cta .btn-primary:hover { background: var(--gold-soft); color: var(--plum-deep); }

/* ===== Footer ===== */
.site-footer { background: var(--plum-deep); color: rgba(255,255,255,.82); padding-top: 3.5rem; }
.footer-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; padding-bottom: 2.5rem; }
.site-footer .logo { color: #fff; }
.site-footer .logo span { color: var(--rose); }
.footer-note { color: rgba(255,255,255,.66); margin-top: .7rem; max-width: 34ch; }
.footer-help { background: rgba(255,255,255,.05); border-radius: var(--radius-md); padding: 1.5rem 1.7rem; border: 1px solid rgba(255,255,255,.1); }
.footer-help strong { color: #fff; display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.footer-help strong::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.footer-help p { color: rgba(255,255,255,.72); font-size: .92rem; margin: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.5rem 0 1.8rem; font-size: .85rem; color: rgba(255,255,255,.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }

/* ================= BOOKING PAGE ================= */
.page-booking { background: linear-gradient(180deg, var(--bg-2), var(--bg)); min-height: 100vh; }
.booking-head { max-width: 660px; margin: 0 auto 3rem; }
.booking { padding-top: clamp(2.5rem, 5vw, 4rem); }
.booking-grid { display: grid; grid-template-columns: 360px 1fr; gap: 2rem; align-items: start; }

.booking-summary {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--sh-md); position: sticky; top: 96px;
}
.summary-coach { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.6rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line); }
.summary-avatar {
  width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(145deg, var(--rose), var(--plum));
  color: #fff; font-family: var(--serif); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; box-shadow: var(--sh-sm);
}
.summary-coach strong { display: block; color: var(--plum-deep); font-size: 1.05rem; }
.summary-coach span { font-size: .85rem; color: var(--ink-3); }
.summary-title { font-size: 1.7rem; margin-bottom: 1.2rem; }
.summary-meta { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .85rem; }
.summary-meta li { display: flex; align-items: center; gap: .7rem; color: var(--ink-2); font-size: .96rem; }
.summary-meta svg { width: 21px; height: 21px; fill: none; stroke: var(--plum); stroke-width: 1.7; flex: none; }
.summary-desc { font-size: .93rem; color: var(--ink-2); margin: 0; line-height: 1.6; }
.summary-selected { margin-top: 1.5rem; padding: 1.2rem; border-radius: var(--radius-sm); background: var(--bg-2); border: 1px solid var(--line-2); }
.summary-selected-label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--rose); font-weight: 600; margin-bottom: .35rem; }
.summary-selected strong { color: var(--plum-deep); font-size: 1.08rem; font-family: var(--serif); font-weight: 500; }

.booking-main {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--sh-md); min-height: 460px;
}

/* Scheduler */
.scheduler { display: grid; grid-template-columns: 1.25fr 1fr; gap: 2rem; }
.calendar { border-right: 1px solid var(--line); padding-right: 2rem; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.cal-month { font-family: var(--serif); font-size: 1.3rem; color: var(--plum-deep); font-weight: 500; }
.cal-nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--card);
  color: var(--plum); font-size: 1.35rem; cursor: pointer; line-height: 1; transition: background .2s, border-color .2s, transform .15s;
  display: grid; place-items: center;
}
.cal-nav:hover:not(:disabled) { background: var(--bg-2); border-color: var(--plum); }
.cal-nav:active:not(:disabled) { transform: scale(.94); }
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-bottom: 8px; }
.cal-weekdays span { text-align: center; font-size: .7rem; font-weight: 700; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; }
.cal-day {
  aspect-ratio: 1; border: none; background: transparent; border-radius: 12px;
  font-family: var(--sans); font-size: .96rem; color: var(--ink); cursor: pointer; font-weight: 500;
  display: flex; align-items: center; justify-content: center; position: relative; transition: background .18s, color .18s, transform .12s;
}
.cal-day.empty { visibility: hidden; }
.cal-day.available { color: var(--plum); font-weight: 600; }
.cal-day.available::after { content: ''; position: absolute; bottom: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--rose); transition: background .18s; }
.cal-day.available:hover { background: var(--bg-2); }
.cal-day.available:active { transform: scale(.92); }
.cal-day.unavailable { color: #cabfb4; cursor: not-allowed; }
.cal-day.selected { background: var(--plum); color: #fff; font-weight: 600; box-shadow: var(--sh-sm); }
.cal-day.selected::after { background: #fff; }
.cal-day.today:not(.selected) { box-shadow: inset 0 0 0 1.5px var(--line-2); }

.timeslots-heading { font-size: 1rem; color: var(--plum-deep); margin: 0 0 1.1rem; font-weight: 600; font-family: var(--serif); }
.timeslots-list { display: grid; gap: .65rem; max-height: 360px; overflow-y: auto; padding-right: 5px; }
.timeslots-list::-webkit-scrollbar { width: 6px; }
.timeslots-list::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 3px; }
.slot {
  padding: .9rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); background: var(--card);
  color: var(--plum-deep); font-family: var(--sans); font-weight: 600; font-size: .98rem; cursor: pointer;
  transition: border-color .18s, background .18s, transform .12s, box-shadow .18s; text-align: center;
}
.slot:hover { border-color: var(--plum); background: var(--bg-2); transform: translateY(-1px); box-shadow: var(--sh-sm); }
.slot.selected { border-color: var(--plum); background: var(--plum); color: #fff; }
.slot-empty { color: var(--ink-3); font-size: .92rem; padding: 1.2rem 0; text-align: center; }

/* Booking form */
.booking-form { max-width: 540px; }
.booking-form h2 { font-size: 1.7rem; margin-bottom: 1.4rem; }
.back-link { background: none; border: none; color: var(--plum); cursor: pointer; font-family: var(--sans); font-weight: 600; font-size: .92rem; padding: 0; margin-bottom: 1.4rem; display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.back-link:hover { gap: .5rem; color: var(--plum-deep); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--plum-deep); margin-bottom: .45rem; }
.optional { font-weight: 400; color: var(--ink-3); }
.field input, .field textarea {
  width: 100%; padding: .85rem .95rem; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm);
  font-family: var(--sans); font-size: 1rem; color: var(--ink); background: var(--bg); transition: border-color .18s, background .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--plum); background: #fff; box-shadow: 0 0 0 4px rgba(92,61,85,.1); }
.field textarea { resize: vertical; }
.checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; color: var(--ink-2); margin: .4rem 0 1.5rem; cursor: pointer; line-height: 1.5; }
.checkbox input { margin-top: .2rem; accent-color: var(--plum); width: 18px; height: 18px; flex: none; }
.form-privacy { font-size: .82rem; color: var(--ink-3); text-align: center; margin: 1.1rem 0 0; }
.form-error { background: #fbeceb; border: 1px solid #e8c4bb; color: #8a3d3a; border-radius: var(--radius-sm); padding: .8rem 1rem; font-size: .92rem; margin: 0 0 1rem; }

/* ================= THANK YOU PAGE ================= */
.page-thankyou { background: linear-gradient(180deg, var(--bg-2), var(--bg)); min-height: 100vh; }
.thankyou { padding-top: clamp(3.5rem, 7vw, 6rem); }
.check { width: 92px; height: 92px; margin: 0 auto 1.8rem; filter: drop-shadow(0 10px 20px rgba(92,61,85,.2)); }
.check svg { width: 100%; height: 100%; fill: none; stroke-width: 3; }
.check circle { stroke: var(--rose); opacity: .3; stroke-dasharray: 151; stroke-dashoffset: 151; animation: ring .7s var(--ease) .1s forwards; }
.check path { stroke: var(--plum); stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 48; stroke-dashoffset: 48; animation: draw .5s var(--ease) .5s forwards; }
@keyframes ring { to { stroke-dashoffset: 0; } }
@keyframes draw { to { stroke-dashoffset: 0; } }

.confirm-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--sh-md); max-width: 460px; margin: 2rem auto 2.8rem; text-align: center;
}
.confirm-row { padding: .35rem 0; }
.confirm-label { color: var(--rose); font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; }
.confirm-when { font-family: var(--serif); font-size: 1.5rem; color: var(--plum-deep); }
.confirm-with { color: var(--ink-2); font-size: .95rem; }

.cal-cta {
  max-width: 560px; margin: 0 auto 2.6rem; padding: 2rem 1.9rem; text-align: center;
  background: linear-gradient(160deg, #fff 0%, var(--bg-2) 100%);
  border: 1.5px solid var(--rose-soft); border-radius: var(--radius);
  box-shadow: var(--sh-md); position: relative; overflow: hidden;
}
.cal-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--rose), var(--gold)); }
.cal-cta-kicker { font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--rose); margin: 0 0 .5rem; }
.cal-cta h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.cal-cta > p { color: var(--ink-2); font-size: .98rem; margin: 0 auto 1.5rem; max-width: 42ch; }
.cal-cta-buttons { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cal-cta-buttons .btn svg { width: 19px; height: 19px; }
@media (max-width: 520px) { .cal-cta-buttons { flex-direction: column; } .cal-cta-buttons .btn { width: 100%; } }

.whatnext { text-align: left; max-width: 540px; margin: 0 auto 2.4rem; }
.whatnext h2 { text-align: center; font-size: 1.6rem; margin-bottom: 1.6rem; }
.whatnext ol { padding: 0; margin: 0; list-style: none; counter-reset: step; display: grid; gap: 1rem; }
.whatnext li { position: relative; padding-left: 3rem; color: var(--ink-2); counter-increment: step; }
.whatnext li::before { content: counter(step); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--plum); color: #fff; font-family: var(--serif); font-size: .95rem; display: grid; place-items: center; }
.whatnext strong { color: var(--plum-deep); }
.thankyou-note { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--plum-deep); max-width: 30ch; margin: 0 auto 2.2rem; line-height: 1.5; }
.page-thankyou .reassure { margin: 2.2rem auto 0; max-width: 52ch; justify-content: center; }

/* ===== A/B variant text (default = Version A) ===== */
.v-b { display: none; }
html[data-variant="b"] .v-a { display: none; }
html[data-variant="b"] .v-b { display: inline; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-art { min-height: 380px; max-width: 400px; margin: 0 auto; width: 100%; }
  .hero .lede { max-width: none; }
  .feel-grid, .steps, .voices-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-photo { max-width: 300px; margin: 0 auto; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { gap: 1rem; }
  .nav a:not(.btn) { display: none; }
  .feel-grid, .steps, .voices-grid { grid-template-columns: 1fr; }
  .scheduler { grid-template-columns: 1fr; }
  .calendar { border-right: none; padding-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
  .timeslots-list { max-height: none; }
  .booking-main { padding: 1.5rem; }
  .hero-quote { left: 0; }
  .hero-badge { right: 0; }
  .trust-inner { justify-content: center; gap: 1.2rem 1.8rem; }
}
