/* =========================================================================
   DESERT — desert.com
   Arid modern design system. One shared stylesheet.
   Palette: sand paper, deep ink, clay, oxidized-copper accent.
   Type: Fraunces (display) + Newsreader (body serif).
   ========================================================================= */

:root {
  /* --- Color ------------------------------------------------------------ */
  --paper:      #efe6d4;   /* warm sand paper base            */
  --paper-2:    #e6dabf;   /* deeper sand for panels          */
  --stone:      #cabfa6;   /* sun-bleached stone              */
  --ink:        #211d18;   /* deep ink text                   */
  --ink-soft:   #4a4338;   /* muted ink                       */
  --clay:       #b1502a;   /* clay — warm structural accent   */
  --clay-deep:  #8f3d1f;
  --copper:     #2f6e63;   /* oxidized copper — sharp accent, used sparingly */
  --copper-ink: #234f47;
  --line:       #c4b79a;   /* hairline rule on paper          */
  --shadow:     rgba(33, 29, 24, 0.14);

  /* --- Type ------------------------------------------------------------- */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body:    "Newsreader", Georgia, serif;

  /* --- Scale ------------------------------------------------------------ */
  --measure: 68ch;
  --gap:     clamp(1rem, 3vw, 2rem);
  --pad-x:   clamp(1.25rem, 5vw, 4.5rem);

  --radius:  2px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.02rem, 0.6vw + 0.95rem, 1.18rem);
  line-height: 1.62;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(120% 90% at 82% -10%, rgba(177, 80, 42, 0.10), transparent 55%),
    radial-gradient(90% 70% at 8% 4%, rgba(47, 110, 99, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Subtle film-grain overlay for atmosphere (not flat white) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

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

/* --- Links ---------------------------------------------------------------- */
a { color: var(--copper-ink); text-decoration: none; }
a:hover { color: var(--clay-deep); }
p a, li a, .prose a {
  text-decoration: underline;
  text-decoration-color: var(--line);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
p a:hover, li a:hover, .prose a:hover { text-decoration-color: currentColor; }

/* --- Focus (accessible) --------------------------------------------------- */
:focus-visible {
  outline: 2.5px solid var(--copper);
  outline-offset: 3px;
  border-radius: 1px;
}

/* --- Skip link ------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -3.5rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  z-index: 200;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0.5rem; color: var(--paper); }

/* --- Type styles ---------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 460; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }

.eyebrow {
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 600;
  margin: 0 0 1rem;
}

.lede { font-size: 1.2em; line-height: 1.5; color: var(--ink-soft); }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--pad-x); }
.narrow { max-width: 760px; }
section { padding-block: clamp(3rem, 7vw, 6rem); }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); color: var(--paper); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--copper { background: var(--copper); border-color: var(--copper); }
.btn--copper:hover { background: var(--copper-ink); border-color: var(--copper-ink); }

/* =========================================================================
   Header / nav
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(1.2) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 68px;
  padding-block: 0.4rem;
}
.brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.24em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-right: 0.4em; /* balance the tracked letters */
}
.brand:hover { color: var(--ink); }
.brand svg { width: 30px; height: 30px; flex: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav a {
  font-family: var(--body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding-block: 0.2rem;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--clay);
}
.nav .btn { padding: 0.6rem 1.1rem; font-size: 0.9rem; }
.nav .btn:hover { color: var(--paper); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  cursor: pointer;
  color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad-x) 1.5rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    box-shadow: 0 20px 40px -24px var(--shadow);
  }
  .nav[data-open="true"] { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding-block: 0.85rem; border-bottom: 1px solid var(--line); }
  .nav a[aria-current="page"]::after { display: none; }
  .nav .btn { margin-top: 1rem; justify-content: center; }
}

/* =========================================================================
   Hero (home)
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero__stage {
  position: relative;
  min-height: min(86vh, 760px);
  display: grid;
  align-items: end;
  padding-block: clamp(3rem, 9vw, 7rem);
}
/* Abstract full-bleed desert composition: layered dunes + sun disc */
.hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__art svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero__title {
  font-size: clamp(3.6rem, 15vw, 11rem);
  line-height: 0.86;
  letter-spacing: 0.02em;
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-weight: 420;
}
.hero__headline { font-size: clamp(1.4rem, 3vw, 2.2rem); max-width: 22ch; margin: 0 0 0.6rem; }
.hero__support { max-width: 46ch; color: var(--ink-soft); margin: 0 0 2rem; font-size: 1.15em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero__scroll {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================================
   "What we cover" beats
   ========================================================================= */
.beats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}
.beat { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.beat__no {
  font-family: var(--display);
  font-size: 0.9rem;
  color: var(--clay);
  letter-spacing: 0.1em;
}
.beat h3 { margin: 0.4rem 0 0.5rem; }
.beat p { margin: 0; color: var(--ink-soft); }
@media (max-width: 720px) { .beats { grid-template-columns: 1fr; } }

/* =========================================================================
   Featured / journal index
   ========================================================================= */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.section-head h2 { margin: 0; }
.section-head .more { font-family: var(--body); font-size: 0.95rem; white-space: nowrap; }

.stories { display: grid; gap: clamp(1.5rem, 3vw, 2.6rem); }
.stories--feature { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) { .stories--feature { grid-template-columns: 1fr; } }

.story {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
.story__meta {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.7rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.story__meta .dot { color: var(--line); }
.story h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 0 0 0.5rem; }
.story h3 a { color: var(--ink); }
.story h3 a:hover { color: var(--clay-deep); }
.story p { margin: 0 0 1rem; color: var(--ink-soft); }
.story__read {
  margin-top: auto;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.story__thumb {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  margin-bottom: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.story__thumb svg { width: 100%; height: 100%; display: block; }

/* Journal index list (roomier) */
.index-list { display: grid; gap: 0; }
.index-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding-block: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 1px solid var(--line);
}
.index-item:last-child { border-bottom: 1px solid var(--line); }
.index-item h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 0; }
.index-item h3 a { color: var(--ink); }
.index-item h3 a:hover { color: var(--clay-deep); }

/* =========================================================================
   CTA band (newsletter)
   ========================================================================= */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 120% at 90% 120%, rgba(177, 80, 42, 0.5), transparent 55%),
    radial-gradient(70% 90% at 5% -20%, rgba(47, 110, 99, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--paper); }
.cta-band p { color: color-mix(in srgb, var(--paper) 82%, transparent); max-width: 52ch; }
.cta-band .eyebrow { color: color-mix(in srgb, var(--clay) 80%, white 20%); }
.cta-band .btn { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.cta-band .btn:hover { background: var(--clay); color: var(--paper); border-color: var(--clay); }

/* =========================================================================
   Article (journal/[slug])
   ========================================================================= */
.article-header { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2.5rem); }
.article-header .kicker {
  font-family: var(--body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
  display: flex; gap: 0.7rem; flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.article-header h1 { max-width: 18ch; margin-bottom: 0.8rem; }
.article-header .lede { max-width: var(--measure); }
.byline {
  margin-top: 1.6rem;
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap;
}
.byline strong { color: var(--ink); font-weight: 600; }
.article-hero {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.article-hero svg { width: 100%; height: 100%; display: block; }

.prose { max-width: var(--measure); margin-inline: auto; }
.prose > * + * { margin-top: 1.4rem; }
.prose p { margin: 0; }
.prose h2 { margin: 2.6rem 0 0.2rem; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.prose h3 { margin: 2rem 0 0; }
.prose blockquote {
  margin: 2.4rem 0;
  padding: 0.4rem 0 0.4rem 1.6rem;
  border-left: 3px solid var(--clay);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.28;
  font-style: italic;
  color: var(--ink);
}
.prose blockquote cite { display: block; font-size: 0.9rem; font-style: normal; font-family: var(--body); color: var(--ink-soft); margin-top: 0.8rem; letter-spacing: 0.02em; }
.prose figure { margin: 2.6rem 0; }
.prose figure .frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/2; }
.prose figure .frame svg { width: 100%; height: 100%; display: block; }
.prose figcaption { font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.7rem; font-style: italic; }
.prose .dropcap::first-letter {
  font-family: var(--display);
  font-size: 3.6em;
  line-height: 0.72;
  float: left;
  padding: 0.06em 0.12em 0 0;
  color: var(--clay);
  font-weight: 500;
}
.article-foot {
  max-width: var(--measure);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

/* =========================================================================
   Prose pages (privacy / terms / about)
   ========================================================================= */
.doc { max-width: 780px; }
.doc h2 { margin-top: 2.6rem; }
.doc h3 { margin-top: 1.8rem; }
.doc ul, .doc ol { padding-left: 1.3rem; }
.doc li { margin-bottom: 0.5rem; }
.doc .updated {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.page-header { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(1rem, 3vw, 2rem); }
.page-header h1 { margin-bottom: 0.6rem; }

.toc {
  background: color-mix(in srgb, var(--paper-2) 70%, transparent);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin: 1.5rem 0 2.5rem;
}
.toc p { margin: 0 0 0.6rem; font-family: var(--body); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clay); }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.toc li { margin-bottom: 0.35rem; }
@media (max-width: 560px){ .toc ol { columns: 1; } }

/* =========================================================================
   Forms
   ========================================================================= */
.form-card {
  background: color-mix(in srgb, var(--paper-2) 60%, var(--paper));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: 0 30px 60px -50px var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.45rem;
  color: var(--ink);
}
.field .hint { font-size: 0.82rem; color: var(--ink-soft); font-weight: 400; }
.field .req { color: var(--clay); }
.field input[type="text"],
.field input[type="email"],
.field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1.02rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--copper) 22%, transparent);
  outline: none;
}
.field textarea { min-height: 140px; resize: vertical; }

/* Honeypot — visually hidden but present for bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  overflow: hidden;
}

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1.4rem;
}
.consent input[type="checkbox"] {
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--copper);
  flex: none;
  cursor: pointer;
}
.consent label { font-size: 0.95rem; line-height: 1.45; color: var(--ink-soft); }
.consent label strong { color: var(--ink); }

.form-note { font-size: 0.9rem; color: var(--ink-soft); margin-top: 0.4rem; }
.form-actions { margin-top: 0.5rem; }

/* Validation + status messaging */
.field.invalid input,
.field.invalid textarea { border-color: var(--clay); }
.error-text {
  display: none;
  font-size: 0.85rem;
  color: var(--clay-deep);
  margin-top: 0.4rem;
  font-weight: 600;
}
.field.invalid .error-text,
.consent.invalid .error-text { display: block; }
.consent.invalid { border-color: var(--clay); }

.form-status {
  display: none;
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid;
  font-size: 0.98rem;
}
.form-status[data-show="true"] { display: block; }
.form-status--success {
  background: color-mix(in srgb, var(--copper) 12%, var(--paper));
  border-color: var(--copper);
  color: var(--copper-ink);
}
.form-status--error {
  background: color-mix(in srgb, var(--clay) 12%, var(--paper));
  border-color: var(--clay);
  color: var(--clay-deep);
}
.form-status h3 { color: inherit; margin: 0 0 0.4rem; font-size: 1.25rem; }
.form-status p { margin: 0.3rem 0 0; color: inherit; }

.form-legal {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: 1.4rem;
  line-height: 1.5;
}

/* Two-column form layout */
.form-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.form-aside .eyebrow { margin-top: 0; }
.form-aside ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.form-aside li { display: flex; gap: 0.75rem; padding-block: 0.7rem; border-top: 1px solid var(--line); }
.form-aside li:last-child { border-bottom: 1px solid var(--line); }
.form-aside .mark { color: var(--copper); font-family: var(--display); font-weight: 600; flex: none; }
@media (max-width: 820px) { .form-layout { grid-template-columns: 1fr; } .form-aside { order: -1; } }

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: color-mix(in srgb, var(--paper) 78%, transparent);
  border-top: 1px solid #000;
  margin-top: clamp(3rem, 8vw, 6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.site-footer .brand { color: var(--paper); }
.site-footer .brand:hover { color: var(--paper); }
.footer-blurb { max-width: 34ch; margin: 1rem 0 0; font-size: 0.98rem; color: color-mix(in srgb, var(--paper) 70%, transparent); }
.footer-col h4 {
  font-family: var(--body);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--clay) 70%, white 30%);
  margin: 0 0 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: color-mix(in srgb, var(--paper) 82%, transparent); font-size: 0.98rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom {
  border-top: 1px solid color-mix(in srgb, var(--paper) 16%, transparent);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--paper) 60%, transparent);
}
.footer-consent { max-width: 60ch; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } }
@media (max-width: 460px) { .footer-grid { grid-template-columns: 1fr; } }

/* =========================================================================
   Misc utilities
   ========================================================================= */
.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;
}
.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.6rem; }
.mt-2 { margin-top: 2rem; }
.crumb { font-family: var(--body); font-size: 0.85rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-bottom: 1.5rem; }
.crumb a { color: var(--ink-soft); }
.crumb a:hover { color: var(--clay-deep); }

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