/* =========================================
   Make, Play & Learn — Workshop Design System
   ========================================= */

:root {
    --primary: #26736d;
    --primary-light: #3a9992;
    --primary-pale: #e8f4f3;
    --secondary: #d28a35;
    --secondary-pale: #fdf3e3;
    --accent: #9a6fb0;
    --accent-pale: #f3edf7;
    --green: #739b55;
    --green-pale: #eef4e8;
    --clay: #c86f4a;
    --clay-pale: #fdf0ea;
    --paper: #fffdf8;
    --paper-alt: #f6f0e5;
    --paper-blue: #f0f4f8;
    --surface: #ffffff;
    --text-dark: #282822;
    --text-muted: #69685f;
    --border: #ddd5c7;
    --border-dark: #b8ad9e;
    --safety: #8b3d35;
    --safety-pale: #fdf3f2;
    --shadow-soft: 0 2px 12px rgba(40,40,34,0.08);
    --shadow-card: 0 3px 16px rgba(40,40,34,0.10);
    --radius: 8px;
    --radius-sm: 5px;
    --radius-lg: 14px;
}

/* ---- Base ---- */
html { scroll-behavior: smooth; }
body {
    background: var(--paper);
    color: var(--text-dark);
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
}
section[id], article[id] { scroll-margin-top: 90px; }

h1, h2, h3, h4, h5, h6 {
    font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 1.95rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

a { color: var(--primary); }
a:hover { color: var(--primary-light); }

/* ---- Navbar ---- */
.site-nav {
    background: var(--surface);
    border-bottom: 2px solid var(--border);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 0;
    z-index: 1040;
}
.site-nav .navbar-brand {
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}
.site-nav .navbar-brand .tagline {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    line-height: 1;
    letter-spacing: 0;
}
.site-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem !important;
    border-radius: var(--radius-sm);
    transition: background 0.15s, color 0.15s;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    background: var(--primary-pale);
    color: var(--primary) !important;
}
.site-nav .nav-link.active { font-weight: 700; }

/* ---- Wordmark ---- */
.wordmark-make { color: var(--primary); }
.wordmark-play { color: var(--secondary); }
.wordmark-learn { color: var(--clay); }

/* ---- Breadcrumb ---- */
.breadcrumb-strip {
    background: var(--paper-alt);
    border-bottom: 1px solid var(--border);
    padding: 0.4rem 0;
    font-size: 0.83rem;
}
.breadcrumb-strip .breadcrumb { margin: 0; background: none; padding: 0; }
.breadcrumb-strip .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }
.breadcrumb-item a { color: var(--primary); text-decoration: none; font-weight: 500; }
.breadcrumb-item.active { color: var(--text-muted); }

/* ---- Activity Sheet / Project Card ---- */
.activity-sheet {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
}
.activity-sheet::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: absolute;
    top: 0; left: 0; right: 0;
}

.craft-sheet {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-card);
    position: relative;
}
.craft-sheet::before {
    content: '';
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--clay) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    position: absolute;
    top: 0; left: 0; right: 0;
}

