/* ---------------------------------------------------------------------------
   Smoofl base stylesheet — everything an information page needs.
   No shop, no page builder, no framework.
   --------------------------------------------------------------------------- */

/* -- Fonts ---------------------------------------------------------------- */
/* Self-hosted: the site is EU-facing and has a cookie policy, so we don't
   hand every visitor's IP to a third-party font CDN. */
@font-face {
  font-family: "HVD Comic Serif Pro";
  src: url("../fonts/HVD_Comic_Serif_Pro-webfont.woff") format("woff"),
       url("../fonts/HVD_Comic_Serif_Pro-webfont.ttf")  format("truetype");
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Phosphate Solid";
  src: url("../fonts/PhosphateSolid.ttf") format("truetype");
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Phosphate Inline";
  src: url("../fonts/PhosphateInline.ttf") format("truetype");
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Alfa Slab One";
  src: url("../fonts/alfaslabone-regular-webfont.woff2") format("woff2");
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Oceania";
  src: url("../fonts/oceania-regular-webfont.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Oceania";
  src: url("../fonts/oceania-bold-webfont.woff2") format("woff2");
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face { font-family: "Nunito Sans"; font-weight: 400; font-display: swap;
  src: url("../fonts/nunito-sans-400.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-weight: 600; font-display: swap;
  src: url("../fonts/nunito-sans-600.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-weight: 700; font-display: swap;
  src: url("../fonts/nunito-sans-700.woff2") format("woff2"); }
@font-face { font-family: "Nunito Sans"; font-weight: 800; font-display: swap;
  src: url("../fonts/nunito-sans-800.woff2") format("woff2"); }

/* -- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
hr { border: 0; border-top: 1px solid var(--c-grey-200); margin: var(--space-5) 0; }

/* -- Typography ----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--c-heading);
  line-height: var(--leading-head);
  margin: 0 0 var(--space-3);
  font-weight: normal;   /* the display face has a single weight */
}
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); margin-top: var(--space-6); }
h3 { font-size: var(--text-h3); margin-top: var(--space-5); }
h4 { font-size: var(--text-h4); margin-top: var(--space-4); }
p  { margin: 0 0 var(--space-3); }
p, li { max-width: var(--measure); }
strong { font-weight: 700; }
small  { font-size: var(--text-sm); }

a { color: var(--c-link); text-decoration: underline;
    text-underline-offset: 4px; text-decoration-thickness: 1px;
    transition: color .15s var(--ease); }
a:hover { color: var(--c-link-hover); }

ul, ol { padding-left: 1.25em; margin: 0 0 var(--space-3); }
li { margin-bottom: var(--space-2); }

blockquote {
  margin: var(--space-4) 0; padding: var(--space-3) var(--space-4);
  border-left: 4px solid var(--c-pink-soft);
  background: var(--c-off-white); border-radius: 0 var(--radius) var(--radius) 0;
}
blockquote p:last-child { margin-bottom: 0; }

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em; background: var(--c-off-white);
  padding: .15em .4em; border-radius: 4px;
}

/* -- Layout --------------------------------------------------------------- */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: var(--space-4);
}
.prose > *:first-child { margin-top: 0; }

/* -- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--c-white); border-bottom: 1px solid var(--c-grey-200);
}
.site-header .container {
  display: flex; align-items: center; gap: var(--space-4);
  min-height: 76px;
}
.brand { display: flex; align-items: center; gap: var(--space-2);
         text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: 46px; }
.brand span { font-family: var(--font-heading); font-size: 1.4rem; color: var(--c-slate); }

.nav { display: flex; align-items: center; gap: var(--space-4); }
.nav a {
  text-decoration: none; font-weight: 600; font-size: 1rem;
  color: var(--c-slate); padding: var(--space-1) 0;
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] {
  color: var(--c-slate); border-bottom-color: var(--c-pink);
}

/* Nav call-to-action. The child theme had a `.navCTA` button in the header,
   so this is the brand's own pattern, not an invention. While the shop is
   offline this is the most useful thing to point people at. */
.nav a.btn--nav {
  color: var(--c-white);
  padding: .6em 1.3em;
  border-bottom: 2px solid var(--c-pink);
  font-size: .95rem;
  margin-left: var(--space-1);
}
.nav a.btn--nav:hover {
  color: var(--c-pink-deep);
  border-bottom-color: var(--c-yellow);
}
.nav a.btn--nav[aria-current="page"] {
  color: var(--c-white); border-bottom-color: var(--c-pink);
}
@media (max-width: 860px) {
  /* In the collapsed menu it is a stacked item, so let it fill the width. */
  .nav a.btn--nav {
    width: auto; align-self: flex-start;
    margin: var(--space-2) 0 var(--space-1);
  }
}

