/* =========================================================================
   site.css — Dom splnených prianí
   Vizuál vychádza z obálky: čierna, hmla, signálna červená, drsné kondenzované písmo.
   Farby a písma sú v :root, ďalšia kniha si ich len prepíše.
   ========================================================================= */

:root {
    --bg: #0a0a0b;
    --bg-2: #101012;
    --surface: #161619;
    --surface-2: #1d1d21;
    --text: #e6e4e1;
    --heading: #f6f4f1;
    --muted: #9d9ea5;
    --border: #2a2a30;
    --border-soft: #1f1f24;
    --accent: #e0262c;          /* červená z obálky */
    --accent-hover: #ff3a40;
    --accent-deep: #8f1418;
    --on-accent: #ffffff;
    --fog: #cfd3d6;

    --font-display: 'Bebas Neue', 'Oswald', Impact, 'Arial Narrow', sans-serif;
    --font-body: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;

    --maxw: 1120px;
    --header-h: 64px;
    --radius: 4px;
    --tr: .3s ease;
    --shadow: 0 18px 50px rgba(0, 0, 0, .55);

    /* farby lišty súhlasu s cookies (CMP) */
    --cc-bg: #161619;
    --cc-primary-color: #f6f4f1;
    --cc-secondary-color: #b9b9c0;
    --cc-btn-primary-bg: #e0262c;
    --cc-btn-primary-hover-bg: #ff3a40;
    --cc-btn-primary-color: #fff;
    --cc-btn-primary-hover-color: #fff;
    --cc-btn-secondary-bg: #26262b;
    --cc-btn-secondary-hover-bg: #303036;
    --cc-btn-secondary-color: #f6f4f1;
    --cc-btn-secondary-hover-color: #fff;
    --cc-separator-border-color: #2a2a30;
    --cc-toggle-on-bg: #e0262c;
    --cc-cookie-category-block-bg: #1d1d21;
    --cc-cookie-category-block-border: #2a2a30;
    --cc-cookie-category-block-hover-bg: #232328;
    --cc-cookie-category-block-hover-border: #33333a;
    --cc-cookie-category-expanded-block-bg: #161619;
    --cc-footer-bg: #101012;
    --cc-footer-color: #b9b9c0;
    --cc-footer-border-color: #2a2a30;
    --cc-modal-border-radius: 6px;
    --cc-btn-border-radius: 4px;
}

/* --- Základ -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
/* jemné zrno ako na obálke */
body::after {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none; z-index: 900;
    opacity: .06; mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-hover); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--heading); }
p + p { margin-top: 1em; }
strong { color: var(--heading); font-weight: 600; }
:focus-visible { outline: 2px solid var(--accent-hover); outline-offset: 3px; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--heading);
    line-height: 1.02;
    letter-spacing: .01em;
}
h1 { font-size: clamp(2.8rem, 8vw, 5.2rem); }
h2 { font-size: clamp(2.2rem, 5.5vw, 3.4rem); margin-bottom: 1.2rem; }
h3 { font-size: 1.7rem; margin-bottom: .5rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }
.narrow { max-width: 760px; }
section { padding: clamp(3.5rem, 8vw, 6rem) 0; position: relative; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: .78rem; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase;
    color: var(--accent-hover);
    margin-bottom: .9rem;
}
.lead { font-size: 1.2rem; color: var(--heading); }
.muted { color: var(--muted); }
.small { font-size: .88rem; }

