/* ===========================================================
   Ireri Krueger - Figurative Ceramic Sculptor
   Design system stylesheet
   =========================================================== */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-variable-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 6rem; }
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; }
ul[class] { list-style: none; padding: 0; }

/* ---------- Tokens ---------- */
:root {
  --bg: #f6f2ea;
  --bg-alt: #ece6da;
  --paper: #ffffff;
  --ink: #292320;
  --muted: #5f564b;
  --faint: #8c8275;
  --accent: #a0502c;
  --accent-hover: #7f3d20;
  --hairline: #e1d9cb;
  --dark: #221d18;
  --dark-ink: #ece4d6;
  --dark-muted: #a89e8e;
  --dark-accent: #db9163;

  --font-display: 'Fraunces', 'Hoefler Text', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --wide: 1440px;
  --gutter: clamp(1.15rem, 4vw, 3rem);

  --radius: 3px;
  --shadow-sm: 0 1px 3px rgba(40, 30, 20, 0.07);
  --shadow-md: 0 18px 44px -20px rgba(40, 30, 20, 0.34);
  --shadow-lg: 0 30px 70px -28px rgba(30, 22, 14, 0.5);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.72;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  font-optical-sizing: auto;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
}

p { max-width: 68ch; }

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

strong { font-weight: 600; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 1px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 999;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--wide); }

.section { padding-block: clamp(3.6rem, 8vw, 6.8rem); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--dark); color: var(--dark-ink); }
.section--tight { padding-block: clamp(2.6rem, 5vw, 4rem); }

.section__head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.section--dark .eyebrow { color: var(--dark-accent); }

