/* ============================================================
   READY TO READ — free course guide
   Built on colors_and_type.css. Screen = cream canvas.
   Two layout directions share one markup: body.view-list (default)
   and body.view-grid swap how each week's lessons are arranged.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
}
:root { --sheet-w: 980px; --wc: var(--blue); --wc-soft: var(--blue-soft); --wc-wash: var(--wash-blue); --wc-deep: var(--blue-deep); }

/* per-week accent palette, set on .page / .road__sec via [data-color] */
[data-color="pink"]   { --wc: var(--pink-deep);  --wc-soft: var(--pink-soft);   --wc-wash: var(--wash-pink);   --wc-deep: var(--berry); }
[data-color="green"]  { --wc: var(--green);       --wc-soft: var(--green-soft);  --wc-wash: var(--wash-green);  --wc-deep: var(--green-deep); }
[data-color="blue"]   { --wc: var(--blue);        --wc-soft: var(--blue-soft);   --wc-wash: var(--wash-blue);   --wc-deep: var(--blue-deep); }
[data-color="orange"] { --wc: var(--orange-deep); --wc-soft: var(--orange-soft); --wc-wash: var(--wash-orange); --wc-deep: var(--orange-deep); }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(251,244,230,0.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--cream-300); }
.topbar__in { max-width: var(--sheet-w); margin: 0 auto; padding: 11px 28px; display: flex; align-items: center; gap: 16px; }
.topbar__logo { height: 30px; display: block; cursor: pointer; }
.topbar__logo img { height: 100%; display: block; }
.topbar__title { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.topbar__spacer { flex: 1; }
.topbar__nav { display: flex; align-items: center; gap: 8px; }
.tb-btn { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--ink); background: #fff; border: 1.5px solid var(--cream-300); border-radius: 999px; padding: 8px 15px; transition: border-color var(--dur-fast), transform var(--dur-fast), background var(--dur-fast); }
.tb-btn:hover { border-color: var(--blue); transform: translateY(-1px); }
.tb-btn svg { width: 16px; height: 16px; }
.tb-progress { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-deep); display: inline-flex; align-items: center; gap: 7px; background: var(--green-soft); border-radius: 999px; padding: 7px 13px; }
.tb-progress svg { width: 14px; height: 14px; }

