/* happylouisewexler.com — built in the passenger seat. Paper, ink, ketchup, mustard, a highlighter. */
:root {
  --paper: #fbf7ee; --paper-2: #fffdf6; --ink: #17130f; --ink-2: #433c35; --ink-3: #6f6760; --rule: #17130f; --line: #d8cfbd; --line-2: #bfb39d;
  --ketchup: #d3281f; --ketchup-2: #a51d15; --mustard: #f2c12e; --mustard-2: #d9a30f; --marker: #fff27a; --marker-2: #ffe86b; --pickle: #3f8a4a; --cream: #f1e9d6;
  --great: #2e7d3c; --good: #4c8a3f; --ok: #c98f0a; --bad: #d3281f;
  --display: "Young Serif", "Cooper Black", "Iowan Old Style", Georgia, serif;
  --hand: "Caveat", "Segoe Print", "Bradley Hand", cursive;
  --body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "Courier Prime", "Courier New", Courier, monospace;
  --shadow-hard: 3px 3px 0 var(--rule);
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #1b1714; --paper-2: #221d19; --ink: #f2ece0; --ink-2: #d0c7b8; --ink-3: #9d9284; --rule: #f2ece0; --line: #3a322a; --line-2: #55493c;
  --marker: #5a4c0c; --marker-2: #6e5d10; --cream: #2a241e; --shadow-hard: 3px 3px 0 var(--rule);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); font-size: 16.5px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--ketchup); text-decoration: underline; text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { background: var(--marker); color: var(--ink); text-decoration-color: var(--ink); }
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.08; margin: 0 0 .45em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
h2 { font-size: clamp(1.55rem, 2.7vw, 2.15rem); }
h3 { font-size: 1.3rem; }
h4 { font-family: var(--body); font-weight: 700; font-size: 1.02rem; margin: 0 0 .3em; }
main h2::after { content: ""; display: block; width: 110px; height: 9px; margin-top: 4px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='110' height='9' viewBox='0 0 110 9'%3E%3Cpath d='M1 5 C 10 1, 18 8, 27 5 S 44 1, 53 5 S 70 8, 79 5 S 96 1, 109 5' fill='none' stroke='%23d3281f' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat; }
p { margin: 0 0 1em; }
img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.kicker { font-family: var(--hand); font-size: 1.25rem; font-weight: 700; color: var(--ketchup); margin: 0 0 .2em; letter-spacing: 0; text-transform: none; line-height: 1.1; }
.hand { font-family: var(--hand); }
.hl { background: linear-gradient(transparent 58%, var(--marker) 58%, var(--marker) 92%, transparent 92%); padding: 0 .1em; }
.muted { color: var(--ink-3); }
.small { font-size: .9rem; }
.mono { font-family: var(--mono); font-size: .9rem; }
.hidden { display: none !important; }
.flex { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.section { padding: 40px 0; }
.section + .section { border-top: 2px dotted var(--line-2); }
.card { background: var(--paper-2); border: 2px solid var(--rule); border-radius: 3px; padding: 20px; position: relative; }
.card.flat { border: 2px dashed var(--line-2); background: transparent; }
.card.tight { padding: 12px 14px; }
.card[data-tape]::before { content: attr(data-tape); position: absolute; top: -14px; left: 14px; background: var(--mustard); color: #1a1408; font-family: var(--hand); font-size: 1.1rem; font-weight: 700; padding: 0 10px; transform: rotate(-2deg); border: 1.5px solid var(--rule); line-height: 1.5; }
.card.note { background: var(--marker); border: 0; box-shadow: 2px 3px 0 rgba(0, 0, 0, .18); transform: rotate(-.6deg); font-family: var(--hand); font-size: 1.25rem; line-height: 1.3; color: #1a1408; }
:root[data-theme="dark"] .card.note { color: var(--ink); }

/* header */
.site-header { background: var(--paper); border-bottom: 3px solid var(--rule); }
.site-header .container { display: flex; align-items: center; gap: 16px; min-height: 76px; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); white-space: nowrap; }
.brand:hover { background: none; }
.brand:hover .wordmark { background: var(--marker); }
.monogram { width: 50px; height: 50px; flex: none; display: block; }
.wordmark { font-family: var(--display); font-size: 1.35rem; line-height: 1; padding: 2px 4px; }
.wordmark small { display: block; font-family: var(--hand); font-size: 1.05rem; color: var(--ketchup); margin-top: 3px; text-transform: none; letter-spacing: 0; font-weight: 700; }
.nav { display: flex; gap: 2px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.nav a, .nav button { white-space: nowrap; padding: 4px 9px; font-weight: 700; font-size: .95rem; background: none; border: 0; cursor: pointer; color: var(--ink); text-decoration: none; }
.nav a + a::before, .nav .chains-menu + a::before { content: "·"; color: var(--ink-3); margin-right: 12px; }
.nav a:hover, .nav button:hover { background: var(--marker); text-decoration: none; }
.nav a.active { background: var(--ink); color: var(--paper); }
.hdr-search { position: relative; margin-left: 6px; }
.hdr-search input { width: 220px; padding: 7px 10px 7px 32px; border: 2px solid var(--rule); background: var(--paper-2); outline: none; border-radius: 2px; font-size: .95rem; }
.hdr-search input:focus { background: var(--marker); }
.hdr-search svg { position: absolute; left: 9px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--ink); }
#theme { font-size: 1.1rem; }
.menu-btn { display: none; }
@media (max-width: 900px) { .nav { display: none; } .menu-btn { display: inline-flex; margin-left: auto; } .nav.open { display: flex; flex-basis: 100%; flex-direction: column; align-items: stretch; padding: 6px 0 10px; border-top: 2px dotted var(--line-2); margin-top: 6px; } .nav a + a::before, .nav .chains-menu + a::before { content: ""; margin: 0; } .hdr-search input { width: 100%; } }
.chains-menu { position: relative; }
.chains-menu .dd { display: none; position: absolute; top: 100%; left: 0; background: var(--paper-2); border: 2px solid var(--rule); box-shadow: var(--shadow-hard); padding: 6px; min-width: 250px; z-index: 60; }
.chains-menu:hover .dd, .chains-menu:focus-within .dd { display: block; }
.chains-menu .dd a { display: flex; align-items: center; gap: 10px; padding: 6px 8px; font-weight: 700; text-decoration: none; color: var(--ink); }
.chains-menu .dd a::before { content: none; }
.chains-menu .dd a:hover { background: var(--marker); }
.chains-menu .dd .cnt { margin-left: auto; color: var(--ink-3); font-weight: 400; font-size: .85rem; font-family: var(--mono); }
.ticker { background: var(--ink); color: var(--paper); font-family: var(--mono); font-size: .86rem; overflow: hidden; white-space: nowrap; border-bottom: 2px solid var(--rule); }
.ticker .strip { display: inline-block; padding: 6px 0; animation: tick 90s linear infinite; }
.ticker:hover .strip { animation-play-state: paused; }
.ticker span { margin: 0 22px 0 0; }
.ticker b { color: var(--mustard); font-weight: 700; }
.ticker a { color: inherit; text-decoration: none; }
.ticker a:hover { background: var(--mustard); color: var(--ink); }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 2px solid var(--rule); background: var(--paper-2); color: var(--ink); font-weight: 700; cursor: pointer; text-decoration: none; box-shadow: var(--shadow-hard); border-radius: 2px; transition: transform .06s; }
.btn:hover { background: var(--marker); text-decoration: none; }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--rule); }
.btn-primary { background: var(--mustard); color: #1a1408; }
.btn-primary:hover { background: var(--marker-2); }
.btn-ghost { box-shadow: none; border-color: transparent; background: none; text-decoration: underline; text-decoration-style: dotted; text-underline-offset: 4px; padding-left: 4px; padding-right: 4px; }
.btn-ghost:hover { background: var(--marker); }
.btn-sm { padding: 4px 10px; font-size: .88rem; box-shadow: 2px 2px 0 var(--rule); }
.btn.active { background: var(--ink); color: var(--paper); }

/* chain sticker */
.cb { display: inline-grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; font-family: var(--display); font-size: .8rem; flex: none; border: 2.5px solid; background: var(--paper-2) !important; letter-spacing: -.02em; }
.cb.lg { width: 58px; height: 58px; font-size: 1.15rem; border-width: 3px; }
.cb.xl { width: 88px; height: 88px; font-size: 1.7rem; border-width: 4px; }

/* score stamp */
.score { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; font-family: var(--display); font-size: 1.3rem; flex: none; border: 3px solid currentColor; background: var(--paper-2); transform: rotate(-7deg); line-height: 1; }
.score.sm { width: 42px; height: 42px; font-size: 1rem; border-width: 2.5px; }
.score.xl { width: 136px; height: 136px; font-size: 3.7rem; border-width: 5px; letter-spacing: -.04em; box-shadow: inset 0 0 0 4px var(--paper-2), inset 0 0 0 6px currentColor; }
.s-great { color: var(--great); } .s-good { color: var(--good); } .s-ok { color: var(--ok); } .s-bad { color: var(--bad); }
.t-great { color: var(--great); } .t-good { color: var(--good); } .t-ok { color: var(--ok); } .t-bad { color: var(--bad); }
.stars { color: var(--mustard-2); letter-spacing: .04em; font-size: 1rem; }
.label { font-family: var(--hand); font-size: 1.2rem; color: var(--ink-2); }

/* hero */
.hero { padding: 48px 0 30px; position: relative; }
.hero h1 { max-width: 18ch; }
.hero .lede { font-size: 1.15rem; max-width: 58ch; color: var(--ink-2); }
.hero .aside { font-family: var(--hand); font-size: 1.35rem; color: var(--ketchup); transform: rotate(-2deg); display: inline-block; margin: 2px 0 8px; }
.big-search { display: flex; gap: 10px; max-width: 640px; margin: 18px 0 12px; }
.big-search input { flex: 1; padding: 12px 14px; border: 2px solid var(--rule); background: var(--paper-2); font-size: 1.05rem; outline: none; border-radius: 2px; box-shadow: var(--shadow-hard); }
.big-search input:focus { background: var(--marker); }
.scoreboard { margin-top: 28px; border: 2px solid var(--rule); background: var(--paper-2); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.scoreboard .stat { padding: 14px 16px; border-right: 2px dotted var(--line-2); }
.scoreboard .stat:last-child { border-right: 0; }
@media (max-width: 900px) { .scoreboard { grid-template-columns: repeat(2, minmax(0, 1fr)); } .scoreboard .stat { border-bottom: 2px dotted var(--line-2); } }
.stat b { display: block; font-family: var(--display); font-size: 1.75rem; line-height: 1.05; }
.stat span { font-family: var(--hand); font-size: 1.15rem; color: var(--ketchup); font-weight: 700; }

/* chain cards */
.chain-card { display: flex; gap: 14px; align-items: flex-start; text-decoration: none; color: var(--ink); }
.chain-card:hover { background: var(--marker); }
.chain-card h3 { margin: 0 0 2px; }
.chain-card .meta { font-size: .88rem; color: var(--ink-3); font-family: var(--mono); }

/* location rows */
.loc-list { display: flex; flex-direction: column; }
.loc-row { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 10px 6px; border-bottom: 1.5px dotted var(--line-2); text-decoration: none; color: var(--ink); }
.loc-row:first-child { border-top: 1.5px dotted var(--line-2); }
.loc-row:hover { background: var(--marker); }
.loc-row .t { font-weight: 700; }
.loc-row .a { font-size: .86rem; color: var(--ink-3); }
.loc-row .r { text-align: right; font-size: .82rem; color: var(--ink-3); font-family: var(--mono); }
.loc-row .r b { display: block; color: var(--ink); font-size: .9rem; font-family: var(--body); }
.pill { display: inline-block; padding: 0 6px; font-family: var(--hand); font-size: 1rem; font-weight: 700; color: var(--ink); border: 1.5px solid var(--rule); border-radius: 3px; margin-left: 6px; vertical-align: middle; line-height: 1.35; transform: rotate(-1.5deg); background: var(--paper-2); }
.pill.hot { background: var(--mustard); color: #1a1408; }
.pill.live { background: var(--ketchup); color: #fff; border-color: var(--ketchup); }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 4px; font-size: .88rem; color: var(--ink-3); margin: 16px 0 6px; font-family: var(--mono); }
.crumbs a { color: var(--ink-2); }
.crumbs span::before { content: "›"; margin: 0 6px 0 2px; color: var(--ink-3); }
.crumbs span:first-child::before { content: ""; margin: 0; }

/* location page */
.loc-hero { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: start; padding: 10px 0 24px; border-bottom: 2px solid var(--rule); margin-bottom: 26px; }
@media (max-width: 760px) { .loc-hero { grid-template-columns: 1fr; } }
.loc-hero h1 { margin-bottom: 6px; }
.loc-hero .addr { color: var(--ink-2); font-size: 1.05rem; font-family: var(--mono); }
.score-hero { text-align: center; padding: 8px 12px 0; }
.score-hero .lbl { font-family: var(--hand); font-size: 1.35rem; margin-top: 12px; color: var(--ink); font-weight: 700; }
.score-hero .com { font-size: .86rem; color: var(--ink-3); margin-top: 6px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 30px; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.prose { font-size: 1.07rem; line-height: 1.72; }
.prose p { margin-bottom: 1.15em; }
.prose p:first-of-type::first-letter { font-family: var(--display); font-size: 3.3em; float: left; line-height: .8; padding: 5px 8px 0 0; color: var(--ketchup); }
.headline { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 12px; }
.headline::after { content: none; }
.byline { display: flex; gap: 10px; align-items: center; font-size: .9rem; color: var(--ink-3); margin-bottom: 22px; flex-wrap: wrap; }
.byline .av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--rule); background: var(--mustard); color: #1a1408; display: grid; place-items: center; font-family: var(--display); font-size: .7rem; }
.tip { background: var(--marker); color: #1a1408; padding: 14px 18px; margin: 22px 0; transform: rotate(-.7deg); box-shadow: 2px 3px 0 rgba(0, 0, 0, .18); font-family: var(--hand); font-size: 1.3rem; line-height: 1.3; }
:root[data-theme="dark"] .tip { color: var(--ink); }
.info dl { display: grid; grid-template-columns: 96px 1fr; gap: 6px 10px; margin: 0; font-size: .92rem; }
.info dt { color: var(--ketchup); font-family: var(--hand); font-size: 1.1rem; font-weight: 700; }
.info dd { margin: 0; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { padding: 1px 8px; border: 1.5px solid var(--line-2); font-size: .8rem; color: var(--ink-2); border-radius: 3px; background: var(--paper-2); }
.stamp-here { position: absolute; right: 14px; top: -16px; font-family: var(--hand); font-size: 1.25rem; font-weight: 700; color: var(--ketchup); border: 2.5px solid var(--ketchup); padding: 0 10px; transform: rotate(6deg); border-radius: 4px; background: var(--paper-2); line-height: 1.5; }

/* subscores */
.subs { display: grid; gap: 9px; }
.sub { display: grid; grid-template-columns: 175px 1fr 42px; gap: 10px; align-items: center; font-size: .92rem; }
.sub .bar { height: 14px; border: 1.5px solid var(--rule); background: var(--paper-2); }
.sub .bar i { display: block; height: 100%; background: repeating-linear-gradient(-45deg, var(--ketchup) 0 4px, var(--ketchup-2) 4px 6px); }
.sub b { text-align: right; font-family: var(--display); font-weight: 400; }
@media (max-width: 560px) { .sub { grid-template-columns: 120px 1fr 36px; } }

/* receipt */
.receipt { font-family: var(--mono); font-size: .82rem; background: #fffefb; color: #221; border: 1px solid #c9bfae; padding: 18px 16px 22px; position: relative; max-width: 330px; transform: rotate(1.2deg); box-shadow: 2px 3px 0 rgba(0, 0, 0, .12); line-height: 1.4; }
.receipt::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 6px; background: linear-gradient(135deg, #fffefb 4px, transparent 0) 0 0 / 8px 8px, linear-gradient(-135deg, #fffefb 4px, transparent 0) 0 0 / 8px 8px; }
.receipt .rc { text-align: center; }
.receipt .rl { display: flex; justify-content: space-between; gap: 8px; }
.receipt hr { border: 0; border-top: 1px dashed #b8ae9c; margin: 8px 0; }
.receipt .tot { font-weight: 700; }

/* reviews */
.rev-summary { display: grid; grid-template-columns: 150px 1fr; gap: 24px; align-items: center; }
@media (max-width: 560px) { .rev-summary { grid-template-columns: 1fr; } }
.rev-summary .big { font-family: var(--display); font-size: 3.4rem; line-height: 1; }
.hist { display: grid; gap: 6px; }
.hist button { display: grid; grid-template-columns: 24px 1fr 56px; gap: 8px; align-items: center; background: none; border: 0; padding: 0; cursor: pointer; font-size: .86rem; color: var(--ink-2); text-align: left; font-family: var(--mono); }
.hist button:hover span.bar, .hist button.active span.bar { outline: 2px solid var(--ketchup); outline-offset: 1px; }
.hist span.bar { height: 12px; border: 1.5px solid var(--rule); background: var(--paper-2); overflow: hidden; }
.hist span.bar i { display: block; height: 100%; background: repeating-linear-gradient(-45deg, var(--mustard) 0 4px, var(--mustard-2) 4px 6px); }
.rev-controls { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 20px 0 8px; }
.rev-controls select, .write select { padding: 6px 10px; border: 2px solid var(--rule); background: var(--paper-2); border-radius: 2px; }
.review { padding: 18px 0; border-top: 1.5px dotted var(--line-2); }
.review .head { display: flex; gap: 12px; align-items: center; }
.avatar { width: 40px; height: 40px; border-radius: 4px; border: 2px solid var(--rule); display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff; flex: none; }
.review .who b { display: block; }
.review .who span { font-size: .8rem; color: var(--ink-3); font-family: var(--mono); }
.review .badge { font-family: var(--hand); font-size: 1rem; font-weight: 700; padding: 0 6px; border: 1.5px solid var(--rule); background: var(--mustard); color: #1a1408; margin-left: 6px; vertical-align: middle; border-radius: 3px; transform: rotate(-2deg); display: inline-block; line-height: 1.3; }
.review .rt { display: flex; gap: 10px; align-items: center; margin: 10px 0 4px; font-size: .82rem; color: var(--ink-3); font-family: var(--mono); }
.review h4 { margin: 4px 0; }
.review .txt { white-space: pre-wrap; }
.review .txt[dir="rtl"] { text-align: right; }
.review .photos { display: flex; gap: 6px; margin-top: 10px; }
.review .photo { width: 84px; height: 84px; border: 2px solid var(--rule); background: var(--cream); display: grid; place-items: end start; padding: 5px; font-size: .78rem; font-family: var(--hand); color: var(--ink); overflow: hidden; transform: rotate(-1deg); }
.review .photo:nth-child(2n) { transform: rotate(1.5deg); }
.review .foot { display: flex; gap: 14px; align-items: center; margin-top: 10px; font-size: .82rem; color: var(--ink-3); }
.review .foot button { background: none; border: 1.5px solid var(--rule); padding: 2px 9px; cursor: pointer; font-size: .82rem; color: var(--ink); border-radius: 2px; }
.review .foot button:hover { background: var(--marker); }
.reply { margin: 12px 0 0 18px; padding: 8px 14px; border-left: 3px dotted var(--line-2); font-size: .93rem; }
.reply.happy { border-left: 3px solid var(--ketchup); background: var(--marker); color: #1a1408; }
:root[data-theme="dark"] .reply.happy { color: var(--ink); }
.reply b { display: block; font-size: .8rem; margin-bottom: 2px; font-family: var(--mono); }
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin: 22px 0; flex-wrap: wrap; font-family: var(--mono); }
.pagination a, .pagination span { padding: 4px 10px; border: 1.5px solid var(--line-2); font-size: .88rem; text-decoration: none; color: var(--ink); border-radius: 2px; }
.pagination a:hover { background: var(--marker); }
.pagination .cur { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.write { display: grid; gap: 10px; }
.write input, .write textarea { padding: 9px 12px; border: 2px solid var(--rule); background: var(--paper-2); width: 100%; border-radius: 2px; }
.write input:focus, .write textarea:focus { outline: none; background: var(--marker); }
.write textarea { min-height: 110px; resize: vertical; }
.write label { display: block; font-family: var(--hand); font-size: 1.15rem; color: var(--ketchup); font-weight: 700; }
.star-pick { display: flex; gap: 4px; font-size: 1.7rem; color: var(--line-2); cursor: pointer; }
.star-pick span.on { color: var(--mustard-2); }

/* tables */
.table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.table th, .table td { padding: 8px 10px; border-bottom: 1.5px dotted var(--line-2); text-align: left; vertical-align: middle; }
.table th { font-family: var(--hand); font-size: 1.15rem; color: var(--ketchup); font-weight: 700; text-transform: none; letter-spacing: 0; border-bottom: 2px solid var(--rule); }
.table tr:hover td { background: var(--marker); }
.table .num { text-align: right; font-variant-numeric: tabular-nums; font-family: var(--mono); }
.table-wrap { overflow-x: auto; }

/* misc */
.quote { font-family: var(--hand); font-size: clamp(1.6rem, 2.8vw, 2.3rem); line-height: 1.25; max-width: 30ch; color: var(--ink); transform: rotate(-1deg); }
.quote cite { display: block; font-family: var(--body); font-style: normal; font-size: .86rem; color: var(--ink-3); margin-top: 12px; transform: none; }
.notice { background: var(--marker); color: #1a1408; padding: 10px 14px; font-size: .95rem; border-left: 4px solid var(--ketchup); }
:root[data-theme="dark"] .notice { color: var(--ink); }
.callout { border: 2px dashed var(--line-2); padding: 20px 22px; position: relative; }
.ep { display: grid; grid-template-columns: 112px 1fr; gap: 14px; align-items: center; text-decoration: none; color: var(--ink); }
.ep:hover { background: var(--marker); }
.thumb { aspect-ratio: 16 / 9; border: 2px solid var(--rule); background: repeating-linear-gradient(-45deg, var(--mustard) 0 6px, var(--mustard-2) 6px 8px); display: grid; place-items: center; position: relative; }
.thumb::after { content: "▶"; position: absolute; right: 6px; bottom: 3px; font-size: .75rem; color: var(--ink); }
.thumb.lg { font-size: 2rem; }
.news { font-size: .93rem; }
.news li { margin-bottom: 6px; }
.news time { font-family: var(--mono); color: var(--ink-3); font-size: .82rem; margin-right: 6px; }
.count-up { font-variant-numeric: tabular-nums; }
.counter { display: inline-block; font-family: var(--mono); background: #111; color: #9df29d; padding: 3px 8px; border: 2px solid #444; letter-spacing: .12em; font-size: .95rem; }
.site-footer { border-top: 3px solid var(--rule); margin-top: 56px; padding: 30px 0 40px; font-size: .92rem; color: var(--ink-2); }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
@media (max-width: 760px) { .site-footer .cols { grid-template-columns: 1fr 1fr; } }
.site-footer h4 { font-family: var(--hand); font-size: 1.25rem; color: var(--ketchup); margin-bottom: 6px; }
.site-footer .cols a { display: block; padding: 1px 0; color: var(--ink); text-decoration: none; }
.site-footer .cols a:hover { background: var(--marker); }
.site-footer .built { margin-top: 22px; padding-top: 14px; border-top: 1.5px dotted var(--line-2); font-family: var(--hand); font-size: 1.2rem; color: var(--ink); }
.disclaimer { margin-top: 14px; font-size: .78rem; line-height: 1.5; max-width: 90ch; color: var(--ink-3); }
.share { display: flex; gap: 8px; flex-wrap: wrap; }
.skeleton { color: var(--ink-3); padding: 40px 0; text-align: center; font-family: var(--hand); font-size: 1.4rem; }
.toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%) rotate(-1deg); background: var(--marker); color: #1a1408; padding: 8px 16px; font-family: var(--hand); font-size: 1.25rem; z-index: 100; border: 2px solid var(--rule); box-shadow: var(--shadow-hard); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
::selection { background: var(--marker); color: #1a1408; }

/* about portrait */
.portrait { border: 2px solid var(--rule); background: var(--paper-2); padding: 10px 10px 6px; transform: rotate(-1.5deg); box-shadow: var(--shadow-hard); }
.portrait svg { display: block; width: 100%; max-height: 240px; }
.portrait .cap { font-family: var(--hand); font-size: 1.15rem; text-align: center; color: var(--ink-2); margin-top: 4px; }
:root[data-theme="dark"] .portrait svg path[fill="#fbf7ee"] { fill: #f2ece0; }

/* photos */
.photo-fig { float: right; width: 300px; margin: 4px 0 14px 22px; border: 2px solid var(--rule); background: var(--paper-2); padding: 8px 8px 4px; transform: rotate(1.4deg); box-shadow: var(--shadow-hard); }
.photo-fig img { display: block; width: 100%; height: auto; }
.photo-fig figcaption { font-family: var(--hand); font-size: 1.1rem; color: var(--ink-2); margin-top: 4px; line-height: 1.2; text-align: center; }
@media (max-width: 640px) { .photo-fig { float: none; width: 100%; margin: 0 0 18px; } }
.byline img.av { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--rule); object-fit: cover; }
.portrait img { display: block; width: 100%; height: auto; border: 1px solid var(--line); }
