/* GFCA month-one report.
   Each page is a 1600 x 900 canvas: scaled to fit on a laptop, printed 1:1 to
   PDF, and allowed to reflow into a single column on a phone. Layout inside a
   page is flex and grid, never absolute positions, so the reflow is free. */

@font-face { font-family: "Instrument Serif"; src: url(fonts/InstrumentSerif-latin.woff2) format("woff2"); font-style: normal; font-weight: 400; font-display: block; }
@font-face { font-family: "Instrument Serif"; src: url(fonts/InstrumentSerif-Italic-latin.woff2) format("woff2"); font-style: italic; font-weight: 400; font-display: block; }
@font-face { font-family: "Inter"; src: url(fonts/Inter-latin.woff2) format("woff2"); font-weight: 300 700; font-display: block; }

:root {
  /* Laban effort curves, as the GFCA site rebuild defines them. */
  --dab: cubic-bezier(.3, 1.4, .5, 1);
  --glide: cubic-bezier(.4, 0, .2, 1);
  --float: cubic-bezier(.25, .1, .25, 1);
  --press: cubic-bezier(.8, 0, .6, 1);
  /* the settle: fast out, long soft landing, for anything that arrives */
  --out: cubic-bezier(.16, 1, .3, 1);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;

  /* type scale on the 1600 canvas */
  --t-hero: 196px; --t-h1: 76px; --t-h1i: 44px; --t-lead: 21px; --t-body: 17px; --t-small: 15px;
  --t-note: 13px; --t-eyebrow: 13px; --t-num: 76px; --t-card: 24px;
  --pad-x: 96px; --pad-top: 72px; --pad-bot: 48px;
}

/* Two keys. Every page picks one; grid, type and furniture are identical. */
.light {
  --paper: #f3eee4; --paper-2: #ebe4d7; --ink: #16151a; --ink-2: #48454d; --ink-3: #6b6770;
  --rule: #d6cebf; --accent: #04068b; --accent-wash: rgba(4, 6, 139, .10); --mark-2: #8a847a;
  --good: #2f6b3a; --part: #8a5a12; --wait: #04068b;
}
.dark {
  --paper: #0e0d0c; --paper-2: #1a1816; --ink: #f2ece2; --ink-2: #c4bcaf; --ink-3: #958d81;
  --rule: #2b2825; --accent: #e3a857; --accent-wash: rgba(227, 168, 87, .12); --mark-2: #6e685f;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { background: #1b1a18; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { font-family: var(--sans); -webkit-font-smoothing: antialiased; font-optical-sizing: auto; }
img { display: block; max-width: 100%; }
ol, ul { list-style: none; }

/* --------------------------------------------------------------- deck -- */
.deck { display: grid; gap: 28px; padding: 28px; justify-items: center; }
.frame { position: relative; width: min(100%, 1600px, calc((100vh - 56px) * 16 / 9)); aspect-ratio: 16 / 9; overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,.2), 0 24px 60px -24px rgba(0,0,0,.6); border-radius: 4px; }

.slide { position: absolute; left: 0; top: 0; width: 1600px; height: 900px; overflow: hidden;
  transform-origin: 0 0; transform: scale(var(--k, 1)); background: var(--paper); color: var(--ink);
  display: flex; flex-direction: column; padding: var(--pad-top) var(--pad-x) var(--pad-bot); }
.slide > .top { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.slide > .body { flex: 1; min-height: 0; display: flex; flex-direction: column; }
.slide > .bot { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; margin-top: 20px; }

.eyebrow { font: 600 var(--t-eyebrow)/1.2 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.site { font: 500 var(--t-eyebrow)/1.2 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); }
.pageno { font: 500 var(--t-note)/1 var(--sans); letter-spacing: .12em; color: var(--ink-3); font-variant-numeric: tabular-nums; white-space: nowrap; }
.foot { font: 400 var(--t-note)/1.45 var(--sans); color: var(--ink-3); max-width: 1180px; }

h1.h { font: 400 var(--t-h1)/1 var(--serif); letter-spacing: -.005em; margin-top: 44px; text-wrap: balance; }
h1.h em { display: block; font-style: italic; font-size: var(--t-h1i); line-height: 1.2; color: var(--accent); margin-top: 8px; }
.lead { font: 400 var(--t-lead)/1.55 var(--sans); color: var(--ink-2); text-wrap: pretty; }
.headrow { display: grid; grid-template-columns: 1fr 504px; gap: 64px; align-items: end; }
.headrow .lead { font-size: 18px; padding-bottom: 8px; }
.kicker { font: 600 12px/1.3 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }

/* ------------------------------------------------- reveal choreography -- */
/* Hidden-first states exist only under .anim, which the script adds when it
   can also guarantee the reveal. No script, print, reduced motion: all shown. */
.anim .r { opacity: 0; transform: translateY(14px); transition: opacity .8s var(--float), transform 1s var(--out); transition-delay: calc(var(--i, 0) * 95ms + 120ms); }
.anim .on .r { opacity: 1; transform: none; }
.reset, .reset * { transition: none !important; animation: none !important; }

/* ================================================================ cover == */
.cover { padding: 0; display: block; }
.cover .col { position: absolute; left: var(--pad-x); top: var(--pad-top); bottom: 56px; width: 640px; display: flex; flex-direction: column; }
.cover .title { font: 400 var(--t-hero)/.86 var(--serif); letter-spacing: -.01em; margin: 64px 0 0 -6px; white-space: nowrap; }
.cover .subtitle { font: italic 400 92px/1 var(--serif); color: var(--accent); margin-top: 22px; }
.cover .gloss { font: italic 400 21px/1.4 var(--serif); color: var(--ink-3); margin-top: 20px; width: 560px; }
.cover .dek { font: 400 20px/1.55 var(--sans); color: var(--ink-2); margin-top: 26px; text-wrap: pretty; }
.cover .order { margin-top: auto; }
.cover .order li { display: grid; grid-template-columns: 40px 1fr auto; align-items: baseline; border-top: 1px solid var(--rule); padding: 9px 0 8px; font: 400 19px/1.2 var(--sans); }
.cover .order li span:first-child { font: italic 400 21px/1 var(--serif); color: var(--accent); }
.cover .order li span:last-child { font: 400 15px/1 var(--sans); color: var(--ink-3); }
.cover .foot { margin-top: 18px; font-size: 14px; }
.cover .plate { position: absolute; left: 820px; top: 452px; width: 684px; height: 385px; overflow: hidden; background: #2a221c; }
.cover .plate img { width: 100%; height: 100%; object-fit: cover; }
.cover .plate-cap { position: absolute; left: 820px; top: 848px; font: italic 400 17px/1 var(--serif); color: var(--ink-3); }
.cover .lantern { position: absolute; left: 968px; top: 22px; width: 470px; height: 470px; pointer-events: none; }

.anim .cover .plate { clip-path: inset(100% 0 0 0); transition: clip-path 1.4s var(--out) 1.25s; }
.anim .cover.on .plate { clip-path: inset(0 0 0 0); }
.anim .cover .plate img { transform: scale(1.08); transition: transform 3.2s var(--out) 1.25s; }
.anim .cover.on .plate img { transform: none; }
.cover .lantern img { width: 100%; height: 100%; }

/* =============================================================== brief == */
.brief .cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 44px; }
.brief .cols h2 { font: italic 400 28px/1.1 var(--serif); color: var(--accent); padding-bottom: 12px; border-bottom: 1px solid var(--ink); }
.brief .cols li { font: 400 var(--t-body)/1.5 var(--sans); color: var(--ink-2); padding: 12px 0; border-bottom: 1px solid var(--rule); text-wrap: pretty; }
.brief .cols li b { color: var(--ink); font-weight: 600; }
.figs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: auto; }
.fig .v { font: 600 64px/1 var(--sans); letter-spacing: -.035em; }
.fig .v sup { font-size: 28px; vertical-align: 28px; margin-left: 2px; letter-spacing: 0; color: var(--accent); }
.fig .l { font: 400 var(--t-small)/1.4 var(--sans); color: var(--ink-2); margin-top: 10px; max-width: 260px; }

