/* ============================================================
   NJ Websites — statische site (njwebsites.nl)
   Kobalt / room-emaille stijl · Satoshi + JetBrains Mono
   ============================================================ */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/satoshi-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("/assets/fonts/jetbrains-mono-var.woff2") format("woff2");
  font-weight: 100 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper: #faf8f2;
  --ink: #161a22;
  --cobalt: #2447c9;
  --cobalt-deep: #1a36a3;
  --haze: #edf0fa;
  --hairline: #d8d5cb;
  --font-display: "Satoshi", system-ui, sans-serif;
  --font-jbm: "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; border: 0 solid var(--hairline); margin: 0; padding: 0; }
html {
  background-color: var(--paper);
  color: var(--ink);
  color-scheme: light;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  min-height: 100dvh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; cursor: pointer; }
input { font: inherit; color: inherit; }
ul { list-style: none; }
::selection { background: var(--cobalt); color: var(--paper); }

.container {
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container { padding-inline: 2.5rem; }
}

.font-jbm { font-family: var(--font-jbm); }

h1, h2, h3 { font-family: var(--font-display); }

.section-title {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--ink);
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* ---------- Reveal-on-scroll (vereenvoudigd, transform-only) ---------- */
.js [data-reveal],
.js [data-reveal-row] > * {
  transform: translateY(44px);
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.js [data-reveal].is-in,
.js [data-reveal-row].is-in > * {
  transform: translateY(0);
}
.js [data-reveal-row] > *:nth-child(2)  { transition-delay: 0.08s; }
.js [data-reveal-row] > *:nth-child(3)  { transition-delay: 0.16s; }
.js [data-reveal-row] > *:nth-child(4)  { transition-delay: 0.24s; }
.js [data-reveal-row] > *:nth-child(5)  { transition-delay: 0.32s; }
.js [data-reveal-row] > *:nth-child(6)  { transition-delay: 0.40s; }
.js [data-reveal-row] > *:nth-child(7)  { transition-delay: 0.48s; }
.js [data-reveal-row] > *:nth-child(8)  { transition-delay: 0.56s; }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal], .js [data-reveal-row] > * { transform: none; }
}

/* ---------- Nav ---------- */
.nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 20;
}
.nav-inner {
  margin-inline: auto;
  max-width: 80rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .nav-inner { padding-inline: 2.5rem; }
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand .monogram { width: 2.25rem; height: 2.25rem; box-shadow: 0 1px 8px rgba(0, 0, 0, 0.35); }
.nav-brand span {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) {
  .nav-links { display: flex; }
}
.nav-link {
  position: relative;
  padding-block: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.9);
  transition: color 0.2s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: var(--paper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.nav-link:hover { color: var(--paper); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  display: none;
  background: var(--cobalt);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--paper);
  box-shadow: 3px 3px 0 rgba(22, 26, 34, 0.55);
  transition: box-shadow 0.15s, transform 0.15s, background-color 0.15s;
}
@media (min-width: 640px) {
  .nav-cta { display: block; }
}
.nav-cta:hover { background: var(--cobalt-deep); }
.nav-cta:active { transform: translate(3px, 3px); box-shadow: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
}
.hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.nj-spot {
  -webkit-mask-image: radial-gradient(
    circle var(--mr, 30rem) at var(--mx, 68%) var(--my, 55%),
    black 55%,
    transparent 100%
  );
  mask-image: radial-gradient(
    circle var(--mr, 30rem) at var(--mx, 68%) var(--my, 55%),
    black 55%,
    transparent 100%
  );
}
@media (prefers-reduced-motion: reduce) {
  .nj-spot { -webkit-mask-image: none; mask-image: none; }
}
.hero-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(22, 26, 34, 0.85), rgba(22, 26, 34, 0.35) 50%, transparent);
}
.hero-content {
  position: relative;
  z-index: 10;
  margin-inline: auto;
  max-width: 80rem;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 6rem 1.25rem 4rem;
}
@media (min-width: 768px) {
  .hero-content { padding: 6rem 2.5rem 5rem; }
}
.hero h1 {
  max-width: 19ch;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--paper);
}
@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}
.hero-sub {
  margin-top: 1.25rem;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(250, 248, 242, 0.85);
}
@media (min-width: 768px) {
  .hero-sub { font-size: 1.125rem; }
}
.hero-cta-row { margin-top: 2rem; }