.h-xl { font-size: clamp(2.7rem, 6.4vw, 4.85rem); }
.h-lg { font-size: clamp(2rem, 4.4vw, 3.15rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.62;
  color: var(--muted);
}
.section--dark .lead { color: var(--dark-muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); color: #fff; }
.btn--ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  padding-block: calc(0.85rem - 1.5px);
}
.btn--ghost:hover { background: var(--ink); color: var(--bg); }
.section--dark .btn--ghost { border-color: var(--dark-ink); color: var(--dark-ink); }
.section--dark .btn--ghost:hover { background: var(--dark-ink); color: var(--dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.textlink .arrow { transition: transform 0.2s var(--ease); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.7rem;
}
.brand { text-decoration: none; line-height: 1.05; color: var(--ink); }
.brand__name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand__tagline {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.21em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 0.16rem;
}
.brand:hover { color: var(--ink); }

.nav__list { display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  display: block;
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.nav__link:hover { background: var(--bg-alt); color: var(--ink); }
.nav__link[aria-current='page'] { color: var(--accent); }
.nav__cta {
  margin-left: 0.4rem;
  background: var(--accent);
  color: #fff;
}
.nav__cta:hover { background: var(--accent-hover); color: #fff; }

.nav-toggle {
  display: none;
  width: 2.9rem; height: 2.9rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius);
}
.nav-toggle__bar {
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.site-header[data-nav-open='true'] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header[data-nav-open='true'] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header[data-nav-open='true'] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--hairline);
    box-shadow: var(--shadow-md);
    padding: 0.6rem var(--gutter) 1.3rem;
    display: none;
  }
  .site-header[data-nav-open='true'] .nav { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0.15rem; }
  .nav__link { padding: 0.8rem 0.6rem; font-size: 1.05rem; border-bottom: 1px solid var(--hairline); border-radius: 0; }
  .nav__cta { margin: 0.8rem 0 0; text-align: center; border-radius: var(--radius); }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(3rem, 7vw, 6rem); }
.hero__inner {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title { margin: 0.4rem 0 1.3rem; }
.hero__title .accent { font-style: italic; color: var(--accent); }
.hero__lead { margin-bottom: 2rem; max-width: 42ch; }
.hero__media { position: relative; }
.hero__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.hero__caption {
  position: absolute;
  left: 1rem; bottom: 1rem;
  background: rgba(34, 29, 24, 0.82);
  color: var(--dark-ink);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

@media (max-width: 760px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

/* ---------- Featured grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.6rem);
}
.feature-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); color: var(--ink); }
.feature-card__frame {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.feature-card__frame img { width: 100%; height: 100%; object-fit: contain; }
.feature-card__body { display: block; padding: 0.95rem 1.05rem 1.1rem; }
.feature-card__title { display: block; font-family: var(--font-display); font-size: 1.16rem; }
.feature-card__meta { display: block; font-size: 0.84rem; color: var(--faint); margin-top: 0.15rem; }

@media (max-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery (masonry) ---------- */
.gallery {
  column-count: 3;
  column-gap: clamp(0.9rem, 2vw, 1.6rem);
}
@media (max-width: 900px) { .gallery { column-count: 2; } }
@media (max-width: 540px) { .gallery { column-count: 1; } }

.art {
  break-inside: avoid;
  margin-bottom: clamp(0.9rem, 2vw, 1.6rem);
}
.art__btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.art__btn:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.art__media { display: block; position: relative; background: var(--bg-alt); }
.art__media img { width: 100%; }
.art__title { font-family: var(--font-display); }
.art__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 29, 24, 0.32);
  opacity: 0;
  transition: opacity 0.22s var(--ease);
}
.art__btn:hover .art__zoom,
.art__btn:focus-visible .art__zoom { opacity: 1; }
.art__zoom span {
  background: var(--bg);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
}
.art__caption {
  padding: 0.85rem 1.05rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: baseline;
}
.art__title { font-size: 1.14rem; }
.art__meta { font-size: 0.82rem; color: var(--faint); white-space: nowrap; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: rgba(26, 21, 17, 0.96);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s var(--ease);
}
.lightbox[data-open='true'] { opacity: 1; visibility: visible; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 2rem);
  color: var(--dark-ink);
  flex: 0 0 auto;
}
.lightbox__counter { font-size: 0.85rem; letter-spacing: 0.08em; color: var(--dark-muted); }
.lightbox__close {
  display: flex; align-items: center; gap: 0.4rem;
  color: var(--dark-ink);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  border-radius: var(--radius);
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.1); }
.lightbox__close svg { width: 18px; height: 18px; }
.lightbox__stage {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.4rem, 2vw, 1.5rem);
  padding: 0 clamp(0.5rem, 2vw, 1.5rem);
  min-height: 0;
}
.lightbox__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: 74vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.7);
}
.lightbox__nav {
  flex: 0 0 auto;
  width: 3rem; height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-ink);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: background 0.18s var(--ease), transform 0.18s var(--ease);
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.06); }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__caption {
  flex: 0 0 auto;
  text-align: center;
  color: var(--dark-ink);
  padding: 1.1rem clamp(1rem, 3vw, 2rem) 1.6rem;
}
.lightbox__caption h2 {
  color: var(--dark-ink);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.lightbox__caption p { color: var(--dark-muted); font-size: 0.9rem; margin-inline: auto; }
.lightbox__inquire {
  display: inline-block;
  margin-top: 0.85rem;
  color: var(--dark-accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.lightbox__inquire:hover { color: #fff; }

@media (max-width: 620px) {
  .lightbox__nav {
    position: absolute;
    bottom: 6.2rem;
    z-index: 2;
  }
  .lightbox__nav--prev { left: 1rem; }
  .lightbox__nav--next { right: 1rem; }
  .lightbox__img { max-height: 62vh; }
}

/* ---------- Prose / statement ---------- */
.prose p + p { margin-top: 1.15rem; }
.prose p { color: var(--muted); }
.prose h3 { margin: 2.2rem 0 0.7rem; font-size: 1.3rem; }

.statement-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 420;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.34;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 24ch;
}
.section--dark .statement-quote { color: var(--dark-ink); }

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 1.6rem; } }

.portrait-figure { margin: 0; }
.portrait-figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.portrait-figure figcaption {
  font-size: 0.82rem;
  color: var(--faint);
  margin-top: 0.6rem;
}

/* ---------- Info cards ---------- */
.card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.5rem);
}
@media (max-width: 720px) { .card-row { grid-template-columns: 1fr; } }
.info-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.info-card p { font-size: 0.96rem; color: var(--muted); }