/* Menu toggle is a checkbox so the nav works with zero JavaScript. */
.nav-toggle, .nav-toggle-label { display: none; }

@media (max-width: 860px) {
  .nav-toggle-label {
    display: block; cursor: pointer; font-size: 1.6rem;
    line-height: 1; padding: var(--space-2); user-select: none;
  }
  .nav {
    display: none; position: absolute; inset: 76px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--c-white); border-bottom: 1px solid var(--c-grey-200);
    padding: var(--space-3) var(--space-4);
  }
  .nav a { padding: var(--space-3) 0; width: 100%; }
  .nav-toggle:checked ~ .nav { display: flex; }
}

/* -- Treat nav ------------------------------------------------------------ */
/* Two of the three product shots have a white background baked in (no alpha),
   so they only sit cleanly on white -- which is exactly where the original put
   them. On a tinted section they render as hard white rectangles. */
.treatnav {
  display: flex; justify-content: center; gap: clamp(1.5rem, 6vw, 5rem);
  padding: var(--space-3) var(--space-4) var(--space-4);
  background: var(--c-white);
  border-top: 1px solid var(--c-grey-200);
}
.treatnav a {
  display: flex; flex-direction: column; align-items: center; gap: var(--space-2);
  text-decoration: none; padding: var(--space-1);
}
.treatnav img {
  width: 72px; height: 72px; object-fit: contain;
  border-radius: 0; margin: 0;
  transition: transform .18s var(--ease);
}
.treatnav span {
  font-family: var(--font-heading); font-size: 1.05rem;
  text-transform: uppercase; color: var(--c-slate); line-height: 1;
}
.treatnav a:hover img { transform: translateY(-3px) scale(1.04); }
.treatnav a:hover span, .treatnav a[aria-current="page"] span { color: var(--c-pink); }

@media (max-width: 620px) {
  .treatnav { gap: var(--space-4); padding-bottom: var(--space-3); }
  .treatnav img { width: 54px; height: 54px; }
  .treatnav span { font-size: .9rem; }
}

/* -- Buttons -------------------------------------------------------------- */
/* et_divi: bg #ff4fa3 -> hover #ffd652, text #fff -> hover #e8356a */
.btn {
  display: inline-block; cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-button); font-weight: var(--weight-button);
  line-height: 1; text-decoration: none;
  padding: 0.9em 1.9em; border-radius: var(--radius-pill);
  background: var(--c-pink); color: var(--c-white);
  border: 2px solid var(--c-pink);
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover {
  background: var(--c-yellow); border-color: var(--c-yellow);
  color: var(--c-pink-deep); transform: translateY(-1px);
}
.btn--ghost { background: transparent; color: var(--c-slate);
              border-color: var(--c-grey-300); }
.btn--ghost:hover { background: var(--c-slate); border-color: var(--c-slate);
                    color: var(--c-white); }

/* -- Sections & components ------------------------------------------------ */
.section       { padding-block: var(--space-7); }
.section--tint { background: var(--c-off-white); }
.section--pink { background: var(--c-pink-soft); }
.section--dark { background: var(--c-slate-deep); color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3,
.section--dark a { color: var(--c-white); }

.hero { padding-block: var(--space-7); text-align: center; }
.hero p.lead {
  font-size: 1.2em; max-width: 46ch; margin-inline: auto;
  margin-bottom: var(--space-4);
}

.grid { display: grid; gap: var(--space-4);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: var(--c-white); border: 1px solid var(--c-grey-200);
  border-radius: var(--radius); padding: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-top: 0; }

/* FAQ needs no JavaScript — <details> does the work. */
.faq details {
  border-bottom: 1px solid var(--c-grey-200); padding: var(--space-3) 0;
  max-width: var(--measure);
}
.faq summary {
  cursor: pointer; font-weight: 700; list-style: none;
  display: flex; justify-content: space-between; gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--c-pink); font-size: 1.4em; line-height: 1; }
.faq details[open] summary::after { content: "\2013"; }