/* Stamp CTA (hero + form) */
.btn-stamp {
  display: inline-block;
  background: var(--cobalt);
  padding: 1rem 1.75rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--paper);
  box-shadow: 5px 5px 0 rgba(22, 26, 34, 0.6);
  transition: box-shadow 0.15s, transform 0.15s, background-color 0.15s;
}
.btn-stamp:hover { background: var(--cobalt-deep); }
.btn-stamp:active { transform: translate(5px, 5px); box-shadow: none; }
.btn-stamp:disabled { cursor: wait; opacity: 0.7; }

/* ---------- Zo werkt het ---------- */
.section-paper { background: var(--paper); }
.section-pad {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .section-pad { padding-block: 8rem; }
}
.steps-rail {
  margin-top: 3.5rem;
  border-left: 1px solid var(--hairline);
  border-top: 1px solid var(--hairline);
  padding-left: 1.25rem;
}
@media (min-width: 768px) {
  .steps-rail { padding-left: 2rem; }
}
.step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  border-bottom: 1px solid var(--hairline);
  padding-block: 2.5rem;
}
@media (min-width: 768px) {
  .step {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2rem;
    padding-block: 3.5rem;
  }
  .step-nr { grid-column: span 3; }
  .step-title { grid-column: span 5; }
  .step-body { grid-column: span 4; }
}
.step-nr {
  font-family: var(--font-jbm);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cobalt);
  line-height: 1;
}
@media (min-width: 768px) {
  .step-nr { font-size: 4.5rem; }
}
.step-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
@media (min-width: 768px) {
  .step-title h3 { font-size: 1.5rem; }
}
.step-body p {
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(22, 26, 34, 0.75);
}
.path-link {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cobalt);
}
.path-link svg { height: 0.75rem; width: 2.75rem; overflow: visible; }
.path-link .path-line { transform-origin: left; transition: transform 0.3s; }
.path-link .path-head { transition: transform 0.3s; }
.path-link:hover .path-line { transform: scaleX(1.1); }
.path-link:hover .path-head { transform: translateX(4px); }

