/* =========================================================
   Neil Douek — speaker site
   Design system: Speaker / International / Energy
   ========================================================= */

:root {
  /* Palette */
  --ink:        #0E1116;          /* near-black, the base */
  --ink-soft:   #1A1F26;          /* card / section background */
  --paper:      #F5F1EA;          /* warm off-white */
  --paper-soft: #E8E2D6;          /* divider tone */
  --coral:      #FF4E2B;          /* electric accent */
  --coral-soft: #FF7457;          /* hover/secondary accent */
  --cobalt:     #2541B2;          /* secondary accent (links on dark) */
  --muted:      #8C9099;          /* secondary text on dark */
  --muted-ink:  #5B6068;          /* secondary text on light */

  /* Typography */
  --font-display: 'Space Grotesk', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Rhythm */
  --container: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-pad: clamp(4rem, 9vw, 7rem);
  --radius: 4px;
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--paper);
  background: var(--ink);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .15s ease, border-color .15s ease;
}
a:hover { color: var(--coral); border-color: var(--coral); }

/* Container */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-block;
  margin-bottom: 1.25rem;
}

/* Manifesto strapline — bigger, weightier than eyebrow.
   For the kind of line you want a visitor to actually read. */
.strapline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
}
.strapline::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background: var(--coral);
}

.lede {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: var(--paper);
  max-width: 60ch;
}

.muted { color: var(--muted); }

/* -------------------- Nav -------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 17, 22, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(245, 241, 234, 0.08);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (max-width: 360px) {
  .site-nav .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
}
.brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  border-bottom: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
}
.brand .dot {
  width: 9px; height: 9px;
  background: var(--coral);
  border-radius: 50%;
  display: inline-block;
}
.nav-links {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (max-width: 360px) {
  .nav-links {
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    font-size: 0.72rem;
  }
}
.nav-links a {
  border-bottom: none;
  color: var(--paper);
  opacity: 0.7;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  opacity: 1;
  color: var(--paper);
}
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--coral);
  margin-top: 4px;
}

/* -------------------- Sections -------------------- */
section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
.section--paper {
  background: var(--paper);
  color: var(--ink);
}
.section--paper .muted { color: var(--muted-ink); }
.section--paper a { color: var(--ink); }
.section--paper a:hover { color: var(--coral); }
.section--paper .eyebrow { color: var(--coral); }

/* -------------------- Hero -------------------- */
.hero {
  padding-top: clamp(4rem, 10vw, 7.5rem);
  padding-bottom: clamp(4rem, 10vw, 7.5rem);
  position: relative;
  overflow: hidden;
}
.hero .h-display .accent { color: var(--coral); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(21rem, 0.75fr);
  }
}

.hero-copy {
  max-width: 56rem;
}

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
}
@media (min-width: 680px) {
  .hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.hero-proof li {
  border-top: 1px solid rgba(245, 241, 234, 0.16);
  padding-top: 0.85rem;
}
.hero-proof strong,
.hero-proof span {
  display: block;
}
.hero-proof strong {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.1;
  color: var(--paper);
}
.hero-proof span {
  margin-top: 0.35rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-meta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 0.5rem;
}
.hero-meta strong {
  color: var(--paper);
  font-weight: 500;
}

.speaker-card {
  border: 1px solid rgba(245, 241, 234, 0.14);
  border-radius: var(--radius);
  background: var(--ink-soft);
  overflow: hidden;
  align-self: stretch;
  display: grid;
  min-height: 100%;
}
.speaker-card__image {
  aspect-ratio: 1;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0) 45%, rgba(14, 17, 22, 0.62) 100%),
    linear-gradient(140deg, #1A1F26 0%, #0E1116 100%);
  overflow: hidden;
}
.speaker-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.speaker-card__image img.speaker-card__photo--stage {
  object-position: center center;
}
.speaker-card__content {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: grid;
  align-content: start;
  gap: 0.85rem;
}
.speaker-card__label {
  width: max-content;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}
