:root {
  --bg: #0B0907;
  --card: #16120C;
  --line: #2A2214;
  --ink: #F2EBDC;
  --sub: #B5A88C;
  --faint: #6E6450;
  --gold: #C9A24B;
  --gold-light: #E6CC8F;
  --gold-deep: #8F7332;
  --gold-bg: #1E1809;
  --good: #4CAF8A;
  --bad: #D4756C;
  --radius: 16px;
  --radius-sm: 12px;
  --font: 'Poppins', system-ui, -apple-system, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font); font-size: 15px; line-height: 1.55; }
a { color: var(--gold-light); }
h1 { font-size: 1.6rem; font-weight: 600; line-height: 1.2; margin: 0 0 .5rem; }
h2 { font-size: 1.1rem; font-weight: 600; margin: 0 0 .5rem; color: var(--gold-light); }
.muted { color: var(--sub); }
.error { color: var(--bad); font-size: .9rem; }

.top { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; padding: .75rem 1.5rem; background: rgba(11, 9, 7, .96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.top nav { display: flex; align-items: center; gap: 1.2rem; font-size: .92rem; }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); text-decoration: none; }
.brand img { display: block; }
.brand-name { font-weight: 700; letter-spacing: 2px; font-size: .95rem; text-transform: uppercase; }
.brand-tag { color: var(--faint); font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; padding-left: .7rem; border-left: 1px solid var(--line); }
.who { color: var(--sub); }
.flash { background: var(--gold-bg); border-bottom: 1px solid var(--gold-deep); color: var(--gold-light); padding: .6rem 1.5rem; font-size: .92rem; text-align: center; }

main { padding: 2rem 1.2rem 4rem; }
.narrow { max-width: 680px; margin: 0 auto; }
.login { max-width: 380px; margin-top: 2rem; text-align: center; }
.login-brand img { width: 220px; height: auto; border-radius: var(--radius); margin: 0 auto 1rem; display: block; }
.login form { text-align: left; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; margin-top: 1.2rem; }

.stack { display: grid; gap: .9rem; }
label { display: grid; gap: .35rem; font-size: .85rem; color: var(--sub); font-weight: 500; }
label.inline { grid-auto-flow: column; justify-content: start; align-items: center; }
input, textarea, select { font: inherit; font-size: 16px; color: var(--ink); padding: .7rem .9rem; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold-deep); }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
button { font: inherit; font-weight: 700; padding: .8rem 1.2rem; border: 0; border-radius: var(--radius-sm); background: var(--gold); color: var(--bg); cursor: pointer; min-height: 46px; }
button:hover { background: var(--gold-light); }
button.linkish { background: none; color: var(--sub); padding: 0; min-height: 0; font-weight: 600; font-size: .92rem; }
button.linkish:hover { background: none; color: var(--gold-light); }
button.danger { color: var(--bad); }

.course-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 1rem; }
.course-list a { display: block; text-decoration: none; color: inherit; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.5rem; }
.course-list a:hover { border-color: var(--gold-deep); }
.course-list h2 { color: var(--ink); font-size: 1.15rem; }
.course-list p { margin: 0 0 .9rem; color: var(--sub); font-size: .95rem; }
.bar { height: 5px; background: var(--line); border-radius: 3px; overflow: hidden; margin-bottom: .45rem; }
.bar span { display: block; height: 100%; background: var(--gold); }
small { color: var(--sub); }

