/* ==========================================================================
   Finjuve — reference site
   Plain, document-like typography. Wikipedia/encyclopedia feel.
   ========================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; }
img, picture, svg { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  /* Colour — restrained, document-like */
  --ink-900: #202122;          /* Wikipedia-like primary text */
  --ink-700: #404448;          /* secondary text */
  --ink-500: #54595D;          /* meta */
  --ink-300: #A2A9B1;
  --line:    #C8CCD1;          /* hairlines */
  --line-2:  #EAECF0;
  --bg:      #FFFFFF;
  --bg-soft: #F8F9FA;          /* like Wikipedia article background tint */
  --bg-tint: #EAECF0;
  --link:    #0645AD;          /* classic wiki link blue */
  --link-v:  #0B0080;          /* visited */
  --link-h:  #3366BB;          /* hover */
  --red:     #B32424;          /* red link / error */
  --green:   #14866D;

  /* Type — system stacks, no remote fonts */
  --ff-sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  --ff-serif: "Linux Libertine", "Georgia", "Times New Roman", serif;
  --ff-mono:  ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;

  /* Scale — encyclopedia-paced, smaller than before */
  --fs-xs:  0.75rem;
  --fs-sm:  0.85rem;
  --fs-base:0.95rem;
  --fs-md:  1.05rem;
  --fs-lg:  1.2rem;
  --fs-xl:  1.4rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.1rem;

  /* Space */
  --sp-1: 0.25rem; --sp-2: 0.5rem; --sp-3: 0.75rem; --sp-4: 1rem;
  --sp-5: 1.5rem;  --sp-6: 2rem;    --sp-7: 2.5rem;  --sp-8: 3.25rem;
  --sp-9: 4.5rem;  --sp-10: 6rem;

  /* Layout */
  --container: 1100px;
  --container-narrow: 760px;
  --radius: 3px;
  --radius-lg: 4px;
  --shadow-sm: 0 1px 1px rgba(0,0,0,0.04);
  --shadow:    0 1px 2px rgba(0,0,0,0.06);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.08);

  --ease: cubic-bezier(.2,.7,.2,1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--link);
  text-decoration: none;
  border-bottom: 0;
}
a:hover { color: var(--link-h); text-decoration: underline; }
a:visited { color: var(--link-v); }
a:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 2px;
  border-radius: 2px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-900);
  line-height: 1.25;
}
h1 {
  font-size: clamp(1.75rem, 3.2vw, var(--fs-3xl));
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.25em;
  margin-bottom: 0.7em;
}
h2 {
  font-size: clamp(1.4rem, 2.4vw, var(--fs-2xl));
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.2em;
  margin-bottom: var(--sp-4);
  font-weight: 400;
}
h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  font-weight: 600;
  font-family: var(--ff-sans);
}
h4 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
  font-weight: 600;
  font-family: var(--ff-sans);
}

p { color: var(--ink-900); }
p + p { margin-top: var(--sp-4); }

ul.bare, ol.bare { list-style: none; }
.lede { font-size: var(--fs-md); color: var(--ink-900); line-height: 1.6; font-weight: 400; }
hr { border: 0; border-top: 1px solid var(--line); margin: var(--sp-6) 0; }
::selection { background: #FFE066; color: var(--ink-900); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-5); }
section { padding: var(--sp-6) 0; }
section.tight { padding: var(--sp-5) 0; }
section.alt { background: var(--bg-soft); }

/* eyebrow — left in CSS for compatibility but visually toned right down */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-500);
  font-weight: 400;
  margin-bottom: var(--sp-2);
}

.section-header { max-width: 760px; margin-bottom: var(--sp-5); }
.section-header p { font-size: var(--fs-base); color: var(--ink-700); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  gap: var(--sp-4);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  color: var(--ink-900);
  font-family: var(--ff-serif);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 1.15rem;
}
.brand:hover { color: var(--ink-900); text-decoration: none; }
.brand-mark {
  width: 22px; height: 22px;
  border-radius: 3px;
  background: var(--ink-900);
  display: inline-grid; place-items: center;
  color: #fff; font-family: var(--ff-serif); font-weight: 700;
  font-size: 0.75rem; line-height: 1;
}
.brand-mark::after { content: "F"; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: var(--sp-5);
  align-items: center;
}
.nav-menu a {
  color: var(--ink-700);
  font-size: var(--fs-sm);
  font-weight: 400;
  padding: 4px 0;
  position: relative;
}
.nav-menu a:hover { color: var(--link); text-decoration: underline; }
.nav-menu a[aria-current="page"] { color: var(--ink-900); font-weight: 600; }