.speaker-card h2 {
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  margin: 0;
}
.speaker-card p {
  margin: 0;
  color: var(--muted);
}
.speaker-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.35rem;
}
.speaker-card__meta span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 2px;
  padding: 0.35rem 0.5rem;
}

.speaker-topics {
  border-top: 3px solid var(--coral);
  padding-top: 1.25rem;
}
.speaker-topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}
.speaker-topics li {
  border-top: 1px solid rgba(14, 17, 22, 0.12);
  padding-top: 1.25rem;
}
.speaker-topics strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.15;
}
.speaker-topics span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted-ink);
}

/* Tour marquee — international + energy */
.tour-strip {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  border-bottom: 1px solid rgba(245, 241, 234, 0.1);
  padding: 0.9rem 0;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.tour-strip::before,
.tour-strip::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 5rem;
  z-index: 2;
  pointer-events: none;
}
.tour-strip::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.tour-strip::after  { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }

.tour-track {
  display: inline-block;
  animation: tour-scroll 76s linear infinite;
}
.tour-track span {
  display: inline-block;
  padding: 0 1.5rem;
  color: var(--muted);
}
.tour-track span.live { color: var(--coral); }
.tour-track .dot {
  color: rgba(245, 241, 234, 0.35);
  padding: 0 0.25rem;
}
@keyframes tour-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tour-track { animation: none; }
}

/* -------------------- Cards / talk items -------------------- */
.talk-list {
  display: grid;
  gap: 1.25rem;
}
.talk {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--paper-soft);
}
.section--paper .talk { border-color: rgba(14, 17, 22, 0.12); }
.talk:last-child { border-bottom: 1px solid var(--paper-soft); }
.section--paper .talk:last-child { border-color: rgba(14, 17, 22, 0.12); }

@media (min-width: 720px) {
  .talk {
    grid-template-columns: 11rem 1fr auto;
    align-items: baseline;
  }
}

.talk-meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section--paper .talk-meta { color: var(--muted-ink); }

.talk-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}
.talk-title .where {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  margin-top: 0.35rem;
  color: var(--muted);
}
.section--paper .talk-title .where { color: var(--muted-ink); }

.talk-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  color: var(--coral);
}

/* -------------------- Featured / pull cards -------------------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 880px) {
  .feature { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .feature--reverse { grid-template-columns: 1fr 1.1fr; }
  .feature--reverse .feature-text { order: 2; }
}

.feature-text p { max-width: 56ch; }

/* Book cover. Holds the real cover image if one is present at
   assets/img/book-cover.png; otherwise the placeholder gradient + text
   inside .book-cover-inner show through as a fallback. */
.book-cover {
  aspect-ratio: 2 / 3;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 78, 43, 0.45), transparent 55%),
    linear-gradient(160deg, #161B22 0%, #0E1116 60%, #1F2832 100%);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-cover .book-cover-inner { padding: 2rem; }
.book-cover-inner {
  text-align: center;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1;
}
.book-cover-inner .small {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem;
}
.book-cover-inner .big {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--paper);
  font-weight: 700;
}
.book-cover-inner .subtitle {
  display: block;
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--coral);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.book-cover-inner .author {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Headshot — portrait card. Falls back to a gradient placeholder if the
   image is missing, otherwise displays the real photo cropped to fill. */
.headshot {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 78, 43, 0.3), transparent 50%),
    linear-gradient(140deg, #1A1F26 0%, #0E1116 100%);
  border: 1px solid rgba(245, 241, 234, 0.1);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
}
.headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--coral);
  color: var(--ink);
  border: 1px solid var(--coral);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, transform .15s ease;
}
.btn:hover {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(245, 241, 234, 0.25);
}
.btn--ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.section--paper .btn--ghost { color: var(--ink); border-color: rgba(14, 17, 22, 0.2); }
.section--paper .btn--ghost:hover { background: var(--ink); color: var(--paper); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

/* -------------------- Credentials strip -------------------- */
.credentials {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(14, 17, 22, 0.1);
  border-bottom: 1px solid rgba(14, 17, 22, 0.1);
  padding: clamp(2rem, 5vw, 3rem) 0;
}
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 980px) {
  .credentials-grid {
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }
}
.credentials-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-ink);
  line-height: 1.4;
}
@media (min-width: 980px) {
  .credentials-label {
    max-width: 8rem;
  }
}
.credential {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  align-items: start;
  text-decoration: none;
  border-bottom: none;
  padding: 0.35rem 0;
  color: var(--ink);
  min-width: 0;
}
@media (min-width: 980px) {
  .credential {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.75rem 0;
  }
}
.credential:hover { color: var(--ink); }
.credential:hover .credential-name { color: var(--coral); }

