/* ==========================================================================
   SanoMano — design tokens
   ========================================================================== */
:root {
    --cream: #fdf6ec;
    --dark: #2c1a10;
    --dark-soft: #4a3527;
    --text-muted: #7a6a5c;

    --orange: #b35a1c;
    --orange-dark: #7a3d12;

    --yellow: #f9c74f;
    --yellow-card: #feeaa8;

    --purple: #edd9f5;
    --purple-deep: #c4a8e0;

    --green-card: #bdd0ab;
    --green-deep: #2e5940;

    --peach-card: #f4c8b0;
    --peach-deep: #e0a184;

    --white: #ffffff;

    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;

    --shadow-soft: 0 12px 30px rgba(44, 26, 16, 0.08);
    --shadow-card: 0 8px 20px rgba(44, 26, 16, 0.06);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.5em;
    color: var(--dark);
}

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; margin: 0; padding: 0; }

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; }

/* ==========================================================================
   Buttons & badges
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--orange);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(179, 90, 28, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); }

.btn-outline {
    background: var(--white);
    color: var(--dark);
    border-color: rgba(44, 26, 16, 0.12);
}
.btn-outline:hover { border-color: var(--dark); }

.btn-green {
    background: var(--green-deep);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(63, 125, 85, 0.3);
}
.btn-green:hover { background: #336a47; }

.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

.badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.badge-purple { background: var(--purple); color: #6a3f96; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--orange-dark);
    margin-bottom: 10px;
}
.eyebrow-green { color: var(--green-deep); }

.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-subtitle { color: var(--dark-soft); max-width: 560px; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 246, 236, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(44, 26, 16, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 24px;
}

.brand-logo { height: 44px; width: auto; }

.site-nav {
    display: flex;
    gap: 32px;
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a:hover { color: var(--orange-dark); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
    padding: 64px 0 100px;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-copy h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.4rem);
}
.hero-copy h1 em {
    color: var(--orange);
    font-style: italic;
}

.hero-lead {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.trust-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.hero-media { position: relative; }

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 999px;
    box-shadow: var(--shadow-card);
}
.floating-badge-top {
    top: -18px;
    right: -10px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.floating-badge-bottom {
    left: -20px;
    bottom: -20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--text-muted);
}
.floating-badge-bottom strong { color: var(--dark); font-size: 0.95rem; }

/* ==========================================================================
   Wave dividers
   ========================================================================== */
.wave-top { position: absolute; top: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: translateY(-99%); }
.wave-bottom { position: absolute; bottom: 0; left: 0; width: 100%; overflow: hidden; line-height: 0; transform: translateY(99%); }
.wave-top svg, .wave-bottom svg { width: 100%; height: 70px; display: block; }

/* ==========================================================================
   Characters
   ========================================================================== */
.characters {
    background: var(--yellow);
    padding: 90px 0 110px;
    text-align: center;
}
.characters .section-title { margin-bottom: 40px; }

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.character-card {
    display: block;
    border-radius: var(--radius-md);
    padding: 32px 22px;
    text-align: center;
    border: 1px solid rgba(44, 26, 16, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.character-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.character-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--white);
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.character-card h3 { margin-bottom: 2px; font-size: 1.15rem; }
.character-title { font-weight: 600; font-size: 0.85rem; color: var(--dark-soft); margin-bottom: 10px; }
.character-desc { font-size: 0.88rem; color: var(--dark-soft); margin-bottom: 0; }

.card-purple { background: var(--purple); }
.card-yellow { background: var(--yellow-card); }
.card-green { background: var(--green-card); }
.card-peach { background: var(--peach-card); }

/* ==========================================================================
   Stories
   ========================================================================== */
.stories { padding: 100px 0; }

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 16px;
    flex-wrap: wrap;
}
.section-heading-row .section-title { margin-bottom: 0; }

.view-all-link {
    font-weight: 600;
    color: var(--orange-dark);
    white-space: nowrap;
}
.view-all-link:hover { text-decoration: underline; }

.story-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.15s ease;
}
.story-card:hover { transform: translateY(-4px); }

.story-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-emoji { font-size: 2.5rem; }
.thumb-purple { background: var(--purple-deep); }
.thumb-yellow { background: var(--orange); }
.thumb-green { background: #78b960; }

.play-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--dark);
    box-shadow: var(--shadow-card);
}

.story-body { padding: 18px 20px 22px; }
.story-body h3 { font-size: 1.05rem; margin-bottom: 8px; }
.story-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}
.story-rating { color: var(--orange); margin-left: auto; letter-spacing: 1px; }

/* ==========================================================================
   World of SanoMano
   ========================================================================== */
.world {
    background: var(--purple);
    padding: 90px 0 110px;
    text-align: center;
}
.world .section-subtitle { margin: 0 auto 40px; }

.world-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.world-card {
    display: block;
    border-radius: var(--radius-md);
    padding: 30px 22px;
    text-align: left;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.world-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}