/* ====================================================== dark openers == */
.opener { padding: 0; display: block; }
.opener .bg { position: absolute; inset: 0; }
.opener .bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% 50%; }
.opener .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,13,12,.86) 0%, rgba(14,13,12,.55) 40%, rgba(14,13,12,.05) 68%); }
.opener .glow { position: absolute; left: calc(81.5% - 260px); top: calc(24.7% - 260px); width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,196,120,.38), rgba(255,170,90,.10) 55%, rgba(255,170,90,0)); mix-blend-mode: screen; pointer-events: none; }
.opener .col { position: absolute; left: var(--pad-x); top: var(--pad-top); bottom: 56px; width: 660px; display: flex; flex-direction: column; }
.opener .eyebrow { color: var(--ink-2); }
.opener .title { font: 400 160px/.9 var(--serif); letter-spacing: -.01em; margin-top: 56px; }
.opener .title em { display: block; font-style: italic; color: var(--accent); }
.opener .dek { font: 400 20px/1.5 var(--sans); color: var(--ink-2); margin-top: 28px; text-wrap: pretty; }
.opener .foot { margin-top: auto; padding-top: 14px; }
.opener .panel { margin-top: 30px; max-width: 560px; }
.opener .panel h2 { font: 600 12px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.opener .panel li { display: grid; grid-template-columns: 34px 1fr; gap: 8px; align-items: baseline; padding: 10px 0; border-top: 1px solid rgba(242,236,226,.14);
  font: 400 17px/1.4 var(--sans); color: var(--ink); }
.opener .panel li:first-of-type { border-top: 0; }
.opener .panel ol { border-top: 1px solid rgba(242,236,226,.14); }
.opener .panel li span { font: italic 400 20px/1 var(--serif); color: var(--accent); }
.opener .note { margin-top: 26px; max-width: 520px; font: italic 400 18px/1.42 var(--serif); color: var(--ink-3); text-wrap: pretty; }
.opener.rehearse .bg::after { background: linear-gradient(90deg, rgba(14,13,12,.92) 0%, rgba(14,13,12,.78) 36%, rgba(14,13,12,.25) 62%, rgba(14,13,12,.05) 80%); }
.opener.rehearse .dek { max-width: 560px; }
.opener .note b { font: 600 11px/1 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 8px; font-style: normal; }

.anim .opener .bg img { opacity: 0; filter: brightness(.35); transform: scale(1.09); transition: opacity 1.6s var(--float), filter 2.8s var(--float) .3s, transform 7s var(--out); }
.anim .opener.on .bg img { opacity: 1; filter: none; transform: none; }
.anim .opener .glow { opacity: 0; transform: scale(.6); transition: opacity 1.4s var(--float) 1.1s, transform 2.2s var(--float) 1.1s; }
.anim .opener.on .glow { opacity: 1; transform: none; animation: breathe 5.5s ease-in-out 3.4s infinite; }
@keyframes breathe { 50% { opacity: .78; } }
/* each thing now recorded switches on like a lamp */
.anim .opener .panel li { opacity: .18; transition: opacity .5s var(--dab); transition-delay: calc(var(--j) * 260ms + 1.6s); }
.anim .opener.on .panel li { opacity: 1; }

/* ============================================================== found == */
.found .cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 40px; flex: 1; }
.card { display: flex; flex-direction: column; border-top: 1px solid var(--ink); padding-top: 16px; }
.card .n { font: italic 400 20px/1 var(--serif); color: var(--accent); }
.card .ill { height: 250px; margin: 6px 0 8px; display: flex; align-items: center; justify-content: center; }
.card .ill img { max-height: 100%; width: auto; mix-blend-mode: multiply; }
.card h2 { font: 400 var(--t-card)/1.15 var(--serif); letter-spacing: -.005em; }
.card p { font: 400 var(--t-small)/1.5 var(--sans); color: var(--ink-2); margin-top: 10px; text-wrap: pretty; }


/* ========================================================== signposts == */
.sign .grid2 { display: grid; grid-template-columns: 440px 1fr; gap: 72px; margin-top: 36px; flex: 1; align-items: start; }
.sign .story p { font: 400 var(--t-body)/1.6 var(--sans); color: var(--ink-2); margin-top: 14px; text-wrap: pretty; }
.sign .story p:first-child { margin-top: 0; }
.sign .story .ill { width: 300px; margin-top: 18px; }
.sign .story .ill img { mix-blend-mode: multiply; }
.sign .charts { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-content: start; }
.mini h3 { font: 400 34px/1 var(--serif); }
.mini .big { font: 600 20px/1.3 var(--sans); margin-top: 10px; }
.mini .big b { font-weight: 600; color: var(--accent); }
.mini .cap { font: 500 11px/1.3 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin: 26px 0 10px; }
.mini svg { width: 100%; height: auto; overflow: visible; }
.mini .wk { font: 400 12px/1 var(--sans); fill: var(--ink-3); }
.mini .val { font: 600 15px/1 var(--sans); fill: var(--ink); }

