/* ==========================================================================
   Pax Family — Feature guide page styles
   Implementation of marketing_mocks/page-guide.html from Claude Design.
   Loads after tokens.css. Everything scoped under .page.guide.

   Six tour sections, each with a custom CSS-only vignette mockup paired
   with a feature-card grid (alternates left/right via .flip).
   ========================================================================== */

/* Page-frame override — warm cream */
.page.guide { background: #FBF5EA; }
.guide .topnav { padding-top: 28px; }

/* ===== HERO ===== */
.guide-hero {
    padding: 24px var(--page-gutter) 80px;
    text-align: center; position: relative;
}
.guide-hero .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; border: 1px solid #F4E4BC; color: #8A6A1F;
    font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px;
}
.guide-hero .eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: #C9A227; }
.guide-hero h1 {
    font-family: var(--font-display); font-size: 80px; font-weight: 800;
    letter-spacing: -0.04em; line-height: .96; color: #1b2a3a;
    margin: 22px auto 18px; max-width: 980px;
}
.guide-hero h1 em { font-style: italic; color: #66A367; font-weight: 800; }
.guide-hero h1 .pencil { display: inline-block; position: relative; color: #095FA1; }
.guide-hero h1 .pencil::after {
    content: ""; position: absolute; left: -2%; right: -2%; bottom: 4px; height: 10px; z-index: -1;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 10' preserveAspectRatio='none'><path d='M0 6 Q 50 0 100 5 T 200 4' stroke='%23E9B949' stroke-width='5' fill='none' stroke-linecap='round'/></svg>") no-repeat center/100% 100%;
}
.guide-hero p.sub {
    font-size: 19px; line-height: 1.55; color: #4a5568;
    max-width: 640px; margin: 0 auto 30px;
}
.guide-hero .cta-row { display: inline-flex; gap: 18px; align-items: center; }
.guide-hero .sec-link {
    color: #095FA1; font-weight: 600; font-size: 15px; text-decoration: none;
}

/* TOC strip */
.guide-toc {
    margin: 44px auto 0; max-width: 1100px;
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.guide-toc a {
    background: #fff; border: 1px solid #f0e7d5; border-radius: 14px;
    padding: 14px 12px 12px; text-decoration: none; color: #1b2a3a;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    text-align: center; transition: transform .15s ease, box-shadow .15s ease;
}
.guide-toc a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(15,23,42,.06);
    text-decoration: none;
}
.guide-toc a .n {
    width: 28px; height: 28px; border-radius: 50%; background: #FDF4DC;
    color: #8A6A1F; font-family: var(--font-display); font-weight: 800; font-size: 14px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #F4E4BC;
}
.guide-toc a .l { font-size: 12px; font-weight: 700; letter-spacing: -0.005em; }
.guide-toc a .ic { font-size: 18px; }

/* ===== SECTION SHELL ===== */
.guide-sec { padding: 90px var(--page-gutter); position: relative; }
.guide-sec.alt { background: #fff; }
.guide-sec .wrap { max-width: 1280px; margin: 0 auto; }

.guide-sec .head {
    display: grid; grid-template-columns: 90px 1fr; gap: 24px; align-items: start;
    margin-bottom: 48px; max-width: 980px;
}
.guide-sec .head .num {
    width: 88px; height: 88px; border-radius: 50%; background: #fff;
    border: 3px solid #C9A227;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 42px;
    color: #1b2a3a; letter-spacing: -0.03em;
    box-shadow: 0 4px 12px rgba(201,162,39,.25);
}
.guide-sec.alt .head .num { background: #FBF5EA; }
.guide-sec .head .title-row .eyebrow {
    font-size: 12px; font-weight: 700; color: #C9A227;
    text-transform: uppercase; letter-spacing: .12em;
}
.guide-sec .head h2 {
    font-family: var(--font-display); font-size: 54px; font-weight: 800;
    letter-spacing: -0.03em; line-height: 1; margin: 6px 0 12px; color: #1b2a3a;
}
.guide-sec .head h2 em { font-style: italic; color: #66A367; }
.guide-sec .head .lede {
    font-size: 19px; line-height: 1.5; color: #4a5568; max-width: 680px;
}

/* ===== TWO-COL: VIGNETTE + FEATURE LIST ===== */
.guide-twocol { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: start; }
.guide-twocol.flip { grid-template-columns: .9fr 1.1fr; }
.guide-twocol.flip .vignette-wrap { order: 2; }

.vignette-wrap { position: relative; }
.vignette-wrap .sticker {
    position: absolute; z-index: 2;
    background: #FDE68A; color: #7C2D12;
    font-family: var(--font-display); font-weight: 800;
    font-size: 13px; padding: 8px 14px; border-radius: 999px;
    transform: rotate(-4deg);
    box-shadow: 0 4px 0 #F59E0B, 0 6px 12px rgba(0,0,0,.08);
    top: -14px; left: -12px;
}
.vignette-wrap .sticker.right { left: auto; right: -12px; transform: rotate(4deg); }

/* Generic vignette card */
.vg {
    background: #fff; border-radius: 24px; padding: 24px;
    border: 1px solid #f0e7d5;
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
}
.guide-sec.alt .vg { background: #FBF5EA; }

/* Feature grid (right side) */
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grid .f {
    background: #fff; border-radius: 16px; padding: 18px 18px 16px;
    border: 1px solid #f0e7d5;
    display: flex; flex-direction: column; gap: 6px;
}
.guide-sec.alt .f-grid .f { background: #FBF5EA; border-color: #f0e7d5; }
.f-grid .f .ic {
    width: 34px; height: 34px; border-radius: 10px; background: #FDF4DC;
    display: flex; align-items: center; justify-content: center; font-size: 16px;
    border: 1px solid #F4E4BC; margin-bottom: 4px;
}
.f-grid .f.blue .ic { background: #E8F1F9; border-color: #C9DBEE; }
.f-grid .f.green .ic { background: #EEF6EC; border-color: #D4E8D3; }
.f-grid .f h4 {
    font-family: var(--font-display); font-size: 15px; font-weight: 800;
    letter-spacing: -0.005em; margin: 0; color: #1b2a3a;
}
.f-grid .f p { font-size: 13px; line-height: 1.45; color: #4a5568; margin: 0; }

/* ===== SECTION 1 — DASHBOARD VIGNETTE ===== */
.vg-dash { padding: 18px; }
.vg-dash .top {
    display: flex; align-items: center; gap: 10px;
    padding: 6px 4px 14px; border-bottom: 1px dashed rgba(15,23,42,.1);
}
.vg-dash .top .who { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #1b2a3a; }
.vg-dash .top .day { font-size: 12px; color: #64748b; margin-left: auto; }
.vg-dash .row1 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.vg-dash .panel { background: #FBF5EA; border-radius: 14px; padding: 14px; border: 1px solid #f0e7d5; }
.guide-sec.alt .vg-dash .panel { background: #fff; }
.vg-dash .panel.weather {
    background: linear-gradient(135deg,#E8F1F9,#D6E6F3); border-color: #C9DBEE;
    display: flex; align-items: center; gap: 14px;
}
.vg-dash .panel.weather .icon { font-size: 38px; }
.vg-dash .panel.weather .t {
    font-family: var(--font-display); font-weight: 800; font-size: 24px;
    letter-spacing: -0.02em; color: #0a3a66; line-height: 1;
}
.vg-dash .panel.weather .l { font-size: 11px; color: #0a3a66; opacity: .75; margin-top: 4px; }
.vg-dash .panel h5 {
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
    color: #8A6A1F; margin: 0 0 10px;
}
.vg-dash .ev {
    display: flex; align-items: center; gap: 8px; padding: 6px 0;
    font-size: 12px; color: #1b2a3a; border-bottom: 1px dashed rgba(15,23,42,.06);
}
.vg-dash .ev:last-child { border: 0; }
.vg-dash .ev .time { font-family: var(--font-display); font-weight: 800; font-size: 11px; color: #64748b; min-width: 46px; }
.vg-dash .ev .bar { width: 3px; height: 14px; border-radius: 2px; flex-shrink: 0; }
.vg-dash .row2 { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 12px; }
.vg-dash .week { background: #fff; border: 1px solid #f0e7d5; border-radius: 14px; padding: 14px; }
.guide-sec.alt .vg-dash .week { background: #FBF5EA; }
.vg-dash .week .days { display: grid; grid-template-columns: repeat(7,1fr); gap: 6px; margin-top: 8px; }
.vg-dash .week .d {
    aspect-ratio: 1; border-radius: 8px;
    background: #FBF5EA; border: 1px solid #f0e7d5;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    font-size: 10px; color: #64748b;
}
.guide-sec.alt .vg-dash .week .d { background: #fff; }
.vg-dash .week .d.today { background: #C9A227; color: #fff; border-color: #C9A227; font-weight: 800; }
.vg-dash .week .d .num { font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #1b2a3a; line-height: 1; }
.vg-dash .week .d.today .num { color: #fff; }
.vg-dash .week .d .dot { width: 5px; height: 5px; border-radius: 50%; background: #66A367; margin-top: 3px; }
.vg-dash .podium {
    background: linear-gradient(135deg,#FDF4DC,#F4E4BC);
    border: 1px solid #F4E4BC; border-radius: 14px; padding: 14px;
    position: relative; overflow: hidden;
}
.vg-dash .podium .row {
    display: flex; align-items: flex-end; gap: 6px;
    justify-content: center; margin-top: 10px;
}
.vg-dash .podium .col { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.vg-dash .podium .col .av {
    width: 28px; height: 28px; border-radius: 50%;
    color: #fff; font-weight: 800; font-size: 11px;
    display: flex; align-items: center; justify-content: center;
}
.vg-dash .podium .col .bar {
    width: 34px; border-radius: 6px 6px 0 0; background: #C9A227;
    display: flex; align-items: flex-start; justify-content: center; padding-top: 3px;
    color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 10px;
}
.vg-dash .podium .col.silver .bar { background: #94a3b8; height: 38px; }
.vg-dash .podium .col.gold .bar { background: #C9A227; height: 50px; }
.vg-dash .podium .col.bronze .bar { background: #b87333; height: 30px; }

/* ===== SECTION 2 — KIDS PAGES ===== */
.vg-kids {
    padding: 0; background: transparent; border: 0; box-shadow: none;
    display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.vg-kids .kp {
    border-radius: 22px; padding: 20px; min-height: 280px;
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; gap: 10px;
    box-shadow: 0 14px 30px rgba(15,23,42,.08);
}
.vg-kids .kp.sophie {
    background: #FDF4DC; color: #5a4a1f;
    background-image: radial-gradient(circle at 1px 1px, rgba(201,162,39,.18) 1px, transparent 0);
    background-size: 14px 14px;
}
.vg-kids .kp.liam {
    background: #E8F1F9; color: #0a3a66;
    background-image: linear-gradient(135deg, transparent 48%, rgba(9,95,161,.08) 48% 52%, transparent 52%);
    background-size: 14px 14px;
}
.vg-kids .kp.jack { background: #EEF6EC; color: #1e3a1e; }
.vg-kids .kp.dayoff {
    background: linear-gradient(135deg,#FDF4DC,#F4E4BC);
    border: 2px solid #C9A227; color: #5a4a1f;
}
.vg-kids .kp .head { display: flex; align-items: center; gap: 10px; }
.vg-kids .kp .av {
    width: 42px; height: 42px; border-radius: 50%;
    color: #fff; font-weight: 800; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); border: 2px solid #fff;
}
.vg-kids .kp .name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.01em; line-height: 1; }
.vg-kids .kp .stat { font-size: 11px; opacity: .7; margin-top: 3px; }
.vg-kids .kp .ring {
    margin-left: auto; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 800; font-size: 11px;
    position: relative;
}
.vg-kids .kp .ring::after {
    content: ""; position: absolute; inset: 4px;
    background: #fff; border-radius: 50%;
}
.vg-kids .kp .ring span { position: relative; z-index: 1; color: #1b2a3a; }
.vg-kids .kp.sophie .ring { background: conic-gradient(#C9A227 0 60%, rgba(201,162,39,.2) 60% 100%); }
.vg-kids .kp.liam .ring { background: conic-gradient(#095FA1 0 100%, rgba(9,95,161,.2) 0 100%); }
.vg-kids .kp.jack .ring { background: conic-gradient(#66A367 0 40%, rgba(102,163,103,.2) 40% 100%); }
.vg-kids .kp .task {
    background: rgba(255,255,255,.85); border-radius: 10px; padding: 8px 10px;
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: #1b2a3a;
}
.vg-kids .kp .task .cb {
    width: 16px; height: 16px; border-radius: 5px;
    border: 2px solid #cbd5e1; flex-shrink: 0;
}
.vg-kids .kp .task.done .cb {
    background: #22c55e; border-color: #22c55e; color: #fff;
    font-size: 10px; display: flex; align-items: center; justify-content: center;
}
.vg-kids .kp .task.done .t { text-decoration: line-through; color: #94a3b8; }
.vg-kids .kp .toast {
    margin-top: auto; background: #fff; border-radius: 10px; padding: 8px 10px;
    font-size: 11px; color: #1b2a3a; border-left: 3px solid #66A367;
    line-height: 1.35;
    font-family: var(--font-display); font-weight: 700;
}
.vg-kids .kp.dayoff .center { margin: auto; text-align: center; }
.vg-kids .kp.dayoff .palm { font-size: 48px; }
.vg-kids .kp.dayoff .label {
    font-family: var(--font-display); font-weight: 800; font-size: 22px;
    letter-spacing: -0.02em; margin-top: 6px;
}
.vg-kids .kp.dayoff .sub { font-size: 12px; opacity: .75; margin-top: 4px; }

/* ===== SECTION 3 — TODOS LIST ===== */
.vg-todos { padding: 20px; }
.vg-todos .filt { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.vg-todos .filt .tag {
    font-size: 11px; font-weight: 700; padding: 5px 10px; border-radius: 999px;
    background: #FBF5EA; color: #8A6A1F; border: 1px solid #f0e7d5;
}
.guide-sec.alt .vg-todos .filt .tag { background: #fff; }
.vg-todos .filt .tag.school { background: #E8F1F9; color: #095FA1; border-color: #C9DBEE; }
.vg-todos .filt .tag.chore { background: #EEF6EC; color: #166534; border-color: #D4E8D3; }
.vg-todos .filt .tag.activity { background: #FDF4DC; color: #8A6A1F; border-color: #F4E4BC; }
.vg-todos .filt .tag.active { background: #1b2a3a; color: #fff; border-color: #1b2a3a; }
.vg-todos .group { margin-bottom: 14px; }
.vg-todos .group .gh {
    display: flex; align-items: center; gap: 8px; padding: 8px 4px;
    font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #1b2a3a;
    border-bottom: 1px dashed rgba(15,23,42,.1); margin-bottom: 8px;
}
.vg-todos .group .gh .e { font-size: 18px; }
.vg-todos .group .gh .c {
    margin-left: auto; font-size: 11px; color: #64748b;
    font-weight: 600; font-family: var(--font-body);
}
.vg-todos .item {
    background: #FBF5EA; border-radius: 12px; padding: 10px 12px;
    display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
    border: 1px solid #f0e7d5;
}
.guide-sec.alt .vg-todos .item { background: #fff; }
.vg-todos .item .grip { color: #cbd5e1; font-size: 14px; cursor: grab; line-height: 1; }
.vg-todos .item .cb {
    width: 18px; height: 18px; border-radius: 5px;
    border: 2px solid #cbd5e1; flex-shrink: 0;
}
.vg-todos .item.done .cb {
    background: #22c55e; border-color: #22c55e; color: #fff;
    font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.vg-todos .item.locked .cb {
    border-color: #C9A227; background: #FDF4DC; color: #8A6A1F;
    font-size: 11px; display: flex; align-items: center; justify-content: center;
}
.vg-todos .item .t { font-size: 13px; color: #1b2a3a; font-weight: 600; }
.vg-todos .item.done .t { text-decoration: line-through; color: #94a3b8; }
.vg-todos .item .meta { display: flex; gap: 6px; align-items: center; margin-left: auto; }
.vg-todos .item .b {
    font-size: 10px; font-weight: 800; padding: 3px 7px;
    border-radius: 6px; letter-spacing: .02em;
}
.vg-todos .item .b.school { background: #E8F1F9; color: #095FA1; }
.vg-todos .item .b.chore { background: #EEF6EC; color: #166534; }
.vg-todos .item .b.act { background: #FDF4DC; color: #8A6A1F; }
.vg-todos .item .b.over { background: #FFF5F5; color: #B91C1C; }
.vg-todos .item .b.recur { background: #fff; color: #64748b; border: 1px solid #e2e8f0; }
.vg-todos .item .due { font-size: 11px; color: #64748b; font-weight: 600; }

/* ===== SECTION 4 — CALENDAR ===== */
.vg-cal { padding: 20px; }
.vg-cal .ch { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.vg-cal .ch .month {
    font-family: var(--font-display); font-weight: 800; font-size: 20px;
    color: #1b2a3a; letter-spacing: -0.02em;
}
.vg-cal .ch .nav { margin-left: auto; display: flex; gap: 6px; }
.vg-cal .ch .nav .btn {
    width: 28px; height: 28px; border-radius: 50%;
    background: #FBF5EA; border: 1px solid #f0e7d5;
    display: flex; align-items: center; justify-content: center;
    color: #64748b; font-size: 14px;
}
.guide-sec.alt .vg-cal .ch .nav .btn { background: #fff; }
.vg-cal .grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; }
.vg-cal .dow {
    font-size: 10px; font-weight: 800; color: #94a3b8;
    text-transform: uppercase; letter-spacing: .08em;
    text-align: center; padding: 4px 0;
}
.vg-cal .day {
    aspect-ratio: 1.05/1; background: #FBF5EA;
    border: 1px solid #f0e7d5; border-radius: 8px;
    padding: 4px 5px;
    display: flex; flex-direction: column; gap: 2px;
    position: relative;
}
.guide-sec.alt .vg-cal .day { background: #fff; }
.vg-cal .day.muted { opacity: .45; }
.vg-cal .day.today { background: #FDF4DC; border-color: #C9A227; }
.vg-cal .day .n {
    font-family: var(--font-display); font-weight: 800; font-size: 11px;
    color: #1b2a3a; line-height: 1;
}
.vg-cal .day .ev {
    font-size: 9px; font-weight: 700; padding: 1px 4px; border-radius: 3px;
    line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.vg-cal .day .ev.blue { background: #E8F1F9; color: #095FA1; }
.vg-cal .day .ev.green { background: #EEF6EC; color: #166534; }
.vg-cal .day .ev.gold { background: #FDF4DC; color: #8A6A1F; }
.vg-cal .day .ev.red { background: #FFF5F5; color: #B91C1C; }
.vg-cal .day .ev.purple { background: #F3E8FF; color: #6B21A8; }
.vg-cal .day .star { position: absolute; top: 3px; right: 4px; color: #C9A227; font-size: 10px; }
.vg-cal .legend {
    display: flex; gap: 14px; flex-wrap: wrap;
    margin-top: 14px; padding-top: 12px;
    border-top: 1px dashed rgba(15,23,42,.1);
}
.vg-cal .legend .it { display: flex; align-items: center; gap: 6px; font-size: 11px; color: #4a5568; }
.vg-cal .legend .it .sw { width: 10px; height: 10px; border-radius: 3px; }

/* ===== SECTION 5 — REPORTS ===== */
.vg-reports { padding: 20px; }
.vg-reports .rh {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(15,23,42,.1);
    margin-bottom: 14px;
}
.vg-reports .rh .av {
    width: 38px; height: 38px; border-radius: 50%;
    background: linear-gradient(135deg,#c9a227,#e9b949); color: #fff;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
}
.vg-reports .rh .name { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #1b2a3a; }
.vg-reports .rh .stat { font-size: 11px; color: #64748b; }
.vg-reports .rh .medal { margin-left: auto; font-size: 24px; }
.vg-reports .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vg-reports .stat-card {
    background: #FBF5EA; border: 1px solid #f0e7d5;
    border-radius: 12px; padding: 12px;
}
.guide-sec.alt .vg-reports .stat-card { background: #fff; }
.vg-reports .stat-card h6 {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: #8A6A1F; margin: 0 0 6px;
}
.vg-reports .stat-card .big {
    font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -0.03em;
    background: linear-gradient(135deg,#095FA1,#66A367);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    line-height: 1;
}
.vg-reports .stat-card .small { font-size: 11px; color: #4a5568; margin-top: 4px; }
.vg-reports .heatmap {
    display: grid; grid-template-columns: repeat(14,1fr);
    gap: 3px; margin-top: 8px;
}
.vg-reports .heatmap .c { aspect-ratio: 1; border-radius: 3px; background: #f0e7d5; }
.vg-reports .heatmap .c.l1 { background: #E8F1F9; }
.vg-reports .heatmap .c.l2 { background: #A9C9E5; }
.vg-reports .heatmap .c.l3 { background: #5A93C5; }
.vg-reports .heatmap .c.l4 { background: #095FA1; }
.vg-reports .ai {
    margin-top: 12px;
    background: linear-gradient(135deg,#095FA1 0%,#0d7cc4 100%); color: #fff;
    border-radius: 12px; padding: 14px;
    font-size: 12px; line-height: 1.5;
}
.vg-reports .ai .ai-h {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 6px;
    font-family: var(--font-display); font-weight: 800; font-size: 13px;
}
.vg-reports .ai .ai-h .badge {
    background: rgba(255,255,255,.2); padding: 2px 7px;
    border-radius: 6px; font-size: 10px; letter-spacing: .04em;
}
.vg-reports .ai p { margin: 0; opacity: .95; }

/* ===== SECTION 6 — ADMIN ===== */
.vg-admin { padding: 20px; }
.vg-admin .topbar {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(15,23,42,.1);
    margin-bottom: 14px;
}
.vg-admin .topbar .title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #1b2a3a; }
.vg-admin .topbar .pill {
    font-size: 10px; font-weight: 800;
    background: #EEF6EC; color: #166534;
    padding: 3px 8px; border-radius: 999px; margin-left: auto;
}
.vg-admin .row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.vg-admin .card {
    background: #FBF5EA; border: 1px solid #f0e7d5;
    border-radius: 12px; padding: 12px;
    display: flex; flex-direction: column; gap: 6px;
}
.guide-sec.alt .vg-admin .card { background: #fff; }
.vg-admin .card .ic { font-size: 20px; }
.vg-admin .card .l {
    font-size: 10px; font-weight: 800; text-transform: uppercase;
    letter-spacing: .08em; color: #8A6A1F;
}
.vg-admin .card .v {
    font-family: var(--font-display); font-weight: 800; font-size: 18px;
    color: #1b2a3a; letter-spacing: -0.02em; line-height: 1;
}
.vg-admin .toggles {
    margin-top: 12px;
    background: #fff; border-radius: 12px; padding: 12px;
    border: 1px solid #f0e7d5;
}
.guide-sec.alt .vg-admin .toggles { background: #FBF5EA; }
.vg-admin .toggles .tg {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(15,23,42,.08);
    font-size: 13px; color: #1b2a3a;
}
.vg-admin .toggles .tg:last-child { border: 0; }
.vg-admin .toggles .tg .sw {
    margin-left: auto; width: 34px; height: 18px;
    border-radius: 999px; background: #cbd5e1;
    position: relative; flex-shrink: 0;
}
.vg-admin .toggles .tg .sw::after {
    content: ""; position: absolute; left: 2px; top: 2px;
    width: 14px; height: 14px; border-radius: 50%; background: #fff;
}
.vg-admin .toggles .tg.on .sw { background: #66A367; }
.vg-admin .toggles .tg.on .sw::after { left: auto; right: 2px; }
.vg-admin .toggles .tg .em { font-size: 14px; }

/* ===== EMAIL FAMILY VIGNETTE (extra block beneath admin) ===== */
.vg-email {
    background: #fff; border-radius: 24px; padding: 0;
    border: 1px solid #f0e7d5;
    box-shadow: 0 18px 40px rgba(15,23,42,.08);
    overflow: hidden;
}
.guide-sec.alt .vg-email { background: #FBF5EA; }
.vg-email .bar {
    background: #1b2a3a; color: #fff;
    padding: 10px 14px;
    display: flex; align-items: center; gap: 10px;
    font-size: 11px;
}
.vg-email .bar .dots { display: flex; gap: 4px; }
.vg-email .bar .dots .d { width: 8px; height: 8px; border-radius: 50%; background: #475569; }
.vg-email .bar .from { margin-left: auto; opacity: .7; }
.vg-email .body { padding: 18px 20px; }
.vg-email .body h5 {
    font-family: var(--font-display); font-weight: 800; font-size: 16px;
    margin: 0 0 4px; color: #1b2a3a; letter-spacing: -0.01em;
}
.vg-email .body .mt { font-size: 11px; color: #64748b; margin-bottom: 10px; }
.vg-email .body .line {
    display: flex; gap: 10px; padding: 8px 0;
    border-bottom: 1px dashed rgba(15,23,42,.08);
    font-size: 12px; color: #1b2a3a; align-items: center;
}
.vg-email .body .line:last-child { border: 0; }
.vg-email .body .line .av {
    width: 24px; height: 24px; border-radius: 50%;
    color: #fff; font-weight: 800; font-size: 10px;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.vg-email .body .line .stat { margin-left: auto; font-size: 11px; font-weight: 700; }

/* ===== READY-TO-EXPLORE FINAL ===== */
.guide-final {
    padding: 100px var(--page-gutter); background: #095FA1; color: #fff;
    text-align: center; position: relative; overflow: hidden;
}
.guide-final::before, .guide-final::after { content: ""; position: absolute; border-radius: 50%; }
.guide-final::before {
    width: 300px; height: 300px;
    background: rgba(201,162,39,.2);
    top: -150px; left: -100px;
}
.guide-final::after {
    width: 220px; height: 220px;
    background: rgba(102,163,103,.2);
    bottom: -100px; right: -80px;
}
.guide-final h2 {
    font-family: var(--font-display); font-size: 56px; font-weight: 800;
    letter-spacing: -0.025em; margin: 0 0 16px; position: relative;
}
.guide-final h2 em { font-style: italic; color: #E9B949; }
.guide-final p {
    font-size: 19px; color: rgba(255,255,255,.85);
    max-width: 560px; margin: 0 auto 32px;
    line-height: 1.55; position: relative;
}
.guide-final .cta-row { position: relative; display: inline-flex; gap: 16px; align-items: center; }
.guide-final .sec-link {
    color: #fff; font-weight: 600; font-size: 15px;
    text-decoration: none; opacity: .85;
}
.guide-final .sec-link:hover { opacity: 1; color: #fff; }

/* Footer override — warm cream */
.guide-footer { background: #FBF5EA; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .guide-hero { padding: 24px 32px 64px; }
    .guide-hero h1 { font-size: 56px; }
    .guide-toc { grid-template-columns: repeat(3, 1fr); }

    .guide-sec, .guide-final { padding: 72px 32px; }
    .guide-sec .head { grid-template-columns: 72px 1fr; gap: 18px; }
    .guide-sec .head .num { width: 70px; height: 70px; font-size: 32px; }
    .guide-sec .head h2 { font-size: 38px; }

    .guide-twocol { grid-template-columns: 1fr; gap: 32px; }
    .guide-twocol.flip .vignette-wrap { order: 0; }
    .vg-kids { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
    .guide-hero { padding: 16px 20px 48px; }
    .guide-hero h1 { font-size: 38px; }
    .guide-hero .cta-row { flex-direction: column; align-items: stretch; }
    .guide-toc { grid-template-columns: repeat(2, 1fr); }

    .guide-sec, .guide-final { padding: 56px 20px; }
    .guide-sec .head { grid-template-columns: 1fr; }
    .guide-sec .head .num { width: 60px; height: 60px; font-size: 26px; }
    .guide-sec .head h2 { font-size: 30px; }
    .guide-sec .head .lede { font-size: 16px; }

    .f-grid { grid-template-columns: 1fr; }

    .vg-dash .row1, .vg-dash .row2 { grid-template-columns: 1fr; }

    .vg-cal .day { aspect-ratio: 1; padding: 3px; }
    .vg-cal .day .n { font-size: 10px; }
    .vg-cal .day .ev { font-size: 8px; padding: 0 3px; }

    .vg-admin .row { grid-template-columns: 1fr; }

    .guide-final h2 { font-size: 32px; }
    .guide-final p { font-size: 16px; }
    .guide-final .cta-row { flex-direction: column; }
}