/* view toggle (list / grid) */
.viewtog { display: inline-flex; background: #fff; border: 1.5px solid var(--cream-300); border-radius: 999px; padding: 3px; gap: 2px; }
.viewtog button { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); background: none; border: 0; cursor: pointer; padding: 6px 11px; border-radius: 999px; display: inline-flex; align-items: center; gap: 6px; transition: background var(--dur-fast), color var(--dur-fast); }
.viewtog button svg { width: 14px; height: 14px; }
.viewtog button.on { background: var(--blue); color: #fff; }

/* jump menu */
.jump { position: relative; }
.jump__menu { position: absolute; right: 0; top: calc(100% + 8px); width: 320px; max-height: 64vh; overflow: auto; background: #fff; border: 1px solid var(--cream-300); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; display: none; z-index: 60; }
.jump.open .jump__menu { display: block; }
.jump__sec { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; padding: 5px 10px; border-radius: 6px; margin: 8px 6px 4px; display: inline-block; }
.jump__item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 10px; cursor: pointer; }
.jump__item:hover { background: var(--cream-soft); }
.jump__item b { font-family: var(--font-mono); font-weight: 700; font-size: 11px; color: var(--ink-3); width: 58px; flex: 0 0 auto; }
.jump__item span { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink); line-height: 1.25; }
.jump__item .done-dot { margin-left: auto; width: 16px; height: 16px; border-radius: 999px; background: var(--cream-150); display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.jump__item.is-done .done-dot { background: var(--green); }
.jump__item.is-done .done-dot svg { width: 11px; height: 11px; color: #fff; }

/* ============================================================
   PAGE SHELL
   ============================================================ */
.pages { max-width: var(--sheet-w); margin: 0 auto; padding: 0 28px; }
/* default svg sizing — specific rules below override (equal specificity, later wins) */
.pages svg, .topbar svg { width: 16px; height: 16px; flex: 0 0 auto; }
.page { display: none; padding: 40px 0 90px; }
.page.active { display: block; }

/* ============================================================
   COVER / CONTENTS
   ============================================================ */
.cover__head { display: grid; grid-template-columns: 1fr 250px; gap: 36px; align-items: start; border-bottom: 2px solid var(--ink); padding-bottom: 30px; }
.cover__ey { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-deep); }
.cover__title { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(52px, 8vw, 92px); line-height: 0.84; color: var(--blue); margin: 14px 0 0; }
.cover__title .pk { color: var(--pink-deep); }
.cover__sub { font-family: var(--font-serif-display); font-style: italic; font-weight: 500; font-size: 27px; color: var(--ink); margin: 18px 0 0; max-width: 560px; line-height: 1.18; }
.cover__paras { margin: 18px 0 0; max-width: 580px; }
.cover__paras p { font-family: var(--font-serif); font-size: 16.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 12px; text-wrap: pretty; }

.cover__aside { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
.cover__logo { width: 118px; align-self: flex-end; }
.stats { background: #fff; border: 1.5px solid var(--cream-300); border-radius: 18px; padding: 6px 4px; box-shadow: var(--shadow-sm); display: grid; grid-template-columns: 1fr 1fr; }
.stat { text-align: center; padding: 16px 8px; }
.stat__n { font-family: var(--font-display); font-size: 38px; line-height: 0.8; color: var(--blue); }
.stat:nth-child(2) .stat__n { color: var(--green); }
.stat:nth-child(3) .stat__n { color: var(--pink-deep); }
.stat:nth-child(4) .stat__n { color: var(--orange-deep); font-size: 30px; }
.stat__l { font-family: var(--font-mono); font-weight: 700; font-size: 9.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); margin-top: 8px; }

/* how it works */
.how { margin: 30px 0 0; }
.how__lead { font-family: var(--font-body); font-weight: 800; font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin: 0 0 14px; }
.how__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.how__item { background: var(--wash-blue); border-radius: 16px; padding: 16px 16px 18px; }
.how__item:nth-child(2) { background: var(--wash-green); }
.how__item:nth-child(3) { background: var(--wash-pink); }
.how__item:nth-child(4) { background: var(--wash-orange); }
.how__n { font-family: var(--font-mono); font-weight: 700; font-size: 11px; color: #fff; background: var(--blue); border-radius: 6px; padding: 3px 9px; display: inline-block; }
.how__item:nth-child(2) .how__n { background: var(--green); }
.how__item:nth-child(3) .how__n { background: var(--pink-deep); }
.how__item:nth-child(4) .how__n { background: var(--orange-deep); }
.how__t { font-family: var(--font-body); font-weight: 800; font-size: 14.5px; color: var(--ink); margin: 11px 0 4px; }
.how__d { font-family: var(--font-body); font-weight: 500; font-size: 12.5px; line-height: 1.45; color: var(--ink-2); }

.printnote { display: flex; gap: 11px; align-items: flex-start; background: var(--wash-cream); border-left: 3px solid var(--orange); border-radius: 0 12px 12px 0; padding: 13px 16px; margin: 22px 0 0; }
.printnote .ic { flex: 0 0 auto; width: 19px; height: 19px; color: var(--orange-deep); margin-top: 1px; }
.printnote p { font-family: var(--font-serif); font-style: italic; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); margin: 0; }
.printnote b { font-style: normal; font-family: var(--font-body); font-weight: 700; color: var(--cream-900); }

/* week roadmap */
.road { margin-top: 16px; }
.road__sec { margin-top: 30px; }
.road__lab { display: flex; align-items: baseline; gap: 12px; padding: 12px 0 8px; border-bottom: 2px solid var(--ink); }
.road__no { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.12em; color: #fff; padding: 4px 10px; border-radius: 6px; background: var(--wc); white-space: nowrap; }
.road__name { font-family: var(--font-body); font-weight: 800; font-size: 16px; letter-spacing: 0.02em; text-transform: uppercase; color: var(--ink); }
.road__tag { margin-left: auto; font-family: var(--font-serif-display); font-style: italic; font-size: 19px; color: var(--wc-deep); }
.road__intro { font-family: var(--font-serif); font-size: 14.5px; font-style: italic; color: var(--ink-2); margin: 11px 0 6px; max-width: 720px; line-height: 1.5; }
.road__row { display: grid; grid-template-columns: 24px 84px 1fr auto auto; align-items: center; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); cursor: pointer; transition: background var(--dur-fast); }
.road__row:hover { background: var(--cream-150); }
.road__row:hover .road__go { opacity: 1; transform: translateX(0); }
.road__cb { width: 21px; height: 21px; border-radius: 6px; border: 2px solid var(--cream-300); background: #fff; display: flex; align-items: center; justify-content: center; }
.road__cb.on { background: var(--green); border-color: var(--green); }
.road__cb.on svg { width: 13px; height: 13px; color: #fff; }
.road__num { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--wc); }
.road__t { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--ink); line-height: 1.3; }
.road__meta { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-weight: 700; font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); white-space: nowrap; }
.road__meta svg { width: 13px; height: 13px; }
.road__go { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--wc); opacity: 0; transform: translateX(-6px); transition: opacity var(--dur-fast), transform var(--dur-fast); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; }
.road__go svg { width: 13px; height: 13px; }