/* ---------- CV ---------- */
.cv-group { margin-bottom: clamp(2.2rem, 4vw, 3.3rem); }
.cv-group__title {
  font-size: 1.34rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 0.4rem;
}
.cv-entry {
  display: grid;
  grid-template-columns: 6.7rem 1fr;
  gap: 1.2rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--hairline);
}
.cv-entry__year {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.cv-entry__detail { color: var(--ink); }
.cv-entry__detail .place { display: block; color: var(--muted); font-size: 0.92rem; margin-top: 0.15rem; }
.cv-entry__detail em { color: var(--ink); }
@media (max-width: 520px) {
  .cv-entry { grid-template-columns: 1fr; gap: 0.2rem; }
}

/* ---------- Definition & marker lists ---------- */
.h-sub { font-size: 1.34rem; margin-bottom: 1.05rem; }

.def-list li { padding: 0.85rem 0; border-bottom: 1px solid var(--hairline); }
.def-list li:first-child { border-top: 1px solid var(--hairline); }
.def-list strong { display: block; font-weight: 600; color: var(--ink); }
.def-list .meta { display: block; font-size: 0.92rem; color: var(--muted); margin-top: 0.12rem; }

.marker-list { display: grid; gap: 0.62rem; }
.marker-list li { position: relative; padding-left: 1.45rem; color: var(--muted); }
.marker-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-detail {
  display: flex;
  gap: 0.9rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--hairline);
  align-items: flex-start;
}
.contact-detail:first-of-type { border-top: 1px solid var(--hairline); }
.contact-detail__icon {
  flex: 0 0 auto;
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
  border-radius: 50%;
  color: var(--accent);
}
.contact-detail__icon svg { width: 18px; height: 18px; }
.contact-detail__label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 0.15rem;
}
.contact-detail__value { display: inline-block; font-size: 1.06rem; font-weight: 500; text-decoration: none; color: var(--ink); }
.contact-detail__value:hover { color: var(--accent); }

.form { display: grid; gap: 1.1rem; }
.form__field { display: grid; gap: 0.4rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 540px) { .form__row { grid-template-columns: 1fr; } }
.form__label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.form__input,
.form__textarea {
  width: 100%;
  background: var(--paper);
  border: 1.5px solid var(--hairline);
  border-radius: var(--radius);
  padding: 0.78rem 0.95rem;
  font-size: 1rem;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(160, 80, 44, 0.15);
}
.form__textarea { resize: vertical; min-height: 8rem; }
.form__note { font-size: 0.86rem; color: var(--faint); }
.form__status {
  font-size: 0.94rem;
  font-weight: 500;
  padding: 0.6rem 0;
}
.form__status[data-state='ok'] { color: #2f6b3a; }
.form__status[data-state='err'] { color: #a33; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: var(--dark-ink);
  padding-block: clamp(3rem, 6vw, 4.6rem) 2rem;
}
.site-footer a { color: var(--dark-ink); }
.site-footer a:hover { color: var(--dark-accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (max-width: 680px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer-brand__name { font-family: var(--font-display); font-size: 1.5rem; }
.footer-brand p { color: var(--dark-muted); font-size: 0.95rem; margin-top: 0.6rem; max-width: 34ch; }
.footer-col h3 {
  color: var(--dark-ink);
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-col ul { display: grid; gap: 0.5rem; }
.footer-col a { text-decoration: none; font-size: 0.96rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  padding-top: 1.6rem;
  font-size: 0.84rem;
  color: var(--dark-muted);
}

/* ---------- Page intro ---------- */
.page-intro { padding-block: clamp(2.8rem, 6vw, 4.6rem) clamp(1.6rem, 3vw, 2.4rem); }
.page-intro .breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--faint);
  margin-bottom: 1rem;
}
.page-intro .breadcrumb a { color: var(--faint); text-decoration: none; }
.page-intro .breadcrumb a:hover { color: var(--accent); }
.page-intro h1 { margin-bottom: 1rem; }
.page-intro p { max-width: 62ch; }

/* ---------- Misc ---------- */
.divider { height: 1px; background: var(--hairline); border: 0; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.flow > * + * { margin-top: 1.1rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