/* -- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--c-slate-deep); color: var(--c-white);
  padding-block: var(--space-6) var(--space-4); margin-top: var(--space-7);
}
.site-footer a { color: var(--c-white); text-decoration: none; }
.site-footer a:hover { color: var(--c-yellow); text-decoration: underline; }
.site-footer h4 { color: var(--c-white); font-family: var(--font-body);
                  font-weight: 800; font-size: 1rem; margin-bottom: var(--space-2); }
.site-footer ul { list-style: none; padding: 0; }
.footer-grid { display: grid; gap: var(--space-5);
               grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.footer-bottom {
  margin-top: var(--space-5); padding-top: var(--space-3);
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: var(--text-sm); opacity: .8;
}

/* -- Site notice ---------------------------------------------------------- */
/* Deliberately not the brand pink: pink is what the marketing ticker uses, so
   a status message in the same colour reads as another promo. Yellow is still
   in-palette (it is the button hover) but scans as a notice. */
.notice {
  background: var(--c-yellow);
  color: var(--c-slate-deep);
  font-weight: 700;
  font-size: var(--text-sm);
  line-height: 1.45;
  text-align: center;
  padding: var(--space-3) var(--space-4);
  border-bottom: 3px solid var(--c-slate-deep);
}
.notice a { color: var(--c-slate-deep); text-decoration: underline;
            text-underline-offset: 3px; }
.notice a:hover { color: var(--c-pink-deep); }
.notice b { font-family: var(--font-heading); font-weight: normal;
            font-size: 1.15em; letter-spacing: .01em; }

/* -- Announcement bar ----------------------------------------------------- */
/* The brand separates phrases with a yellow heart rather than a bullet or a
   middle dot; keeping it is cheaper than inventing a device that isn't theirs. */
.ticker {
  background: var(--c-pink); color: var(--c-white);
  font-weight: 700; font-size: var(--text-sm);
  text-align: center; padding: var(--space-2) var(--space-3);
}

/* -- Manifesto ------------------------------------------------------------ */
/* Three lines: two of problem, one of answer. The colour shift on the last
   line marks the turn, so it carries meaning rather than decorating. */
.manifesto { padding-block: var(--space-7); }
.manifesto p { max-width: 30ch; margin: 0 0 var(--space-4); }
.manifesto p:last-child { margin-bottom: 0; }

/* -- Treat picker --------------------------------------------------------- */
/* Product photos on bare background with a comic-face label, as the original
   did -- no card, no border, no shadow. */
.treats { display: grid; gap: var(--space-5); grid-template-columns: repeat(3, 1fr); text-align: center; }
.treats a { text-decoration: none; display: block; }
.treats img {
  margin: 0 auto var(--space-3);
  width: 100%; max-width: 260px; aspect-ratio: 1 / 1;
  object-fit: contain; max-height: none; border-radius: 0;
}
.treats h3 {
  font-family: var(--font-heading); font-size: 1.55rem;
  color: var(--c-slate); margin: 0; text-transform: uppercase;
}
.treats a:hover h3 { color: var(--c-pink); }
@media (max-width: 720px) { .treats { grid-template-columns: 1fr; gap: var(--space-4); } }

/* -- Display voice -------------------------------------------------------- */
/* The signature Smoofl treatment: heavy caps, tight leading, hot pink. Used
   for statements, never for running text. */
.shout {
  font-family: var(--font-display);
  font-size: var(--text-shout);
  line-height: var(--leading-shout);
  color: var(--c-pink);
  text-transform: uppercase;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}
.shout--ink  { color: var(--c-slate); }
.shout--sun  { color: var(--c-yellow); }
.shout--paper{ color: var(--c-white); }

/* -- Full-bleed bands ----------------------------------------------------- */
.bleed { width: 100%; }
.bleed img { width: 100%; max-height: none; border-radius: 0; margin: 0; display: block; }

/* Artwork with the statement sitting on top of it. */
.showcase { position: relative; }
.showcase__art img { width: 100%; max-height: 78vh; object-fit: cover; border-radius: 0; margin: 0; }
.showcase__say {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--space-7) var(--space-4) var(--space-5);
  background: linear-gradient(to top, rgba(37,41,59,.85) 35%, transparent);
  text-align: center;
}
.showcase__say .shout {
  color: var(--c-white); margin-bottom: var(--space-4);
  max-width: 20ch; margin-inline: auto;
  text-shadow: 0 2px 18px rgba(37,41,59,.5);
}
/* Buttons need explicit spacing: they are inline-block siblings, so without a
   flex row they crowd each other at narrow widths. */
/* Buttons are inline-block siblings; without a flex row they crowd each other
   at narrow widths. Used in the hero and anywhere else two buttons sit together. */