.nav-cta { display: inline-flex; align-items: center; gap: var(--sp-2); }
.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  border-radius: 3px;
  align-items: center; justify-content: center;
  color: var(--ink-700);
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: absolute; top: 56px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: var(--sp-4);
    gap: var(--sp-3);
    align-items: flex-start;
  }
}

/* ---------- Buttons (kept small; not used as marketing CTAs) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 7px 14px;
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0;
  transition: background .15s var(--ease), border-color .15s var(--ease);
  white-space: nowrap;
  line-height: 1.2;
  font-family: var(--ff-sans);
}
.btn-primary {
  background: var(--ink-900);
  color: #fff;
  border: 1px solid var(--ink-900);
}
.btn-primary:hover { background: #000; color: #fff; text-decoration: none; }
.btn-accent { background: var(--link); color: #fff; border: 1px solid var(--link); }
.btn-accent:hover { background: var(--link-h); color: #fff; text-decoration: none; }
.btn-ghost {
  background: #F8F9FA;
  color: var(--ink-900);
  border: 1px solid var(--line);
}
.btn-ghost:hover { background: #fff; color: var(--ink-900); border-color: var(--ink-700); text-decoration: none; }
.btn-sm { padding: 5px 10px; font-size: var(--fs-xs); }
.btn-lg { padding: 9px 16px; font-size: var(--fs-base); }
.btn .arrow { transition: none; }

/* ---------- Lead / page top ---------- */
.lead {
  padding: var(--sp-6) 0 var(--sp-5);
  border-bottom: 1px solid var(--line-2);
}
.lead h1 { margin-bottom: 0.4em; }
.lead .lede { margin-bottom: var(--sp-3); max-width: 720px; }
.lead p { max-width: 720px; }

/* hero (kept for backwards compat, but now plain) */
.hero {
  padding: var(--sp-6) 0 var(--sp-5);
  border-bottom: 1px solid var(--line-2);
  background: none;
}
.hero-grid { display: block; }
.hero h1 { margin-bottom: 0.4em; }
.hero .lede { margin-bottom: var(--sp-3); max-width: 720px; }
.hero .support { max-width: 720px; margin-bottom: var(--sp-4); font-size: var(--fs-base); }
.hero-actions { display: flex; gap: var(--sp-2); flex-wrap: wrap; margin-bottom: var(--sp-4); }
.hero-trust { display: none; } /* removed marketing trust pills */
.hero-visual { display: none; } /* removed decorative hero image */

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 900px) { .card-grid-3 { grid-template-columns: 1fr; } }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
}
.card h3 { font-family: var(--ff-sans); font-size: var(--fs-md); margin-bottom: var(--sp-2); font-weight: 600; }
.card p { font-size: var(--fs-sm); color: var(--ink-700); }
.card .card-icon {
  width: 28px; height: 28px;
  border-radius: 3px;
  background: var(--bg-tint);
  color: var(--ink-700);
  display: inline-grid; place-items: center;
  margin-bottom: var(--sp-3);
}
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 400;
}

/* Section index cards (homepage) */
.index-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  text-decoration: none; color: var(--ink-900);
  height: 100%;
}
.index-card:hover { background: var(--bg-soft); color: var(--ink-900); text-decoration: none; }
.index-card .number {
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  color: var(--ink-500);
  margin-bottom: var(--sp-2);
  letter-spacing: 0;
}
.index-card h3 {
  font-family: var(--ff-sans);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
  font-weight: 600;
  color: var(--link);
}
.index-card:hover h3 { text-decoration: underline; }
.index-card p { font-size: var(--fs-sm); color: var(--ink-700); flex: 1; }
.index-card .more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: var(--sp-3);
  font-size: var(--fs-sm); font-weight: 400;
  color: var(--link);
}

/* ---------- Stockists table ---------- */
.directory {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.directory-toolbar {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  padding: var(--sp-4);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
  align-items: center;
}
.directory-toolbar .search {
  flex: 1; min-width: 220px;
  position: relative;
}
.directory-toolbar .search input {
  width: 100%;
  padding: 7px 10px 7px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: var(--fs-sm);
}
.directory-toolbar .search input:focus { outline: 2px solid var(--link); outline-offset: 1px; border-color: var(--link); }
.directory-toolbar .search svg {
  position: absolute; left: 10px; top: 50%; transform: translateY(-50%);
  width: 14px; height: 14px; color: var(--ink-500);
}
.directory-toolbar select {
  padding: 7px 28px 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: var(--fs-sm);
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'><path fill='%2354595D' d='M6 8L2 4h8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.table-wrap { overflow-x: auto; }
table.stockists {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}
table.stockists th, table.stockists td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: middle;
  border-bottom: 1px solid var(--line-2);
}
table.stockists th {
  background: var(--bg-soft);
  color: var(--ink-700);
  font-weight: 600;
  font-size: var(--fs-xs);
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--line);
}
table.stockists tbody tr:hover { background: var(--bg-soft); }
table.stockists tbody tr:last-child td { border-bottom: 0; }
.pill {
  display: inline-flex; align-items: center;
  padding: 2px 7px;
  font-size: 0.7rem;
  font-weight: 400;
  border-radius: 3px;
  background: var(--bg-tint);
  color: var(--ink-700);
  letter-spacing: 0;
}
.pill-authorised { background: rgba(20,134,109,0.10); color: var(--green); }
.pill-rx { background: rgba(6,69,173,0.10); color: var(--link); }