.lesson-list { list-style: none; padding: 0; margin: 1.5rem 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.lesson-list li + li { border-top: 1px solid var(--line); }
.lesson-list a { display: flex; align-items: center; gap: .9rem; padding: .95rem 1.2rem; color: inherit; text-decoration: none; }
.lesson-list a:hover { background: var(--gold-bg); }
.check { width: 18px; height: 18px; border-radius: 50%; border: 1.5px solid var(--gold-deep); flex: none; }
.done .check { border-color: var(--gold); background: var(--gold); }
.name { flex: 1; font-weight: 500; }
.dur { color: var(--faint); font-size: .85rem; }

.theater { display: grid; grid-template-columns: minmax(0, 1fr) 290px; gap: 1.6rem; max-width: 1180px; margin: 0 auto; }
.player { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.lesson-head { margin-top: 1.3rem; }
.lesson-head h1 { font-size: 1.4rem; }
.lesson-head form { margin-top: .6rem; }
.crumb { margin: 0 0 .3rem; color: var(--faint); font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.crumb a { color: var(--sub); text-decoration: none; }
.notes { white-space: pre-line; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: 1rem; color: var(--sub); }
.pager { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.pager a { display: inline-block; background: var(--gold-bg); border: 1px solid var(--gold-deep); border-radius: var(--radius-sm); padding: .7rem 1rem; color: var(--gold-light); text-decoration: none; font-weight: 600; font-size: .92rem; }
.playlist { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem; align-self: start; }
.playlist h2 { font-size: .75rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--sub); margin-bottom: .6rem; }
.playlist ol { list-style: none; padding: 0; margin: 0; counter-reset: n; }
.playlist li { counter-increment: n; }
.playlist li a { display: flex; gap: .6rem; padding: .55rem .7rem; border-radius: 10px; color: var(--sub); text-decoration: none; font-size: .92rem; }
.playlist li a::before { content: counter(n); color: var(--faint); min-width: 1.3em; font-weight: 600; }
.playlist li.done a::before { content: "✓"; color: var(--good); }
.playlist li.current a { background: var(--gold-bg); border: 1px solid var(--gold-deep); color: var(--gold-light); font-weight: 600; }

.admin { max-width: 1100px; margin: 0 auto; }
.callout { background: var(--gold-bg); border: 1px solid var(--gold-deep); border-radius: var(--radius); padding: 1rem 1.4rem; margin: 1rem 0 2rem; color: var(--gold-light); font-size: .92rem; }
.callout ol { margin: .4rem 0 0; padding-left: 1.2rem; }
code { background: var(--bg); color: var(--gold); padding: .1em .4em; border-radius: 6px; font-size: .9em; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; margin-bottom: 2rem; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin-bottom: 1rem; }
.row { display: flex; justify-content: space-between; align-items: center; padding: .45rem 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
summary { cursor: pointer; }
details > ol { padding-left: 1.2rem; }

@media (max-width: 860px) {
  .theater { grid-template-columns: 1fr; }
  .pager { flex-direction: column; }
  .brand-tag { display: none; }
  .top { padding: .7rem 1rem; }
}

.module { margin-top: 2rem; }
.module-head { display: flex; align-items: baseline; gap: .8rem; }
.module-head h2 { color: var(--ink); flex: 1; margin: 0; }
.module-num { color: var(--gold); font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.module-desc { margin: .3rem 0 0; font-size: .95rem; }
.module .lesson-list { margin-top: .8rem; }
.lesson-list li.empty { padding: .9rem 1.2rem; font-size: .92rem; }
.playlist details + details { margin-top: .6rem; }
.playlist summary { list-style: none; cursor: pointer; padding: .4rem .3rem; font-weight: 600; color: var(--ink); font-size: .92rem; display: flex; flex-direction: column; gap: .1rem; }
.playlist summary::-webkit-details-marker { display: none; }
.playlist details[open] summary { color: var(--gold-light); }
.playlist ol { margin-top: .2rem; }
.module-row { margin-top: 1rem; border-bottom: 1px solid var(--gold-deep); }

/* Admin */
.admin-nav { display: flex; gap: .3rem; margin-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.admin-nav a { padding: .6rem 1rem; color: var(--sub); text-decoration: none; font-weight: 600; font-size: .92rem; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.admin-nav a.on { color: var(--gold-light); border-bottom-color: var(--gold); }
.admin-nav .view-site { margin-left: auto; font-weight: 500; }
.admin-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin: 2rem 0 .8rem; }
.admin-head h1, .admin-head h2 { margin: 0; }
.admin .crumb { margin-bottom: 1rem; }
.program-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.2rem; }
.program-card { margin: 0; display: flex; flex-direction: column; }
.program-card h2 { color: var(--ink); }
.program-card p { margin: 0 0 .6rem; }
.program-card .stats { color: var(--faint); font-size: .85rem; flex: 1; }
.program-card.new { border-style: dashed; border-color: var(--gold-deep); }
.btn { display: inline-block; text-align: center; background: var(--gold); color: var(--bg); border-radius: var(--radius-sm); padding: .7rem 1.1rem; font-weight: 700; text-decoration: none; font-size: .92rem; }
.btn.ghost { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--gold-deep); }
.actions { display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.help { background: var(--gold-bg); border: 1px solid var(--gold-deep); border-radius: var(--radius); padding: .8rem 1.2rem; margin-bottom: 1.2rem; font-size: .9rem; color: var(--gold-light); }
.help summary { cursor: pointer; font-weight: 600; }
.help p { margin: .6rem 0 0; color: var(--sub); }
.module-card { padding: 1rem 1.2rem; }
.module-bar, .session-bar { display: flex; align-items: center; gap: .5rem; }
.module-bar strong { font-size: 1.05rem; }
.grow { flex: 1; min-width: 0; }
button.icon { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--line); min-height: 0; padding: .25rem .6rem; font-weight: 600; border-radius: 8px; }
button.icon:disabled { opacity: .3; cursor: default; }
details.edit, details.add { margin: .4rem 0 0; }
details.edit summary, details.add summary { cursor: pointer; color: var(--sub); font-size: .88rem; font-weight: 600; padding: .3rem 0; }
details.add summary { color: var(--gold-light); }
details.edit[open] summary, details.add[open] summary { color: var(--gold-light); }
details.edit form.stack, details.add form.stack { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; margin-top: .4rem; }
.inline-form { margin-top: .5rem; }
.session-list { list-style: none; padding: 0; margin: .8rem 0 0; }
.session-list > li { border-top: 1px solid var(--line); padding: .7rem 0; }
.member-list { list-style: none; padding: 0; margin: 0; }
.member-list.cards { display: grid; gap: .8rem; }
.member-list .row { border-bottom: 0; }
.plain { list-style: none; padding: 0; margin: 0; }
.enroll-row { display: flex; gap: .6rem; margin-top: .8rem; }
.enroll-row select { flex: 1; }
.pill { display: inline-block; background: var(--gold-bg); border: 1px solid var(--gold-deep); color: var(--gold-light); font-size: .7rem; letter-spacing: 1px; text-transform: uppercase; font-weight: 600; padding: .1rem .5rem; border-radius: 999px; margin-left: .4rem; vertical-align: middle; }
.small { font-size: .85rem; }
.danger-zone { margin-top: 2rem; border: 1px solid #3a1f1b; border-radius: var(--radius); padding: .8rem 1.2rem; }
.danger-zone summary { cursor: pointer; color: var(--bad); font-weight: 600; }
.danger-btn { background: var(--bad); color: #fff; }
.danger-btn:hover { background: #e28a82; }
@media (max-width: 600px) { .two { grid-template-columns: 1fr; } .admin-nav .view-site { display: none; } }

/* Members table */
.admin.wide { max-width: 1240px; }
.add-member { padding: .9rem 1.4rem; }
.add-member summary { cursor: pointer; font-weight: 600; color: var(--gold-light); }
.add-member form { margin-top: 1rem; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; margin: 1.2rem 0 .8rem; }
.filters a { padding: .4rem .9rem; border-radius: 10px; background: var(--card); border: 1px solid var(--line); color: var(--faint); text-decoration: none; font-weight: 600; font-size: .85rem; }
.filters a span { color: var(--sub); margin-left: .3rem; }
.filters a.on { background: var(--gold-bg); border-color: var(--gold-deep); color: var(--gold-light); }
.table-wrap { overflow-x: auto; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
table.members { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.members th { text-align: left; color: var(--sub); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; padding: .8rem .8rem; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.members td { padding: .7rem .8rem; border-bottom: 1px solid #1d1810; vertical-align: top; }
table.members tr.edit-row td { background: var(--bg); padding: 1rem; }
.pill.active { background: #13251D; color: var(--good); border-color: transparent; }
.pill.disabled, .pill.expired { background: #2B1A16; color: var(--bad); border-color: transparent; }
.pill.admin { margin-left: .3rem; }
.exp { display: flex; gap: .4rem; align-items: center; }
.exp input[type=date] { padding: .3rem .5rem; font-size: .85rem; width: 150px; }
.acts { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; }
.acts form { margin: 0; }
button.icon.ok { color: var(--good); border-color: #4CAF8A55; }
button.icon.warn { color: var(--bad); border-color: #D4756C55; }
.code-box { background: var(--gold-bg); border: 1px solid var(--gold); border-radius: var(--radius); padding: 1rem 1.4rem; margin-bottom: 1.2rem; color: var(--gold-light); }
.code-box .code { font-size: 2.2rem; font-weight: 700; letter-spacing: .3em; margin: .4rem 0; color: var(--gold); }
.code-box p { margin: 0; color: var(--sub); }
.enroll-block { display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.chip { display: inline-flex; align-items: center; gap: .4rem; background: var(--gold-bg); border: 1px solid var(--gold-deep); border-radius: 999px; padding: .2rem .4rem .2rem .8rem; font-size: .85rem; color: var(--gold-light); margin: 0; }
.chip button { font-size: 1rem; line-height: 1; }
.enroll-block .enroll-row { margin: 0; }
.login .small { margin-top: 1rem; }

/* Images */
.cover { display: block; width: 100%; aspect-ratio: 16 / 7; object-fit: cover; border-radius: 12px; margin-bottom: 1rem; }
.course-list a.has-cover { padding-top: 1rem; }
.hero { display: block; width: 100%; aspect-ratio: 21 / 8; object-fit: cover; border-radius: var(--radius); margin: 1rem 0 1.4rem; border: 1px solid var(--line); }
.module-banner { display: block; width: 100%; aspect-ratio: 21 / 6; object-fit: cover; border-radius: 12px; margin-top: .8rem; border: 1px solid var(--line); }
.mini { width: 72px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 6px; flex: none; border: 1px solid var(--line); }
.playlist li a .mini { width: 56px; }
.playlist li a span { flex: 1; }
.image-field { display: grid; gap: .5rem; }
.image-field .thumb { width: 200px; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 8px; border: 1px solid var(--line); }
.image-field input[type=file] { padding: .5rem; font-size: .9rem; }

/* Completion + progress */
.progress-row { display: flex; align-items: center; gap: .8rem; margin-bottom: .4rem; }
.progress-row .bar { flex: 1; margin: 0; }
.progress-row .pct { color: var(--gold-light); font-weight: 600; min-width: 3ch; text-align: right; }
.progress-row.big { margin: 1rem 0 .3rem; }
.progress-row.big .bar { height: 8px; }
.progress-row.small { margin-top: .8rem; max-width: 420px; }
.progress-row.small .pct { font-weight: 500; font-size: .85rem; min-width: 0; white-space: nowrap; }
.complete-row { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-top: .6rem; }
.status { display: none; margin: 0; color: var(--good); font-weight: 600; }
.status.is-done { display: inline-flex; align-items: center; gap: .4rem; }
.status .tick { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: var(--good); color: var(--bg); align-items: center; justify-content: center; font-size: .85rem; }
.complete-row form { margin: 0; }
.lesson-list .done .name::after { content: ' ✓'; color: var(--good); }

/* Field report */
.report-page h1 { margin-bottom: .3rem; }
.report-form textarea { min-height: 160px; width: 100%; }
.report-actions { display: flex; align-items: center; gap: .8rem; margin-top: .8rem; flex-wrap: wrap; }
button.mic { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--gold-deep); font-weight: 600; }
button.mic .mic-icon { color: var(--gold); font-size: .7rem; vertical-align: middle; }
button.mic.on { border-color: var(--bad); }
button.mic.on .mic-icon { color: var(--bad); animation: pulse 1.1s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.rec-panel { background: var(--card); border: 1px solid var(--gold-deep); border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1rem 0; }
.rec-top { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; color: var(--bad); }
.rec-top .rec-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--bad); animation: pulse 1s infinite; }
.rec-panel.paused .rec-dot { animation: none; opacity: .3; }
.rec-panel.paused .rec-top { color: var(--sub); }
.rec-top #rec-time { margin-left: auto; font-variant-numeric: tabular-nums; font-weight: 500; }
.rec-text { background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: .7rem .9rem; margin: .7rem 0; min-height: 60px; max-height: 180px; overflow-y: auto; line-height: 1.5; }
.rec-btns { display: flex; gap: .6rem; }
.rec-btns button { flex: 1; }
.ghost-btn { background: var(--gold-bg); color: var(--gold-light); border: 1px solid var(--gold-deep); font-weight: 600; }
.ghost-btn.danger-text { color: var(--bad); border-color: #D4756C55; background: #2B1A16; }
.report-result { margin-top: 1.2rem; }
.report-body h2 { color: var(--gold); font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; margin: 1.3rem 0 .4rem; }
.report-body h2:first-child { margin-top: 0; }
.report-body h3 { color: var(--gold-light); font-size: 1rem; margin: 1rem 0 .3rem; }
.report-body p { margin: 0 0 .7rem; }
.report-body ul { margin: 0 0 .7rem; padding-left: 1.2rem; }
.report-body li { margin-bottom: .3rem; }
.past-head { margin-top: 2rem; color: var(--sub); font-size: .78rem; letter-spacing: 2.5px; text-transform: uppercase; }
.report-list { list-style: none; padding: 0; margin: .6rem 0 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); }
.report-list li + li { border-top: 1px solid var(--line); }
.report-list a { display: flex; gap: 1rem; padding: .8rem 1.1rem; color: inherit; text-decoration: none; }
.report-list a:hover { background: var(--gold-bg); }
.report-list .date { color: var(--faint); font-size: .85rem; white-space: nowrap; }
.report-list .snippet { color: var(--sub); font-size: .92rem; }
.input-recap { padding: .8rem 1.2rem; margin-bottom: 1rem; }
.input-recap summary { cursor: pointer; font-weight: 600; color: var(--sub); font-size: .9rem; }
.notes-text { white-space: pre-line; margin: .6rem 0 0; color: var(--sub); }
.chat { display: grid; gap: .6rem; margin-top: 1.2rem; }
.msg { max-width: 85%; padding: .7rem 1rem; border-radius: 14px; line-height: 1.5; }
.msg.me { justify-self: end; background: var(--gold-bg); border: 1px solid var(--gold-deep); color: var(--gold-light); border-bottom-right-radius: 4px; }
.msg.coach { justify-self: start; background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.msg.coach p:last-child { margin-bottom: 0; }
.followup { display: flex; gap: .6rem; margin-top: 1rem; }
.followup input { flex: 1; }
.mono { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .85rem; line-height: 1.5; }
.small-btn { padding: .35rem .7rem; font-size: .82rem; }
.pager-links { display: flex; gap: .4rem; margin-top: 1rem; }
.pager-links a { padding: .3rem .7rem; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--sub); }
.pager-links a.on { border-color: var(--gold-deep); color: var(--gold-light); }

.share-row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.share-row .btn, .share-row button { font-size: .9rem; padding: .6rem 1rem; min-height: 0; }
.sr-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Mobile header */
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 42px; height: 38px; min-height: 0; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { display: block; width: 18px; height: 2px; background: var(--gold-light); border-radius: 1px; transition: transform .2s, opacity .2s; }
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 760px) {
  .top { position: sticky; top: 0; z-index: 30; padding: .6rem 1rem; }
  .brand img { width: 30px; height: 32px; }
  .brand-name { font-size: .85rem; letter-spacing: 1.5px; }
  .burger { display: flex; }
  .top nav { display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--card); border-bottom: 1px solid var(--gold-deep); flex-direction: column; align-items: stretch; gap: 0; padding: .4rem 0 .6rem; }
  .nav-open .top nav { display: flex; }
  .top nav a, .top nav .who, .top nav form { padding: .8rem 1.2rem; }
  .top nav a { text-decoration: none; color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--line); }
  .top nav .who { color: var(--faint); font-size: .85rem; border-bottom: 1px solid var(--line); }
  .top nav form button.linkish { color: var(--gold-light); }
  .flash { font-size: .88rem; }
}
.burger, .burger:hover { background: var(--card); }
