/* =============================================================
   Mandream Executive: B2B Forsikrings-site
   Stylesheet v1 (draft, conditional på Vej 2 sub-brand)
   Palet: Klinisk Indigo
   Typografi: Inter (sans) + Lora (serif)
   ============================================================= */

/* ---- 1. Design tokens ---- */
:root {
  /* Klinisk Indigo - primary */
  --c-indigo-deepest: #0e1426;
  --c-indigo-deep: #1a2238;
  --c-indigo-soft: #3a4566;
  --c-charcoal: #2d2f36;
  --c-steel-cold: #6b7a8f;
  --c-steel-pale: #c4ccd8;
  --c-stone: #a9a29a;
  --c-ivory-warm: #ede7da;
  --c-ivory: #f4f1ea;
  --c-sienna: #a8533a;

  /* Roller */
  --c-bg: var(--c-ivory);
  --c-bg-alt: var(--c-ivory-warm);
  --c-bg-dark: var(--c-indigo-deep);
  --c-bg-darkest: var(--c-indigo-deepest);
  --c-text: var(--c-charcoal);
  --c-text-muted: var(--c-steel-cold);
  --c-text-onDark: var(--c-ivory);
  --c-text-onDark-muted: var(--c-steel-pale);
  --c-headline: var(--c-indigo-deep);
  --c-link: var(--c-indigo-deep);
  --c-link-hover: var(--c-indigo-soft);
  --c-accent: var(--c-sienna);
  --c-border: var(--c-steel-pale);
  --c-border-strong: var(--c-steel-cold);

  /* Typografi */
  --f-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --f-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;

  --fs-xs: 0.8125rem;     /* 13 */
  --fs-sm: 0.9375rem;     /* 15 */
  --fs-base: 1.0625rem;   /* 17 */
  --fs-md: 1.1875rem;     /* 19 */
  --fs-lg: 1.4375rem;     /* 23 */
  --fs-xl: 1.875rem;      /* 30 */
  --fs-2xl: 2.5rem;       /* 40 */
  --fs-3xl: 3.25rem;      /* 52 */
  --fs-4xl: 4rem;         /* 64 */

  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.55;
  --lh-relaxed: 1.7;

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

  /* Layout */
  --container: 70rem;
  --container-narrow: 50rem;
  --container-tight: 38rem;

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 2px rgba(14, 20, 38, 0.06);
  --shadow: 0 4px 16px rgba(14, 20, 38, 0.08);
  --shadow-lg: 0 12px 32px rgba(14, 20, 38, 0.12);

  --tr: 180ms ease;
}

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

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

body {
  margin: 0;
  font-family: var(--f-serif);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  font-feature-settings: 'kern', 'liga', 'onum';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-sans);
  color: var(--c-headline);
  font-weight: 600;
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  margin: 0 0 var(--sp-4);
}

h1 { font-size: var(--fs-3xl); letter-spacing: -0.025em; font-weight: 700; }
h2 { font-size: var(--fs-2xl); letter-spacing: -0.02em; }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); text-transform: uppercase; letter-spacing: 0.06em; }

p {
  margin: 0 0 var(--sp-5);
  max-width: 38em;
}

p.lead {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--c-text);
}

a {
  color: var(--c-link);
  text-decoration: underline;
  text-decoration-color: var(--c-steel-pale);
  text-underline-offset: 3px;
  transition: color var(--tr), text-decoration-color var(--tr);
}
a:hover, a:focus-visible {
  color: var(--c-link-hover);
  text-decoration-color: currentColor;
}
a:focus-visible {
  outline: 2px solid var(--c-indigo-soft);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

ul, ol { padding-left: 1.4em; margin: 0 0 var(--sp-5); }
li { margin-bottom: var(--sp-2); }

strong { font-weight: 600; color: var(--c-indigo-deepest); }
em { font-style: italic; }

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: var(--sp-7) 0;
}

blockquote {
  margin: 0 0 var(--sp-6);
  padding: var(--sp-4) 0 var(--sp-4) var(--sp-5);
  border-left: 3px solid var(--c-indigo-deep);
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  font-style: italic;
  color: var(--c-text);
}

::selection { background: var(--c-indigo-deep); color: var(--c-ivory); }