.directory-empty { padding: var(--sp-6); text-align: center; color: var(--ink-500); font-size: var(--fs-sm); display: none; }
.directory-empty.show { display: block; }

/* ---------- Research cards / accordion ---------- */
.study {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: var(--sp-3);
}
.study summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) var(--sp-5);
  display: flex; gap: var(--sp-4);
  align-items: flex-start;
}
.study summary::-webkit-details-marker { display: none; }
.study summary::after {
  content: ""; flex-shrink: 0;
  width: 10px; height: 10px;
  border-right: 1.2px solid var(--ink-500);
  border-bottom: 1.2px solid var(--ink-500);
  transform: rotate(45deg);
  margin-top: 8px;
  transition: transform .2s var(--ease);
}
.study[open] summary::after { transform: rotate(-135deg); margin-top: 10px; }
.study-meta { font-size: var(--fs-xs); color: var(--ink-500); margin-bottom: 4px; letter-spacing: 0; text-transform: none; font-weight: 400; }
.study-title { font-family: var(--ff-sans); font-size: var(--fs-md); color: var(--ink-900); margin-bottom: 2px; line-height: 1.35; font-weight: 600; }
.study-authors { font-size: var(--fs-sm); color: var(--ink-500); }
.study-body { padding: 0 var(--sp-5) var(--sp-4); }
.study-body p { font-size: var(--fs-sm); color: var(--ink-700); }
.study-body .source-link { display: inline-flex; align-items: center; gap: 4px; margin-top: var(--sp-3); font-size: var(--fs-sm); font-weight: 400; }

/* ---------- News cards ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-4);
}
.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  color: var(--ink-900);
}
.article-card:hover { background: var(--bg-soft); color: var(--ink-900); text-decoration: none; }
.article-card .thumb {
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  position: relative;
  border-bottom: 1px solid var(--line-2);
}
.article-card .thumb svg { width: 100%; height: 100%; }
.article-card .body { padding: var(--sp-4); display: flex; flex-direction: column; flex: 1; }
.article-card .category { font-size: var(--fs-xs); color: var(--ink-500); letter-spacing: 0; text-transform: none; font-weight: 400; margin-bottom: var(--sp-2); }
.article-card h3 { font-family: var(--ff-sans); font-size: var(--fs-md); margin-bottom: var(--sp-2); font-weight: 600; color: var(--link); }
.article-card:hover h3 { text-decoration: underline; }
.article-card .meta { font-size: var(--fs-xs); color: var(--ink-500); margin-top: auto; padding-top: var(--sp-3); border-top: 1px solid var(--line-2); display: flex; justify-content: space-between; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: var(--sp-4) 0;
  display: flex; justify-content: space-between; gap: var(--sp-4);
  align-items: flex-start;
  font-family: var(--ff-sans);
  font-size: var(--fs-md);
  color: var(--ink-900);
  font-weight: 600;
  line-height: 1.35;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--ff-sans);
  font-size: 1.3rem;
  color: var(--ink-500);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 400;
}
.faq[open] summary::after { content: "−"; }
.faq-body { padding: 0 0 var(--sp-4); max-width: 720px; }
.faq-body p { color: var(--ink-700); font-size: var(--fs-base); }

/* ---------- Pillar / prose ---------- */
.prose { max-width: 720px; }
.prose p { font-size: var(--fs-base); line-height: 1.65; color: var(--ink-900); margin-bottom: var(--sp-4); }
.prose h2 { margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose h3 { margin-top: var(--sp-5); margin-bottom: var(--sp-2); }
.prose ul:not(.bare), .prose ol:not(.bare) {
  margin: var(--sp-2) 0 var(--sp-4) var(--sp-5);
  color: var(--ink-900);
}
.prose ul:not(.bare) li, .prose ol:not(.bare) li { margin-bottom: var(--sp-1); line-height: 1.6; }
.prose blockquote {
  border-left: 3px solid var(--ink-300);
  padding: var(--sp-1) var(--sp-4);
  margin: var(--sp-4) 0;
  color: var(--ink-700);
}
.prose cite { color: var(--ink-500); font-size: var(--fs-sm); display: block; margin-top: var(--sp-1); font-style: normal; }
.prose figure { margin: var(--sp-5) 0; }
.prose figcaption { font-size: var(--fs-sm); color: var(--ink-500); margin-top: var(--sp-2); }

.callout {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  border-left: 3px solid var(--ink-500);
  border-radius: var(--radius);
  padding: var(--sp-4);
  margin: var(--sp-4) 0;
}
.callout h4 { font-family: var(--ff-sans); font-size: var(--fs-sm); text-transform: none; letter-spacing: 0; color: var(--ink-900); margin-bottom: var(--sp-2); font-weight: 600; }
.callout p { font-size: var(--fs-sm); margin: 0; color: var(--ink-700); }

.diagram-block {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-4);
  background: var(--bg-soft);
  margin: var(--sp-5) 0;
}
.diagram-block svg { width: 100%; height: auto; }

