/* ============================================================
   ZORGADMINISTRATIE.NL — Design System
   Editorial-professional voor zorgadministratie
   ============================================================ */

:root {
  /* Kleurpalet */
  --ink: #1A1F1C;
  --ink-soft: #3A423E;
  --ink-mute: #6A726E;
  --cream: #F5F0E6;
  --paper: #FBF8F2;
  --paper-warm: #EFE7D6;
  --forest: #1F3A2E;
  --forest-deep: #14271E;
  --moss: #4A6B5C;
  --clay: #B8654A;
  --clay-soft: #C9806A;
  --line: rgba(26, 31, 28, 0.12);
  --line-soft: rgba(26, 31, 28, 0.06);

  /* Typografie */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --container: 1240px;
  --container-narrow: 880px;
  --gutter: clamp(20px, 4vw, 48px);

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 240ms ease;
  --t-slow: 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }

/* Selection */
::selection { background: var(--forest); color: var(--cream); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--moss);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--moss);
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  font-weight: 300;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 60, "SOFT" 50;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }

section { padding: clamp(64px, 9vw, 128px) 0; }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 240, 230, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "opsz" 60;
}
.brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.brand-name { font-weight: 500; }
.brand-tld { color: var(--moss); font-weight: 300; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 450;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--forest); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--t-base), transform var(--t-base);
}
.nav-cta:hover { background: var(--forest-deep); transform: translateY(-1px); }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; stroke: var(--ink); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px var(--gutter) 32px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-110%);
    transition: transform var(--t-base);
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
  transition: all var(--t-base);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--forest);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px rgba(31, 58, 46, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-secondary:hover { border-color: var(--ink); background: var(--paper); }
.btn-accent {
  background: var(--clay);
  color: var(--cream);
}
.btn-accent:hover { background: var(--clay-soft); transform: translateY(-1px); }
.btn-arrow { transition: transform var(--t-base); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: end;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero h1 {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 380;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin-bottom: 32px;
}
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--forest);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 56ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-meta {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  gap: 32px;
  font-size: 13.5px;
  color: var(--ink-mute);
  flex-wrap: wrap;
}
.hero-meta strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 30;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
}
.hero-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 30, "SOFT" 50;
}
.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-card-list li {
  font-size: 14.5px;
  color: var(--ink-soft);
  padding-left: 22px;
  position: relative;
}
.hero-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 12px;
  height: 1px;
  background: var(--forest);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 48px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.trust-grid strong { color: var(--forest); font-weight: 500; }

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 760px;
}
.section-head h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 380;
  margin-top: 16px;
  margin-bottom: 20px;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.section-head h2 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.section-head p {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */

.services {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.service-card {
  padding: 40px 32px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background var(--t-base);
  display: flex;
  flex-direction: column;
  min-height: 320px;
}
.service-card:hover { background: var(--cream); }
.service-card:nth-child(3n) { border-right: 0; }
@media (max-width: 720px) {
  .service-card { border-right: 0 !important; }
}
.service-num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--moss);
  font-variation-settings: "opsz" 30;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 24px;
  flex: 1;
}
.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.01em;
}
.service-link:hover { gap: 14px; }

/* ============================================================
   AUDIENCES
   ============================================================ */

.audiences-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.audience-card {
  padding: 28px 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.audience-card:hover {
  border-color: var(--forest);
  transform: translateY(-2px);
}
.audience-card h4 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  font-variation-settings: "opsz" 30, "SOFT" 50;
}
.audience-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-mute);
  margin: 0;
}

/* ============================================================
   FEATURE / SPLIT
   ============================================================ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
}
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
}
.split-text h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  margin-bottom: 24px;
}
.split-text p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.split-visual {
  background: var(--forest);
  color: var(--cream);
  padding: 56px 48px;
  border-radius: var(--r-lg);
  position: relative;
}
.split-visual .eyebrow { color: var(--paper-warm); }
.split-visual .eyebrow::before { background: var(--paper-warm); }
.split-visual h3 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 14px 0 24px;
  color: var(--cream);
  font-variation-settings: "opsz" 60, "SOFT" 40;
}
.split-visual ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.split-visual li {
  padding: 16px 0;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
  display: flex;
  align-items: baseline;
  gap: 18px;
  font-size: 15px;
}
.split-visual li:last-child { border-bottom: 1px solid rgba(245, 240, 230, 0.18); }
.split-visual li strong {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper-warm);
  font-weight: 400;
  font-variation-settings: "opsz" 30;
  min-width: 36px;
}

/* ============================================================
   PROCESS / WERKWIJZE
   ============================================================ */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  padding-top: 24px;
  border-top: 1px solid var(--forest);
  position: relative;
}
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 300;
}
.process-step h4 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 12px;
  font-variation-settings: "opsz" 30, "SOFT" 50;
}
.process-step p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   QUOTE / PULL
   ============================================================ */

