/* tokyothemeparks.com — Tokyo Theme Park Bible
   Editorial / data-journalism aesthetic. Deep navy + neon magenta accent. */

:root {
  --bg:        #fafaf8;
  --bg-alt:    #f2f0eb;
  --bg-warm:   #fbf6f3;
  --border:    #dedad4;
  --text:      #1a2238;
  --muted:     #5a5751;
  --accent:    #e8175d;            /* Tokyo neon magenta */
  --accent-dk: #b30f48;
  --accent-lt: #fce4ec;
  --warn:      #9a6809;
  --highlight: #fde68a;
  --highlight-strong: #fbd35a;
  --serif:     'Fraunces', Georgia, serif;
  --sans:      'Source Sans 3', system-ui, -apple-system, sans-serif;
  --max:       820px;
  --wide:      1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

/* --- Header ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 250, 248, 0.96);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
  height: 52px;
  display: flex; align-items: center;
}
.site-header .container {
  width: 100%; max-width: var(--wide);
  margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 700;
  letter-spacing: -.01em;
  text-decoration: none; color: var(--text);
  display: inline-flex; align-items: center; gap: .55rem;
}
.brand-mark {
  display: inline-block; width: 22px; height: 22px;
  background: var(--accent);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 92%, 50% 71%, 21% 92%, 32% 57%, 2% 35%, 39% 35%);
}
.nav-links { display: flex; gap: 1.4rem; align-items: center; }
.nav-links a {
  color: var(--text); text-decoration: none;
  font-size: .92rem; font-weight: 500;
  border-bottom: 2px solid transparent;
  padding: 2px 0; transition: border-color .15s, color .15s;
}
.nav-links a:hover { border-bottom-color: var(--accent); color: var(--accent); }
.nav-links a.active { border-bottom-color: var(--accent); }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 6px; color: var(--text);
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 720px) {
  .nav-links {
    position: fixed; top: 52px; right: 0;
    background: var(--bg);
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0;
    padding: .5rem 0; min-width: 200px;
    transform: translateX(105%); transition: transform .2s;
    box-shadow: -4px 8px 24px rgba(26, 34, 56, .08);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .8rem 1.4rem; width: 100%; border-bottom: 0; }
  .nav-links a:hover { background: var(--accent-lt); border-bottom: 0; color: var(--accent); }
  .nav-toggle { display: inline-flex; }
}

/* --- Hero ------------------------------------------------------------ */
.hero {
  padding: 3.5rem 1.5rem 2.5rem;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-inner { max-width: var(--max); margin: 0 auto; }
.eyebrow {
  display: inline-block;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.08; font-weight: 600;
  letter-spacing: -.02em;
  margin-bottom: 1.1rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.deck {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 64ch;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.byline {
  font-size: .87rem; color: var(--muted);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
}
.byline strong { color: var(--text); font-weight: 600; }

/* --- Facts bar ------------------------------------------------------- */
.facts-bar {
  background: var(--text); color: #fafafa;
  padding: 1.4rem 1.5rem;
}
.facts-bar-inner {
  max-width: var(--wide); margin: 0 auto;
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.fact { text-align: center; }
.fact-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 600;
  color: #fff; line-height: 1.05;
  margin-bottom: .15rem;
}
.fact-num em { font-style: normal; color: var(--accent); }
.fact-label {
  display: block; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: rgba(250, 250, 248, .65);
}

/* --- Anchor nav (sticky chapter strip) ------------------------------ */
.anchor-nav {
  position: sticky; top: 52px; z-index: 90;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow-x: auto; white-space: nowrap;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.anchor-nav::-webkit-scrollbar { display: none; }
.anchor-nav-list {
  max-width: var(--wide); margin: 0 auto;
  padding: 0 1.5rem;
  display: inline-flex; gap: .15rem;
  list-style: none; min-width: 100%;
}
.anchor-nav-list li { flex-shrink: 0; padding: 0; margin: 0; }
.anchor-nav-list li::before { content: none; }
.anchor-link {
  display: inline-block;
  padding: .55rem .8rem;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s, opacity .15s;
  opacity: .55; white-space: nowrap;
}
.anchor-link:hover { color: var(--accent); border-bottom-color: var(--accent); opacity: 1; }

/* --- Generic section -------------------------------------------------- */
section {
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
section.no-border { border-bottom: 0; }
.container { max-width: var(--max); margin: 0 auto; }
.container-wide { max-width: var(--wide); margin: 0 auto; }

h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.15; font-weight: 600;
  letter-spacing: -.015em;
  margin-bottom: 1.3rem;
}
h2 .num {
  display: inline-block;
  font-family: ui-monospace, 'SF Mono', Menlo, Monaco, Consolas, monospace;
  font-size: .68em; color: var(--accent);
  margin-right: .55rem; font-weight: 700;
  letter-spacing: .04em;
}
h3 {
  font-family: var(--serif);
  font-size: 1.4rem; font-weight: 600;
  line-height: 1.25;
  margin: 1.6rem 0 .7rem;
}
h4 {
  font-family: var(--sans);
  font-size: 1.05rem; font-weight: 700;
  margin: 1.3rem 0 .5rem;
  letter-spacing: -.005em;
}
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
a:hover { color: var(--accent-dk); }

/* --- Inline u-link with persistent yellow highlighter --------------- */
.u-link {
  position: relative;
  font-weight: 700;
  text-decoration: none;
  color: var(--text);
  padding: 0 .12em;
  background-image: linear-gradient(to top,
    transparent .15em,
    var(--highlight) .15em,
    var(--highlight) 1.05em,
    transparent 1.05em);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: color .15s, background-image .15s;
}
.u-link:hover {
  color: var(--accent-dk);
  background-image: linear-gradient(to top,
    transparent .15em,
    var(--highlight-strong) .15em,
    var(--highlight-strong) 1.05em,
    transparent 1.05em);
}

/* --- TL;DR callout -------------------------------------------------- */
.tldr {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 1.6rem 1.8rem;
  margin-bottom: 1.5rem;
}
.tldr ul { list-style: none; padding: 0; }
.tldr li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: 1.02rem;
  border-bottom: 1px dashed var(--border);
}
.tldr li:last-child { border-bottom: 0; }
.tldr li::before {
  content: '★';
  position: absolute; left: 0; top: .55rem;
  color: var(--accent);
  font-size: 1.05rem;
}
.tldr li strong { font-weight: 700; }

/* --- Top picks (Top 8 ranked list) ---------------------------------- */
.top-list { list-style: none; padding: 0; counter-reset: rank; }
.top-list > li {
  counter-increment: rank;
  padding: 1.6rem 0 1.6rem 4rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.top-list > li:last-child { border-bottom: 0; }
.top-list > li::before {
  content: counter(rank, decimal-leading-zero);
  position: absolute; left: 0; top: 1.4rem;
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: 1.6rem; font-weight: 700;
  color: var(--accent);
  letter-spacing: -.03em;
}
.top-list h3 { margin: 0 0 .4rem; font-size: 1.3rem; }
.top-list .pick-meta {
  font-size: .82rem; color: var(--muted);
  font-family: ui-monospace, monospace;
  margin-bottom: .65rem;
  letter-spacing: .02em;
}
.top-list .pick-meta span {
  display: inline-block;
  background: var(--bg-alt);
  padding: .15rem .55rem;
  border-radius: 3px;
  margin-right: .3rem; margin-bottom: .25rem;
}
.top-list p { font-size: .98rem; margin-bottom: .7rem; }

/* --- Chip-link (small pre-filtered link to /tours preset) ---------- */
.chip {
  display: inline-flex; align-items: center;
  font-size: .8rem; font-weight: 600;
  padding: .35rem .8rem;
  border-radius: 3px;
  text-decoration: none;
  background: var(--bg-alt);
  color: var(--text);
  border: 1px solid var(--border);
  transition: background .15s, border-color .15s, color .15s;
  margin-top: .3rem;
}
.chip:hover { background: var(--accent-lt); border-color: var(--accent); color: var(--accent-dk); }
.chip.accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip.accent:hover { background: var(--accent-dk); border-color: var(--accent-dk); color: #fff; }

/* --- Persona-grid + by-type-grid (cards) ---------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  margin-top: 1.2rem;
}
.persona-card {
  background: var(--bg-alt);
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
}
.persona-card h4 {
  margin: 0 0 .55rem; font-size: 1.05rem;
  font-family: var(--serif); font-weight: 600;
}
.persona-card .persona-icon {
  display: inline-block;
  width: 32px; height: 32px;
  background: var(--accent-lt);
  border-radius: 50%;
  margin-bottom: .8rem;
  position: relative;
}
.persona-card .persona-icon::after {
  content: ''; position: absolute;
  inset: 8px; background: var(--accent);
  border-radius: 50%;
}
.persona-card ul { list-style: none; padding: 0; font-size: .92rem; flex: 1; margin-bottom: .8rem; }
.persona-card li {
  padding: .35rem 0 .35rem 1.1rem;
  position: relative;
  line-height: 1.5;
}
.persona-card li::before {
  content: '→'; position: absolute; left: 0; top: .35rem;
  color: var(--accent); font-weight: 700;
}

/* --- Season grid (4 blocks) ----------------------------------------- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 1.2rem;
}
.season-card {
  border-top: 4px solid var(--accent);
  padding: 1.3rem 1.4rem;
  background: var(--bg-alt);
}
.season-card h4 {
  margin: 0 0 .35rem; font-size: 1.05rem;
  font-family: var(--serif); font-weight: 600;
}
.season-card .season-when {
  font-size: .78rem; color: var(--muted);
  font-family: ui-monospace, monospace;
  letter-spacing: .04em;
  margin-bottom: .6rem;
}
.season-card ul { list-style: none; padding: 0; font-size: .92rem; }
.season-card li {
  padding: .25rem 0 .25rem 1rem;
  position: relative;
}
.season-card li::before {
  content: '·'; position: absolute; left: .15rem; top: .25rem;
  color: var(--accent); font-weight: 900; font-size: 1.4rem; line-height: 1;
}
.season-card .avoid {
  margin-top: .6rem; padding-top: .55rem;
  border-top: 1px dashed var(--border);
  font-size: .85rem; color: var(--warn);
}
.season-card.spring { border-top-color: #d4729b; }
.season-card.summer { border-top-color: #2e9bd9; }
.season-card.autumn { border-top-color: #d97c2e; }
.season-card.winter { border-top-color: #6a4f9c; }

/* --- Cost / data tables --------------------------------------------- */
.data-table-wrap {
  overflow-x: auto; margin: 1.4rem 0;
  border: 1px solid var(--border);
  -webkit-overflow-scrolling: touch;
}
.data-table {
  width: 100%; border-collapse: collapse;
  font-size: .92rem;
  background: var(--bg);
}
.data-table th, .data-table td {
  padding: .75rem .9rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.data-table thead th {
  background: var(--bg-alt);
  font-size: .76rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text);
  border-bottom: 2px solid var(--text);
}
.data-table tbody tr:hover { background: var(--bg-warm); }
.data-table .tier {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 2px;
  text-transform: uppercase; letter-spacing: .04em;
}
.data-table .tier.budget   { background: #e6f3e8; color: #2c6e3a; }
.data-table .tier.mid      { background: #fff4d6; color: #8a5e0a; }
.data-table .tier.premium  { background: var(--accent-lt); color: var(--accent-dk); }

/* --- Red flags ------------------------------------------------------ */
.flag-list {
  list-style: none; padding: 0;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 1.2rem;
}
.flag-list li {
  padding: 1rem 1.1rem;
  border-left: 4px solid var(--warn);
  background: #fffaee;
  font-size: .94rem;
  line-height: 1.55;
}
.flag-list li strong {
  display: block; margin-bottom: .35rem;
  color: #6e4a04; font-size: .98rem;
}

/* --- Where to book table (parks vs channels) ----------------------- */
.book-where th:first-child { width: 26%; }

/* --- FAQ accordion -------------------------------------------------- */
.faq { margin-top: 1.2rem; }
.faq details {
  border-bottom: 1px solid var(--border);
}
.faq details:first-of-type { border-top: 1px solid var(--border); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2.5rem 1.05rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  position: relative;
  transition: color .15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .3rem; top: 50%;
  transform: translateY(-50%);
  font-family: ui-monospace, monospace; font-size: 1.5rem;
  color: var(--accent); font-weight: 400;
  transition: transform .2s;
}
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--accent); }
.faq .answer { padding: 0 0 1.2rem; color: var(--muted); font-size: .98rem; }
.faq .answer p { margin-bottom: .8rem; color: var(--muted); }
.faq .answer p:last-child { margin-bottom: 0; }

/* --- Tour cards (catalogue page, hand-curated variant) ------------ */
.tours-intro {
  background: var(--accent-lt);
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--accent);
  margin: 1.2rem 0 2rem;
}
.tours-intro h3 {
  margin: 0 0 .5rem; font-size: 1.1rem;
  font-family: var(--serif);
}
.tours-intro p { font-size: .98rem; color: var(--text); }
.tours-intro p:last-child { margin-bottom: 0; }

.filter-bar {
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 1.6rem 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.filter-label {
  width: 100%; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .07em;
  color: var(--muted); font-weight: 700;
  margin-bottom: .35rem;
}
.filter-chip {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .42rem .9rem;
  font-size: .85rem; font-weight: 600;
  cursor: pointer;
  border-radius: 3px;
  font-family: var(--sans);
  color: var(--text);
  transition: background .15s, border-color .15s, color .15s;
}
.filter-chip:hover { border-color: var(--accent); color: var(--accent-dk); }
.filter-chip.active {
  background: var(--accent); border-color: var(--accent); color: #fff;
}
.count-bar {
  font-family: ui-monospace, monospace;
  font-size: .82rem; color: var(--muted);
  margin: 1rem 0 1.5rem;
}
.count-bar strong { color: var(--text); font-weight: 700; }

.topic-banner {
  background: #fff4d6;
  border-left: 4px solid var(--warn);
  padding: 1rem 1.3rem;
  margin: 1rem 0 1.5rem;
  font-size: .94rem;
  display: none;
}
.topic-banner.visible { display: block; }
.topic-banner strong { color: #6e4a04; }

.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.6rem;
  margin-top: 1.4rem;
}
.tour-card {
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.tour-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(232, 23, 93, .08);
}
.tour-card.tour-row-hidden { display: none; }
.tour-card .tour-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}
.tour-card .tour-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s;
}
.tour-card:hover .tour-img img { transform: scale(1.04); }
.tour-card .tour-badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--text); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: .25rem .6rem;
  letter-spacing: .06em; text-transform: uppercase;
  font-family: ui-monospace, monospace;
}
.tour-card .tour-badge.disney    { background: #d62c1a; }
.tour-card .tour-badge.disneysea { background: #1a4f8c; }
.tour-card .tour-badge.yomiuri   { background: #ffb53e; color: #1a2238; }
.tour-card .tour-badge.teamlab   { background: #6a4f9c; }
.tour-card .tour-badge.fujiq     { background: #2e9bd9; }
.tour-card .tour-badge.transfer  { background: #5a5751; }
.tour-card .tour-badge.attraction { background: var(--accent); }
.tour-card .tour-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex; flex-direction: column; flex: 1;
}
.tour-card h3 {
  margin: 0 0 .4rem;
  font-size: 1.08rem; line-height: 1.3;
  font-family: var(--serif); font-weight: 600;
}
.tour-card h3 a { color: var(--text); text-decoration: none; }
.tour-card h3 a:hover { color: var(--accent); }
.tour-card .tour-note {
  font-size: .87rem; color: var(--muted);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: .75rem;
}
.tour-card .tour-meta {
  font-family: ui-monospace, monospace;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: .9rem;
  letter-spacing: .02em;
}
.tour-card .tour-meta .star { color: var(--accent); font-weight: 700; }
.tour-card .tour-meta .sep { margin: 0 .35rem; opacity: .5; }
.tour-card .book-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: .6rem 1.1rem;
  font-weight: 700;
  font-size: .92rem;
  text-align: center;
  margin-top: auto;
  align-self: flex-start;
  transition: background .15s;
}
.tour-card .book-cta:hover { background: var(--accent-dk); color: #fff; }

/* --- Methodology box ------------------------------------------------ */
.methodology {
  background: var(--bg-alt);
  padding: 1.5rem 1.8rem;
  border: 1px dashed var(--border);
  margin-top: 2rem;
  font-size: .92rem;
  color: var(--muted);
}
.methodology h4 { margin-top: 0; color: var(--text); font-family: var(--serif); }
.methodology p { font-size: .92rem; }

/* --- Floating plan pill (CTA) -------------------------------------- */
.plan-pill {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  background: var(--accent); color: #fff;
  padding: .75rem 1.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700; font-size: .92rem;
  box-shadow: 0 6px 22px rgba(232, 23, 93, .35);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .25s, transform .25s, background .15s;
}
.plan-pill.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.plan-pill:hover { background: var(--accent-dk); color: #fff; }
@media (max-width: 600px) {
  .plan-pill { bottom: 1rem; right: 1rem; padding: .6rem 1.1rem; font-size: .85rem; }
}

/* --- Footer --------------------------------------------------------- */
.site-footer {
  background: var(--text); color: #d6d4ce;
  padding: 2.5rem 1.5rem 2rem;
}
.site-footer .container-wide {
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr;
}
@media (max-width: 720px) {
  .site-footer .container-wide { grid-template-columns: 1fr; }
}
.site-footer h5 {
  font-family: var(--serif); color: #fff;
  font-size: .85rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: .8rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer a {
  color: #d6d4ce; text-decoration: none;
  font-size: .9rem;
  border-bottom: 1px solid transparent;
  transition: color .15s, border-color .15s;
}
.site-footer a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.site-footer p { font-size: .88rem; color: #aaa9a3; line-height: 1.55; margin-bottom: .8rem; }
.site-footer .footer-bottom {
  margin-top: 2rem; padding-top: 1.2rem;
  border-top: 1px solid #3a3f4f;
  font-size: .8rem; color: #8e8c87;
  text-align: center;
}
.site-footer .footer-bottom a { color: #d6d4ce; }

/* --- Pull quote ----------------------------------------------------- */
.pullquote {
  font-family: var(--serif);
  font-size: 1.4rem; line-height: 1.4;
  color: var(--text);
  border-left: 4px solid var(--accent);
  padding: 1rem 0 1rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  font-weight: 500;
}
.pullquote-cite {
  display: block;
  font-style: normal;
  font-size: .85rem;
  color: var(--muted);
  font-family: ui-monospace, monospace;
  margin-top: .5rem;
  letter-spacing: .03em;
}

/* --- Mobile tweaks -------------------------------------------------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding: 2.5rem 1.2rem 2rem; }
  section { padding: 2.2rem 1.2rem; }
  .top-list > li { padding-left: 3rem; }
  .top-list > li::before { font-size: 1.3rem; top: 1.5rem; }
  .filter-bar { gap: .35rem; }
  .filter-chip { padding: .35rem .7rem; font-size: .8rem; }
}