/* cover CTA preview */
.coverCta { margin-top: 34px; background: var(--blue); color: #fff; border-radius: 20px; padding: 26px 30px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.coverCta__txt { flex: 1; min-width: 260px; }
.coverCta__ey { font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); }
.coverCta__t { font-family: var(--font-display); text-transform: uppercase; font-size: 28px; line-height: 0.96; margin: 8px 0 0; }
.coverCta__d { font-family: var(--font-serif); font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.9); margin: 10px 0 0; max-width: 560px; }
.coverCta__btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-body); font-weight: 800; font-size: 15px; color: var(--blue); background: var(--cream); border-radius: 999px; padding: 14px 26px; text-decoration: none; white-space: nowrap; transition: transform var(--dur-fast); }
.coverCta__btn:hover { transform: translateY(-2px) scale(1.02); }

/* ============================================================
   WEEK PAGE
   ============================================================ */
.wk__crumbs { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 16px; border-bottom: 2px solid var(--ink); }
.wk__crumbs a { color: var(--wc); cursor: pointer; }
.wk__crumbs .sec-dot { display: inline-flex; align-items: center; gap: 8px; }
.wk__crumbs .sec-dot::before { content: ""; width: 11px; height: 11px; border-radius: 999px; background: var(--wc); }

.wk__hd { display: flex; align-items: flex-end; gap: 26px; margin: 28px 0 0; flex-wrap: wrap; }
.wk__no { font-family: var(--font-display); text-transform: uppercase; font-size: 86px; line-height: 0.76; color: var(--wc); }
.wk__no small { display: block; font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.2em; color: var(--orange-deep); margin-bottom: 8px; }
.wk__name { padding-bottom: 6px; }
.wk__name h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 44px; line-height: 0.9; color: var(--ink); margin: 0; }
.wk__name p { font-family: var(--font-serif-display); font-style: italic; font-size: 23px; color: var(--wc-deep); margin: 6px 0 0; }
.wk__intro { background: var(--wc-wash); border-radius: 14px; padding: 14px 18px; margin: 22px 0 0; font-family: var(--font-serif); font-style: italic; font-size: 16px; line-height: 1.5; color: var(--ink-2); }

/* lesson container — layout direction lives here */
.lessons { margin-top: 26px; }
body.view-grid .lessons { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }

/* ============================================================
   LESSON CARD  (single markup, both views)
   ============================================================ */