/* ---------- Wat je krijgt (bento) ---------- */
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.section-note {
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  color: rgba(22, 26, 34, 0.6);
}
.bento {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--hairline);
}
.bento-cell {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.bento-cell img.cell-icon { height: 2.5rem; width: 2.5rem; object-fit: contain; }
.bento-cell h3 {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.bento-cell.cell-design h3 { font-size: 1.5rem; }
.bento-cell p {
  margin-top: 0.5rem;
  max-width: 36ch;
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(22, 26, 34, 0.7);
}
.bento-cell.cell-design p { max-width: 40ch; }
.cell-glass {
  position: relative;
  min-height: 12rem;
}
.cell-glass img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cell-haze { background: var(--haze); }
@media (max-width: 767.98px) {
  .bento > * + * { border-top: 1px solid var(--hairline); }
}
@media (min-width: 768px) {
  .bento { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .cell-design { grid-column: span 6; min-height: 16rem; }
  .cell-glass { grid-column: span 6; border-left: 1px solid var(--hairline); }
  .cell-mobiel { grid-column: span 3; grid-row: span 2; border-top: 1px solid var(--hairline); }
  .cell-google { grid-column: span 4; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
  .cell-route { grid-column: span 5; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
  .cell-reviews { grid-column: span 3; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
  .cell-correctie { grid-column: span 3; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
  .cell-hosting { grid-column: span 3; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
}

/* ---------- Prijs ---------- */
.pricing {
  background: var(--cobalt);
  color: var(--paper);
}
.pricing .section-title { color: var(--paper); }
.pricing-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 2.5rem;
  }
  .pricing-main { grid-column: span 7; }
  .pricing-side { grid-column: span 5; display: flex; flex-direction: column; justify-content: space-between; }
}
.price-row { display: flex; align-items: flex-start; gap: 0.75rem; }
.price-euro {
  padding-top: 1rem;
  font-family: var(--font-jbm);
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(250, 248, 242, 0.8);
}
@media (min-width: 768px) {
  .price-euro { font-size: 2.25rem; }
}
.price-value {
  font-size: clamp(7rem, 22vw, 15rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
}
.price-caption {
  margin-top: 1rem;
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 242, 0.8);
}
.price-note {
  margin-top: 2rem;
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(250, 248, 242, 0.85);
}
.hosting-row { border-top: 1px solid rgba(250, 248, 242, 0.25); padding-block: 1.5rem; }
.hosting-row.last { border-bottom: 1px solid rgba(250, 248, 242, 0.25); }
.hosting-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.hosting-line .h-label { font-size: 1.125rem; font-weight: 700; }
.hosting-line .h-price { font-family: var(--font-jbm); font-size: 1.125rem; }
.hosting-row p { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(250, 248, 242, 0.7); }
.ticket {
  position: relative;
  display: block;
  margin-top: 3rem;
  border: 1px dashed rgba(250, 248, 242, 0.7);
  padding: 1.5rem 1.75rem;
  transition: transform 0.2s;
}
.ticket:hover { transform: rotate(-1deg); }
.ticket:active { transform: scale(0.98); }
@media (prefers-reduced-motion: reduce) {
  .ticket:hover { transform: none; }
}
.ticket-notch {
  position: absolute;
  top: 50%;
  height: 1.25rem;
  width: 1.25rem;
  transform: translateY(-50%);
  border-radius: 9999px;
  background: var(--cobalt);
}
.ticket-notch.left { left: -0.625rem; }
.ticket-notch.right { right: -0.625rem; }
.ticket-title { display: block; font-size: 1.25rem; font-weight: 700; }
.ticket-sub {
  margin-top: 0.25rem;
  display: block;
  font-family: var(--font-jbm);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(250, 248, 242, 0.7);
}

/* ---------- Voor wie ---------- */
.branches { margin-top: 3.5rem; border-top: 1px solid var(--hairline); }
.branches li { border-bottom: 1px solid var(--hairline); }
.branch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem 0.5rem;
  transition: background-color 0.2s;
}
@media (min-width: 768px) {
  .branch-row { padding: 1.5rem 1rem; }
}
.branch-row span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  transition: color 0.2s;
}
@media (min-width: 768px) {
  .branch-row span { font-size: 2.25rem; }
}
.branch-row img {
  height: 2rem;
  width: 2rem;
  object-fit: contain;
  transition: filter 0.2s;
}
@media (min-width: 768px) {
  .branch-row img { height: 2.5rem; width: 2.5rem; }
}
@media (hover: hover) {
  .branch-row:hover { background: var(--cobalt); }
  .branch-row:hover span { color: var(--paper); }
  .branch-row:hover img { filter: brightness(0) invert(1); }
}
.branches-note {
  margin-top: 1.5rem;
  max-width: 60ch;
  font-size: 0.875rem;
  color: rgba(22, 26, 34, 0.6);
}

/* ---------- Over ---------- */
.about { background: var(--haze); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 3.5rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 2.5rem; }
  .about-text { grid-column: span 6; }
  .about-photo { grid-column: span 6; }
}
.kicker {
  font-family: var(--font-jbm);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--cobalt);
}
.about-text h2 { margin-top: 1rem; }
.about-text p.body {
  margin-top: 1.5rem;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(22, 26, 34, 0.75);
}
.about-text p.body + p.body { margin-top: 1rem; }
.about-facts {
  margin-top: 2rem;
  border-top: 1px solid rgba(22, 26, 34, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.about-fact { display: flex; align-items: center; gap: 0.75rem; }
.about-fact img { height: 1.5rem; width: 1.5rem; object-fit: contain; }
.about-fact span {
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  color: rgba(22, 26, 34, 0.8);
}
.photo-frame {
  position: relative;
  margin-left: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .photo-frame { margin-left: 2.5rem; }
}
.photo-frame::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: -1rem;
  height: 100%;
  width: 100%;
  border: 1px solid var(--cobalt);
}
.photo-frame img { position: relative; height: auto; width: 100%; object-fit: cover; }

/* ---------- Contact / formulier ---------- */
.contact-wrap {
  max-width: 48rem;
  margin-inline: auto;
  padding: 7rem 1.25rem;
}
@media (min-width: 768px) {
  .contact-wrap { padding: 10rem 2.5rem; }
}
.contact-wrap .kicker { text-align: center; display: block; }
.contact-title {
  margin: 1rem auto 0;
  max-width: 18ch;
  text-align: center;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
}
@media (min-width: 768px) {
  .contact-title { font-size: 3.75rem; }
}
.contact-intro {
  margin: 1.25rem auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(22, 26, 34, 0.7);
}
.lead-form { margin-top: 3rem; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.field label {
  display: block;
  font-family: var(--font-jbm);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(22, 26, 34, 0.7);
}
.field label .optional {
  text-transform: none;
  letter-spacing: normal;
  color: rgba(22, 26, 34, 0.5);
}
.field input {
  margin-top: 0.5rem;
  width: 100%;
  border: 1px solid rgba(22, 26, 34, 0.25);
  background: var(--paper);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 0;
  appearance: none;
}
.field input::placeholder { color: rgba(22, 26, 34, 0.4); }
.field input:focus {
  border-color: var(--cobalt);
  outline: none;
  box-shadow: 0 0 0 2px rgba(36, 71, 201, 0.3);
}
.form-error {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #b91c1c;
}
.form-error a { text-decoration: underline; text-underline-offset: 2px; }
.form-actions { margin-top: 2rem; display: flex; justify-content: center; }
.form-actions .btn-stamp { padding: 1rem 2rem; font-size: 1.125rem; }

.success-panel {
  position: relative;
  margin-top: 3rem;
  border: 1px solid var(--cobalt);
  padding: 3rem 2rem;
  text-align: center;
}
.success-panel .corner {
  position: absolute;
  height: 1.25rem;
  width: 1.25rem;
}
.success-panel .corner.tl { left: 0; top: 0; border-left: 2px solid var(--cobalt); border-top: 2px solid var(--cobalt); }
.success-panel .corner.tr { right: 0; top: 0; border-right: 2px solid var(--cobalt); border-top: 2px solid var(--cobalt); }
.success-panel .corner.bl { left: 0; bottom: 0; border-left: 2px solid var(--cobalt); border-bottom: 2px solid var(--cobalt); }
.success-panel .corner.br { right: 0; bottom: 0; border-right: 2px solid var(--cobalt); border-bottom: 2px solid var(--cobalt); }
.success-panel .success-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
}
@media (min-width: 768px) {
  .success-panel .success-title { font-size: 1.875rem; }
}
.success-panel .success-body {
  margin: 0.75rem auto 0;
  max-width: 42ch;
  font-size: 1rem;
  line-height: 1.625;
  color: rgba(22, 26, 34, 0.75);
}
.mail-alt {
  margin-top: 2rem;
  text-align: center;
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  color: rgba(22, 26, 34, 0.6);
}
.mail-alt a {
  color: rgba(22, 26, 34, 0.8);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 4px;
}
.mail-alt a:hover { color: var(--cobalt); text-decoration-color: var(--cobalt); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--hairline); background: var(--paper); }
.footer-inner {
  margin-inline: auto;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.5rem 1.25rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; align-items: center; padding-inline: 2.5rem; }
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand .monogram { width: 2rem; height: 2rem; }
.footer-brand span { font-weight: 700; letter-spacing: -0.025em; color: var(--ink); }
.footer-note { font-family: var(--font-jbm); font-size: 0.875rem; color: rgba(22, 26, 34, 0.6); }
.footer-mail {
  font-family: var(--font-jbm);
  font-size: 0.875rem;
  color: rgba(22, 26, 34, 0.8);
  text-decoration: underline;
  text-decoration-color: var(--hairline);
  text-underline-offset: 4px;
}
.footer-mail:hover { color: var(--cobalt); text-decoration-color: var(--cobalt); }

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