/* --- Tlačidlá ------------------------------------------------------------ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    min-height: 50px; padding: .75rem 1.5rem;
    font-family: var(--font-body); font-size: 1rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    border-radius: var(--radius); border: 2px solid transparent;
    cursor: pointer; transition: background var(--tr), color var(--tr), border-color var(--tr), transform .15s ease;
    text-align: center; line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 20px; height: 20px; flex: none; }
.btn-primary { background: var(--accent); color: var(--on-accent); }
.btn-primary:hover { background: var(--accent-hover); color: var(--on-accent); }
.btn-ghost { border-color: rgba(255, 255, 255, .35); color: var(--heading); background: rgba(0, 0, 0, .25); }
.btn-ghost:hover { border-color: var(--heading); color: var(--heading); background: rgba(255, 255, 255, .06); }
.btn-block { width: 100%; }
.btn[aria-disabled="true"] { opacity: .45; pointer-events: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- Hlavička ------------------------------------------------------------ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 800;
    height: var(--header-h);
    transition: background var(--tr), border-color var(--tr);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(10, 10, 11, .9); backdrop-filter: blur(10px); border-bottom-color: var(--border-soft); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo { font-family: var(--font-display); font-size: 1.7rem; color: var(--heading); line-height: 1; letter-spacing: .02em; }
.logo span { color: var(--accent); }
.logo:hover { color: var(--heading); }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a { color: var(--text); font-size: .88rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a:hover { color: var(--accent-hover); }
.site-nav .nav-cta { color: var(--on-accent); background: var(--accent); padding: .45rem .95rem; border-radius: var(--radius); }
.site-nav .nav-cta:hover { background: var(--accent-hover); color: var(--on-accent); }
.menu-toggle { display: none; background: none; border: 0; color: var(--heading); cursor: pointer; padding: .5rem; }
.menu-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
    .menu-toggle { display: block; }
    .site-nav {
        position: absolute; top: var(--header-h); left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: var(--surface); border-bottom: 1px solid var(--border);
        padding: .5rem 1.25rem 1rem; display: none;
    }
    .site-nav.open { display: flex; }
    .site-nav a { padding: .85rem 0; border-bottom: 1px solid var(--border-soft); }
    .site-nav .nav-cta { margin-top: .8rem; text-align: center; border-bottom: 0; }
    .site-header { background: rgba(10, 10, 11, .9); backdrop-filter: blur(10px); }
}

/* --- Hero ---------------------------------------------------------------- */
.hero {
    min-height: 100svh;
    display: flex; align-items: center;
    padding: calc(var(--header-h) + 2.5rem) 0 4rem;
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(90deg, var(--bg) 0%, rgba(10,10,11,.92) 38%, rgba(10,10,11,.55) 70%, rgba(10,10,11,.8) 100%),
        linear-gradient(0deg, var(--bg) 0%, transparent 35%),
        url('../../img/ruka-dom-1400.webp') right center / cover no-repeat;
    filter: grayscale(.4);
}
.hero-bg::after { /* červená šmuha ako na obálke */
    content: ''; position: absolute; right: -10%; top: 15%; width: 55%; height: 70%;
    background: radial-gradient(closest-side, rgba(224, 38, 44, .28), transparent 75%);
    filter: blur(20px);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .red { color: var(--accent); }
.hero-sub { font-size: clamp(1.1rem, 2.2vw, 1.3rem); color: var(--heading); max-width: 34rem; margin-bottom: 1.6rem; }
.hero-sub em { color: var(--accent-hover); font-style: normal; font-weight: 600; }
.hero .btn-row { margin-bottom: 1.4rem; }
.hero-by { color: var(--muted); font-size: .95rem; }
.hero-by strong { color: var(--text); }

.cover {
    position: relative; justify-self: center;
    width: min(100%, 380px);
    transform: rotate(1.5deg);
}
.cover img { border-radius: 2px; box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.06), 0 0 80px rgba(224, 38, 44, .25); }
.cover-badge {
    position: absolute; left: -1.2rem; bottom: 1.8rem;
    background: var(--accent); color: #fff;
    font-family: var(--font-display); font-size: 1.25rem; line-height: 1.05;
    padding: .55rem .8rem; transform: rotate(-4deg);
    box-shadow: 0 8px 24px rgba(0,0,0,.5);
}