.world-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.55);
    font-size: 1.4rem;
    margin-bottom: 16px;
}
.world-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.world-card p { font-size: 0.85rem; color: var(--dark-soft); margin-bottom: 0; }

/* ==========================================================================
   Parents
   ========================================================================== */
.parents { padding: 100px 0; }

.parents-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.parents-media { position: relative; }
.parents-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.testimonial-bubble {
    position: absolute;
    bottom: -24px;
    right: -16px;
    max-width: 240px;
    background: var(--green-deep);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md) var(--radius-md) var(--radius-md) 4px;
    font-size: 0.85rem;
    font-style: italic;
    box-shadow: var(--shadow-soft);
}
.testimonial-bubble footer {
    margin-top: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 0.78rem;
}

.trust-list { margin: 22px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.trust-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; font-size: 0.95rem; }
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green-card);
    color: var(--green-deep);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter {
    background: var(--dark);
    color: var(--white);
    padding: 90px 0;
    text-align: center;
}
.newsletter .moon { font-size: 2rem; display: block; margin-bottom: 16px; }
.newsletter h2 { color: var(--white); }
.newsletter p { color: rgba(255,255,255,0.65); max-width: 480px; margin-left: auto; margin-right: auto; }

.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    max-width: 460px;
    margin: 28px auto 12px;
    flex-wrap: wrap;
}
.newsletter-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form input:focus { outline: 2px solid var(--orange); }

.newsletter-note { font-size: 0.78rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding-top: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
    padding: 40px 24px 50px;
}

.footer-logo { height: 44px; width: auto; margin-bottom: 14px; border-radius: 8px; background: var(--cream); padding: 4px; }
.footer-brand p { font-size: 0.88rem; max-width: 300px; }

.social-links { display: flex; gap: 16px; font-size: 0.85rem; font-weight: 500; }
.social-links a:hover { color: var(--white); }

.footer-links h3 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
}
.footer-policies { display: flex; gap: 20px; }
.footer-policies a:hover { color: var(--white); }

/* ==========================================================================
   Interior page hero
   ========================================================================== */
.page-hero {
    padding: 64px 0 56px;
    text-align: center;
}
.page-hero-inner { max-width: 640px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero-subtitle { color: var(--text-muted); font-size: 1.05rem; }

.breadcrumb-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}
.breadcrumb-back:hover { color: var(--dark); }

/* ==========================================================================
   Search bar
   ========================================================================== */
.search-bar {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 480px;
    margin: 0 auto 24px;
}
.search-bar input[type="search"] {
    flex: 1;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(44, 26, 16, 0.15);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}
.search-status {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.search-status a { color: var(--orange-dark); font-weight: 600; margin-left: 8px; }

/* ==========================================================================
   Filter bar (categories)
   ========================================================================== */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 44px;
}
.filter-chip {
    padding: 9px 20px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--white);
    border: 1px solid rgba(44, 26, 16, 0.12);
    color: var(--dark);
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.filter-chip:hover { border-color: var(--dark); }
.filter-chip.active {
    background: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.page-section { padding: 0 0 100px; }
.page-section-tight { padding-bottom: 70px; }

.empty-state {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 0;
}

.cross-link {
    text-align: center;
    color: var(--text-muted);
    margin-top: 40px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 48px;
}
.pagination-status { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

.messages { padding-top: 20px; }
.message {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 12px;
}
.message-success { background: var(--green-card); color: var(--dark); }
.message-error { background: var(--peach-card); color: var(--dark); }

/* ==========================================================================
   Activity cards
   ========================================================================== */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.activity-card {
    border-radius: var(--radius-md);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.activity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    font-size: 1.6rem;
}
.activity-type {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
}
.activity-card h3 { font-size: 1.05rem; margin-bottom: 0; }
.activity-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 4px; }

/* ==========================================================================
   Product cards (Books / Shop)
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}
.product-thumb {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
}
.product-body { padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 1rem; margin-bottom: 0; }
.product-body h3 a:hover { text-decoration: underline; }
.product-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 6px; }
.product-price { font-weight: 700; color: var(--dark); font-size: 1.05rem; }
.product-detail-price { font-weight: 700; color: var(--dark); font-size: 1.4rem; text-align: center; }
.product-card .btn { margin-top: auto; justify-content: center; }
.product-category-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--orange-dark);
}

/* ==========================================================================
   Character detail page
   ========================================================================== */
.character-banner { padding: 70px 0 60px; text-align: center; }
.character-banner-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-card);
}
.character-banner h1 { margin-bottom: 4px; }
.character-banner-title { color: var(--dark-soft); font-weight: 600; }

.character-detail-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 70px 0;
    align-items: start;
}
.character-detail-body .bio { font-size: 1.02rem; }

.trait-list { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.trait-chip {
    padding: 7px 16px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid rgba(44, 26, 16, 0.1);
    font-size: 0.82rem;
    font-weight: 600;
}

.fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.fact-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 18px 20px;
    box-shadow: var(--shadow-card);
}
.fact-label {
    text-transform: uppercase;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 4px;
}
.fact-value { font-weight: 600; }