.btn-row {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  margin: var(--space-4) 0 0; max-width: none;
}
.showcase__say .btn-row { justify-content: center; margin: 0; }
/* A transparent ghost button disappears over artwork. */
.showcase__say .btn--ghost {
  background: rgba(255,255,255,.14); color: var(--c-white);
  border-color: var(--c-white); backdrop-filter: blur(3px);
}
.showcase__say .btn--ghost:hover {
  background: var(--c-white); color: var(--c-slate); border-color: var(--c-white);
}
/* On a phone the artwork is only ~206px tall (landscape image at 390px wide)
   while the headline plus two buttons needs ~350px. Anchored with bottom:0 the
   text block overflowed upward, out of the showcase and behind the sticky
   header, hiding most of the headline. Below this width, stop overlaying and
   stack: full artwork, then the words on a solid band. */
@media (max-width: 760px) {
  .showcase__art img { max-height: none; }
  .showcase__say {
    position: static;
    background: var(--c-slate-deep);
    padding: var(--space-5) var(--space-4);
  }
  .showcase__say .shout {
    max-width: 18ch;
    text-shadow: none;
    margin-bottom: var(--space-4);
  }
}

/* Alternating image + text, asymmetric rather than a uniform card row. */
.duo {
  display: grid; gap: var(--space-5); align-items: center;
  grid-template-columns: 1.15fr 1fr;
}
.duo--flip { grid-template-columns: 1fr 1.15fr; }
.duo--flip .duo__art { order: 2; }
.duo__art img { width: 100%; height: auto; max-height: 60vh; object-fit: contain; margin: 0; }
.duo__say p { max-width: 42ch; }
@media (max-width: 860px) {
  .duo, .duo--flip { grid-template-columns: 1fr; }
  .duo--flip .duo__art { order: 0; }
}

/* -- Catalogue ------------------------------------------------------------ */
.lede { font-size: 1.15em; max-width: 52ch; }

/* Shared benefits, shown once per category instead of repeated on every card.
   Checkmarks because these are claims about the product, not a sequence. */
.facts {
  list-style: none; padding: 0; margin: var(--space-4) 0 var(--space-5);
  display: grid; gap: var(--space-2);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.facts li {
  position: relative; padding-left: 1.7em; margin: 0; max-width: none;
  font-weight: 600;
}
.facts li::before {
  content: "\2713"; position: absolute; left: 0; top: -0.05em;
  color: var(--c-teal); font-weight: 700; font-size: 1.15em;
}

.products {
  list-style: none; padding: 0; margin: var(--space-5) 0 0;
  display: grid; gap: var(--space-5);
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.product { margin: 0; max-width: none; }
/* Packaging shots are transparent PNGs; a soft tile stops them floating on
   white, and a fixed square keeps a ragged source set aligned. */
.product img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  background: var(--c-off-white); border-radius: var(--radius);
  padding: var(--space-3); margin: 0 0 var(--space-3);
  max-height: none;
}
.product h3 {
  font-family: var(--font-heading); font-size: 1.25rem;
  margin: 0 0 var(--space-2); color: var(--c-slate);
}
.product p { font-size: var(--text-sm); margin: 0; max-width: none; opacity: .85; }
/* Seasonal/limited items carry this in the product name upstream; lifting it
   out keeps the name short and the fact legible. */
.badge {
  display: inline-block; margin: 0 0 var(--space-2);
  background: var(--c-yellow); color: var(--c-slate-deep);
  font-size: 0.72rem; font-weight: 800; letter-spacing: .03em;
  padding: .25em .7em; border-radius: var(--radius-pill);
}

.products--compact { grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); }
.products--compact img { padding: var(--space-2); }
.products--compact h3 { font-size: 1.05rem; }

.restock {
  margin-top: var(--space-6); padding: var(--space-4);
  background: var(--c-off-white); border-left: 4px solid var(--c-pink-soft);
  border-radius: 0 var(--radius) var(--radius) 0; max-width: none;
}

/* -- Pitch trio ----------------------------------------------------------- */
/* Three selling points that were stacked full-width, each a screen tall. The
   artwork is blob-cut against white (palette PNGs, no alpha), so these stay on
   a white background -- on a tint they'd show a hard rectangle. */