@media (max-width: 860px) {
    .hero { min-height: 0; padding-top: calc(var(--header-h) + 1.5rem); }
    .hero-grid { grid-template-columns: 1fr; }
    .cover { order: -1; width: min(62%, 260px); }
    .hero-bg { background:
        linear-gradient(0deg, var(--bg) 10%, rgba(10,10,11,.75) 60%, rgba(10,10,11,.9) 100%),
        url('../../img/ruka-dom-1400.webp') center / cover no-repeat; }
}

/* --- Citát z knihy ------------------------------------------------------- */
.book-quote {
    font-size: clamp(1.25rem, 3vw, 1.65rem);
    line-height: 1.45; font-style: italic; color: var(--heading);
    border-left: 3px solid var(--accent); padding-left: 1.3rem;
}
.book-quote cite { display: block; margin-top: .8rem; font-size: .9rem; font-style: normal; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }

/* --- Audio prehrávač ----------------------------------------------------- */
.player {
    display: grid; grid-template-columns: auto 1fr; gap: 1.2rem 1.5rem; align-items: center;
    background: linear-gradient(135deg, var(--surface-2), var(--surface));
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: clamp(1.2rem, 4vw, 2rem);
    box-shadow: var(--shadow);
    margin-top: 2rem;
}
.ap-toggle {
    width: 76px; height: 76px; border-radius: 50%;
    border: 0; cursor: pointer;
    background: var(--accent); color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 0 0 0 rgba(224, 38, 44, .6);
    animation: pulse 2.4s infinite;
    transition: background var(--tr), transform .15s;
}
.ap-toggle:hover { background: var(--accent-hover); transform: scale(1.04); }
.ap-toggle svg { width: 30px; height: 30px; }
.ap-toggle .i-pause { display: none; }
.player.is-playing .ap-toggle { animation: none; }
.player.is-playing .ap-toggle .i-play { display: none; }
.player.is-playing .ap-toggle .i-pause { display: block; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(224,38,44,.55); } 70% { box-shadow: 0 0 0 18px rgba(224,38,44,0); } 100% { box-shadow: 0 0 0 0 rgba(224,38,44,0); } }
@media (prefers-reduced-motion: reduce) { .ap-toggle { animation: none; } html { scroll-behavior: auto; } }

.ap-title { font-family: var(--font-display); font-size: 1.7rem; color: var(--heading); line-height: 1.05; }
.ap-meta { color: var(--muted); font-size: .92rem; }
.ap-bar { grid-column: 1 / -1; display: flex; align-items: center; gap: .8rem; font-variant-numeric: tabular-nums; font-size: .88rem; color: var(--muted); }
.ap-seek {
    --p: 0%;
    flex: 1; height: 6px; border-radius: 3px; cursor: pointer;
    -webkit-appearance: none; appearance: none;
    background: linear-gradient(90deg, var(--accent) var(--p), #34343a var(--p));
}
.ap-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 0; }
.ap-seek::-moz-range-thumb { width: 16px; height: 16px; border-radius: 50%; background: #fff; border: 0; }

/* --- O knihe -------------------------------------------------------------- */
.two-col { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
.blurb-hook { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.4rem); color: var(--accent); line-height: 1.05; margin-bottom: 1rem; }
.facts { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.3rem 1.4rem; }
.facts dl { display: grid; grid-template-columns: auto 1fr; gap: .45rem 1.2rem; font-size: .95rem; }
.facts dt { color: var(--muted); }
.facts dd { color: var(--heading); }
.tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1.4rem; }
.tags li { list-style: none; font-size: .82rem; padding: .25rem .7rem; border: 1px solid var(--border); border-radius: 99px; color: var(--text); }

.ratings { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 2.5rem; }
.rating { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1rem .5rem; color: var(--text); }
a.rating:hover { border-color: var(--accent); color: var(--text); }
.rating b { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1; color: var(--heading); font-weight: 400; }
.rating span { font-size: .8rem; color: var(--muted); }
@media (max-width: 520px) { .rating b { font-size: 1.7rem; } }

