/* ============================================================
   AB Coaching — Clay-inspired styling
   Tokens lifted from DESIGN-clay.md
   ============================================================ */

:root {
  /* Colour */
  --primary: #0a0a0a;
  --primary-active: #1f1f1f;
  --ink: #0a0a0a;
  --body: #3a3a3a;
  --body-strong: #1a1a1a;
  --muted: #6a6a6a;
  --muted-soft: #9a9a9a;
  --hairline: #e5e5e5;
  --hairline-soft: #f0f0f0;
  --canvas: #fffaf0;
  --surface-soft: #faf5e8;
  --surface-card: #f5f0e0;
  --surface-strong: #ebe6d6;
  --on-primary: #ffffff;

  --brand-pink: #ff4d8b;
  --brand-teal: #1a3a3a;
  --brand-lavender: #b8a4ed;
  --brand-peach: #ffb084;
  --brand-ochre: #e8b94a;
  --brand-mint: #a4d4c5;
  --brand-coral: #ff6b5a;

  /* Radius */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 9999px;

  /* Spacing */
  --s-xxs: 4px;
  --s-xs: 8px;
  --s-sm: 12px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-section: 96px;

  --font-display: "Bricolage Grotesque", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --max: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- Display type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; color: var(--ink); letter-spacing: -0.03em; }

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 10px;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

section { position: relative; }

.band { padding: clamp(56px, 9vw, 96px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  padding: 15px 24px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--primary); color: var(--on-primary); }
.btn-primary:hover { background: var(--primary-active); }

.btn-on-color { background: var(--canvas); color: var(--ink); }
.btn-on-color:hover { box-shadow: 0 6px 20px rgba(0,0,0,.12); }

.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--canvas); }

.btn-lg { font-size: 17px; padding: 18px 30px; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 68px;
  background: rgba(255,250,240,.82);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.04em;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.logo-mark span { position: relative; z-index: 2; }
.logo-mark::before {
  content: ""; position: absolute; right: -8px; bottom: -8px;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--brand-pink); z-index: 1;
}
.logo-mark::after {
  content: ""; position: absolute; left: -6px; top: -6px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-ochre); opacity: .9; z-index: 1;
}
.logo-word { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); letter-spacing: -0.03em; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--ink); text-decoration: none; cursor: pointer; background: none; border: none; font-family: var(--font-body); }
.nav-link:hover { color: var(--muted); }

/* ---------- Hero ---------- */
.hero { padding: clamp(36px, 5vw, 72px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }

.hero-media { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.photo-credit {
  position: relative; z-index: 2;
  margin-top: 14px; text-align: center;
  font-size: 11px; color: var(--muted-soft);
}
.photo-credit a { color: var(--muted); text-decoration: underline; }
.photo-credit a:hover { color: var(--ink); }
.hero-photo-frame {
  position: relative; z-index: 2;
  width: 100%; max-width: 460px;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-xl);
  border: 6px solid var(--canvas);
  box-shadow: 0 20px 50px rgba(0,0,0,.14);
  overflow: hidden;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center;
  display: block;
}
.hero-media .hb1 { width: 320px; height: 320px; background: var(--brand-lavender); right: -10px; top: -24px; opacity: .55; }
.hero-media .hb2 { width: 150px; height: 150px; background: var(--brand-ochre); left: -18px; bottom: -10px; opacity: .6; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-size: clamp(52px, 9.5vw, 120px);
}
.hero-title .line { display: block; }

/* peeling UNSTUCK */
.unstuck { display: inline-flex; }
.unstuck .ch { display: inline-block; transform-origin: bottom center; }
/* Peeling up from the bottom-right corner: letters tilt anti-clockwise and lift */
/* peel offsets in em so they scale identically at every font size */
.unstuck .peel-1 {
  color: var(--brand-pink);
  transform-origin: bottom right;
  transform: rotate(-12deg) translateY(-0.13em);
  margin-left: 0.22em;
}
.unstuck .peel-2 {
  color: var(--brand-coral);
  transform-origin: bottom right;
  transform: rotate(-20deg) translateY(-0.38em) translateX(0.08em);
  margin-left: 0.15em;
  text-shadow: -0.1em 0.15em 0 rgba(0,0,0,0.10);
}

.hero-sub {
  margin-top: clamp(20px, 3vw, 30px);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 500;
  color: var(--body-strong);
  max-width: 620px;
}
.hero-cta { margin-top: var(--s-xl); display: flex; gap: 14px; flex-wrap: wrap; }

/* floating playful blobs */
.blob { position: absolute; border-radius: 50%; z-index: -1; filter: saturate(115%); }
.blob.b1 { width: 220px; height: 220px; background: var(--brand-lavender); right: -40px; top: -20px; opacity: .55; }
.blob.b2 { width: 130px; height: 130px; background: var(--brand-mint); right: 220px; top: 120px; opacity: .6; }
.blob.b3 { width: 90px;  height: 90px;  background: var(--brand-ochre); left: -30px; bottom: 10px; opacity: .5; }

/* ---------- Generic section heading ---------- */
.sec-head { max-width: 820px; margin-bottom: var(--s-xl); }
.sec-head h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.18; color: var(--body-strong); font-weight: 600; letter-spacing: -0.01em; }
.sec-head .lead { margin-top: var(--s-md); font-size: clamp(17px, 2vw, 20px); color: var(--body); }