/* ---- Meta Labels ---- */
.meta-label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.label-age { background: var(--accent-pale); color: var(--accent); border: 1px solid #c8b3d8; }
.label-time { background: var(--secondary-pale); color: #a06a1a; border: 1px solid #e8c87a; }
.label-diff { background: var(--green-pale); color: #3d6624; border: 1px solid #aac888; }
.label-indoor { background: var(--primary-pale); color: var(--primary); border: 1px solid #a8d4d2; }
.label-outdoor { background: var(--green-pale); color: #3d6624; border: 1px solid #aac888; }
.label-category { background: var(--paper-alt); color: var(--text-muted); border: 1px solid var(--border); }

/* ---- Supply Ribbon ---- */
.supply-ribbon {
    background: var(--paper-alt);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    margin: 1rem 0;
}
.supply-ribbon h5 {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.supply-ribbon ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.supply-ribbon ul li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 0.18rem 0.65rem;
    font-size: 0.82rem;
    color: var(--text-dark);
}
.supply-ribbon ul li::before {
    content: '◆ ';
    font-size: 0.55rem;
    color: var(--secondary);
}

/* ---- Step Numbers ---- */
.steps-list { list-style: none; padding: 0; margin: 0; }
.steps-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}
.step-num {
    min-width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.craft-sheet .step-num { background: var(--clay); }

/* ---- Callout Panels ---- */
.callout {
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    margin: 0.75rem 0;
    border-left: 4px solid;
}
.callout-safety {
    background: var(--safety-pale);
    border-color: var(--safety);
    color: #5a2920;
}
.callout-easier {
    background: var(--primary-pale);
    border-color: var(--primary);
}
.callout-extend {
    background: var(--accent-pale);
    border-color: var(--accent);
}
.callout-cleanup {
    background: var(--secondary-pale);
    border-color: var(--secondary);
}
.callout-adult {
    background: #fff8e1;
    border-color: #f0b429;
}
.callout h5, .callout h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.callout-safety h5, .callout-safety h6 { color: var(--safety); }
.callout-easier h5, .callout-easier h6 { color: var(--primary); }
.callout-extend h5, .callout-extend h6 { color: var(--accent); }
.callout-cleanup h5, .callout-cleanup h6 { color: #a06a1a; }
.callout-adult h5, .callout-adult h6 { color: #8a6200; }

/* ---- Safety Strip ---- */
.safety-strip {
    background: var(--safety-pale);
    border: 2px solid var(--safety);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}
.safety-strip .bi { color: var(--safety); }

/* ---- Filter Bar ---- */
.filter-bar {
    background: var(--surface);
    border-bottom: 2px solid var(--border);
    padding: 0.75rem 0;
    position: sticky;
    top: 65px;
    z-index: 900;
    box-shadow: 0 2px 8px rgba(40,40,34,0.06);
}
.filter-chips {
    display: flex;
    gap: 0.4rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.filter-chips::-webkit-scrollbar { display: none; }
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.83rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.15s;
    cursor: pointer;
}
.filter-chip:hover, .filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.filter-chip.active { font-weight: 700; }

/* ---- Search Box ---- */
.activity-search-wrap {
    position: relative;
    max-width: 340px;
}
.activity-search-wrap .bi {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}
#activitySearch, #craftSearch {
    padding-left: 2.3rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: var(--paper);
    font-size: 0.88rem;
}

/* ---- Hero Section ---- */
.hero-workshop {
    background: var(--paper-alt);
    border-bottom: 2px solid var(--border);
    padding: 3.5rem 0 2.5rem;
}
.activity-board {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-card);
}
.board-pin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.5rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.25rem;
    box-shadow: 2px 2px 6px rgba(40,40,34,0.07);
}
.board-pin.pin-teal { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.board-pin.pin-mustard { border-color: var(--secondary); color: #a06a1a; background: var(--secondary-pale); }
.board-pin.pin-clay { border-color: var(--clay); color: var(--clay); background: var(--clay-pale); }
.board-pin.pin-lavender { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); }
.board-pin.pin-green { border-color: var(--green); color: #3d6624; background: var(--green-pale); }

/* ---- Time Ruler ---- */
.time-ruler {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}
.time-ruler-item {
    flex: 1;
    text-align: center;
    padding: 1rem 0.5rem;
    text-decoration: none;
    color: var(--text-dark);
    border-right: 1.5px solid var(--border);
    transition: background 0.15s;
    font-size: 0.88rem;
    font-weight: 600;
}
.time-ruler-item:last-child { border-right: none; }
.time-ruler-item:hover { background: var(--primary-pale); color: var(--primary); }
.time-ruler-item .time-val {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

/* ---- Category Shelf ---- */
.category-shelf {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.shelf-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 1rem 1.2rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 600;
    min-width: 80px;
    transition: all 0.15s;
    box-shadow: var(--shadow-soft);
}
.shelf-item .bi { font-size: 1.5rem; }
.shelf-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); color: var(--primary); border-color: var(--primary); }

/* ---- Binder Tabs ---- */
.binder-tabs-v { /* vertical desktop tabs */ }
.binder-tab-nav {
    display: flex;
    gap: 0;
    flex-direction: column;
    border-right: 3px solid var(--border);
}
.binder-tab-btn {
    display: block;
    padding: 0.8rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--paper-alt);
    border: none;
    border-right: 3px solid transparent;
    margin-right: -3px;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.binder-tab-btn:hover, .binder-tab-btn.active {
    color: var(--primary);
    background: var(--surface);
    border-right-color: var(--primary);
    font-weight: 700;
}
.binder-panel { display: none; }
.binder-panel.active { display: block; }

/* ---- Featured Activity Spread ---- */
.featured-spread {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.featured-spread-header {
    background: var(--primary);
    color: #fff;
    padding: 1.25rem 1.75rem;
}
.featured-spread-header h2, .featured-spread-header h3 { color: #fff; }
.featured-spread-body { padding: 1.75rem; }
.side-picks {}
.side-pick {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem 1rem;
    margin-bottom: 0.75rem;
    transition: box-shadow 0.15s;
}
.side-pick:last-child { margin-bottom: 0; }
.side-pick:hover { box-shadow: var(--shadow-soft); }
.side-pick h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.2rem; }
.side-pick p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* ---- Materials Workshop Table ---- */
.material-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--paper-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0.2rem;
}
.material-chip .bi { color: var(--secondary); }

/* ---- Indoor / Outdoor Split ---- */
.space-panel {
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
}
.space-panel-indoor {
    background: var(--primary-pale);
    border: 2px solid #a8d4d2;
}
.space-panel-outdoor {
    background: var(--green-pale);
    border: 2px solid #aac888;
}
.space-panel h3 { margin-bottom: 1rem; }
.idea-list { list-style: none; padding: 0; margin: 0; }
.idea-list li {
    padding: 0.45rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.idea-list li:last-child { border-bottom: none; }
.idea-list li .bi { color: var(--primary); font-size: 0.9rem; }
.space-panel-outdoor .idea-list li .bi { color: var(--green); }

/* ---- Section Headers ---- */
.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}
.section-rule {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-rule h2 { margin: 0; }
.section-rule::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* ---- Age Tabs ---- */
.age-tab-nav {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 0;
}
.age-tab-nav::-webkit-scrollbar { display: none; }
.age-tab-btn {
    padding: 0.55rem 1.1rem;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--paper-alt);
    border: 2px solid var(--border);
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    cursor: pointer;
    color: var(--text-muted);
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.15s;
    margin-bottom: -2px;
    display: inline-block;
}
.age-tab-btn:hover, .age-tab-btn.active {
    background: var(--surface);
    color: var(--primary);
    border-color: var(--primary);
    border-bottom-color: var(--surface);
    z-index: 1;
    position: relative;
}

/* ---- Seasonal Tabs ---- */
.season-nav {
    display: flex;
    border-bottom: 2px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0.25rem;
    margin-bottom: 0;
}
.season-nav::-webkit-scrollbar { display: none; }
.season-btn {
    padding: 0.65rem 1.35rem;
    font-weight: 700;
    font-size: 0.88rem;
    background: var(--paper-alt);
    border: 2px solid transparent;
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: -2px;
    transition: all 0.15s;
    text-decoration: none;
    display: inline-block;
}
.season-btn.spring { color: var(--green); }
.season-btn.summer { color: var(--clay); }
.season-btn.rainy  { color: var(--primary); }
.season-btn.autumn { color: var(--secondary); }
.season-btn.winter { color: var(--accent); }
.season-btn.holiday { color: var(--safety); }
.season-btn.school-break { color: var(--text-dark); }
.season-btn.hot { color: var(--clay); }
.season-btn.active, .season-btn:hover {
    background: var(--surface);
    border-color: var(--border);
    border-bottom-color: var(--surface);
    position: relative;
    z-index: 1;
}

/* ---- Visual Placeholder ---- */
.visual-placeholder {
    background: var(--paper-alt);
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-muted);
    min-height: 180px;
    font-size: 0.82rem;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}
.visual-placeholder .bi { font-size: 2.5rem; opacity: 0.4; }
.visual-placeholder .initials {
    font-size: 2.2rem;
    font-weight: 800;
    opacity: 0.25;
    letter-spacing: -2px;
    line-height: 1;
}
.visual-placeholder small { color: var(--border-dark); font-size: 0.72rem; }

/* ---- Activity Index / Compact List ---- */
.activity-index { list-style: none; padding: 0; margin: 0; }
.activity-index li {
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
}
.activity-index li:last-child { border-bottom: none; }
.activity-index .ai-title { font-weight: 700; font-size: 0.95rem; }
.activity-index .ai-meta { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Ad Placeholder ---- */
.ad-placeholder {
    background: var(--paper-alt);
    border: 1px dashed var(--border-dark);
    border-radius: var(--radius);
    padding: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.75rem;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--text-dark);
    color: #b8b8b0;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 4px solid var(--primary);
}
.site-footer h5 {
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 0.9rem;
}
.site-footer a {
    color: #b8b8b0;
    text-decoration: none;
    font-size: 0.88rem;
    display: block;
    padding: 0.18rem 0;
    transition: color 0.15s;
}
.site-footer a:hover { color: #fff; }
.site-footer .footer-safety {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-size: 0.82rem;
}
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #8a8a82;
}

/* ---- Back to Top ---- */
#backToTop {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    box-shadow: var(--shadow-card);
    transition: background 0.15s;
}
#backToTop:hover { background: var(--primary-light); }
#backToTop.visible { display: flex; }

/* ---- Info-Lab / Learning Page ---- */
.idea-lab-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
}
.question-prompt {
    background: var(--accent-pale);
    border: 1.5px dashed var(--accent);
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    font-style: italic;
    color: var(--accent);
    font-size: 0.9rem;
    margin: 0.75rem 0;
}
.try-it-panel {
    background: var(--secondary-pale);
    border: 1.5px solid #e8c87a;
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    margin: 0.75rem 0;
}
.try-it-panel h6 {
    color: #a06a1a;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.adult-role {
    background: var(--primary-pale);
    border: 1.5px solid #a8d4d2;
    border-radius: var(--radius);
    padding: 0.85rem 1.1rem;
    margin: 0.75rem 0;
}
.adult-role h6 {
    color: var(--primary);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

/* ---- Contact ---- */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--paper-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
}
.contact-item .bi { font-size: 1.5rem; color: var(--primary); }

/* ---- About Page ---- */
.about-panel {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 1.5rem;
}

/* ---- Privacy Policy ---- */
.policy-section {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}
.policy-section:last-child { border-bottom: none; }

/* ---- Hidden activity entries (JS filter) ---- */
.activity-entry.hidden, .craft-entry.hidden { display: none; }

/* ---- Checklist style ---- */
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    padding: 0.3rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.9rem;
    color: var(--text-dark);
}
.check-list li .bi { color: var(--primary); margin-top: 0.12rem; }

/* ---- Semantic page sections ---- */
.page-main { padding: 2.5rem 0 3rem; }

/* ---- Print Styles ---- */
@media print {
    .site-nav, .filter-bar, .breadcrumb-strip,
    .site-footer, #backToTop, .ad-placeholder,
    .no-print, nav, .side-picks { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    .activity-sheet, .craft-sheet {
        border: 1px solid #ccc;
        box-shadow: none;
        page-break-inside: avoid;
    }
    .activity-sheet::before, .craft-sheet::before { display: none; }
    .callout { page-break-inside: avoid; }
    a { color: #000; text-decoration: none; }
    .container { max-width: 100%; }
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
    .hero-workshop { padding: 2rem 0 1.5rem; }
    .binder-tab-nav { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 2px solid var(--border); }
    .binder-tab-btn { border-right: none; border-bottom: 3px solid transparent; margin-right: 0; margin-bottom: -2px; padding: 0.6rem 0.9rem; }
    .binder-tab-btn.active { border-right-color: transparent; border-bottom-color: var(--primary); }
    .time-ruler { flex-direction: column; }
    .time-ruler-item { border-right: none; border-bottom: 1.5px solid var(--border); }
    .time-ruler-item:last-child { border-bottom: none; }
    .category-shelf { gap: 0.4rem; }
    .shelf-item { min-width: 68px; padding: 0.75rem 0.65rem; font-size: 0.75rem; }
    .shelf-item .bi { font-size: 1.25rem; }
}

/* ---- Accessibility ---- */
:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
    border-radius: 3px;
}
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}
