/* ═══════════════════════════════════════════════════════════════
   The Future Performer — Phase 2
   Brand: Variant A "Playground" (Kim's pick, 2026-09-02)
   Fraunces (display) + Inter (body) + Baloo 2 (playful accent)
   Cream #FFF6E9 · Pink #E0348B · Coral #F5643C · Gold #E0A030
   Sibling of the KTTA build: same scaffolding, light register.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:      #FFF6E9;
  --cream-deep: #FFE9D6;
  --card:       #FFFFFF;
  --ink:        #3A2016;
  --ink-body:   #4A2B1E;
  --tx-mute:    #8A5A44;
  --tx-soft:    #A5745C;
  --pink:       #E0348B;
  --pink-deep:  #B32370;
  --pink-soft:  #FFE1F0;
  --coral:      #F5643C;
  --coral-deep: #E0680C;
  --rust:       #C2410C;
  --gold:       #E0A030;
  --brown:      #B6531E;
  --peach:      #FFE7CC;
  --line:       #FFD9B8;
  --line-soft:  rgba(224,52,139,0.14);
  --shadow:     0 8px 22px rgba(224,52,139,0.10);
  --shadow-lg:  0 16px 44px rgba(224,52,139,0.14);
  --nav-h: 76px;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pink); }
::selection { background: var(--pink); color: #fff; }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
}

/* ── type helpers ── */
.display { font-family: 'Fraunces', serif; font-weight: 600; letter-spacing: -0.02em; line-height: 1.06; color: var(--ink); }
.display em { font-style: italic; color: var(--pink); }
.display .coral { font-style: italic; color: var(--coral); }
.playful { font-family: 'Baloo 2', 'Inter', cursive; font-weight: 700; }

.eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.eyebrow::before { content: ''; height: 2px; border-radius: 2px; background: var(--gold); flex: 0 0 40px; }
.eyebrow span { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--brown); font-weight: 700; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ''; height: 2px; border-radius: 2px; background: var(--gold); flex: 0 0 40px; }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.95rem 2rem; border-radius: 999px; font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; font-weight: 700; border: 2px solid transparent; cursor: pointer; transition: filter 0.2s, background 0.2s, color 0.2s, transform 0.15s; font-family: 'Inter', sans-serif; }
.btn.solid { background: var(--coral); color: #fff; box-shadow: 0 6px 16px rgba(245,100,60,0.28); }
.btn.solid:hover { filter: brightness(1.07); transform: translateY(-2px); }
.btn.pink { background: var(--pink); color: #fff; box-shadow: 0 6px 16px rgba(224,52,139,0.26); }
.btn.pink:hover { filter: brightness(1.07); transform: translateY(-2px); }
/* Kim, 6 Sep: the January classes page had no obvious way to book, so the
   trial-week CTA in that page hero is deliberately oversized. */
.btn.lg { padding: 1.15rem 2.7rem; font-size: 0.86rem; letter-spacing: 0.14em; }
.btn.ghost { border-color: var(--gold); color: var(--brown); background: var(--card); }
.btn.ghost:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ── nav ── */
/* Sticky, not fixed. The announcement bar sits above it in normal flow, so a fixed
   nav would overlap the bar. Sticky keeps the bar visible at the top of the page,
   lets it scroll away, and then pins the nav, with no offset arithmetic. */
.nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1rem 3rem; transition: background 0.3s ease, box-shadow 0.3s ease; border-bottom: 1px solid transparent; min-height: var(--nav-h); }
.nav.scrolled, .nav.solid { background: rgba(255,246,233,0.95); border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(180,90,40,0.07); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.nav-mark { width: 50px; height: 50px; border-radius: 50%; background: var(--card); border: 2px solid var(--gold); flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.nav-word { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.nav-word .top { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.06rem; color: var(--pink); }
.nav-word .bot { font-size: 0.53rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brown); margin-top: 3px; font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 1.7rem; list-style: none; }
.nav-links a { color: var(--tx-mute); text-decoration: none; font-size: 0.74rem; letter-spacing: 0.13em; text-transform: uppercase; font-weight: 700; transition: color 0.2s; padding: 6px 0; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--pink); }
.nav-links .btn { padding: 0.62rem 1.4rem; font-size: 0.64rem; color: #fff; }
.nav-links .btn:hover { color: #fff; }

/* mobile nav */
.nav-toggle { display: none; background: var(--card); border: 2px solid var(--line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--coral); transition: transform 0.25s, opacity 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── section scaffolding ── */
.section { position: relative; padding: 5.5rem 3rem; }
.section.tint { background: var(--cream-deep); }
.section.white { background: var(--card); }
.section-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-head { max-width: 720px; margin: 0 auto 3.2rem; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 1rem; }
.section-head p { color: var(--tx-mute); font-size: 1.02rem; }

/* ── hero ── */
.hero { position: relative; overflow: hidden; padding: 3.5rem 3rem 4.5rem; background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%); }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); margin-bottom: 1.2rem; }
.hero .lede { font-size: 1.08rem; color: var(--tx-mute); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
/* confetti canvas sits behind the hero content */
.confetti { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

/* ── trust badges (the vibearts pattern Kim liked) ── */
.badges { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.badge { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--card); border: 2px solid var(--line); border-radius: 12px; padding: 0.55rem 1rem; font-size: 0.75rem; font-weight: 700; color: var(--rust); transition: border-color 0.2s, transform 0.2s; }
.badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.badge svg { flex-shrink: 0; }

/* ── class strand cards ── */
.strands { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.strand { display: block; text-decoration: none; background: var(--card); border-radius: 20px; padding: 1.9rem 1.8rem; box-shadow: var(--shadow); border: 2px solid transparent; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.strand:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.strand.s1:hover { border-color: var(--pink); }
.strand.s2:hover { border-color: var(--coral); }
.strand .s-top { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 0.9rem; }
.strand .s-icon { flex-shrink: 0; }
.strand .age { display: inline-block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.28rem 0.7rem; border-radius: 999px; margin-bottom: 0.5rem; }
.strand h3 { font-family: 'Baloo 2', cursive; font-size: 1.45rem; line-height: 1.2; margin-bottom: 0.3rem; }
.strand p { font-size: 0.9rem; color: var(--tx-mute); line-height: 1.6; }
.strand .s-link { display: inline-block; margin-top: 1rem; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; }
.strand.s1 .age { background: var(--pink-soft); color: var(--pink); }
.strand.s1 h3, .strand.s1 .s-link { color: var(--pink); }
.strand.s2 .age { background: var(--peach); color: var(--coral-deep); }
.strand.s2 h3, .strand.s2 .s-link { color: var(--coral); }

/* ── numbered value cards ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar { background: var(--card); border-radius: 18px; padding: 1.8rem 1.6rem; box-shadow: var(--shadow); }
.pillar .p-num { font-family: 'Fraunces', serif; font-style: italic; color: var(--gold); font-size: 1.3rem; display: block; margin-bottom: 0.6rem; }
.pillar h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 0.45rem; }
.pillar h3 em { font-style: italic; color: var(--pink); }
.pillar p { font-size: 0.88rem; color: var(--tx-mute); line-height: 1.6; }

/* ── the book block ── */
.book-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 3rem; align-items: center; }
.book-cover { background: var(--card); border-radius: 18px; padding: 1.4rem; box-shadow: var(--shadow-lg); max-width: 320px; margin: 0 auto; }
.book-cover img { border-radius: 10px; }
.book-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.book-text p { color: var(--tx-mute); margin-bottom: 1rem; }

/* ── steps / how it works ── */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1rem; }
.steps li { counter-increment: step; position: relative; background: var(--card); border-radius: 16px; padding: 1.3rem 1.5rem 1.3rem 4.2rem; box-shadow: var(--shadow); }
.steps li::before { content: counter(step); position: absolute; left: 1.3rem; top: 1.25rem; width: 2rem; height: 2rem; border-radius: 50%; background: var(--pink-soft); color: var(--pink); font-family: 'Baloo 2', cursive; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.steps li h3 { font-family: 'Baloo 2', cursive; font-size: 1.1rem; color: var(--ink); margin-bottom: 0.2rem; }
.steps li p { font-size: 0.9rem; color: var(--tx-mute); }

/* ── resource cards ── */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.res { background: var(--card); border-radius: 18px; padding: 1.7rem 1.5rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 0.5rem; }
.res .r-tag { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 999px; align-self: flex-start; }
.r-free { background: #DCF5E4; color: #1B7A3E; }
.r-book { background: var(--peach); color: var(--coral-deep); }
.r-soon { background: #EFE6DC; color: var(--tx-mute); }
.res h3 { font-family: 'Fraunces', serif; font-size: 1.18rem; font-weight: 600; color: var(--ink); }
.res p { font-size: 0.88rem; color: var(--tx-mute); line-height: 1.6; flex: 1; }
.res .r-link { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 800; color: var(--pink); text-decoration: none; }

/* ── info table (times, prices, term dates) ── */
.info-card { background: var(--card); border-radius: 18px; padding: 1.9rem 1.8rem; box-shadow: var(--shadow); }
.info-card h3 { font-family: 'Baloo 2', cursive; font-size: 1.25rem; color: var(--ink); margin-bottom: 1rem; }
.info-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); font-weight: 700; flex-shrink: 0; }
.info-row .v { font-size: 0.95rem; color: var(--ink-body); text-align: right; }

/* ── placeholder (content pending from Kim) ── */
.placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.6rem; text-align: center; background: repeating-linear-gradient(-45deg, #FFF9F0 0, #FFF9F0 14px, #FFF1E2 14px, #FFF1E2 28px); border: 2px dashed var(--line); border-radius: 16px; padding: 2rem 1.5rem; color: var(--tx-mute); }
.placeholder .ph-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); font-weight: 800; }
.placeholder p { font-size: 0.82rem; max-width: 340px; }

/* ── quote ── */
.quote-card { background: var(--card); border-radius: 18px; padding: 1.9rem 1.8rem; box-shadow: var(--shadow); border-left: 5px solid var(--gold); }
.quote-card blockquote { font-family: 'Fraunces', serif; font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.55; margin-bottom: 0.9rem; }
.quote-card cite { font-style: normal; font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brown); font-weight: 700; }

/* ── accordion ── */
.accordion { border-top: 2px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.2rem 0.2rem; font-family: 'Fraunces', serif; font-size: 1.1rem; font-weight: 600; color: var(--ink); transition: color 0.2s; min-height: 44px; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--pink); }
.accordion summary::after { content: '+'; font-family: 'Baloo 2', cursive; font-size: 1.5rem; color: var(--coral); flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .a-body { padding: 0 0.2rem 1.4rem; color: var(--tx-mute); font-size: 0.94rem; max-width: 760px; }
.accordion .a-body p { margin-bottom: 0.7rem; }

/* ── forms ── */
.form-card { background: var(--card); border-radius: 20px; padding: 2.2rem 2rem; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); font-weight: 800; }
.field input, .field select, .field textarea { background: #FFFCF7; border: 2px solid var(--line); border-radius: 10px; padding: 0.8rem 1rem; color: var(--ink-body); font-family: 'Inter', sans-serif; font-size: 16px; min-height: 44px; transition: border-color 0.2s; width: 100%; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--pink); outline: none; }
.field .hint { font-size: 0.74rem; color: var(--tx-soft); }
.field.consent { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.field.consent input { width: 20px; height: 20px; min-height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--pink); }
.field.consent label { text-transform: none; letter-spacing: 0; font-weight: 400; font-size: 0.84rem; color: var(--tx-mute); line-height: 1.55; }
/* Inline confirmation under the submit button, in place of Web3Forms' own page. */
.form-status { font-size: 0.88rem; line-height: 1.55; margin: 0.9rem 0 0; padding: 0.85rem 1.05rem; border-radius: 10px; border-left: 4px solid; }
.form-status.ok { background: var(--peach); border-color: var(--gold); color: var(--ink); font-weight: 600; }
.form-status.bad { background: #fdecec; border-color: #c8392b; color: #7d1f16; }
.form-note strong { color: var(--ink); }
.form-note { font-size: 0.82rem; color: var(--tx-mute); background: var(--peach); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; padding: 0.9rem 1.1rem; margin: 1.2rem 0; }

/* ── page hero (inner pages) ── */
.page-hero { position: relative; overflow: hidden; padding: 3.5rem 3rem 3.4rem; background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%); border-bottom: 2px solid var(--line); }
.page-hero .section-inner { max-width: 1200px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 1rem; max-width: 880px; }
.page-hero .lede { color: var(--tx-mute); font-size: 1.06rem; max-width: 640px; }

/* ── cta band ── */
.cta-band { text-align: center; background: linear-gradient(140deg, var(--pink) 0%, var(--coral) 100%); color: #fff; }
.cta-band h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1rem; color: #fff; }
.cta-band h2 em { font-style: italic; color: #FFE9D6; }
.cta-band p { max-width: 560px; margin: 0 auto 2rem; color: rgba(255,255,255,0.9); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn.solid { background: #fff; color: var(--pink); box-shadow: 0 6px 18px rgba(0,0,0,0.14); }
.cta-band .btn.ghost { background: transparent; border-color: rgba(255,255,255,0.8); color: #fff; }
.cta-band .btn.ghost:hover { background: #fff; color: var(--coral); border-color: #fff; }

/* ── cross-brand strip ── */
.family { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.fam-card { background: var(--card); border-radius: 18px; padding: 1.6rem 1.6rem; box-shadow: var(--shadow); text-decoration: none; display: block; transition: transform 0.2s; }
.fam-card:hover { transform: translateY(-3px); }
.fam-card .f-eyebrow { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brown); font-weight: 800; margin-bottom: 0.4rem; display: block; }
.fam-card h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--ink); margin-bottom: 0.35rem; overflow-wrap: anywhere; }
.fam-card p { font-size: 0.86rem; color: var(--tx-mute); }

/* ── footer ── */
footer { background: #FFF1E0; border-top: 2px solid var(--line); padding: 3.6rem 3rem 2rem; position: relative; z-index: 2; }
.foot-grid { max-width: 1200px; margin: 0 auto 2.6rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; }
.foot-brand p { color: var(--tx-mute); font-size: 0.88rem; line-height: 1.7; max-width: 320px; margin-top: 1rem; }
.foot-col h4 { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brown); font-weight: 800; margin-bottom: 1rem; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 0.5rem; }
.foot-col a { color: var(--tx-mute); font-size: 0.88rem; text-decoration: none; transition: color 0.2s; }
.foot-col a:hover { color: var(--pink); }
.foot-col .contact-line { color: var(--tx-mute); font-size: 0.88rem; }
.foot-bot { max-width: 1200px; margin: 0 auto; padding-top: 1.8rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 0.74rem; color: var(--tx-soft); flex-wrap: wrap; gap: 0.8rem; }
.foot-bot a { color: var(--tx-mute); }

/* ── prose (policy pages) ── */
.prose { max-width: 760px; }
.prose h2 { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); margin: 2.2rem 0 0.8rem; }
.prose p { color: var(--tx-mute); margin-bottom: 1rem; font-size: 0.96rem; }
.prose ul { color: var(--tx-mute); padding-left: 1.4rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.4rem; font-size: 0.96rem; }
.prose strong { color: var(--ink); }

/* ── star divider ── */
.star-divider { display: flex; align-items: center; gap: 1rem; margin: 2.4rem 0; }
.star-divider::before, .star-divider::after { content: ''; height: 2px; flex: 1; border-radius: 2px; background: var(--line); }
.star-divider svg { flex-shrink: 0; }

/* ── reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── announcement bar: the one thing bookable right now ── */
.announce { position: relative; z-index: 101; display: flex; align-items: center; justify-content: center; gap: 0.7rem; background: linear-gradient(90deg, var(--pink-deep), var(--pink)); color: #fff; padding: 0.65rem 1.2rem; text-align: center; font-size: 0.82rem; font-weight: 600; flex-wrap: wrap; }
.announce .dot { width: 9px; height: 9px; border-radius: 50%; background: #6EE7B7; box-shadow: 0 0 10px #6EE7B7; flex-shrink: 0; }
.announce a { color: #fff; font-weight: 800; text-underline-offset: 3px; }
/* the bar scrolls away, so the fixed nav sits below it only at the top of the page */

/* ── "opening January 2027" flag above the hero headline ── */
.flag { display: inline-block; background: var(--peach); color: var(--coral-deep); border: 2px solid var(--line); border-radius: 999px; padding: 0.4rem 1rem; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.2rem; }

.hero-visual img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; height: auto; }

.pillar .p-icon { display: block; margin-bottom: 0.9rem; }

/* ── price strip ── */
.price-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1.6rem; background: var(--card); border-radius: 18px; padding: 1.6rem 1.8rem; box-shadow: var(--shadow); }
.price-strip > div { display: flex; flex-direction: column; gap: 0.15rem; padding-right: 1rem; border-right: 1px solid var(--line); }
.price-strip > div:last-child { border-right: none; }
.price-strip .k { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brown); font-weight: 800; }
.price-strip .v { font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 1.4rem; color: var(--pink); line-height: 1.15; }
.price-strip .n { font-size: 0.78rem; color: var(--tx-mute); }

/* ── feature block: image beside text ── */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 3.2rem; align-items: center; }
.feature.reverse .feature-img { order: 2; }
.feature-img img { border-radius: 20px; box-shadow: var(--shadow-lg); width: 100%; height: auto; }
.feature-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.feature-text p { color: var(--tx-mute); margin-bottom: 1rem; }
.feature-text strong { color: var(--ink); }

/* ── what they gain ── */
.gains-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.5rem; max-width: 900px; margin: 0 auto; }
.gains { list-style: none; }
.gains li { position: relative; padding: 0.6rem 0 0.6rem 1.8rem; border-bottom: 1px solid var(--line); color: var(--ink-body); font-size: 0.96rem; }
.gains li:last-child { border-bottom: none; }
.gains li::before { content: '★'; position: absolute; left: 0; top: 0.62rem; color: var(--gold); font-size: 0.8rem; }

/* ── photo strip ── */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.6rem; }
.photo-strip img { border-radius: 16px; box-shadow: var(--shadow); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

/* ── age pill above a feature heading ── */
.age-pill { display: inline-block; border-radius: 999px; padding: 0.4rem 1rem; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.age-pill.s1 { background: var(--pink-soft); color: var(--pink); }
.age-pill.s2 { background: var(--peach); color: var(--coral-deep); }

/* ── show name chips ── */
.show-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.2rem 0 0.4rem; }
.chip { background: var(--card); border: 2px solid var(--line); border-radius: 999px; padding: 0.45rem 1.1rem; font-family: 'Baloo 2', cursive; font-weight: 700; font-size: 0.95rem; color: var(--coral); }

.book-cover img { border-radius: 10px; width: 100%; height: auto; }
.foot-logo { max-width: 230px; height: auto; margin-bottom: 0.4rem; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1020px) {
  .nav { padding: 0.9rem 1.3rem; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,246,233,0.98); border-bottom: 2px solid var(--line); flex-direction: column; align-items: flex-start; gap: 0; padding: 0.6rem 1.4rem 1.4rem; display: none; box-shadow: 0 10px 24px rgba(180,90,40,0.1); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.85rem 0; font-size: 0.85rem; }
  .nav-links .btn { margin-top: 0.7rem; justify-content: center; width: 100%; }
  .nav-toggle { display: flex; }
  .section { padding: 4rem 1.3rem; }
  .hero { padding: 2.4rem 1.3rem 3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.6rem; }
  .page-hero { padding-left: 1.3rem; padding-right: 1.3rem; }
  .pillars, .res-grid { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  footer { padding: 3rem 1.3rem 2rem; }
  .feature { grid-template-columns: 1fr; gap: 2rem; }
  .feature.reverse .feature-img { order: 0; }
  .price-strip { grid-template-columns: 1fr 1fr; }
  .price-strip > div:nth-child(2n) { border-right: none; }
}
@media (max-width: 620px) {
  .strands, .pillars, .res-grid, .family { grid-template-columns: 1fr; }
  /* info@thefutureperformer.co.uk is 29 unbreakable characters and overflowed
     the card at 390px when the address was swapped on 5 Sep. */
  .fam-card h3 { font-size: 1.02rem; }
  .price-strip { grid-template-columns: 1fr; padding: 1.3rem 1.4rem; }
  .price-strip > div { border-right: none; border-bottom: 1px solid var(--line); padding: 0.6rem 0; }
  .price-strip > div:last-child { border-bottom: none; }
  .gains-grid { grid-template-columns: 1fr; gap: 0; }
  .photo-strip { grid-template-columns: 1fr 1fr; }
  .photo-strip img:last-child { display: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .info-row { flex-direction: column; gap: 0.2rem; }
  .info-row .v { text-align: left; }
}
@media (max-width: 480px) {
  .nav-word .top { font-size: 0.95rem; white-space: nowrap; }
  .nav-mark { width: 44px; height: 44px; }
  /* Six credential badges from 6 Sep instead of three: tighten them so the
     strip does not become six stacked rows on a phone. */
  .badges { gap: 0.5rem; }
  .badge { padding: 0.45rem 0.8rem; font-size: 0.7rem; gap: 0.4rem; }
  .btn.lg { padding: 1rem 1.9rem; font-size: 0.78rem; }
}

/* ═══ reduced motion ═══ */
@media (prefers-reduced-motion: reduce) {
  .confetti { display: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