/* ---- 3. Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }
.container--tight { max-width: var(--container-tight); }

@media (min-width: 768px) {
  .container { padding-inline: var(--sp-6); }
}

.section {
  padding-block: var(--sp-8);
}
@media (min-width: 768px) {
  .section { padding-block: var(--sp-9); }
}

.section--alt { background: var(--c-bg-alt); }
.section--dark {
  background: var(--c-bg-dark);
  color: var(--c-text-onDark);
}
.section--dark h1, .section--dark h2,
.section--dark h3, .section--dark h4,
.section--dark h5, .section--dark h6 { color: var(--c-text-onDark); }
.section--dark a { color: var(--c-ivory); text-decoration-color: var(--c-steel-cold); }
.section--dark a:hover { color: var(--c-steel-pale); }

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-steel-cold);
  margin-bottom: var(--sp-3);
}
.section--dark .eyebrow { color: var(--c-steel-pale); }
.boundary-copy {
  color: #ffffff !important;
  font-weight: 600 !important;
  line-height: 1.6;
  font-size: clamp(1.125rem, 4.2vw, 1.25rem);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

/* Grids */
.grid { display: grid; gap: var(--sp-6); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 720px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

.split {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--12-7 { grid-template-columns: 1.2fr 0.7fr; }
  .split--7-12 { grid-template-columns: 0.7fr 1.2fr; }
}

/* ---- 4. Header og navigation ---- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-indigo-deep);
  color: var(--c-ivory);
  padding: var(--sp-3) var(--sp-4);
  z-index: 1000;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

.site-header {
  position: sticky;
  top: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  z-index: 50;
  backdrop-filter: saturate(1.05);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5ch;
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: var(--fs-lg);
  color: var(--c-indigo-deepest);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.brand:hover { color: var(--c-indigo-deep); }
.brand__primary { font-weight: 600; }
.brand__secondary {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-steel-cold);
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  color: var(--c-charcoal);
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--c-indigo-soft);
  outline-offset: 2px;
}
.nav-toggle svg { width: 20px; height: 20px; }

.site-nav { display: none; }
.site-nav[data-open='true'] {
  display: block;
  position: absolute;
  top: 100%;
  inset-inline: 0;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  padding-block: var(--sp-4);
  box-shadow: var(--shadow);
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-nav li { margin: 0; }
.site-nav a {
  display: block;
  padding: var(--sp-3) var(--sp-5);
  min-height: 44px;
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-charcoal);
  text-decoration: none;
  border-left: 2px solid transparent;
}
.site-nav a:hover, .site-nav a[aria-current='page'] {
  color: var(--c-indigo-deep);
  border-left-color: var(--c-indigo-deep);
  background: var(--c-bg-alt);
}
.site-nav .nav-cta a {
  margin: var(--sp-2) var(--sp-5) 0;
  border-radius: var(--radius);
  background: var(--c-indigo-deep);
  color: var(--c-ivory);
  border-left: 0;
}
.site-nav .nav-cta a:hover,
.site-nav .nav-cta a[aria-current='page'] {
  background: var(--c-indigo-deepest);
  color: var(--c-ivory);
  border-left: 0;
}

@media (min-width: 960px) {
  .nav-toggle { display: none; }
  .site-nav, .site-nav[data-open='true'] {
    display: block;
    position: static;
    background: transparent;
    border-bottom: 0;
    padding: 0;
    box-shadow: none;
  }
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-4);
  }
  .site-nav a {
    padding: var(--sp-3) var(--sp-2);
    border-left: 0;
    border-bottom: 2px solid transparent;
  }
  .site-nav a:hover, .site-nav a[aria-current='page'] {
    background: transparent;
    border-left: 0;
    border-bottom-color: var(--c-indigo-deep);
  }
  .site-nav .nav-cta {
    margin-left: var(--sp-3);
  }
  .site-nav .nav-cta a {
    background: var(--c-indigo-deep);
    color: var(--c-ivory);
    padding: var(--sp-3) var(--sp-5);
    border-radius: var(--radius);
    border: 0;
  }
  .site-nav .nav-cta a:hover {
    background: var(--c-indigo-deepest);
    color: var(--c-ivory);
  }
}

/* ---- 5. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.95em 1.6em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--tr), color var(--tr), border-color var(--tr), transform var(--tr);
}
.btn:focus-visible {
  outline: 2px solid var(--c-indigo-soft);
  outline-offset: 3px;
}
.btn--primary {
  background: var(--c-indigo-deep);
  color: var(--c-ivory);
}
.btn--primary:hover {
  background: var(--c-indigo-deepest);
  color: var(--c-ivory);
}
.btn--secondary {
  background: transparent;
  color: var(--c-indigo-deep);
  border-color: var(--c-indigo-deep);
}
.btn--secondary:hover {
  background: var(--c-indigo-deep);
  color: var(--c-ivory);
}
.btn--ghost {
  background: transparent;
  color: var(--c-indigo-deep);
  padding-inline: 0;
  text-decoration: underline;
  text-decoration-color: var(--c-steel-pale);
  text-underline-offset: 4px;
}
.btn--ghost:hover {
  color: var(--c-indigo-deepest);
  text-decoration-color: currentColor;
}
.section--dark .btn--secondary {
  color: var(--c-ivory);
  border-color: var(--c-ivory);
}
.section--dark .btn--secondary:hover {
  background: var(--c-ivory);
  color: var(--c-indigo-deep);
}
.section--dark .btn--ghost { color: var(--c-ivory); }

/* ---- 6. Hero ---- */
.hero {
  padding-block: var(--sp-9);
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bg-alt) 100%);
  border-bottom: 1px solid var(--c-border);
}
.hero__title {
  font-size: clamp(2rem, 4.5vw, var(--fs-4xl));
  letter-spacing: -0.025em;
  font-weight: 700;
  line-height: 1.08;
  overflow-wrap: anywhere;
  max-width: 18ch;
  margin-bottom: var(--sp-5);
}
.hero__sub {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  max-width: 38em;
  margin-bottom: var(--sp-6);
  color: var(--c-charcoal);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
}