.pitch {
  list-style: none; padding: 0;
  margin: var(--space-6) 0 var(--space-5);
  display: grid;
  column-gap: var(--space-5); row-gap: var(--space-7);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.pitch li { margin: 0; max-width: none; }
/* The source artwork is square (1024x1024). A 3:2 box letterboxed it into a
   short strip and made the blobs feel cramped against their headings. */
.pitch img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  margin: 0 0 var(--space-4); border-radius: 0; max-height: none;
}
.pitch h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 1.4rem; line-height: 1.05; color: var(--c-pink);
  margin: 0 0 var(--space-3);
}
.pitch p { font-size: var(--text-sm); line-height: 1.65; margin: 0; max-width: none; }

/* -- Stockist cards -------------------------------------------------------- */
.stores {
  list-style: none; padding: 0; margin: var(--space-6) 0 var(--space-4);
  display: grid; column-gap: var(--space-5); row-gap: var(--space-7);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.stores li { margin: 0; max-width: none; text-align: center; }
.stores img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  margin: 0 0 var(--space-3); border-radius: 0; max-height: none;
}
.stores h3 { font-family: var(--font-heading); font-size: 1.2rem; margin: 0 0 var(--space-1); }
.stores p { font-size: var(--text-sm); opacity: .8; margin: 0; max-width: none; }

/* One number, stated plainly. */
.stat { text-align: center; }
.stat b {
  display: block; font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem); line-height: 1;
  color: var(--c-pink); font-weight: normal;
}
.stat span { font-family: var(--font-heading); font-size: 1.15rem; }

/* -- Stockist directory --------------------------------------------------- */
/* 981 shops. <details> keeps them collapsed without any JavaScript. */
.countries { margin: var(--space-5) 0 0; }
.countries details {
  border-bottom: 1px solid var(--c-grey-200);
  max-width: none;
}
.countries summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-3) 0;
  font-family: var(--font-heading); font-size: 1.2rem;
  color: var(--c-slate);
}
.countries summary::-webkit-details-marker { display: none; }
.countries summary::after {
  content: "+"; margin-left: auto; color: var(--c-pink);
  font-size: 1.5em; line-height: 1; font-family: var(--font-body);
}
.countries details[open] summary::after { content: "\2013"; }
.countries summary:hover { color: var(--c-pink); }
.count {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 700;
  background: var(--c-off-white); color: var(--c-slate);
  padding: .15em .6em; border-radius: var(--radius-pill);
}

/* Long lists read better in columns than as one endless scroll. */
.shoplist {
  list-style: none; padding: 0 0 var(--space-4);
  margin: 0; columns: 3; column-gap: var(--space-5);
}
.shoplist li {
  break-inside: avoid; margin: 0 0 var(--space-3);
  max-width: none; font-size: var(--text-sm); line-height: 1.4;
}
.shoplist b { display: block; color: var(--c-slate); font-weight: 700; }
.shoplist span { display: block; opacity: .7; }
@media (max-width: 900px) { .shoplist { columns: 2; } }
@media (max-width: 560px) { .shoplist { columns: 1; } }

/* -- Media --------------------------------------------------------------- */
/* Uploads come in whatever aspect the camera gave them. Portrait shots at
   1365x2048 would otherwise fill the container and run ~1800px tall, so cap
   by viewport height and let width follow. */
.prose picture, .prose figure { display: block; margin: var(--space-5) 0; }
.prose img {
  max-width: 100%;
  max-height: 62vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius);
}
.site-header .brand img, .site-footer img { border-radius: 0; max-height: none; }

/* Several images in a row read better as a grid than as a tall stack. */
.media-grid {
  display: grid; gap: var(--space-3);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: var(--space-5) 0;
}
.media-grid picture, .media-grid img { margin: 0; width: 100%; }
.media-grid img { height: 100%; max-height: 320px; object-fit: cover; }

figure figcaption {
  font-size: var(--text-sm); opacity: .75; margin-top: var(--space-2);
  text-align: center;
}

/* -- Utilities & a11y ----------------------------------------------------- */
/* `p, li` carry a max-width for readability. Inside a centred section that
   constrained box still sits flush left unless its own margins are auto, so
   the text centres within a narrow left-hand column while the block does not.
   Centre the blocks too. */
.text-center { text-align: center; }
.text-center :is(p, ul, ol, li, blockquote, figure) { margin-inline: auto; }
.stack > * + * { margin-top: var(--space-3); }
.skip-link {
  position: absolute; left: -9999px; background: var(--c-slate);
  color: #fff; padding: var(--space-2) var(--space-3); z-index: 100;
}
.skip-link:focus { left: var(--space-3); top: var(--space-3); }
:focus-visible { outline: 3px solid var(--c-teal); outline-offset: 2px; }

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