/* ============================================================= names == */
.names .grid2 { display: grid; grid-template-columns: 340px 1fr; gap: 56px; margin-top: 30px; flex: 1; }
.names .story p { font: 400 var(--t-body)/1.6 var(--sans); color: var(--ink-2); margin-top: 14px; text-wrap: pretty; }
.names .story p:first-child { margin-top: 0; }
.pairs { display: flex; flex-direction: column; gap: 14px; }
.pair { display: grid; grid-template-columns: 1fr 34px 1fr; align-items: center; gap: 14px; }
.serp { background: #fff; border-radius: 10px; padding: 13px 16px 12px; box-shadow: 0 1px 2px rgba(22,21,26,.08), 0 8px 24px -14px rgba(22,21,26,.25); font-family: Arial, Helvetica, sans-serif; }
.serp .who { display: flex; align-items: center; gap: 10px; }
.serp .fav { width: 26px; height: 26px; border-radius: 50%; background: #eef0f6; display: grid; place-items: center; flex: none; }
.serp .fav i { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid #04068b; }
.serp .fav img { width: 20px; height: 20px; }
.serp .fav i.sq { width: 12px; height: 12px; border: 0; border-radius: 2px; background: #9aa0a6; }
.serp .dom { font-size: 13px; line-height: 1.25; color: #202124; }
.serp .dom small { display: block; font-size: 12px; color: #4d5156; }
.serp .t { font-size: 17px; line-height: 1.3; color: #1a0dab; margin-top: 7px; }
.serp .d { font-size: 12.5px; line-height: 1.45; color: #4d5156; margin-top: 3px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.serp.before { background: #f7f5f0; box-shadow: none; border: 1px dashed #c9c1b2; }
.serp.before .t { color: #6b6770; }
.serp.before .strike { background: linear-gradient(#04068b, #04068b) no-repeat 0 58% / 100% 1.6px; }
.anim .serp.before .strike { background-size: 0% 1.6px; transition: background-size .75s var(--glide); transition-delay: calc((var(--i, 3) - 3) * 450ms + .75s); }
.anim .on .serp.before .strike, .anim .pair.on .serp.before .strike { background-size: 100% 1.6px; }
.pair .arrow { font: 300 26px/1 var(--sans); color: var(--accent); text-align: center; }
.pair-lab { font: 500 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); display: grid; grid-template-columns: 1fr 34px 1fr; gap: 14px; margin-bottom: -10px; }
/* each pair on one clock: old name crossed out (.75s), then the new one slides in */
.anim .pair .after { opacity: 0; transform: translateX(-18px); transition: opacity .7s var(--float), transform .9s var(--out); transition-delay: calc(var(--i) * 450ms + 1.6s); }
.anim .on .pair .after { opacity: 1; transform: none; }

/* =========================================================== the rest == */
.rest .tiles6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 48px; margin-top: 40px; }
.tick { display: grid; grid-template-columns: 44px 1fr; gap: 6px; padding: 22px 0; border-top: 1px solid var(--rule); }
.tick svg { width: 30px; height: 30px; margin-top: 2px; }
.tick svg path { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.tick h2 { font: 400 25px/1.15 var(--serif); }
.tick p { font: 400 var(--t-small)/1.5 var(--sans); color: var(--ink-2); margin-top: 8px; text-wrap: pretty; }
.anim .tick svg path { stroke-dasharray: 40; stroke-dashoffset: 40; transition: stroke-dashoffset .6s var(--glide); transition-delay: calc(var(--i) * 120ms + .7s); }
.anim .on .tick svg path { stroke-dashoffset: 0; }

/* ============================================================ hurdles == */
.hurdles table { width: 100%; border-collapse: collapse; margin-top: 30px; }
.hurdles th { font: 600 11px/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); text-align: left; padding: 0 16px 10px 0; border-bottom: 1px solid var(--ink); }
.hurdles td { padding: 12px 16px 12px 0; border-bottom: 1px solid var(--rule); vertical-align: baseline; font: 400 15px/1.45 var(--sans); color: var(--ink-2); }
.hurdles td:first-child { font: 400 21px/1.2 var(--serif); color: var(--ink); width: 290px; }
.hurdles td:last-child { width: 330px; padding-right: 0; }
.status { display: inline-flex; align-items: center; gap: 8px; font: 500 14px/1.3 var(--sans); color: var(--ink); }
.status i { width: 9px; height: 9px; border-radius: 50%; flex: none; transform: translateY(-1px); }
.status.done i { background: var(--good); }
.status.part i { background: var(--part); }
.status.wait i { background: transparent; box-shadow: inset 0 0 0 2px var(--wait); }

/* ======================================================= four numbers == */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); column-gap: 40px; margin-top: 36px; }
/* each tile spans the same rows (subgrid) so all charts share one baseline */
.tile { border-top: 1px solid var(--ink); padding-top: 18px; display: grid; grid-row: span 7; grid-template-rows: subgrid; align-content: start; }
.tile .n { font: italic 400 20px/1 var(--serif); color: var(--accent); }
.tile .label { font: 500 17px/1.3 var(--sans); margin-top: 14px; }
.tile .value { font: 600 var(--t-num)/1 var(--sans); letter-spacing: -.035em; margin-top: 8px; white-space: nowrap; }
.tile .value small { font: 500 17px/1 var(--sans); letter-spacing: 0; color: var(--ink-3); margin-left: 6px; }
.tile .value sup { font: 600 32px/1 var(--sans); vertical-align: 30px; color: var(--accent); margin-left: 2px; }
.tile .note { font: 400 15px/1.45 var(--sans); color: var(--ink-2); margin-top: 12px; text-wrap: pretty; }
.tile .chart { margin-top: 16px; align-self: end; position: relative; }
.tile .chart svg { width: 100%; height: auto; overflow: visible; }
.tile .cap { font: 500 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.tile .axis { display: flex; justify-content: space-between; font: 400 12px/1 var(--sans); color: var(--ink-3); margin-top: 8px; font-variant-numeric: tabular-nums; }
.tile .key { display: flex; gap: 16px; font: 400 13px/1 var(--sans); color: var(--ink-2); margin-top: 10px; }
.tile .key i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 6px; }
.tile .key i.sq { border-radius: 2px; }
.moved { display: grid; grid-template-columns: 200px 1fr; gap: 24px; align-items: baseline; border-top: 1px solid var(--rule); padding-top: 16px; margin-top: auto; }
.moved h2 { font: 600 12px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); }
.moved p { font: 400 18px/1.5 var(--sans); color: var(--ink-2); text-wrap: pretty; }
.moved p b { font-weight: 600; color: var(--ink); }
.site3 { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; margin-top: auto; border-top: 1px solid var(--rule); padding-top: 14px; }
.site3 h2 { font: 600 12px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.site3 p, .site3 li { font: 400 14.5px/1.45 var(--sans); color: var(--ink-2); text-wrap: pretty; }
.site3 p b { font-weight: 600; color: var(--ink); }
.site3 li { position: relative; padding-left: 14px; }
.site3 li + li { margin-top: 3px; }
.site3 li::before { content: ""; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.site3 .done li::before { content: "✓"; width: auto; height: auto; background: none; top: 0; left: -1px; font: 600 12px/1.6 var(--sans); color: var(--accent); }
.foot b { font-weight: 600; color: var(--ink-2); }

.mk-line { fill: none; stroke: var(--accent); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.mk-area { fill: var(--accent-wash); stroke: none; }
.mk-bar { fill: var(--accent); }
.mk-dot { stroke: var(--paper); stroke-width: 2; }
.mk-end { fill: var(--accent); stroke: var(--paper); stroke-width: 2; }
.mk-base { stroke: var(--rule); stroke-width: 1; }
.mk-hair { stroke: var(--ink-3); stroke-width: 1; opacity: 0; }

.anim .mk-line { transition: stroke-dashoffset 1.6s var(--glide) .55s; }
.anim .mk-area { opacity: 0; transition: opacity 1.2s var(--float) 1.4s; }
.anim .on .mk-area { opacity: 1; }
.anim .mk-end { transform-box: fill-box; transform-origin: center; transform: scale(0); transition: transform .3s var(--dab) 2.1s; }
.anim .on .mk-end { transform: scale(1); }
.anim .mk-bar { transform-box: fill-box; transform-origin: 50% 100%; transform: scaleY(0); transition: transform .7s var(--glide); transition-delay: calc(var(--j) * 32ms + .6s); }
.anim .on .mk-bar { transform: none; }
.anim .mk-dot { transform-box: fill-box; transform-origin: center; opacity: 0; transform: translateY(-14px); transition: opacity .3s var(--float), transform .3s var(--dab); transition-delay: calc(var(--j) * 45ms + .7s); }
.anim .on .mk-dot { opacity: 1; transform: none; }

/* ============================================================= ladder == */
.ladder .sites { display: grid; grid-template-rows: auto auto; gap: 26px; margin-top: 30px; }
.lrow { display: grid; grid-template-columns: 170px 2.1fr 1fr 1.1fr; gap: 24px; align-items: start; }
.lrow .who h2 { font: 400 34px/1 var(--serif); }
.lrow .who p { font: 400 13px/1.4 var(--sans); color: var(--ink-3); margin-top: 8px; }
.lrow .absent { grid-column: 2 / -1; font: 400 13px/1.45 var(--sans); color: var(--ink-3); margin-top: -8px; }
.lrow .absent b { font-weight: 600; color: var(--ink-2); }
.band { border-top: 2px solid var(--ink); padding-top: 12px; }
.band.p2 { border-top-color: var(--mark-2); }
.band.p3 { border-top: 2px dashed var(--mark-2); }
.band h3 { font: 600 11px/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip { display: inline-flex; align-items: baseline; gap: 7px; font: 400 14px/1 var(--sans); padding: 7px 10px 7px 11px; border-radius: 999px; background: var(--accent); color: #fff; }
.chip small { font: 600 11px/1 var(--sans); opacity: .75; font-variant-numeric: tabular-nums; }
.chip.brand { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.band.p2 .chip:not(.brand), .band.p3 .chip:not(.brand) { background: var(--accent-wash); color: var(--ink); box-shadow: inset 0 0 0 1px var(--accent); }
.ladder .legend { display: flex; gap: 22px; font: 400 13px/1 var(--sans); color: var(--ink-2); }
.ladder .legend span { display: inline-flex; align-items: center; gap: 8px; }
.ladder .legend i { width: 22px; height: 12px; border-radius: 999px; background: var(--accent); }
.ladder .legend i.brand { background: transparent; box-shadow: inset 0 0 0 1.5px var(--ink-3); }
.anim .chip { opacity: 0; transform: translateY(8px) scale(.96); transition: opacity .45s var(--float), transform .45s var(--dab); transition-delay: calc(var(--j) * 40ms + .6s); }
.anim .on .chip { opacity: 1; transform: none; }

/* ========================================================== checklist == */
.check table { width: 100%; border-collapse: collapse; margin-top: 18px; }
.check th { font: 600 11px/1.2 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); text-align: left; padding: 0 16px 10px 0; border-bottom: 1px solid var(--ink); }
.check td { padding: 9px 16px 9px 0; border-bottom: 1px solid var(--rule); vertical-align: baseline; font: 400 15px/1.45 var(--sans); color: var(--ink-2); }
.check td:first-child { font: 400 21px/1.2 var(--serif); color: var(--ink); width: 330px; }
.check td:nth-child(2) { width: 150px; }
.check td .next { color: var(--ink-3); }
.pips { display: inline-flex; gap: 6px; transform: translateY(1px); }
.pip { display: inline-block; width: 13px; height: 13px; border-radius: 50%; }
.pip.done { background: var(--accent); }
.pip.wait { box-shadow: inset 0 0 0 1.5px var(--accent); background: repeating-linear-gradient(135deg, transparent 0 2px, var(--accent-wash) 2px 4px); }
.check .legend { display: flex; gap: 22px; font: 400 13px/1 var(--sans); color: var(--ink-2); }
.check .legend span { display: inline-flex; align-items: center; gap: 8px; }
/* the tally: what is done, and what is waiting on GFCA; deliberately not a fraction */
.tally { display: grid; grid-template-columns: 1.35fr 1fr; gap: 28px; padding-bottom: 6px; }
.tally .t { display: grid; grid-template-columns: auto 1fr; column-gap: 14px; align-items: center; }
.tally b { font: 600 64px/1 var(--sans); letter-spacing: -.04em; color: var(--accent); font-variant-numeric: tabular-nums; }
.tally .w b { color: var(--ink); }
.tally p { font: 400 15px/1.35 var(--sans); color: var(--ink-2); }
.tally .pips { display: flex; gap: 3px; margin-top: 8px; transform: none; }
.tally .pip { width: 9px; height: 9px; flex: none; }
.anim .tally .pip { opacity: 0; transform: scale(.4); transition: opacity .3s var(--float), transform .4s var(--dab); }
.anim .on .tally .pip, .anim .tally.on .pip { opacity: 1; transform: none; }
.tally .pip:nth-child(n) { transition-delay: calc(.9s + var(--p, 0) * 45ms); }
.check .extra { margin-top: 10px; display: grid; grid-template-columns: 200px 1fr; gap: 24px; font: 400 14px/1.45 var(--sans); color: var(--ink-2); }
.check .extra b { font: 600 12px/1.4 var(--sans); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.anim .check tbody tr { opacity: 0; transition: opacity .5s var(--float); transition-delay: calc(var(--j) * 90ms + .5s); }
.anim .check.on tbody tr { opacity: 1; }

/* ======================================================= next: schedule == */
/* line icons, drawn in the accent on a pale disc (also used by the weekly page) */
.ic { fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
/* October, November and the review sit on one dotted line, like "what to expect" on page 15 */
.sched { position: relative; display: grid; grid-template-columns: 1fr 1fr 300px; gap: 44px; margin-top: 26px; }
.sched::before { content: ""; position: absolute; left: 8px; right: 0; top: 7px; border-top: 1.5px dashed var(--mark-2); }
.leg { position: relative; padding-top: 30px; }
.leg .node { position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 2px var(--accent); }
.leg.end .node { background: var(--accent); box-shadow: 0 0 0 4px var(--accent-wash); }
.leg > header { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid var(--ink); }
.leg h2 { font: italic 400 34px/1 var(--serif); color: var(--accent); }
.leg li { display: grid; grid-template-columns: 34px 1fr auto; gap: 14px; align-items: start; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.leg li .ic { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--accent-wash); color: var(--accent); }
.leg li b { display: block; font: 600 16px/1.3 var(--sans); }
.leg li span { display: block; font: 400 14px/1.4 var(--sans); color: var(--ink-2); margin-top: 1px; }
.leg li em { font: 600 10.5px/1.9 var(--sans); font-style: normal; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); }
.also-line { margin-top: 12px; font: 400 13.5px/1.5 var(--sans); color: var(--ink-2); }
.also-line b { font: 600 11px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-right: 10px; }
.leg.end .call { font: 400 26px/1.25 var(--serif); margin-top: 16px; text-wrap: pretty; }
.leg.end .ill { margin-top: 18px; height: 240px; display: flex; justify-content: flex-start; }
.leg.end .ill img { height: 100%; width: auto; mix-blend-mode: multiply; }
.anim .leg li, .anim .leg .also-line { opacity: 0; transform: translateY(8px); transition: opacity .6s var(--float), transform .8s var(--out); transition-delay: calc(var(--j, 5) * 80ms + .5s); }
.anim .leg .node { opacity: 0; transform: scale(.4); transition: opacity .4s var(--float), transform .6s var(--dab); transition-delay: .35s; }
.anim .leg.end .ill img { opacity: 0; transform: translateY(-14px); filter: blur(4px); transition: opacity 1s var(--float) .9s, transform 1.3s var(--out) .9s, filter 1s var(--out) .9s; }
.anim .on .leg li, .anim .on .leg .also-line, .anim .on .leg .node, .anim .on .leg.end .ill img,
.anim .leg.on li, .anim .leg.on .also-line, .anim .leg.on .node, .anim .leg.end.on .ill img { opacity: 1; transform: none; filter: none; }

/* ====================================================== weekly: rhythm == */
.rhythm { display: grid; grid-template-columns: 780px 1fr; gap: 36px; margin-top: 18px; align-items: start; }
.cyc { position: relative; width: 780px; height: 380px; }
.cyc .ring { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.cyc .ring path { fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; marker-end: url(#ah); }
.cyc .ring marker path { fill: none; stroke: #04068b; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.cyc .hub { position: absolute; left: 390px; top: 196px; transform: translate(-50%, -50%); text-align: center; }
.cyc .hub b { display: block; font: italic 400 38px/1 var(--serif); color: var(--accent); white-space: nowrap; }
.cyc .hub span { font: 400 13px/1.3 var(--sans); color: var(--ink-3); }
.cyc li { position: absolute; width: 0; height: 0; }
.cyc li i { position: absolute; left: -16px; top: -16px; width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: #fff;
  font: 600 14px/32px var(--sans); font-style: normal; text-align: center; box-shadow: 0 0 0 5px var(--paper); }
.cyc li div { position: absolute; width: 236px; }
.cyc li.up div { left: -118px; bottom: 26px; text-align: center; }
.cyc li.rt div { left: 30px; top: -21px; }
.cyc li.lt div { right: 30px; top: -21px; text-align: right; }
.cyc li.low div { top: -9px; }
.cyc li b { display: block; font: 400 23px/1.1 var(--serif); }
.cyc li span { display: block; font: 400 13.5px/1.35 var(--sans); color: var(--ink-2); margin-top: 3px; }
.anim .cyc li { opacity: 0; transform: scale(.7); transition: opacity .5s var(--float), transform .6s var(--dab); transition-delay: calc(var(--k) * 190ms + .45s); }
.anim .cyc .ring path { opacity: 0; transition: opacity .5s var(--float); transition-delay: calc(var(--k) * 190ms + .6s); }
.anim .cyc .hub { opacity: 0; transition: opacity .8s var(--float) 1.5s; }
.anim .on .cyc li, .anim .cyc.on li, .anim .on .cyc .ring path, .anim .cyc.on .ring path, .anim .on .cyc .hub, .anim .cyc.on .hub { opacity: 1; transform: none; }
.anim .on .cyc .hub, .anim .cyc.on .hub { transform: translate(-50%, -50%); }
.monthly h2 { font: italic 400 34px/1 var(--serif); color: var(--accent); padding-bottom: 10px; border-bottom: 1px solid var(--ink); }
.monthly li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; padding: 11px 0; border-bottom: 1px solid var(--rule); }
.monthly .ic { width: 34px; height: 34px; padding: 7px; border-radius: 50%; background: var(--accent-wash); color: var(--accent); }
.monthly b { display: block; font: 600 16px/1.3 var(--sans); }
.monthly span { display: block; font: 400 14px/1.4 var(--sans); color: var(--ink-2); margin-top: 1px; }
.road { margin-top: auto; display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: start; border-top: 1px solid var(--rule); padding-top: 16px; }
.road ol { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.road ol::before { content: ""; position: absolute; left: 8px; right: 0; top: 7px; border-top: 1.5px dashed var(--mark-2); }
.road li { position: relative; padding-top: 26px; }
.road li i { position: absolute; left: 0; top: 0; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); box-shadow: inset 0 0 0 2px var(--accent); }
.road li.now i { background: var(--accent); }
.road li.now::after { content: ""; position: absolute; left: 16px; width: calc(100% + 20px); top: 7px; border-top: 2px solid var(--accent); }
.road b { display: block; font: 600 12.5px/1.2 var(--sans); letter-spacing: .08em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.road span { display: block; font: 400 14.5px/1.45 var(--sans); color: var(--ink-2); text-wrap: pretty; }

/* =============================================================== asks == */
.asks .kicker { margin-bottom: 12px; }
.asks .first { margin-top: 30px; }
.asks .first ol { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; counter-reset: ask; }
.asks .later ol { counter-reset: ask 2; }
.asks li { counter-increment: ask; display: grid; grid-template-columns: 44px 1fr; column-gap: 10px; align-content: start; border-top: 1px solid var(--rule); }
.asks li.q { counter-increment: none; } .asks li.q::before { content: "?"; }
.asks li::before { content: counter(ask); grid-row: span 2; font: italic 400 24px/1.1 var(--serif); color: var(--accent); }
.asks .first li { border-top: 1px solid var(--ink); padding: 16px 0 4px; grid-template-columns: 52px 1fr; }
.asks .first li::before { font-size: 46px; line-height: .9; }
.asks .first li b { display: block; font: 400 32px/1.1 var(--serif); }
.asks .first li p { font: 400 16px/1.5 var(--sans); color: var(--ink-2); margin-top: 8px; text-wrap: pretty; }
.asks .later { margin-top: 34px; }
.asks .later ol { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 32px; }
.asks .later li { padding: 13px 0 16px; grid-template-columns: 34px 1fr; }
.asks .later li b { display: block; font: 400 20px/1.15 var(--serif); }
.asks .later li p { font: 400 13.5px/1.42 var(--sans); color: var(--ink-2); margin-top: 4px; text-wrap: pretty; }

/* ============================================================== close == */
.close { padding: 0; display: block; }
.close .bg { position: absolute; inset: 0; }
.close .bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% 30%; }
.close .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14,13,12,.9) 0%, rgba(14,13,12,.72) 42%, rgba(14,13,12,.2) 75%); }
.close .col { position: absolute; left: var(--pad-x); top: var(--pad-top); bottom: 56px; width: 760px; display: flex; flex-direction: column; }
.close .title { font: 400 96px/.98 var(--serif); margin-top: auto; }
.close .title em { display: block; font-style: italic; color: var(--accent); }
.close .sign { margin-top: 44px; display: grid; grid-template-columns: auto auto; justify-content: start; gap: 6px 48px; font: 400 16px/1.4 var(--sans); color: var(--ink-2); }
.close .sign b { font-weight: 600; color: var(--ink); }
.anim .close .bg img { opacity: 0; transform: scale(1.08); transition: opacity 1.8s var(--float), transform 7s var(--out); }
.anim .close.on .bg img { opacity: 1; transform: none; }

/* ------------------------------------------------------------ tooltip -- */
.tip { position: absolute; pointer-events: none; z-index: 5; background: var(--ink); color: var(--paper); font: 500 13px/1.35 var(--sans);
  padding: 7px 10px; border-radius: 6px; white-space: nowrap; opacity: 0; transform: translate(-50%, calc(-100% - 12px)); transition: opacity .15s; }
.tip.show { opacity: 1; }
.tip span { opacity: .7; font-weight: 400; }

/* ------------------------------------------------------ page controls -- */
.hud { position: fixed; right: 20px; bottom: 20px; z-index: 20; display: flex; gap: 8px; align-items: center; }
.hud .pager { display: inline-flex; align-items: center; gap: 2px; background: rgba(27,26,24,.85); border: 1px solid rgba(242,236,226,.18); border-radius: 999px; padding: 3px; backdrop-filter: blur(6px); }
.hud .pager button { border: 0; background: none; padding: 7px 10px; }
.hud .count { font: 500 13px/1 var(--sans); color: rgba(242,236,226,.6); font-variant-numeric: tabular-nums; padding: 0 4px; }
.hud .count b { color: #f2ece2; font-weight: 600; }
.progress-line { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 21; pointer-events: none; }
.progress-line i { display: block; height: 100%; background: #e3a857; transform: scaleX(0); transform-origin: 0 50%; }
.hud a, .hud button { font: 500 13px/1 var(--sans); color: #f2ece2; background: rgba(27,26,24,.85); border: 1px solid rgba(242,236,226,.18);
  border-radius: 999px; padding: 10px 14px; text-decoration: none; cursor: pointer; backdrop-filter: blur(6px); }
.hud a:hover, .hud button:hover { border-color: rgba(242,236,226,.45); }

/* Block-by-block reveals (html.flow, set on phones and tablets). Kept outside
   the media query so rotating a tablet into a wider layout never hides a block. */
.anim.flow .r { transition-delay: 60ms; }
.anim.flow .r.on { opacity: 1; transform: none; }
.anim.flow .card .ill img { transition-delay: .2s; }
.anim.flow .pair .after { transition-delay: 1.3s; }
.anim.flow .serp.before .strike { transition-delay: .45s; }
.anim.flow .pair.on .after { opacity: 1; transform: none; }
.anim.flow .pair.on .serp.before .strike { background-size: 100% 1.6px; }
.anim.flow .tick svg path { transition-delay: .3s; }
.anim.flow .tick.on svg path { stroke-dashoffset: 0; }
.anim.flow .check table.on tbody tr { opacity: 1; }
.anim.flow .cover .r, .anim.flow .opener .r, .anim.flow .close .r { transition-delay: calc(var(--i, 0) * 110ms + 120ms); }


/* ------------------------------------------------------ motion layer -- */
/* drawings: rise softly into place and come into focus */
.anim .card .ill img { opacity: 0; transform: translateY(16px) scale(.97); filter: blur(5px);
  transition: opacity .9s var(--float), transform 1.2s var(--out), filter 1s var(--out); transition-delay: calc(var(--i, 0) * 130ms + .35s); }
.anim .on .card .ill img, .anim .card.on .ill img { opacity: 1; transform: none; filter: none; }
.anim .cover .lantern { opacity: 0; transform: translateY(-22px); filter: blur(4px);
  transition: opacity 1.1s var(--float) .2s, transform 1.4s var(--out) .2s, filter 1.1s var(--out) .2s; }
.anim .cover.on .lantern { opacity: 1; transform: none; filter: none; }

/* headlines: lines rise from behind a mask */
/* padding gives ascenders, descenders and italic overhang room inside the mask */
.split .ln { display: block; overflow: hidden; padding: .12em .08em .16em 0; margin: -.12em -.08em -.16em 0; }
/* the mask only needs to clip vertically; a nowrap title wider than its column (the cover's
   "Month one") must not lose its end. Older browsers get room on the cover title instead. */
@supports (overflow: clip) { .split .ln { overflow: visible; overflow-y: clip; } }
.cover .title .ln { margin-right: -1em; padding-right: 1em; }
/* top-aligned so a split line is exactly as tall as the unsplit one */
.split .lni { display: inline-block; vertical-align: top; }
/* flow-root stops the mask's negative margin merging with the italic line's own top margin */
.split em { display: flow-root !important; }
.anim .split.r { opacity: 1; transform: none; }
.anim .split:not([data-split]) { opacity: 0; }
.anim .split .lni { transform: translateY(145%); transition: transform 1.15s var(--out); transition-delay: calc(var(--i, 0) * 95ms + 150ms + var(--l, 0) * 85ms); }
.anim .on .split .lni, .anim .split.on .lni { transform: none; }

/* numbers hold still while they count */
.counting { font-variant-numeric: tabular-nums; }

/* desktop: a deck you can page through */
@media screen and (min-width: 1081px) {
  html { scroll-snap-type: y proximity; }
  .frame { scroll-snap-align: center; }
}
@media (hover: hover) {
  .serp.after { transition: transform .35s var(--out), box-shadow .35s var(--out); }
  .serp.after:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(22,21,26,.08), 0 14px 32px -16px rgba(22,21,26,.35); }
}

/* --------------------------------------------------- phones and tablets -- */
/* Up to 1080px the pages stop being scaled canvases and become one flowing
   column (two on tablets), so text stays at a readable size on any screen. */
@media screen and (max-width: 1080px) {
  :root { --t-hero: clamp(76px, 20vw, 140px); --t-h1: clamp(36px, 8.5vw, 56px); --t-h1i: clamp(23px, 5.2vw, 34px); --t-lead: 17px; --t-body: 16px;
    --t-small: 15px; --t-num: clamp(52px, 13vw, 64px); --t-card: 22px; --pad-x: clamp(20px, 6vw, 56px); --pad-top: 30px; --pad-bot: 30px; }
  .deck { padding: 0; gap: 8px; }
  .frame { width: 100%; aspect-ratio: auto; border-radius: 0; box-shadow: none; }
  .slide { position: relative; width: 100%; height: auto; transform: none; min-height: 0; padding-bottom: 36px; }
  .slide > .top { flex-wrap: wrap; row-gap: 6px; }
  .slide > .bot { flex-direction: column; align-items: flex-start; gap: 12px; margin-top: 32px; }
  .ladder .legend, .check .legend { flex-direction: column; gap: 8px; }
  h1.h { margin-top: 22px; }
  .headrow, .brief .cols, .figs, .found .cards, .sign .grid2, .sign .charts, .names .grid2, .rest .tiles6, .sched, .rhythm, .road, .road ol, .asks .first ol, .asks .later ol, .site3,
  .moved, .lrow, .check .extra { grid-template-columns: 1fr; gap: 20px; }
  .headrow .lead { padding-bottom: 0; }
  .brief .cols { margin-top: 30px; gap: 28px; }
  /* tiles: plain blocks, not a subgrid, or the row gap lands inside every tile */
  .tiles { grid-template-columns: 1fr; row-gap: 40px; margin-top: 30px; }
  .tile { display: block; }
  .tile .value { margin-top: 6px; }
  .figs { grid-template-columns: 1fr 1fr; gap: 28px 20px; margin-top: 36px; }
  .fig .v { font-size: 44px; }
  .moved { margin-top: 36px; }
  .found .cards { margin-top: 28px; gap: 36px; }
  .card .ill { height: 170px; justify-content: flex-start; }
  .sign .charts { gap: 36px; }
  .names .grid2 { margin-top: 24px; }
  .pair { grid-template-columns: 1fr; gap: 8px; } .pair .arrow { transform: rotate(90deg); } .pair-lab { display: none; }
  .pairs { gap: 26px; }
  .rest .tiles6 { margin-top: 24px; }
  .hurdles table, .hurdles tbody, .hurdles tr, .hurdles td, .check table, .check tbody, .check tr, .check td { display: block; width: auto !important; }
  .hurdles thead, .check thead { display: none; }
  .hurdles tr, .check tr { padding: 14px 0; border-bottom: 1px solid var(--rule); }
  .hurdles td, .check td { border: 0; padding: 3px 0; }
  .hurdles td:first-child, .check td:first-child { font-size: 22px; }
  .check td:nth-child(2) { padding: 6px 0 4px; }
  .lrow { gap: 14px; }
  .lrow .absent { grid-column: auto; margin-top: 0; }
  .band { padding-top: 10px; }
  .asks .first { margin-top: 24px; } .asks .later { margin-top: 30px; }
  .asks .first li b { font-size: 26px; }
  /* the plan tally, the month cards, the weekly loop as a list, the road as a vertical line */
  .tally { grid-template-columns: 1fr; gap: 14px; margin-top: 18px; } .tally b { font-size: 48px; min-width: 64px; }
  .sched { margin-top: 24px; gap: 34px; }
  .sched::before, .leg .node { display: none; }
  .leg { padding-top: 0; }
  .leg li { grid-template-columns: 34px 1fr; } .leg li em { grid-column: 2; margin-top: -4px; }
  .leg.end .ill { height: 170px; }
  .rhythm { gap: 34px; margin-top: 24px; }
  .cyc { width: auto; height: auto; }
  .cyc .ring { display: none; }
  .cyc .hub, .anim .on .cyc .hub, .anim .cyc.on .hub { position: static; transform: none; text-align: left; margin-bottom: 10px; }
  .cyc .hub b { font-size: 32px; }
  .cyc ol { position: relative; }
  .cyc ol::before { content: ""; position: absolute; left: 15px; top: 20px; bottom: 20px; border-left: 1.5px solid var(--accent-wash); }
  .cyc li { position: relative; left: auto !important; top: auto !important; width: auto; height: auto; display: grid; grid-template-columns: 32px 1fr; gap: 14px; padding: 9px 0; }
  .cyc li i { position: relative; left: 0; top: 0; }
  .cyc li div, .cyc li.up div, .cyc li.rt div, .cyc li.lt div { position: static; width: auto; text-align: left; }
  .cyc li b { font-size: 21px; }
  .anim .cyc li { transform: none; }
  .road { gap: 14px; margin-top: 36px; }
  .road ol { gap: 20px; }
  .road ol::before { left: 7px; right: auto; top: 8px; bottom: 8px; border-top: 0; border-left: 1.5px dashed var(--mark-2); }
  .road li { padding: 0 0 0 32px; }
  .road li.now::after { display: none; }
  /* image pages: text sits over a darkened picture, about one screen tall */
  .cover, .opener, .close { height: auto; display: flex; flex-direction: column; }
  .cover .col, .opener .col, .close .col { position: relative; left: 0; top: 0; bottom: auto; width: auto; padding: var(--pad-top) var(--pad-x) 24px; }
  .cover .title { margin-top: 28px; white-space: normal; } .cover .subtitle { font-size: clamp(44px, 11vw, 72px); } .cover .gloss { width: auto; font-size: 18px; }
  .cover .order { margin-top: 30px; }
  .cover .plate, .cover .plate-cap, .cover .lantern { position: relative; left: auto; top: auto; width: auto; }
  .cover .lantern { height: auto; width: 44%; max-width: 230px; aspect-ratio: 1; margin: 6px var(--pad-x) -14px auto; }
  .cover .plate { height: auto; aspect-ratio: 16 / 9; margin: 0 var(--pad-x); } .cover .plate-cap { margin: 10px var(--pad-x) 32px; }
  .opener, .close { min-height: 100svh; }
  .opener .title { font-size: clamp(68px, 17vw, 120px); margin-top: 40px; } .close .title { font-size: clamp(46px, 11vw, 80px); }
  .opener .note { max-width: none; }
  .opener .bg::after, .close .bg::after { background: linear-gradient(180deg, rgba(14,13,12,.84), rgba(14,13,12,.68)); }
  .hud { position: static; justify-content: center; padding: 28px 20px 36px; background: #0e0d0c; }
  .hud .pager { display: none; }
  .slide > .bot .foot { text-align: left !important; }
  .mini .wk { font-size: 16px; } .mini .val { font-size: 19px; }
  /* close: Giles's photo on top, the words at the foot of the screen */
  .close .col { margin-top: auto; padding-bottom: 36px; }
  .close .title { margin-top: 24px; }
  .close .sign { gap: 6px 22px; }
  .close .bg img { object-position: 62% 20%; }
  .close .bg::after { background: linear-gradient(180deg, rgba(14,13,12,.1) 0%, rgba(14,13,12,.45) 38%, rgba(14,13,12,.93) 72%); }

}
/* tablets: two columns where there is room */
@media screen and (min-width: 640px) and (max-width: 1080px) {
  .tiles, .found .cards, .rest .tiles6, .asks .first ol, .asks .later ol, .sign .charts { grid-template-columns: 1fr 1fr; column-gap: 36px; }
  .brief .cols { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); column-gap: 28px; }
  .figs { grid-template-columns: repeat(4, 1fr); }
  .tally { grid-template-columns: 1.35fr 1fr; max-width: 560px; }
}

/* -------------------------------------------------------------- print -- */
@page { size: 1600px 900px; margin: 0; }
@media print {
  html, body { background: none; }
  .deck { padding: 0; gap: 0; display: block; }
  .frame { width: 1600px; height: 900px; aspect-ratio: auto; box-shadow: none; border-radius: 0; break-after: page; }
  .slide { transform: none; }
  .tip, .hud { display: none !important; }
  /* a browser print must never strand an unplayed page */
  .anim .r, .anim .cover .lantern, .anim .mk-area, .anim .mk-dot, .anim .chip, .anim .pair .after, .anim .card .ill img,
  .anim .check tbody tr, .anim .opener .panel li, .anim .tally .pip, .anim .leg li, .anim .leg .also-line, .anim .leg .node, .anim .leg.end .ill img, .anim .cyc li, .anim .cyc .ring path { opacity: 1 !important; transform: none !important; clip-path: none !important; filter: none !important; }
  .anim .mk-end, .anim .mk-bar { transform: none !important; }
  .anim .cyc .hub { opacity: 1 !important; }
  .anim .mk-line, .anim .tick svg path { stroke-dashoffset: 0 !important; }
  .anim .cover .plate { clip-path: none !important; }
  .anim .cover .plate img, .anim .opener .glow, .anim .close .bg img, .anim .opener .bg img { transform: none !important; }
  .anim .opener .bg img, .anim .close .bg img { opacity: 1 !important; filter: none !important; }
  .anim .opener .glow { opacity: 1 !important; animation: none !important; }
  .anim .split .lni { transform: none !important; }
  .anim .serp.before .strike { background-size: 100% 1.6px !important; }
  .progress-line { display: none !important; }
  * { transition: none !important; }
}