.deflist {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: var(--sp-2) var(--sp-4);
  border-top: 1px solid var(--line-2);
  padding-top: var(--sp-4);
  margin-top: var(--sp-4);
}
@media (max-width: 700px) { .deflist { grid-template-columns: 1fr; } }
.deflist dt { font-weight: 600; color: var(--ink-900); font-size: var(--fs-sm); }
.deflist dd { color: var(--ink-700); font-size: var(--fs-sm); margin: 0; }

.layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-6);
  align-items: flex-start;
}
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; } }
.layout-toc {
  position: sticky; top: 76px;
  font-size: var(--fs-sm);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--sp-3);
}
.layout-toc h4 { font-family: var(--ff-sans); font-size: var(--fs-sm); text-transform: none; letter-spacing: 0; color: var(--ink-900); margin-bottom: var(--sp-2); font-weight: 600; }
.layout-toc ul { list-style: none; }
.layout-toc li { margin-bottom: 4px; }
.layout-toc a { color: var(--link); padding: 1px 0; display: block; }
.layout-toc a:hover { text-decoration: underline; }

/* ---------- Page header ---------- */
.page-header {
  padding: var(--sp-6) 0 var(--sp-4);
  border-bottom: 1px solid var(--line-2);
  background: none;
}
.page-header h1 { margin-bottom: var(--sp-2); max-width: 800px; }
.page-header .lede { max-width: 720px; }
.breadcrumbs {
  font-size: var(--fs-xs);
  color: var(--ink-500);
  margin-bottom: var(--sp-3);
  letter-spacing: 0;
}
.breadcrumbs a { color: var(--ink-500); }
.breadcrumbs a:hover { color: var(--link); }
.breadcrumbs .sep { margin: 0 6px; color: var(--ink-300); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  color: var(--ink-700);
  padding: var(--sp-6) 0 var(--sp-4);
  font-size: var(--fs-sm);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--ff-sans);
  color: var(--ink-900);
  font-size: var(--fs-sm);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--sp-2);
  font-weight: 600;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 4px; }
.footer-grid a { color: var(--link); font-size: var(--fs-sm); }
.footer-brand p { color: var(--ink-700); font-size: var(--fs-sm); margin-top: var(--sp-2); max-width: 360px; }
.footer-brand .brand { color: var(--ink-900); }
.footer-brand .brand-mark { background: var(--ink-900); }
.footer-disclaimer {
  border-top: 1px solid var(--line);
  padding-top: var(--sp-4);
  color: var(--ink-500);
  font-size: var(--fs-xs);
  line-height: 1.6;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.footer-disclaimer .legal-row {
  display: flex; flex-wrap: wrap; gap: var(--sp-3);
  justify-content: space-between;
}
.footer-disclaimer p { color: var(--ink-700); max-width: 760px; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-3 { margin-top: var(--sp-3); } .mt-5 { margin-top: var(--sp-5); } .mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; } .mb-3 { margin-bottom: var(--sp-3); } .mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }
.muted { color: var(--ink-500); }
.small { font-size: var(--fs-sm); }
.tag-row { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.tag {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-size: var(--fs-xs);
  color: var(--ink-700);
  cursor: pointer;
}
.tag:hover { background: var(--bg-soft); }
.tag.active { background: var(--ink-900); color: #fff; border-color: var(--ink-900); }
.skip {
  position: absolute; left: -9999px;
  background: var(--ink-900); color: #fff;
  padding: 8px 14px; border-radius: var(--radius); font-size: var(--fs-sm); font-weight: 400;
  z-index: 100;
}
.skip:focus { left: var(--sp-4); top: var(--sp-3); }