/* ---- 7. Cards og blocks ---- */
.card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--tr), box-shadow var(--tr), transform var(--tr);
}
.card:hover { border-color: var(--c-border-strong); box-shadow: var(--shadow-sm); }
.card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.card p:last-child { margin-bottom: 0; }
.card .card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4ch;
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--c-indigo-deep);
}
.card .card__link::after {
  content: '→';
  transition: transform var(--tr);
}
.card .card__link:hover::after { transform: translateX(3px); }

.section--alt .card { background: var(--c-bg); }
.section--dark .card {
  background: var(--c-indigo-deepest);
  border-color: var(--c-indigo-soft);
  color: var(--c-text-onDark);
}
.section--dark .card .card__link { color: var(--c-ivory); }

/* Stat-block */
.stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-5);
  border-left: 3px solid var(--c-indigo-deep);
  background: var(--c-bg-alt);
}
.stat__value {
  font-family: var(--f-sans);
  font-weight: 700;
  font-size: var(--fs-2xl);
  letter-spacing: -0.02em;
  color: var(--c-indigo-deepest);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  letter-spacing: 0.01em;
}

/* Feature row */
.feature {
  display: grid;
  gap: var(--sp-3);
  padding: var(--sp-5) 0;
  border-top: 1px solid var(--c-border);
}
.feature:first-of-type { border-top: 0; }
.feature h3 {
  font-size: var(--fs-md);
  margin-bottom: 0;
}
.feature p { margin-bottom: 0; }

/* Trust-row */
.trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 720px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .trust { grid-template-columns: repeat(4, 1fr); }
}
.trust__item {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--c-charcoal);
  padding-top: var(--sp-3);
  border-top: 2px solid var(--c-indigo-deep);
}
.trust__item strong {
  display: block;
  font-size: var(--fs-md);
  margin-bottom: var(--sp-1);
  color: var(--c-indigo-deepest);
}

/* ---- 8. Tabel-style for økonomi-data ---- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-bg);
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-variant-numeric: tabular-nums;
}
.data-table th, .data-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.data-table th {
  background: var(--c-bg-alt);
  font-weight: 600;
  color: var(--c-indigo-deepest);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.data-table tr:last-child td { border-bottom: 0; }
.data-table tr.is-highlight td {
  background: var(--c-bg-alt);
  font-weight: 600;
  color: var(--c-indigo-deepest);
}

/* ---- 9. FAQ ---- */
.faq-item {
  border-top: 1px solid var(--c-border);
  padding-block: var(--sp-5);
}
.faq-item:last-child { border-bottom: 1px solid var(--c-border); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--sp-4);
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--c-indigo-deepest);
  line-height: var(--lh-snug);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: var(--fs-xl);
  line-height: 1;
  color: var(--c-steel-cold);
  flex-shrink: 0;
  transition: transform var(--tr);
}
.faq-item[open] summary::after { content: '–'; }
.faq-item__body {
  margin-top: var(--sp-4);
  font-size: var(--fs-base);
  color: var(--c-charcoal);
}
.faq-item__body p:last-child { margin-bottom: 0; }