.lesson { background: #fff; border: 1.5px solid var(--cream-300); border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow var(--dur-fast), border-color var(--dur-fast), transform var(--dur-fast); }
.lesson + .lesson { margin-top: 14px; }
body.view-grid .lesson + .lesson { margin-top: 0; }
.lesson:hover { box-shadow: var(--shadow-md); }
.lesson.open { border-color: var(--wc); }
.lesson.is-done { border-color: var(--green-soft); }

/* header (always visible, click to toggle) */
.lesson__hd { display: flex; align-items: center; gap: 14px; padding: 16px 18px; cursor: pointer; }
.lesson__cb { width: 24px; height: 24px; flex: 0 0 auto; border-radius: 7px; border: 2px solid var(--cream-300); background: #fff; display: flex; align-items: center; justify-content: center; transition: background var(--dur-fast), border-color var(--dur-fast); }
.lesson__cb svg { width: 14px; height: 14px; color: #fff; opacity: 0; }
.lesson.is-done .lesson__cb { background: var(--green); border-color: var(--green); }
.lesson.is-done .lesson__cb svg { opacity: 1; }
.lesson__num { font-family: var(--font-mono); font-weight: 700; font-size: 10.5px; letter-spacing: 0.04em; color: #fff; background: var(--wc); padding: 4px 9px; border-radius: 8px; white-space: nowrap; flex: 0 0 auto; }
.lesson__title { font-family: var(--font-body); font-weight: 800; font-size: 16px; line-height: 1.25; color: var(--ink); flex: 1; min-width: 0; }
.lesson__tags { display: inline-flex; align-items: center; gap: 7px; flex: 0 0 auto; }
.ltag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--font-mono); font-weight: 700; font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-3); background: var(--cream-150); border-radius: 999px; padding: 4px 9px; }
.ltag svg { width: 12px; height: 12px; }
.ltag--video { color: var(--wc-deep); }
.lesson__chev { width: 20px; height: 20px; flex: 0 0 auto; color: var(--ink-3); transition: transform var(--dur-fast); }
.lesson.open .lesson__chev { transform: rotate(180deg); }

/* poster — grid view only (list view plays into the body slot) */
.lesson__poster { display: none; position: relative; aspect-ratio: 16 / 9; background: var(--wc-wash); cursor: pointer; overflow: hidden; }
body.view-grid .lesson__poster { display: block; }
.lesson__poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lesson__poster.placeholder { background: repeating-linear-gradient(45deg, var(--cream-150) 0 14px, var(--cream-soft) 14px 28px); align-items: center; justify-content: center; }
body.view-grid .lesson__poster.placeholder { display: flex; }
.lesson__poster .play { position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; border-radius: 999px; background: rgba(255,255,255,0.94); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: transform var(--dur-fast); }
.lesson__poster:hover .play { transform: scale(1.08); }
.lesson__poster .play svg { width: 26px; height: 26px; color: var(--wc); margin-left: 3px; }
.lesson__poster .pbadge { position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-weight: 700; font-size: 9.5px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: rgba(26,26,26,0.6); border-radius: 999px; padding: 4px 10px; }
.lesson__poster .pcoming { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.lesson__player { aspect-ratio: 16 / 9; background: #000; }
.lesson__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.lesson__playerslot:not(:empty) { margin: 16px 0 0; border-radius: 12px; overflow: hidden; }
.player__yt { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; }
.player__yt:hover { color: var(--wc); }
.player__yt svg { width: 13px; height: 13px; }

/* expandable body */
.lesson__body { display: none; padding: 4px 18px 20px; }
.lesson.open .lesson__body { display: block; }
.lesson__desc { font-family: var(--font-serif); font-size: 15px; line-height: 1.6; color: var(--ink-2); margin: 12px 0 0; text-wrap: pretty; }

/* video controls row */
.lesson__watch { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 16px 0 0; }
.btn-watch { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 800; font-size: 14px; color: #fff; background: var(--wc); border: 1.5px solid var(--wc); border-radius: 999px; padding: 10px 18px; cursor: pointer; transition: transform var(--dur-fast), opacity var(--dur-fast); }
.btn-watch:hover { transform: translateY(-1px); opacity: 0.94; }
.btn-watch svg { width: 16px; height: 16px; }
.btn-watch.is-pending { background: #fff; color: var(--ink-3); border-color: var(--cream-300); border-style: dashed; cursor: default; }
.btn-watch.is-pending:hover { transform: none; }
.btn-playlist { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.btn-playlist:hover { color: var(--wc); }
.btn-playlist svg { width: 13px; height: 13px; }

/* printables */
.pdfs { margin: 18px 0 0; }
.pdfs__lab { font-family: var(--font-mono); font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 8px; }
.pdfs__lab::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.pdf { display: flex; align-items: flex-start; gap: 13px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.pdf__ic { flex: 0 0 auto; width: 38px; height: 38px; border-radius: 10px; background: var(--wc-wash); color: var(--wc); display: flex; align-items: center; justify-content: center; }
.pdf__ic svg { width: 19px; height: 19px; }
.pdf__info { flex: 1; min-width: 0; }
.pdf__name { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--ink); line-height: 1.3; }
.pdf__desc { font-family: var(--font-body); font-weight: 500; font-size: 12.5px; line-height: 1.45; color: var(--ink-2); margin: 3px 0 0; }
.pdf__btn { flex: 0 0 auto; align-self: center; display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-body); font-weight: 800; font-size: 12.5px; color: var(--wc); background: #fff; border: 1.5px solid var(--wc); border-radius: 999px; padding: 8px 15px; text-decoration: none; white-space: nowrap; transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast); }
.pdf__btn:hover { background: var(--wc); color: #fff; transform: translateY(-1px); }
.pdf__btn svg { width: 14px; height: 14px; }
.pdf__btn.is-pending { color: var(--ink-3); border-color: var(--cream-300); border-style: dashed; cursor: default; }
.pdf__btn.is-pending:hover { background: #fff; color: var(--ink-3); transform: none; }
.nolinks { font-family: var(--font-serif); font-style: italic; font-size: 14px; color: var(--ink-3); margin: 14px 0 0; display: flex; align-items: center; gap: 8px; }
.nolinks .spark { color: var(--wc); }

/* mark complete + nav */
.lesson__foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.markdone { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-family: var(--font-body); font-weight: 800; font-size: 13.5px; color: #fff; background: var(--green); border: 1.5px solid var(--green); border-radius: 999px; padding: 9px 18px; transition: transform var(--dur-fast), background var(--dur-fast); }
.markdone:hover { transform: translateY(-1px); }
.markdone svg { width: 16px; height: 16px; }
.markdone.is-done { background: #fff; color: var(--green-deep); }
.markdone .lbl-done { display: none; }
.markdone.is-done .lbl-todo { display: none; }
.markdone.is-done .lbl-done { display: inline; }

/* week footer nav */
.wk__foot { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 40px; padding-top: 24px; border-top: 2px solid var(--ink); }
.wknav { display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 13px; color: var(--ink); background: #fff; border: 1.5px solid var(--cream-300); border-radius: 999px; padding: 10px 18px; transition: border-color var(--dur-fast), transform var(--dur-fast); }
.wknav:hover { border-color: var(--wc); transform: translateY(-1px); }
.wknav.is-disabled { opacity: 0.35; pointer-events: none; }
.wknav svg { width: 16px; height: 16px; }

/* ============================================================
   FINISH PAGE
   ============================================================ */
.finish { text-align: center; padding: 30px 0 0; }
.finish__ey { font-family: var(--font-mono); font-weight: 700; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--orange-deep); }
.finish__t { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(40px, 6vw, 64px); line-height: 0.9; color: var(--blue); margin: 14px 0 0; }
.finish__d { font-family: var(--font-serif); font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 560px; margin: 18px auto 0; text-wrap: pretty; }
.finish__btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 800; font-size: 16px; color: #fff; background: var(--orange-deep); border-radius: 999px; padding: 16px 32px; text-decoration: none; margin: 28px 0 0; transition: transform var(--dur-fast); }
.finish__btn:hover { transform: translateY(-2px) scale(1.02); }
.finish__brand { font-family: var(--font-display); font-size: 18px; color: var(--pink-deep); margin: 30px 0 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  body.view-grid .lessons { grid-template-columns: 1fr; }
  .how__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .cover__head { grid-template-columns: 1fr; }
  .cover__aside { flex-direction: row-reverse; align-items: center; justify-content: space-between; }
  .cover__logo { display: none; }
  .stats { flex: 1; }
  .road__row { grid-template-columns: 24px 1fr auto; }
  .road__num, .road__go { display: none; }
  .topbar__title, .viewtog { display: none; }
  .lesson__tags { display: none; }
  .pdf { flex-wrap: wrap; }
  .pdf__btn { margin-left: 51px; }
}

/* ============================================================
   PRINT — clean white, all weeks, page breaks
   ============================================================ */
@media print {
  @page { margin: 14mm; }
  html, body { background: #fff !important; }
  .topbar, .wk__foot, .lesson__foot, .coverCta, .lesson__watch, .lesson__player, .road__go { display: none !important; }
  .pages { max-width: none; padding: 0; }
  .page { display: block !important; padding: 0; animation: none; }
  .page + .page { break-before: page; }
  .lesson { break-inside: avoid; border: 1px solid #ccc !important; box-shadow: none !important; }
  .lesson__body { display: block !important; }
  .lesson__poster { display: none !important; }
  .how__item, .wk__intro, .printnote, .stats { background: #fff !important; border: 1px solid #ccc !important; }
  .pdf__btn { border: 1px solid #999 !important; color: #000 !important; }
  .cover__title, .wk__no, .wk__name h2, .finish__t, .road__no, .lesson__num { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
