/* ============================================================
   Simmer Books — I Just Want to Play
   ============================================================ */

:root {
    --navy: #202348;
    --navy-deep: #14152e;
    --blue: #087cff;
    --sky: #e8f4fd;
    --gold: #e8b33e;
    --gold-deep: #c8931f;
    --ink: #23303a;
    --muted: #5f7280;
    --paper: #ffffff;
    --cream: #fdf9f0;

    /* Boys' sports = light blue, girls' sports = bright pink (client brand direction) */
    --hockey: #087cff;
    --soccer: #ef2b78;
    --baseball: #087cff;
    --lacrosse: #ef2b78;

    --success: #2f9e44;
    --error: #d94f3d;

    --pink: #ef2b78;
    --pink-deep: #b31552;
    --pink-tint: #fdeaf1;

    --hero-gradient: linear-gradient(135deg, #071b42, #103e82 58%, var(--pink));

    --radius: 18px;
    --radius-lg: 26px;
    --shadow-sm: 0 6px 20px rgba(22, 58, 95, 0.10);
    --shadow-md: 0 14px 40px rgba(22, 58, 95, 0.15);
    --shadow-lg: 0 24px 70px rgba(22, 58, 95, 0.22);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
    font-family: 'Nunito', sans-serif;
    color: var(--ink);
    line-height: 1.65;
    background: var(--navy-deep);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
em { font-style: normal; color: var(--gold-deep); }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.1;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); }
.btn-gold { background: var(--gold); color: var(--navy-deep); }
.btn-gold:hover { background: var(--gold-deep); }
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-deep); }
.btn-ghost { background: rgba(255,255,255,.7); color: var(--navy); box-shadow: inset 0 0 0 2px var(--navy); }
.btn-ghost:hover { background: #fff; }
.btn-lg { padding: 17px 40px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* Chunky 3D-press CTA — accent style for hero / primary conversion points */
.btn-chunky { box-shadow: 0 6px 0 rgba(0,0,0,.28); transition: transform .12s ease, box-shadow .12s ease, background .18s; }
.btn-chunky:hover { transform: translateY(-2px); box-shadow: 0 8px 0 rgba(0,0,0,.28); }
.btn-chunky:active { transform: translateY(4px); box-shadow: 0 2px 0 rgba(0,0,0,.28); }
.btn-chunky.btn-pink { box-shadow: 0 6px 0 var(--pink-deep); }
.btn-chunky.btn-pink:hover { box-shadow: 0 8px 0 var(--pink-deep); }
.btn-chunky.btn-pink:active { box-shadow: 0 2px 0 var(--pink-deep); }
.btn-chunky.btn-gold { box-shadow: 0 6px 0 var(--gold-deep); }
.btn-chunky.btn-gold:hover { box-shadow: 0 8px 0 var(--gold-deep); }
.btn-chunky.btn-gold:active { box-shadow: 0 2px 0 var(--gold-deep); }

/* ===== Navbar ===== */
.navbar {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    background: var(--navy);
    box-shadow: 0 3px 14px rgba(0,0,0,.25);
    transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 6px 22px rgba(0,0,0,.32); }
.nav-container { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; }
.nav-logo { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: #fff; letter-spacing: -.5px; display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-logo span { color: #fff; }
.nav-logo-img { height: 34px; width: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.nav-links { list-style: none; display: flex; gap: 18px; align-items: center; flex-wrap: nowrap; }
.nav-links li { flex-shrink: 0; }
.nav-links a {
    font-weight: 800; font-size: .74rem; color: #fff; opacity: .82;
    text-transform: uppercase; letter-spacing: .4px; transition: opacity .18s, color .18s;
    white-space: nowrap;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-cta {
    background: var(--pink); color: #fff !important; opacity: 1 !important;
    padding: 10px 18px; border-radius: 50px; font-weight: 800;
}
.nav-cta:hover { background: var(--pink-deep); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
    position: relative;
    padding-top: 70px;
    background: var(--navy-deep);
    border-bottom: 6px solid var(--gold);
    overflow: hidden;
}
.hero-photo {
    display: block; width: 100%; height: auto;
    max-height: 78vh; object-fit: cover; object-position: center top;
}
.hero-cta {
    position: absolute; left: 0; right: 0; bottom: 9%; z-index: 3;
    display: flex; justify-content: center; padding: 0 20px;
}
.eyebrow {
    display: inline-block; background: #fff; color: var(--navy);
    font-weight: 800; font-size: .85rem; letter-spacing: .3px;
    padding: 8px 18px; border-radius: 50px; box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.eyebrow.gold { background: var(--gold); color: var(--navy-deep); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; justify-content: center; }

/* Trust strip */
.trust-strip { position: relative; z-index: 2; background: var(--navy); color: #dceaf7; }
.trust-strip-inner {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    padding: 18px 24px; font-weight: 700; font-size: .95rem;
}
.trust-strip-inner span { white-space: nowrap; }

/* ===== Section basics ===== */
.section { padding: 96px 0; }
.section-eyebrow {
    text-align: center; text-transform: uppercase; letter-spacing: 2px;
    font-weight: 800; font-size: .82rem; color: var(--gold-deep); margin-bottom: 10px;
}
.section-eyebrow.light { color: var(--gold); }
.section-title {
    font-family: 'Fredoka One', cursive; font-size: 2.7rem; color: var(--navy);
    text-align: center; line-height: 1.1; margin-bottom: 16px; letter-spacing: -.5px;
}
.section-title.light { color: #fff; }
.section-title.left { text-align: left; }
.section-intro {
    text-align: center; max-width: 640px; margin: 0 auto 48px;
    font-size: 1.1rem; color: var(--muted);
}
.section-intro.left { text-align: left; margin-left: 0; }
.section-intro.light { color: #cfe1f2; }
.editable-note { font-size: .85rem; color: #9fbdd8; font-style: italic; opacity: .8; }

/* ===== Meet the Players ===== */
.players-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.players-mosaic {
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
    width: 100%; max-width: 1040px; aspect-ratio: 1 / 1; margin: 0 auto 44px;
    overflow: hidden; border-radius: 0;
}
.players-mosaic-cell { position: relative; overflow: hidden; background: var(--navy); }
.players-mosaic-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.mosaic-play {
    position: absolute; inset: 0; width: 100%; height: 100%; display: grid; place-items: center;
    background: rgba(10, 15, 40, .25); border: none; padding: 0; cursor: pointer;
    transition: background .2s, opacity .2s;
}
.mosaic-play:hover { background: rgba(10, 15, 40, .4); }
.mosaic-play-icon {
    width: 15%; aspect-ratio: 1 / 1; min-width: 48px; border-radius: 50%; background: #fff;
    color: var(--navy); display: grid; place-items: center; font-size: 1.4rem;
    box-shadow: var(--shadow-md); padding-left: 4px;
}
.players-mosaic-cell.is-playing .mosaic-play { opacity: 0; pointer-events: none; }
/* ===== Merchandise ===== */
.merch-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.merch-hero {
    position: relative; overflow: hidden; background: var(--navy);
    width: 100%; max-width: 900px; aspect-ratio: 16 / 9; margin: 0 auto 32px;
    border-radius: var(--radius);
}
.merch-hero-video { display: block; width: 100%; height: 100%; object-fit: cover; }
.merch-hero.is-playing .mosaic-play { opacity: 0; pointer-events: none; }
.merch-mosaic {
    display: grid; grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, 1fr);
    width: 100%; max-width: 1040px; aspect-ratio: 1 / 1; margin: 0 auto;
    overflow: hidden; border-radius: 0;
}
.merch-mosaic-cell { position: relative; overflow: hidden; background: var(--navy); }
.merch-mosaic-cell img { display: block; width: 100%; height: 100%; object-fit: cover; }

.players-info { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.player-info-card { border-top: 6px solid var(--sky); padding-top: 16px; text-align: left; }
.player-info-card.sport-hockey { border-top-color: var(--hockey); }
.player-info-card.sport-soccer { border-top-color: var(--soccer); }
.player-info-card.sport-baseball { border-top-color: var(--baseball); }
.player-info-card.sport-lacrosse { border-top-color: var(--lacrosse); }
.player-info-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.4rem; color: #fff; margin-bottom: 2px; }
.player-meta { font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .5px; color: var(--gold); margin-bottom: 12px; }
.player-bio { font-size: .92rem; color: #cfe1f2; text-align: left; }

/* Placeholder cover */
.placeholder-cover .placeholder-art {
    aspect-ratio: 3/4; border-radius: 10px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    text-align: center; padding: 16px; color: #fff;
    box-shadow: var(--shadow-sm);
}
.sport-baseball .placeholder-art { background: linear-gradient(160deg, #e4634f, #b23a29); }
.sport-lacrosse .placeholder-art { background: linear-gradient(160deg, #9163ad, #62397e); }
.placeholder-emoji { font-size: 2.6rem; }
.placeholder-title { font-family: 'Fredoka One', cursive; font-size: 1.15rem; line-height: 1.1; }
.placeholder-note { font-size: .72rem; opacity: .85; font-weight: 700; }

/* ===== Look Inside the Series — top-down book previews ===== */
.preview-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.preview-books-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
.book-preview {
    --accent: var(--hockey);
    display: grid; grid-template-columns: 160px auto; gap: 20px; align-items: center;
    background: var(--paper); border: 1px solid #e0e7f0; border-top: 7px solid var(--accent);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    padding: 20px; margin: 0 auto; width: fit-content; max-width: 100%;
}
.book-preview.sport-hockey { --accent: var(--hockey); }
.book-preview.sport-soccer { --accent: var(--soccer); }
.book-preview.sport-baseball { --accent: var(--baseball); }
.book-preview.sport-lacrosse { --accent: var(--lacrosse); }
.book-preview-cover { text-align: center; }
.book-cover-trigger {
    display: block; width: 100%; padding: 0; border: none; background: none;
    cursor: pointer; border-radius: 10px; transition: transform .2s, box-shadow .2s;
}
.book-cover-trigger:hover { transform: translateY(-3px); }
.book-cover-trigger:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.book-preview-cover img {
    width: 100%; aspect-ratio: 1/1.05; object-fit: cover;
    border-radius: 10px; box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.book-preview-cover h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: var(--navy); margin: 16px 0 2px; line-height: 1.15; }
.book-preview-meta { font-weight: 800; font-size: .82rem; color: var(--muted); margin-bottom: 10px; }
.book-preview-status {
    display: inline-block; background: var(--muted); color: #fff; font-size: .68rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .5px; padding: 5px 12px; border-radius: 50px;
}
.book-preview-status.status-available { background: var(--blue); }
.preview-pages { display: grid; grid-template-columns: repeat(2, 130px); gap: 14px; }
.preview-page {
    display: block; width: 100%; border: 1px solid #dce4ee; background: #fff;
    border-radius: 10px; padding: 8px; box-shadow: 0 8px 20px rgba(22,40,73,.14);
    cursor: pointer; transition: transform .2s, box-shadow .2s;
    font-family: 'Nunito', sans-serif; text-align: center;
}
.preview-page:nth-child(1) { transform: rotate(-1.1deg); }
.preview-page:nth-child(2) { transform: rotate(1.1deg); }
.preview-page:hover {
    transform: translateY(-6px) rotate(0deg) scale(1.03);
    box-shadow: 0 16px 32px rgba(22,40,73,.26); border-color: var(--accent);
}
.preview-page img { display: block; width: 100%; border-radius: 5px; aspect-ratio: 1/1; object-fit: cover; }
.preview-page small { display: block; font: 800 .72rem 'Nunito', sans-serif; color: var(--muted); letter-spacing: .4px; padding: 8px 0 2px; text-transform: uppercase; }
.preview-page.is-placeholder {
    cursor: default; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; aspect-ratio: 1/1.12; background: linear-gradient(150deg, #eef2f7, #e2e9f2);
    box-shadow: var(--shadow-sm);
}
.preview-page.is-placeholder:hover { transform: none; box-shadow: var(--shadow-sm); border-color: #dce4ee; }
.preview-emoji { font-size: 1.8rem; }

/* ===== Message / For Grown-Ups ===== */
.message-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.big-quote {
    font-family: 'Fredoka One', cursive; font-size: 2.2rem; text-align: center;
    line-height: 1.35; color: #dbeafc; max-width: 760px; margin: 0 auto 22px;
}
.big-quote strong { color: var(--gold); }
.message-lead { text-align: center; max-width: 680px; margin: 0 auto 30px; font-size: 1.15rem; color: #cfe1f2; }
.message-cta { text-align: center; margin-bottom: 52px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 30px 22px; text-align: center;
    transition: transform .2s, background .2s;
}
.value-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.12); }
.value-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.value-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.value-card p { font-size: .95rem; color: #b9cfe4; }

/* ===== About / Meet Greg Page ===== */
.about-hero {
    padding: 150px 0 50px;
    background: linear-gradient(160deg, var(--cream) 0%, #fbf3e3 100%);
    text-align: center;
}
.about-hero h1 {
    font-family: 'Fredoka One', cursive; font-size: 3.2rem; color: var(--navy);
    letter-spacing: -.5px; margin: 6px 0 12px;
}
.about-hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 auto; }
.about-banner {
    max-width: 1000px; margin: 0 auto 44px; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-banner img { width: 100%; display: block; }
.about-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); padding-top: 56px; color: #fff; }
.about-text { max-width: 720px; margin: 0 auto; text-align: center; }
.about-text h3 { font-family: 'Fredoka One', cursive; font-size: 2rem; color: #fff; margin-bottom: 4px; }
.about-role { font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: .5px; font-size: .82rem; margin-bottom: 26px; }
.about-text p { font-size: 1.08rem; color: #cfe1f2; margin-bottom: 16px; text-align: left; }
.about-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; margin-top: 34px; }
.about-back { font-weight: 800; color: var(--gold); }
.about-back:hover { color: #fff; }

/* ===== Reviews ===== */
.reviews-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 34px; }
.review-card {
    background: #fff; border-radius: var(--radius); padding: 30px 28px;
    box-shadow: var(--shadow-sm); border-left: 5px solid var(--gold);
}
.review-card p { font-size: 1.08rem; color: var(--ink); margin-bottom: 14px; font-weight: 600; }
.review-card cite { font-style: normal; font-weight: 800; color: var(--muted); font-size: .92rem; }
.reviews-cta { text-align: center; font-weight: 700; color: #cfe1f2; }
.reviews-cta a { color: var(--gold); font-weight: 800; }

/* ===== Activity Zone ===== */
.activity-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.activity-grid--pair { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 700px; margin: 0 auto; }
.activity-card {
    background: #fff; border-radius: var(--radius); padding: 28px 26px;
    box-shadow: var(--shadow-sm); position: relative; transition: transform .2s, box-shadow .2s;
}
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.activity-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.activity-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--navy); margin-bottom: 6px; }
.activity-card p { color: var(--muted); font-size: .98rem; margin-bottom: 14px; }
.activity-tag {
    display: inline-block; background: var(--sky); color: var(--blue);
    font-weight: 800; font-size: .72rem; text-transform: uppercase; letter-spacing: .5px;
    padding: 5px 14px; border-radius: 50px;
}
.activity-downloads { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.activity-download {
    display: block; text-align: center; padding: 8px 10px; border-radius: 50px;
    font-weight: 800; font-size: .78rem; text-decoration: none; color: #fff;
    transition: transform .15s, box-shadow .15s;
}
.activity-download:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.activity-download.sport-hockey { background: var(--hockey); }
.activity-download.sport-soccer { background: var(--soccer); }
.activity-download.sport-baseball { background: var(--baseball); }
.activity-download.sport-lacrosse { background: var(--lacrosse); }
.activity-note { text-align: center; margin-top: 36px; font-weight: 700; color: #cfe1f2; }
.activity-note a { color: var(--gold); font-weight: 800; }
.activity-grid--feature { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 780px; margin: 0 auto; gap: 28px; }
.activity-card--feature {
    padding: 40px 32px 32px; text-align: center;
    border-top: 6px solid transparent; border-radius: var(--radius);
}
.activity-card--feature.accent-gold { border-top-color: var(--gold); }
.activity-card--feature.accent-blue { border-top-color: var(--blue); }
.activity-card--feature .activity-icon-wrap {
    width: 76px; height: 76px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.activity-card--feature.accent-gold .activity-icon-wrap { background: var(--cream); }
.activity-card--feature.accent-blue .activity-icon-wrap { background: var(--sky); }
.activity-card--feature .activity-icon { font-size: 2.3rem; margin-bottom: 0; }
.activity-card--feature h3 { font-size: 1.5rem; }
.activity-card--feature p { font-size: 1.02rem; }
.activity-card--feature .activity-downloads { margin-top: 6px; }

/* ===== FAQ ===== */
.faq-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
    background: var(--sky); border-radius: var(--radius); padding: 18px 24px;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    cursor: pointer; font-family: 'Fredoka One', cursive; font-size: 1.05rem;
    color: var(--navy); list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--blue); margin-left: 12px; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--muted); margin-top: 12px; font-size: .98rem; }
.faq-item p a { color: var(--blue); font-weight: 800; }

/* ===== Pre-order ===== */
.preorder-section { background: var(--navy); color: #fff; }
.preorder-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.preorder-section .section-eyebrow { text-align: left; color: var(--gold); }
.order-options { list-style: none; margin: 22px 0 26px; display: grid; gap: 12px; }
.order-options li { font-size: 1.05rem; color: #dbeafc; }
.order-options strong { color: #fff; }
.pay-methods { display: flex; flex-direction: column; gap: 10px; }
.pay-label { font-weight: 800; font-size: .85rem; color: #9fbdd8; text-transform: uppercase; letter-spacing: .5px; }
.pay-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-badge {
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    color: #fff; font-weight: 800; font-size: .82rem; padding: 7px 14px; border-radius: 8px;
}
.form-card {
    background: #fff; color: var(--ink); border-radius: var(--radius-lg);
    padding: 34px 32px; box-shadow: var(--shadow-lg);
}
.form-card h3 { font-family: 'Fredoka One', cursive; font-size: 1.5rem; color: var(--navy); margin-bottom: 4px; }
.form-card > p { color: var(--muted); margin-bottom: 20px; font-size: .98rem; }
.signup-form { display: grid; gap: 12px; }
.signup-form input, .signup-form select {
    width: 100%; padding: 14px 18px; border: 2px solid #e2e8f0; border-radius: 12px;
    font-family: inherit; font-size: 1rem; transition: border-color .18s; background: #fff;
    color: var(--ink); appearance: auto;
}
.signup-form input:focus, .signup-form select:focus { outline: none; border-color: var(--blue); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.consent-check {
    display: flex; align-items: flex-start; gap: 10px; font-size: .92rem;
    color: var(--muted); font-weight: 600; cursor: pointer; padding: 2px 2px;
}
.consent-check input { width: auto; margin-top: 3px; accent-color: var(--pink); flex-shrink: 0; }
.form-message { font-weight: 800; font-size: .95rem; min-height: 1.2em; margin: 0; }
.form-message.success { color: var(--success); }
.form-message.error { color: var(--error); }
.form-fineprint { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

/* ===== Kids Club ===== */
.kidsclub-section { background: linear-gradient(160deg, var(--gold), var(--gold-deep)); }
.kidsclub-section .eyebrow.gold { background: #fff; color: var(--gold-deep); }
.kidsclub-section .section-title.light { color: var(--navy-deep); }
.kidsclub-section .section-intro.light { color: var(--navy-deep); opacity: .85; }
.kidsclub-teaser { max-width: 620px; margin: 0 auto; text-align: center; }
.club-perks {
    list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
    max-width: 420px; margin: 0 auto 32px; text-align: left;
}
.club-perks li { font-weight: 700; color: var(--navy-deep); font-size: 1rem; }

/* ===== Footer ===== */
.footer { background: var(--navy-deep); color: #b9cfe4; padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer .nav-logo { font-size: 1.7rem; color: #fff; }
.footer .nav-logo span { color: var(--gold); }
.footer-brand p { margin-top: 12px; font-size: .95rem; }
.footer-contact h4, .footer-links h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-contact p { font-size: .95rem; margin-bottom: 10px; }
.footer-contact a { color: var(--gold); font-weight: 700; }
.footer-links { display: flex; flex-direction: column; }
.footer-links a { padding: 5px 0; font-weight: 700; transition: color .18s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; text-align: center; font-size: .85rem; color: #7f9bb5; }

/* ===== Kids Club Page ===== */
.kidsclub-hero {
    padding: 150px 0 60px;
    background: linear-gradient(160deg, var(--pink-tint) 0%, #fdf9f0 100%);
    overflow: hidden;
}
.kidsclub-hero-inner {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.eyebrow.pink { background: var(--pink); color: #fff; }
.kidsclub-hero-text h1 {
    font-family: 'Fredoka One', cursive; font-size: 3.6rem; color: var(--navy);
    line-height: 1; margin-bottom: 10px; letter-spacing: -1px;
}
.kidsclub-hero-tagline { font-size: 1.2rem; font-weight: 800; color: var(--pink-deep); margin-bottom: 14px; }
.kidsclub-hero-sub { font-size: 1.08rem; color: var(--muted); max-width: 460px; margin-bottom: 26px; }
.kidsclub-hero-text .hero-actions { margin-bottom: 18px; justify-content: flex-start; }
.kidsclub-trust { font-size: .85rem; font-weight: 700; color: var(--muted); }
.kidsclub-hero-image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.kidsclub-benefits { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; }
.printables-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.benefit-item {
    text-align: center; padding: 30px 20px; background: var(--cream);
    border-radius: var(--radius); transition: transform .2s, box-shadow .2s;
}
.benefit-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.benefit-icon {
    display: grid; place-items: center; width: 68px; height: 68px; margin: 0 auto 14px;
    border-radius: 50%; background: #fff; box-shadow: var(--shadow-sm); font-size: 1.9rem;
}
.benefit-item h3 { font-family: 'Fredoka One', cursive; font-size: 1.05rem; color: var(--navy); }

.kidsclub-books { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.kidsclub-books-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 40px; }
.kb-book { text-align: center; }
.kb-book-cover img { border-radius: 10px; box-shadow: var(--shadow-sm); aspect-ratio: 3/4; object-fit: cover; }
.kb-book-cover.placeholder-cover .placeholder-art { aspect-ratio: 3/4; }
.kb-book p { margin-top: 12px; font-weight: 800; color: #fff; font-size: .95rem; letter-spacing: .3px; }
.kidsclub-books-cta { text-align: center; }

.kidsclub-join { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); color: #fff; border-top: 1px solid rgba(255,255,255,.06); }
.kidsclub-form-card { max-width: 560px; margin: 0 auto; padding: 40px clamp(24px, 5vw, 44px); }
.kidsclub-form-card h3 { text-align: center; }

/* ===== Letter Page — Parents & Coaches ===== */
.letter-hero {
    padding: 150px 0 60px;
    background: linear-gradient(160deg, var(--cream) 0%, #fbf3e3 100%);
    text-align: center;
}
.letter-hero-inner h1 {
    font-family: 'Fredoka One', cursive; font-size: 3.2rem; color: var(--navy);
    letter-spacing: -.5px; margin: 6px 0 12px;
}
.letter-hero-sub { font-size: 1.15rem; color: var(--muted); max-width: 560px; margin: 0 auto; }

.letter-section { background: linear-gradient(160deg, var(--navy), var(--navy-deep)); padding-top: 60px; color: #fff; }
.letter-card {
    background: var(--cream); border: 1px solid rgba(22,58,95,.08);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    padding: 48px clamp(24px, 5vw, 60px); margin-bottom: 48px;
}
.letter-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
.letter-col p {
    font-style: italic; font-weight: 600; font-size: 1.08rem;
    color: var(--navy); line-height: 1.75; margin-bottom: 22px;
}
.letter-signoff { margin-top: 12px; padding-top: 28px; border-top: 1px solid rgba(22,58,95,.12); }
.letter-signoff-lead { font-style: italic; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.letter-signature {
    font-family: 'Caveat', cursive; font-size: 2.6rem; color: var(--blue);
    line-height: 1; margin-bottom: 2px;
}
.letter-signoff-role { font-size: .9rem; font-weight: 700; color: var(--muted); }

.letter-illustration { max-width: 760px; margin: 0 auto 36px; }
.letter-illustration img { border-radius: 14px; }

.letter-tags {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 16px;
    margin-bottom: 30px;
}
.letter-tags span {
    font-weight: 800; font-size: .8rem; text-transform: uppercase; letter-spacing: .8px;
    color: var(--gold-deep); background: var(--sky); padding: 8px 18px; border-radius: 50px;
}
.letter-closing {
    font-family: 'Fredoka One', cursive; font-size: 1.7rem; text-align: center;
    color: #fff; max-width: 640px; margin: 0 auto 44px;
}
.letter-cta { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.letter-back { font-weight: 800; color: var(--gold); }
.letter-back:hover { color: #fff; }

/* ===== Lightbox ===== */
.lightbox {
    position: fixed; inset: 0; z-index: 200; background: rgba(15,42,69,.94);
    display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-content {
    max-width: min(88vw, 620px); display: flex; flex-direction: column;
    align-items: center; gap: 14px;
}
.lightbox-content img {
    max-width: 100%; max-height: 80vh; width: auto; border-radius: 12px;
    box-shadow: var(--shadow-lg); background: #fff;
}
.lightbox-caption { color: #dbe4f5; font-weight: 800; font-size: .95rem; text-align: center; }
.lightbox-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #fff; font-size: 2.6rem; line-height: 1; cursor: pointer; }
.lightbox-nav { background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 2.4rem; width: 56px; height: 56px; border-radius: 50%; cursor: pointer; transition: background .18s; flex-shrink: 0; margin: 0 12px; }
.lightbox-nav:hover { background: rgba(255,255,255,.3); }

/* ===== Responsive ===== */
@media (max-width: 960px) {
    .players-info, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid, .activity-grid { grid-template-columns: 1fr 1fr; }
    .preorder-inner { grid-template-columns: 1fr; gap: 36px; }
    .preview-books-grid { grid-template-columns: 1fr; }
    .book-preview { grid-template-columns: 220px auto; gap: 34px; padding: 28px; }
    .preview-pages { grid-template-columns: repeat(2, 180px); gap: 18px; }
}
@media (max-width: 1050px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed; inset: 62px 0 auto 0; flex-direction: column; gap: 0;
        background: var(--navy-deep); box-shadow: var(--shadow-md); padding: 8px 0;
        transform: translateY(-140%); transition: transform .3s ease; align-items: stretch;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links li { border-bottom: 1px solid rgba(255,255,255,.1); }
    .nav-links a { display: block; padding: 15px 24px; }
    .nav-cta { margin: 10px 24px; text-align: center; }
}
@media (max-width: 768px) {
    html { scroll-padding-top: 70px; }
    .hero-cta { bottom: 6%; }
    .trust-strip-inner { justify-content: center; gap: 8px 18px; font-size: .85rem; }
    .section { padding: 70px 0; }
    .section-title { font-size: 2.1rem; }
    .big-quote { font-size: 1.6rem; }
    .about-hero { padding-top: 110px; }
    .about-hero h1 { font-size: 2.4rem; }
    .club-perks { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .letter-hero { padding-top: 110px; }
    .letter-hero-inner h1 { font-size: 2.4rem; }
    .letter-card { padding: 32px 22px; }
    .letter-columns { grid-template-columns: 1fr; gap: 0; }
    .letter-closing { font-size: 1.3rem; }
    .kidsclub-hero { padding-top: 110px; }
    .kidsclub-hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
    .kidsclub-hero-text h1 { font-size: 2.6rem; }
    .kidsclub-hero-sub { margin-left: auto; margin-right: auto; }
    .kidsclub-hero-text .hero-actions { justify-content: center; }
    .kidsclub-hero-image { order: -1; max-width: 340px; margin: 0 auto; }
    .benefits-grid, .kidsclub-books-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .book-preview { grid-template-columns: 1fr; gap: 22px; width: auto; max-width: 100%; }
    .book-preview-cover { max-width: 200px; margin: 0 auto; }
    .preview-pages { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 320px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .players-info, .values-grid, .reviews-grid, .activity-grid { grid-template-columns: 1fr; }
    .btn { padding: 14px 26px; }
    .hero-actions .btn { width: 100%; }
    .benefits-grid, .kidsclub-books-grid { grid-template-columns: 1fr; }
}