.related-stories { padding: 0 0 100px; text-align: center; }

/* ==========================================================================
   Story detail page
   ========================================================================== */
.story-banner { padding: 70px 0 50px; text-align: center; }
.story-banner-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-card);
}
.story-banner-meta {
    display: flex;
    gap: 16px;
    justify-content: center;
    color: var(--dark-soft);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 8px;
}
.story-banner-meta .story-rating { color: var(--orange); }

.story-summary { max-width: 640px; margin: 0 auto 40px; text-align: center; color: var(--text-muted); font-size: 1.05rem; }

.video-placeholder {
    max-width: 640px;
    margin: 0 auto 70px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--purple-deep), var(--peach-card));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.video-embed {
    max-width: 640px;
    margin: 0 auto 70px;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.video-placeholder .play-btn {
    position: static;
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
}

.story-reading {
    max-width: 680px;
    margin: 0 auto 70px;
    padding: 0 0 0;
}
.story-reading h2 { text-align: center; margin-bottom: 24px; }
.story-reading p {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    line-height: 1.7;
}

.lesson-callout {
    max-width: 640px;
    margin: 0 auto 70px;
    background: var(--purple);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    text-align: center;
}
.lesson-callout .eyebrow { margin-bottom: 6px; }
.lesson-callout h3 { margin-bottom: 0; }

.section-narrow { max-width: 780px; margin: 0 auto; text-align: center; }
.section-narrow + .section-narrow { margin-top: 60px; }

.vocab-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; text-align: left; }
.vocab-card { background: var(--white); border-radius: var(--radius-sm); padding: 16px 20px; box-shadow: var(--shadow-card); }
.vocab-word { font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.vocab-meaning { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0; }

.question-list { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.question-list li {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 20px;
    box-shadow: var(--shadow-card);
    font-weight: 500;
}

.mini-character-grid { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.mini-character-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 999px;
    padding: 8px 20px 8px 8px;
    box-shadow: var(--shadow-card);
    font-weight: 600;
}
.mini-character-card span.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.printable-cta {
    max-width: 480px;
    margin: 0 auto 90px;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
}
.printable-cta p { color: var(--text-muted); }

/* ==========================================================================
   Parents & About pages
   ========================================================================== */
.content-block { max-width: 720px; margin: 0 auto 70px; }
.content-block h2 { text-align: center; margin-bottom: 20px; }
.content-block p { font-size: 1.05rem; color: var(--text-muted); }
.content-block p.lead { color: var(--dark); font-size: 1.15rem; }

.tip-list, .benefit-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px;
    margin: 0 auto;
}
.tip-list li, .benefit-list li {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px 22px;
    box-shadow: var(--shadow-card);
    font-weight: 500;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.tip-list li::before { content: "💡"; flex-shrink: 0; }
.benefit-list li::before { content: "✓"; color: var(--green-deep); font-weight: 700; flex-shrink: 0; }

.age-group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.age-group-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 22px;
    box-shadow: var(--shadow-card);
    text-align: center;
}
.age-group-card h3 { color: var(--orange-dark); margin-bottom: 8px; font-size: 1.1rem; }
.age-group-card p { font-size: 0.9rem; margin-bottom: 0; }

.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); padding: 18px 22px; box-shadow: var(--shadow-card); }
.faq-item h3 { font-size: 1rem; margin-bottom: 6px; }
.faq-item p { font-size: 0.9rem; margin-bottom: 0; }

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}
.value-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 999px;
    padding: 12px 22px;
    box-shadow: var(--shadow-card);
    font-weight: 600;
}
.value-chip .emoji { font-size: 1.2rem; }

.cta-center { text-align: center; margin-top: 20px; }

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 480px;
    margin: 0 auto;
}
.simple-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
}
.simple-form input,
.simple-form textarea {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(44, 26, 16, 0.15);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
}
.simple-form textarea { resize: vertical; min-height: 110px; }
.simple-form button { align-self: center; margin-top: 8px; }

.contact-detail {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
}
.contact-detail a { color: var(--orange-dark); font-weight: 600; }

.press-logo-block {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
    max-width: 360px;
    margin: 0 auto 40px;
}
.press-logo-block img { max-height: 60px; width: auto; margin: 0 auto 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; }
    .character-grid { grid-template-columns: repeat(2, 1fr); }
    .world-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .parents-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .parents-media { margin-bottom: 40px; }
    .activity-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .character-detail-body { grid-template-columns: 1fr; }
    .age-group-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 20px 24px;
        display: none;
        border-bottom: 1px solid rgba(44,26,16,0.08);
    }
    .site-nav.open { display: flex; }
    .header-cta { display: none; }
    .character-grid { grid-template-columns: 1fr; }
    .world-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
    .activity-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .fact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Print (used by the "Print this Activity" button)
   ========================================================================== */
.print-only { display: none; }

@media print {
    .site-header, .site-footer, .newsletter, .no-print { display: none !important; }
    .print-only { display: block; }
    body { background: #fff; }
    #printable-activity { max-width: 100%; }
}