/* --- Skutočný dom -------------------------------------------------------- */
.real-house figure { margin: 0; }
.real-house figure img { border-radius: 4px; box-shadow: var(--shadow); }
.real-house figcaption { font-size: .82rem; color: var(--muted); margin-top: .6rem; }
.author-quote { margin-top: 1.6rem; padding: 1.2rem 1.4rem; background: var(--surface); border-left: 3px solid var(--accent); border-radius: 0 6px 6px 0; }
.author-quote p { font-style: italic; color: var(--heading); }
.author-quote footer { margin-top: .6rem; font-size: .85rem; color: var(--muted); }

/* posuvník pred/po: ľavá strana = pred (--pos), pravá = po */
.compare { position: relative; --pos: 50%; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow); aspect-ratio: 1 / 1; background: var(--surface); user-select: none; }
.compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.compare .cmp-after { clip-path: inset(0 0 0 var(--pos)); }
.compare::after { content: ''; position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: #fff; box-shadow: 0 0 12px rgba(0,0,0,.6); pointer-events: none; }
.cmp-handle {
    position: absolute; top: 50%; left: var(--pos); z-index: 2;
    width: 48px; height: 48px; margin: -24px 0 0 -24px; border-radius: 50%;
    background: var(--accent); color: #fff; display: grid; place-items: center;
    box-shadow: 0 4px 18px rgba(0,0,0,.55); pointer-events: none;
}
.cmp-handle svg { width: 24px; height: 24px; }
.cmp-label {
    position: absolute; top: .8rem; z-index: 2; pointer-events: none;
    font-family: var(--font-display); font-size: 1.2rem; letter-spacing: .04em; line-height: 1;
    padding: .35rem .6rem; background: rgba(10,10,11,.72); color: #fff; border-radius: 3px;
}
.cmp-label-before { left: .8rem; }
.cmp-label-after { right: .8rem; }
.compare input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 3; touch-action: pan-y; }
.compare:has(input:focus-visible) .cmp-handle { outline: 3px solid #fff; outline-offset: 3px; }

/* --- Recenzie ------------------------------------------------------------ */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; margin-top: 2rem; }
.review { background: var(--surface); border: 1px solid var(--border); border-radius: 6px; padding: 1.4rem; display: flex; flex-direction: column; }
.review::before { content: ''; width: 34px; height: 3px; background: var(--accent); margin-bottom: 1rem; }
.review p { color: var(--heading); flex: 1; }
.review footer { margin-top: 1rem; font-size: .85rem; color: var(--muted); }
.review footer a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* --- Autorka ------------------------------------------------------------- */
.author { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.author-photo { position: relative; max-width: 380px; justify-self: center; }
.author-photo::before {
    content: ''; position: absolute; inset: 12% 6% 0;
    background: radial-gradient(closest-side, rgba(224,38,44,.55), rgba(224,38,44,.15) 60%, transparent 75%);
    filter: blur(8px);
}
.author-photo img { position: relative; }
.awards { list-style: none; margin-top: 1.4rem; display: grid; gap: .5rem; }
.awards li { padding-left: 1.4rem; position: relative; }
.awards li::before { content: ''; position: absolute; left: 0; top: .72em; width: .6rem; height: 2px; background: var(--accent); }
@media (max-width: 860px) { .author { grid-template-columns: 1fr; } .author-photo { max-width: 260px; } }

/* --- Ukážka na čítanie + e-mail ------------------------------------------ */
.sample-box { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
@media (max-width: 760px) { .sample-box { grid-template-columns: 1fr; } }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: clamp(1.2rem, 3vw, 1.8rem); }
.panel h3 { font-size: 1.6rem; }
.panel .btn-row { margin-top: 1.1rem; }
.pending-note { margin-top: .8rem; font-size: .88rem; color: var(--muted); }

.subscribe input[type="email"] {
    width: 100%; min-height: 50px; padding: .7rem .9rem;
    font: inherit; color: var(--heading);
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
    margin: 1rem 0 .7rem;
}
.subscribe input[type="email"]:focus { border-color: var(--accent); outline: none; }
.subscribe .check { display: flex; gap: .6rem; align-items: flex-start; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; }
.subscribe .check input { margin-top: .3rem; accent-color: var(--accent); width: 18px; height: 18px; flex: none; }
.subscribe .hp { position: absolute; left: -9999px; }
.form-msg { margin-top: .8rem; font-size: .92rem; min-height: 1.4em; }
.subscribe.is-done .form-msg { color: #7bd389; }
.subscribe.is-error .form-msg { color: var(--accent-hover); }

/* --- Kúpiť --------------------------------------------------------------- */
.buy { text-align: center; overflow: hidden; }
.buy::before {
    content: ''; position: absolute; inset: 0; z-index: -1;
    background: radial-gradient(60% 70% at 50% 100%, rgba(224,38,44,.22), transparent 70%);
}
.buy-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; max-width: 760px; margin: 2rem auto 0; }
@media (max-width: 600px) { .buy-options { grid-template-columns: 1fr; } }
.buy-card { background: var(--surface); border: 1px solid var(--border); border-radius: 8px; padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; align-items: stretch; }
.buy-card .fmt { font-family: var(--font-display); font-size: 1.7rem; color: var(--heading); line-height: 1; }
.buy-card .desc { color: var(--muted); font-size: .9rem; margin-bottom: .5rem; }
.buy-note { margin-top: 1.4rem; color: var(--muted); font-size: .92rem; }
.heureka-slot:empty { display: none; }

/* --- Zdieľanie ----------------------------------------------------------- */
.share { text-align: center; padding-top: 0; }
.share-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.share-btn {
    width: 48px; height: 48px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--surface); border: 1px solid var(--border); color: var(--text);
    cursor: pointer; transition: border-color var(--tr), color var(--tr);
}
.share-btn:hover { border-color: var(--accent); color: var(--heading); }
.share-btn svg { width: 20px; height: 20px; }
.toast { position: fixed; left: 50%; bottom: 90px; transform: translate(-50%, 20px); opacity: 0; pointer-events: none; background: var(--heading); color: var(--bg); padding: .55rem 1rem; border-radius: 99px; font-size: .9rem; transition: all .3s; z-index: 950; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* --- Pätička ------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 2.5rem 0 6rem; font-size: .88rem; color: var(--muted); }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
.footer-links a, .footer-links button { color: var(--muted); background: none; border: 0; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.footer-links a:hover, .footer-links button:hover { color: var(--heading); }

/* --- Lepkavá lišta Kúpiť (mobil) ---------------------------------------- */
.sticky-buy {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 850;
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(10,10,11,.94); backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: .8rem;
    transform: translateY(110%); transition: transform .35s ease;
}
.sticky-buy.show { transform: none; }
.sticky-buy img { width: 38px; border-radius: 2px; }
.sticky-buy .t { flex: 1; font-family: var(--font-display); font-size: 1.2rem; line-height: 1; color: var(--heading); }
.sticky-buy .btn { min-height: 44px; padding: .5rem 1.1rem; font-size: .9rem; }
@media (min-width: 861px) { .sticky-buy { display: none; } .site-footer { padding-bottom: 2.5rem; } }

/* --- Jednoduchá textová podstránka (ochrana údajov) ---------------------- */
.page { padding-top: calc(var(--header-h) + 3rem); }
.page h2 { font-size: 2rem; margin: 2.2rem 0 .8rem; }
.page ul { padding-left: 1.3rem; margin: .8rem 0; }
.page li + li { margin-top: .35rem; }
.todo { background: #3a2a00; color: #ffd66b; padding: 0 .3rem; border-radius: 3px; }