/* Logo block. Default is a coloured circle (placeholder).
   Use .credential-logo--image for real badge images instead. */
.credential-logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.credential-logo--tt {
  background: #9b79ee;
  color: #fff;
}
.credential-logo--gitlab {
  background: #FC6D26;
  color: #fff;
}
/* Image variant: shows the official badge artwork at consistent height.
   Background is transparent since the surrounding credentials strip is
   already paper-coloured. */
.credential-logo--image {
  width: auto;
  min-width: 44px;
  height: auto;
  background: transparent;
  border-radius: 0;
  padding: 0.25rem 0;
  box-shadow: none;
  justify-self: start;
}
.credential-logo--image img {
  display: block;
  height: auto;
  width: auto;
  max-width: min(100%, 220px);
  max-height: 64px;
  object-fit: contain;
}
.credential-text { display: grid; gap: 0.15rem; }
.credential-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .15s ease;
}
.credential-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

/* -------------------- Pills (topics) -------------------- */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pills li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 2px;
  color: var(--muted);
}
.section--paper .pills li { border-color: rgba(14, 17, 22, 0.15); color: var(--muted-ink); }

/* -------------------- Footer -------------------- */
.site-foot {
  border-top: 1px solid rgba(245, 241, 234, 0.08);
  padding: 2.5rem 0 3rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: end;
}
@media (min-width: 720px) {
  .foot-grid { grid-template-columns: 1fr auto; }
}
.foot-grid a { border-bottom: none; color: var(--muted); }
.foot-grid a:hover { color: var(--coral); }

/* -------------------- Form (contact) -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 880px) {
  .contact-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

form.contact {
  display: grid;
  gap: 1.1rem;
}
form.contact label {
  display: grid;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
form.contact input,
form.contact textarea,
form.contact select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid rgba(14, 17, 22, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
}
form.contact input:focus,
form.contact textarea:focus,
form.contact select:focus {
  outline: 2px solid var(--coral);
  outline-offset: 1px;
  border-color: var(--coral);
}
form.contact textarea { min-height: 9rem; resize: vertical; }
form.contact button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}
.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  min-height: 1.4rem;
  margin: -0.2rem 0 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted-ink);
}
.form-status[data-state="success"] { color: #266340; }
.form-status[data-state="error"] { color: #9b2c2c; }
.form-confirmation {
  display: grid;
  gap: 0.7rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgba(38, 99, 64, 0.28);
  background: rgba(38, 99, 64, 0.07);
  color: var(--ink);
}
.form-confirmation h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
}
.form-confirmation p {
  margin: 0;
  font-size: 1.05rem;
  color: #266340;
}

/* -------------------- Writing list -------------------- */
.writing-list {
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.writing-list li {
  padding: 1.3rem 0;
  border-top: 1px solid rgba(14, 17, 22, 0.12);
  display: grid;
  gap: 0.4rem;
}
.writing-list li:last-child { border-bottom: 1px solid rgba(14, 17, 22, 0.12); }
.writing-list .title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.writing-list .meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-ink);
}

/* -------------------- Utility -------------------- */
.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 2rem; }
.text-center { text-align: center; }
.hidden-sm { display: none; }
@media (min-width: 720px) {
  .hidden-sm { display: initial; }
}

/* -------------------- Reduced motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