/* ---------- YOU section ---------- */
.you { background: var(--canvas); }
.you-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-xl); align-items: stretch; }
.feature-card {
  border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
}
.feature-card h3 { font-size: clamp(22px, 2.6vw, 28px); line-height: 1.15; }
.feature-card p { font-size: 17px; line-height: 1.55; }
.fc-pink { background: var(--brand-pink); color: #fff; }
.fc-pink h3 { color: #fff; }
.fc-lavender { background: var(--brand-lavender); color: var(--ink); }
.fc-peach { background: var(--brand-peach); color: var(--ink); }
.fc-ochre { background: var(--brand-ochre); color: var(--ink); }
.fc-teal { background: var(--brand-teal); color: #fff; }
.fc-teal h3 { color: #fff; }
.fc-cream { background: var(--surface-card); color: var(--ink); border: 1px solid var(--hairline); }
.fc-mint { background: var(--brand-mint); color: var(--ink); }

.fc-icon { font-size: 30px; line-height: 1; }

/* ---------- ME section ---------- */
.me { background: var(--surface-soft); }
.me-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--s-xxl); align-items: start; }
.superpowers { display: flex; flex-direction: column; gap: var(--s-lg); }
.power-card {
  border-radius: var(--r-lg);
  padding: var(--s-lg) var(--s-xl);
  background: var(--surface-card);
  border: none;
}
.power-card .tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.power-card h3 { font-size: 26px; margin-bottom: 6px; }
.power-card.hl { background: var(--brand-pink); border-color: transparent; }
.power-card.hl .tag { color: rgba(255,255,255,.8); }
.power-card.hl h3, .power-card.hl p { color: #fff; }

.me-portrait {
  border-radius: var(--r-xl);
  background: linear-gradient(140deg, var(--brand-peach), var(--brand-ochre));
  aspect-ratio: 4/5;
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.me-portrait .me-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%; z-index: 1;
}
.me-portrait .face { font-size: clamp(90px, 14vw, 150px); }
.me-portrait .ring { position: absolute; border-radius: 50%; z-index: 2; }
.me-portrait .ring.r1 { width: 70%; height: 70%; border: 14px solid rgba(255,255,255,.16); top: -16%; left: -10%; }
.me-portrait .ring.r2 { width: 40%; height: 40%; background: var(--brand-lavender); opacity: .5; bottom: -8%; right: -6%; }

/* ---------- SCROLL WHEEL / timeline ---------- */
.proof { background: var(--brand-teal); color: #fff; overflow: hidden; }
.proof .sec-head h2 { color: #fff; }
.proof .sec-head .lead { color: rgba(255,255,255,.8); }
.timeline { position: relative; margin-top: var(--s-xl); }
.timeline::before {
  content: ""; position: absolute; left: 70px; top: 8px; bottom: 8px; width: 2px;
  background: rgba(255,255,255,.18);
}
.tl-item { position: relative; display: grid; grid-template-columns: 70px 1fr; gap: 22px; padding: 12px 0; align-items: start; }
.tl-age {
  display: flex; flex-direction: column; align-items: flex-end; text-align: right; padding-top: 0; padding-right: 14px; line-height: 1;
}
.tl-age .al { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.tl-age .an { font-family: var(--font-display); font-weight: 600; font-size: 26px; color: var(--brand-ochre); letter-spacing: -0.02em; }
.tl-dot {
  position: absolute; left: 64px; top: 16px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-pink); border: 3px solid var(--brand-teal); z-index: 2;
}
.tl-text { font-size: 16.5px; color: rgba(255,255,255,.92); line-height: 1.5; padding-left: 8px; }
.tl-text strong { color: #fff; }

/* ---------- Proof reel (one-wheel fruit machine) ---------- */
.reel { --reel-h: 240px; max-width: 720px; margin: 26px auto 0; }
.reel-cta { text-align: center; margin-top: 24px; }
.reel-arrow {
  display: block; margin: 0 auto 14px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28); background: transparent; color: #fff;
  font-size: 20px; line-height: 1; cursor: pointer; transition: background .15s ease;
}
.reel-arrow:hover { background: rgba(255,255,255,.12); }
.reel-window {
  position: relative; height: var(--reel-h); overflow: hidden;
  background: var(--canvas); border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.06), 0 16px 44px rgba(0,0,0,.32);
}
.reel-window::before, .reel-window::after {
  content: ""; position: absolute; left: 0; right: 0; height: 52px; z-index: 3; pointer-events: none;
}
.reel-window::before { top: 0; background: linear-gradient(to bottom, rgba(255,250,240,.96), rgba(255,250,240,0)); }
.reel-window::after { bottom: 0; background: linear-gradient(to top, rgba(255,250,240,.96), rgba(255,250,240,0)); }
.reel-strip { transition: transform .55s cubic-bezier(.16, 1.05, .3, 1); }
.reel-cell {
  height: var(--reel-h); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 22px 30px; gap: 10px;
}
.reel-age { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.reel-age .ra-label { font-size: 11px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.reel-age .ra-num { font-family: var(--font-display); font-weight: 600; font-size: clamp(34px, 6vw, 50px); color: var(--brand-pink); letter-spacing: -0.02em; }
.reel-text { font-size: clamp(16px, 2.1vw, 20px); color: var(--ink); max-width: 580px; line-height: 1.42; }
.reel-text strong { color: var(--brand-teal); }
.reel-foot { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.reel-counter { font-family: var(--font-display); color: rgba(255,255,255,.7); font-size: 15px; min-width: 48px; text-align: center; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--canvas); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); margin-top: var(--s-md); }
.step {
  border-radius: var(--r-lg); padding: var(--s-xl);
  background: var(--surface-card); border: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 12px;
}
.step .num {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 600; font-size: 20px; color: #fff;
}
.step:nth-child(1) .num { background: var(--brand-pink); }
.step:nth-child(2) .num { background: var(--brand-ochre); color: var(--ink); }
.step:nth-child(3) .num { background: var(--brand-lavender); color: var(--ink); }
.step:nth-child(4) .num { background: var(--brand-coral); }
.step:nth-child(5) .num { background: var(--brand-mint); color: var(--ink); }
.step:nth-child(6) .num { background: var(--brand-teal); }
.step h3 { font-size: 19px; line-height: 1.25; }
.step p, .step li { font-size: 15.5px; color: var(--body); }
.step ul { margin: 4px 0 0 18px; display: flex; flex-direction: column; gap: 6px; }

/* ---------- COST ---------- */
.cost { background: var(--surface-soft); }
.cost-card {
  background: var(--brand-teal); color: #fff; border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 72px); text-align: center; position: relative; overflow: hidden;
}
.cost-card h2 { color: #fff; font-size: clamp(32px, 5vw, 52px); }
.cost-big { font-family: var(--font-display); font-weight: 600; font-size: clamp(56px, 11vw, 110px); color: var(--brand-ochre); letter-spacing: -0.04em; line-height: 1; margin: 14px 0; }
.cost-card p { color: rgba(255,255,255,.9); font-size: 18px; max-width: 620px; margin: 0 auto; }
.cost-chips { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 26px 0 30px; }
.chip { background: rgba(255,255,255,.12); border-radius: var(--r-pill); padding: 8px 18px; font-size: 14px; font-weight: 600; }
.cost-card .blob { z-index: 0; }
.cost-card .cc-b1 { width: 200px; height: 200px; background: var(--brand-pink); opacity: .25; left: -60px; top: -60px; }
.cost-card .cc-b2 { width: 160px; height: 160px; background: var(--brand-lavender); opacity: .22; right: -50px; bottom: -50px; }
.cost-card > * { position: relative; z-index: 1; }

/* ---------- BOOKING ---------- */
.booking { background: var(--canvas); }
.booking .sec-head { text-align: center; margin: 0 auto var(--s-xl); }
.booking-shell {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--r-xl);
  padding: clamp(16px, 2.5vw, 28px);
}
.cal-meta { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 18px; }
.cal-meta .m { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); background: var(--canvas); border: 1px solid var(--hairline); padding: 8px 16px; border-radius: var(--r-pill); }
.calendly-inline-widget { min-width: 320px; height: 700px; border-radius: var(--r-lg); overflow: hidden; }
.cal-fallback { text-align: center; padding: 40px 20px; }

/* Contact form under the calendar */
.contact-block { max-width: 640px; margin: 48px auto 0; }
.contact-head { text-align: center; margin-bottom: 24px; }
.contact-head h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 8px; }
.contact-head p { color: var(--body); }
.contact-form { background: var(--surface-card); border-radius: var(--r-xl); padding: clamp(24px, 3vw, 36px); }
.hp-field { display: none; }
.contact-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.contact-status { font-size: 14px; font-weight: 600; margin: 0; }
.contact-status.ok { color: var(--success); }
.contact-status.err { color: var(--error); }

/* ---------- Sign-in / account modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(10,10,10,.45);
  display: none; align-items: center; justify-content: center; z-index: 100; padding: 20px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--canvas); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 40px);
  width: 100%; max-width: 460px; position: relative; max-height: 90vh; overflow-y: auto;
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.modal h2 { font-size: 30px; margin-bottom: 6px; }
.modal .sub { color: var(--muted); margin-bottom: var(--s-lg); }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--muted); line-height: 1; }

.btn-google {
  width: 100%; background: #fff; color: #1a1a1a; border: 1px solid var(--hairline);
  font-size: 15px; padding: 14px; gap: 10px;
}
.btn-google:hover { box-shadow: 0 4px 14px rgba(0,0,0,.08); }
.btn-google img, .btn-google svg { width: 18px; height: 18px; }

.field { margin-bottom: var(--s-md); }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field textarea, .field input {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--ink);
  background: var(--canvas); border: 1px solid var(--hairline); border-radius: var(--r-md);
  padding: 12px 14px; resize: vertical;
}
.field textarea:focus, .field input:focus { outline: none; border-color: var(--ink); }
.field textarea { min-height: 110px; }

.account-tabs { display: flex; gap: 8px; margin-bottom: var(--s-lg); }
.account-tabs button {
  flex: 1; padding: 10px; border-radius: var(--r-pill); border: 1px solid var(--hairline);
  background: transparent; font-family: var(--font-body); font-weight: 600; font-size: 14px; cursor: pointer; color: var(--muted);
}
.account-tabs button.active { background: var(--surface-card); color: var(--ink); border-color: transparent; }
.save-row { display: flex; align-items: center; gap: 12px; margin-top: 8px; }
.save-note { font-size: 13px; color: var(--success, #22c55e); font-weight: 600; opacity: 0; transition: opacity .2s; }
.save-note.show { opacity: 1; }
.user-chip { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.user-chip .avatar { width: 26px; height: 26px; border-radius: 50%; background: var(--brand-lavender); display: grid; place-items: center; font-weight: 700; color: var(--ink); font-size: 12px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--canvas); }
.cta-inner {
  background: var(--surface-soft); border-radius: var(--r-xl); padding: clamp(40px, 7vw, 80px);
  text-align: center; position: relative; overflow: hidden;
}
.cta-inner h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 14px; }
.cta-inner p { color: var(--body); font-size: 18px; margin-bottom: 26px; }

/* ---------- Footer ---------- */
footer { background: var(--surface-soft); padding: 64px 0 40px; border-top: 1px solid var(--hairline-soft); }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.foot-tag { color: var(--muted); font-size: 14px; max-width: 320px; margin-top: 10px; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--body); font-size: 14px; text-decoration: none; cursor: pointer; }
.foot-links a:hover { color: var(--ink); }
.foot-mtn { margin-top: 40px; height: 80px; border-radius: var(--r-lg) var(--r-lg) 0 0; background:
  radial-gradient(120px 80px at 20% 100%, var(--brand-lavender) 0 60%, transparent 61%),
  radial-gradient(160px 100px at 55% 100%, var(--brand-teal) 0 60%, transparent 61%),
  radial-gradient(120px 80px at 85% 100%, var(--brand-peach) 0 60%, transparent 61%);
  background-repeat: no-repeat; opacity: .7;
}
.copyright { margin-top: 24px; color: var(--muted-soft); font-size: 13px; }
.credits { margin-top: 8px; color: var(--muted-soft); font-size: 12px; }
.credits a { color: var(--muted); text-decoration: underline; }
.credits a:hover { color: var(--ink); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--primary); color: #fff; padding: 12px 20px; border-radius: var(--r-pill);
  font-size: 14px; font-weight: 600; opacity: 0; pointer-events: none; transition: all .25s; z-index: 200;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Fun frames for the animations ---------- */
.anim-frame {
  display: block; margin: 0;
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 7px 9px 0 rgba(10,10,10,0.10);
  overflow: hidden;
}
.anim-frame img { display: block; width: 100%; height: auto; border-radius: 12px; }
.anim-tilt-l { transform: rotate(-2.5deg); }
.anim-tilt-r { transform: rotate(2.5deg); }

.hero-anim { display: flex; flex-direction: column; align-items: center; margin-top: clamp(36px, 6vw, 60px); }
.hero-anim .anim-frame { width: 100%; max-width: 400px; }
.anim-credit { margin-top: 14px; text-align: center; font-size: 11px; color: var(--muted-soft); }
.anim-credit a { color: var(--muted); text-decoration: underline; }
.anim-credit a:hover { color: var(--ink); }

.you-head { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-bottom: var(--s-xl); }
.you-head .sec-head { margin-bottom: 0; flex: 0 1 auto; }
.you-head-anim { width: 156px; flex: 0 0 auto; }

/* image + text side by side inside a card, so heights stay balanced */
.anim-card { display: flex; flex-direction: row; align-items: center; gap: 24px; }
.anim-card-media { flex: 0 0 auto; width: clamp(150px, 30%, 240px); margin: 0; }
.anim-card-body { flex: 1 1 auto; min-width: 0; }
.anim-card-body h3 { margin-bottom: 8px; }

/* ---------- Prestigious gold cabinet around the reel ---------- */
.reel-cabinet {
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff0c0 0%, #eec24f 30%, #b8891f 52%, #eec24f 74%, #fff3cf 100%);
  transform: scale(1.035) translateY(-8px);
  box-shadow:
    0 46px 70px -16px rgba(0,0,0,0.6),
    0 24px 42px -12px rgba(120,80,10,0.45),
    0 8px 16px rgba(0,0,0,0.3),
    inset 0 2px 3px rgba(255,255,255,0.7),
    inset 0 -5px 10px rgba(80,50,0,0.4);
}
.reel-cabinet .reel-window {
  box-shadow: inset 0 0 0 2px rgba(120,80,10,0.4), inset 0 4px 12px rgba(0,0,0,0.22);
}

/* ---------- Testimonial ---------- */
.kind-words { background: var(--surface-soft); }
.kw-head { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center; max-width: none; }
.kw-head .eyebrow { margin-bottom: 0; }
.kw-heart { width: clamp(30px, 4vw, 46px); height: auto; flex: 0 0 auto; filter: drop-shadow(0 3px 5px rgba(246,188,202,0.5)); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.testimonial-card {
  position: relative;
  background: var(--surface-card); border-radius: var(--r-xl);
  padding: clamp(26px, 2.6vw, 34px);
  display: flex; flex-direction: column;
}
.testimonial-card .quote-mark {
  position: absolute; top: 6px; left: 18px;
  font-family: var(--font-display); font-size: 78px; line-height: 1;
  color: var(--brand-pink); opacity: 0.24;
}
.testimonial-card blockquote {
  position: relative; margin: 0; flex: 1 1 auto;
  font-size: 16.5px; line-height: 1.55;
  color: var(--body-strong); font-weight: 500;
}
.testimonial-card blockquote p { margin: 0 0 12px; }
.testimonial-card blockquote p:last-child { margin-bottom: 0; }
.testimonial-card figcaption { margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.tavatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand-pink); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.tname { font-weight: 700; color: var(--ink); font-size: 17px; }

/* Lauren's two-page testimonial slider */
.t-slider { position: relative; overflow: hidden; transition: height .45s cubic-bezier(.16, 1, .3, 1); }
.t-track { display: flex; align-items: flex-start; transition: transform .45s cubic-bezier(.16, 1, .3, 1); }
.t-page { flex: 0 0 100%; min-width: 0; }
.t-page p { margin: 0 0 12px; font-size: 16.5px; line-height: 1.55; color: var(--body-strong); font-weight: 500; }
.t-page p:last-child { margin-bottom: 0; }
.t-nav { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.t-toggle { background: none; border: none; padding: 0; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--brand-pink); }
.t-toggle:hover { text-decoration: underline; }
.t-count { font-size: 12px; font-weight: 600; color: var(--muted); }
.t-paged figcaption { margin-top: auto; padding-top: 22px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .testimonial-grid { grid-template-columns: 1fr; max-width: 620px; margin-left: auto; margin-right: auto; }
  .you-head { justify-content: center; }
  .you-head .sec-head { flex-basis: 100%; }
  .you-head-anim { margin-left: auto; margin-right: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-media { order: 2; }
  .hero-photo-frame { max-width: 300px; }
  .hero-media .hb1 { width: 230px; height: 230px; right: 4px; top: -10px; }
  .hero-media .hb2 { width: 110px; height: 110px; }
  .you-grid { grid-template-columns: 1fr; }
  .me-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .me-portrait { max-width: 360px; }
  .steps { grid-template-columns: 1fr; }
  .reel { --reel-h: 300px; }
  .timeline::before { left: 54px; }
  .tl-item { grid-template-columns: 54px 1fr; gap: 16px; }
  .tl-dot { left: 48px; }
}
@media (max-width: 560px) {
  .nav-actions .hide-sm { display: none; }
  .anim-card { flex-direction: column; align-items: stretch; }
  .anim-card-media { flex: none; width: 100%; max-width: 240px; margin: 0 auto; }
  .logo-word { font-size: 15px; }
  .logo-mark { width: 38px; height: 38px; font-size: 15px; }
  .hero-cta { width: 100%; }
  .hero-cta .btn { flex: 1; }
  .cal-meta { gap: 10px; }
}