.pull-quote {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) 0;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  font-weight: 300;
  color: var(--ink);
  margin: 0 0 32px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.pull-quote blockquote em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pull-quote cite {
  font-style: normal;
  font-size: 14px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ============================================================
   CTA STRIP
   ============================================================ */

.cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: clamp(64px, 10vw, 120px) 0;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 380;
  margin-bottom: 28px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 40;
}
.cta-band h2 em {
  font-style: italic;
  color: var(--paper-warm);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.cta-band p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 300;
  color: var(--paper-warm);
  max-width: 56ch;
  margin: 0 0 40px;
}
.cta-band .btn-primary {
  background: var(--clay);
  color: var(--cream);
}
.cta-band .btn-primary:hover { background: var(--clay-soft); }
.cta-band .btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.3);
}
.cta-band .btn-secondary:hover { border-color: var(--cream); background: rgba(245, 240, 230, 0.08); }

/* ============================================================
   NEWSLETTER
   ============================================================ */

.newsletter {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .newsletter-grid { grid-template-columns: 1fr; gap: 32px; } }

.newsletter h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}
.newsletter p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 8px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px;
  transition: border-color var(--t-base);
}
.newsletter-form:focus-within { border-color: var(--forest); }
.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 15px;
  padding: 12px 18px;
  color: var(--ink);
  outline: none;
}
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form button {
  background: var(--forest);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  transition: background var(--t-base);
}
.newsletter-form button:hover { background: var(--forest-deep); }

.newsletter-fineprint {
  font-size: 12.5px;
  color: var(--ink-mute);
  margin-top: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--forest-deep);
  color: var(--paper-warm);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 60;
}
.footer-tag {
  font-size: 14.5px;
  color: var(--paper-warm);
  opacity: 0.7;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  opacity: 0.55;
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14.5px;
  color: var(--paper-warm);
  opacity: 0.85;
  transition: opacity var(--t-fast);
}
.footer-col a:hover { opacity: 1; color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 230, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: var(--paper-warm);
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a:hover { opacity: 1; color: var(--cream); }

/* ============================================================
   PAGE HEADER (sub-pages)
   ============================================================ */

.page-header {
  padding: clamp(60px, 8vw, 100px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.page-header .eyebrow { margin-bottom: 20px; }
.page-header h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 380;
  margin-bottom: 24px;
  max-width: 18ch;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.page-header h1 em {
  font-style: italic;
  color: var(--forest);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.page-header .lede { max-width: 56ch; }

/* ============================================================
   PROSE (article content)
   ============================================================ */

.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.prose > * + * { margin-top: 1.2em; }
.prose h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--ink);
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-variation-settings: "opsz" 60, "SOFT" 50;
}
.prose h3 {
  font-size: clamp(22px, 2.5vw, 26px);
  color: var(--ink);
  margin-top: 1.6em;
  margin-bottom: 0.5em;
  font-variation-settings: "opsz" 30, "SOFT" 60;
}
.prose p { margin: 0 0 1.1em; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 0.5em; }
.prose a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--forest); }

.callout {
  background: var(--paper);
  border-left: 3px solid var(--forest);
  padding: 24px 28px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 2em 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--moss);
  margin-bottom: 8px;
  font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t-fast);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); }
.field textarea { min-height: 140px; resize: vertical; }

.contact-info {
  padding: 36px;
  background: var(--paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.contact-info h3 {
  font-size: 24px;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 30, "SOFT" 50;
}
.contact-info dl { margin: 0; }
.contact-info dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--moss);
  margin-top: 20px;
  margin-bottom: 4px;
  font-weight: 500;
}
.contact-info dt:first-child { margin-top: 0; }
.contact-info dd {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
}
.contact-info dd a:hover { color: var(--forest); }

/* ============================================================
   UTILITIES
   ============================================================ */

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-lg { margin-top: 48px; }
.divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 48px 0;
}

/* Subtle background detail */
.bg-grain {
  position: relative;
}
.bg-grain::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  mix-blend-mode: multiply;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Print */
@media print {
  .site-header, .site-footer, .nav-cta, .cta-band, .newsletter { display: none; }
}