/* ---- 10. Profilkort ---- */
.profile {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 600px) {
  .profile { grid-template-columns: 14rem 1fr; }
}
.profile__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  filter: saturate(0.7) contrast(0.95);
}
.profile h3 { margin-bottom: var(--sp-1); font-size: var(--fs-lg); }
.profile__role {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-steel-cold);
  margin-bottom: var(--sp-3);
  font-weight: 500;
}

/* ---- 11. Forms ---- */
.form {
  display: grid;
  gap: var(--sp-4);
}
.form__row {
  display: grid;
  gap: var(--sp-2);
}
.form__row--two {
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 600px) {
  .form__row--two { grid-template-columns: repeat(2, 1fr); }
}
.form label {
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-charcoal);
}
.form .req { color: var(--c-sienna); margin-left: 0.2em; }
.form input[type=text],
.form input[type=email],
.form input[type=tel],
.form input[type=number],
.form select,
.form textarea {
  width: 100%;
  font-family: var(--f-sans);
  font-size: var(--fs-base);
  color: var(--c-charcoal);
  background: var(--c-bg);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--radius);
  padding: 0.7em 0.9em;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.form textarea { min-height: 8rem; resize: vertical; line-height: var(--lh-snug); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 0;
  border-color: var(--c-indigo-deep);
  box-shadow: 0 0 0 3px rgba(58, 69, 102, 0.18);
}
.form .checkbox {
  display: grid;
  grid-template-columns: 1.5em 1fr;
  align-items: start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-family: var(--f-sans);
  font-weight: 400;
  color: var(--c-charcoal);
  line-height: var(--lh-snug);
}
.form .checkbox input { margin-top: 0.2em; }
.form__hint {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin: 0;
}
.form__submit { margin-top: var(--sp-3); }
.form__status {
  margin-top: var(--sp-3);
  font-family: var(--f-sans);
  font-size: var(--fs-sm);
  min-height: 1.5em;
  color: var(--c-text-muted);
}
.form__status[data-state="pending"] { color: var(--c-text-muted); }
.form__status[data-state="error"]   { color: var(--c-sienna); }
.form__status[data-state="success"] { color: var(--c-indigo); }

/* ---- 12. Footer ---- */
.site-footer {
  background: var(--c-indigo-deepest);
  color: var(--c-text-onDark-muted);
  padding-block: var(--sp-8) var(--sp-6);
  font-size: var(--fs-sm);
  font-family: var(--f-sans);
}
.site-footer h4 {
  color: var(--c-ivory);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer__cols {
  display: grid;
  gap: var(--sp-7);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-7);
}
@media (min-width: 720px) {
  .site-footer__cols { grid-template-columns: 1.4fr 1fr 1fr; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: var(--sp-2); }
.site-footer a {
  color: var(--c-steel-pale);
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--c-ivory);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer__brand {
  font-family: var(--f-serif);
  font-size: var(--fs-md);
  color: var(--c-ivory);
  margin-bottom: var(--sp-3);
}
.site-footer__bottom {
  border-top: 1px solid var(--c-indigo-soft);
  padding-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--c-stone);
}

/* ---- 13. Page-intro (sub-pages) ---- */
.page-intro {
  padding-block: var(--sp-8) var(--sp-7);
  background: var(--c-bg-alt);
  border-bottom: 1px solid var(--c-border);
}
.page-intro__title {
  font-size: clamp(2rem, 4vw, var(--fs-2xl));
  overflow-wrap: anywhere;
  max-width: 22ch;
}
.page-intro__lead {
  font-size: var(--fs-md);
  max-width: 36em;
  color: var(--c-charcoal);
  line-height: var(--lh-relaxed);
}

/* ---- 14. Util ---- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.muted { color: var(--c-text-muted); }
.small { font-size: var(--fs-sm); }
.tiny { font-size: var(--fs-xs); }
.sans { font-family: var(--f-sans); }
.serif { font-family: var(--f-serif); }
.uppercase { text-transform: uppercase; letter-spacing: 0.06em; font-size: var(--fs-xs); }

.note {
  font-family: var(--f-sans);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  border-top: 1px solid var(--c-border);
  padding-top: var(--sp-3);
  margin-top: var(--sp-5);
}

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

/* Print */
@media print {
  .site-header, .site-footer, .nav-toggle, .hero__cta { display: none; }
  body { background: white; color: black; }
}
