/* ═══════════════════════════════════════════════════════════
   VeriCare — Shared Stylesheet
   Fonts are loaded via <link> tags in each page <head>.
   ═══════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* ── Design tokens ── */
:root {
  --brand:      #080d11;
  --brand-dark: #000508;
  --brand-mid:  #1a2530;
  --brand-light:#eceef0;
  --brand-pale: #f4f5f6;
  --gold:       #e25302;
  --gold-dim:   rgba(226, 83, 2, .1);
  --text:       #080d11;
  --text-mid:   #3a3f44;
  --text-muted: #8a8f94;
  --border:     #dde0e3;
  --border-md:  #c4c8cc;
  --white:      #ffffff;
  --off-white:  #f7f8f8;
  --ease:       cubic-bezier(.16, 1, .3, 1);
}

/* ── Base ── */
body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* Grain overlay — fixed, never repaints on scroll */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: .025;
  pointer-events: none;
  z-index: 9999;
}

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="sm"] {
  transform: translateY(12px);
  transition-duration: .5s;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay:   0ms; }
.stagger.visible > *:nth-child(2) { transition-delay:  50ms; }
.stagger.visible > *:nth-child(3) { transition-delay: 100ms; }
.stagger.visible > *:nth-child(4) { transition-delay: 150ms; }
.stagger.visible > *:nth-child(5) { transition-delay: 200ms; }
.stagger.visible > *:nth-child(6) { transition-delay: 250ms; }
.stagger.visible > *:nth-child(7) { transition-delay: 300ms; }
.stagger.visible > *:nth-child(8) { transition-delay: 350ms; }

/* ── Nav ── */
nav {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 80px;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}

nav.scrolled {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
  border-bottom-color: transparent;
}

.nav-inner {
  max-width: 1040px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s var(--ease);
  white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {
  .nav-link:hover {
    color: var(--text);
  }
}

.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

.nav-cta {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background .2s var(--ease), transform .15s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover {
    background: #c04601;
  }
}

.nav-cta:active {
  transform: scale(.97);
}

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  margin-left: auto;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px -8px rgba(8, 13, 17, .12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: .75rem 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* On mobile, CTA moves inside mobile menu area — keep it visible */
  nav .nav-cta {
    display: none;
  }

  nav .nav-links.open ~ .nav-cta,
  nav .nav-cta {
    display: block;
  }
}

/* ── Buttons ── */
.btn-primary {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background .2s var(--ease), transform .15s var(--ease);
  display: inline-block;
  border: none;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: #c04601;
  }
}

.btn-primary:active {
  transform: scale(.97);
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  transition: border-color .2s var(--ease), color .2s, transform .15s;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    border-color: rgba(255, 255, 255, .6);
    color: var(--white);
  }
}

.btn-ghost:active {
  transform: scale(.97);
}

/* Dark-on-light ghost variant */
.btn-ghost-dark {
  background: transparent;
  color: var(--text-mid);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: 1px solid var(--border-md);
  transition: border-color .2s var(--ease), color .2s, transform .15s;
  display: inline-block;
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost-dark:hover {
    border-color: var(--text-mid);
    color: var(--text);
  }
}

.btn-ghost-dark:active {
  transform: scale(.97);
}

/* ── Section base ── */
.section {
  padding: 112px 2rem;
}

.section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.section-alt {
  background: var(--off-white);
}

.section-dark {
  background: var(--brand);
  color: var(--white);
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-dark .section-title {
  color: var(--white);
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Page hero (inner pages — dark band with dot grid) ── */
.page-hero {
  background: var(--brand);
  color: var(--white);
  padding: 80px 2rem 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-tag {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  max-width: 700px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.page-hero-desc {
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  max-width: 560px;
}

/* ── Cards (diensten) ── */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

@media (max-width: 480px) {
  .diensten-grid {
    grid-template-columns: 1fr;
  }
}

.dienst-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem 1.5rem;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .dienst-card:hover {
    border-color: var(--border-md);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px -8px rgba(8, 13, 17, .1);
  }
}

.dienst-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--brand-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background .25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .dienst-card:hover .dienst-icon-wrap {
    background: var(--gold-dim);
  }
}

.dienst-icon-wrap svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .dienst-card:hover .dienst-icon-wrap svg {
    stroke: var(--gold);
  }
}

.dienst-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}

.dienst-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Marquee strip ── */
.marquee-strip {
  background: var(--brand);
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 44s linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation-play-state: paused;
  }
}

.marquee-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .36);
  white-space: nowrap;
  padding: 0 1.75rem;
}

.marquee-dot {
  color: var(--gold);
  opacity: .5;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Word scrub ── */
.word-scrub {
  display: inline;
  transition: opacity .1s;
}

/* ── Footer ── */
footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, .55);
  padding: 4rem 2rem 2.5rem;
}

.footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  line-height: 1.9;
}

@media (hover: hover) and (pointer: fine) {
  .footer-col a:hover {
    color: rgba(255, 255, 255, .9);
  }
}

.footer-bottom {
  max-width: 1040px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .07);
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Form — shared across index.html contact & aanvraag.html ── */
.form-honeypot {
  display: none !important;
}

.form-msg {
  font-size: 13.5px;
  line-height: 1.55;
  border-radius: 4px;
  padding: 11px 15px;
  margin-top: 12px;
  display: none;
}

.form-msg.success {
  display: block;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.form-msg.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 500px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  width: 100%;
  transition: border-color .2s var(--ease), background .2s, box-shadow .2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(8, 13, 17, .06);
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #ef4444;
  background: #fef2f2;
}

.form-group .field-error {
  font-size: 11.5px;
  color: #b91c1c;
  margin-top: 2px;
  display: none;
}

.form-group .field-error.visible {
  display: block;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group input[type="checkbox"] {
  width: auto;
  -webkit-appearance: auto;
  appearance: auto;
  accent-color: var(--gold);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}

.form-check input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.form-check label {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  cursor: pointer;
}

.form-check label a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-hint {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: .75rem;
}

.form-hint a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  background: var(--gold);
  color: var(--white);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 32px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  transition: background .2s var(--ease), transform .15s var(--ease);
  margin-top: 8px;
}

@media (hover: hover) and (pointer: fine) {
  .form-submit:hover {
    background: #c04601;
  }
}

.form-submit:active {
  transform: scale(.98);
}

.form-submit[aria-busy="true"] {
  opacity: .65;
  pointer-events: none;
}

.form-privacy {
  font-size: 11.5px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: flex-start;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}

.radio-option:has(input:checked) {
  border-color: var(--brand);
  background: var(--off-white);
}

.radio-option:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Native input hidden — custom indicator via ::before on inner span */
.radio-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.radio-option > span {
  position: relative;
  padding-left: 1.625rem;
}

.radio-option > span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  box-sizing: border-box;
  transition: border-color .15s ease, border-width .15s ease;
}

.radio-option:has(input:checked) > span::before {
  border-color: var(--gold);
  border-width: 5px;
}

.radio-option .radio-label {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
}

.radio-option .radio-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ── Utilities ── */
.mb-0  { margin-bottom: 0 !important; }
.mt-lg { margin-top: 1.75rem; }

/* Fieldset reset for visual grouping without browser chrome */
fieldset.fieldset-plain {
  border: none;
  padding: 0;
  margin: 0;
}

fieldset.fieldset-plain > legend {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mid);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0;
  margin-bottom: .5rem;
  width: 100%;
  float: left; /* prevents legend from sitting outside flow in some browsers */
}

fieldset.fieldset-plain > legend + * {
  clear: both;
}

/* ── Twee-diensten (homepage service overview) ── */
.tweeluik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.tweeluik-item {
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.tweeluik-item--alt {
  background: var(--off-white);
  border-left: 1px solid var(--border);
}

.tweeluik-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1rem;
}

.tweeluik-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 .75rem;
}

.tweeluik-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0 0 auto;
  padding-bottom: 1.5rem;
  flex: 1;
}

.tweeluik-badge {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

@media (max-width: 640px) {
  .tweeluik-grid {
    grid-template-columns: 1fr;
  }

  .tweeluik-item--alt {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .tweeluik-item {
    padding: 1.75rem;
  }
}

/* ── Onderhoud bridge (onderhoud-vastgoed.html — VeriCheck teaser) ── */
.onderhoud-bridge {
  background: var(--brand);
  padding: .875rem 2rem;
}

.onderhoud-bridge-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.onderhoud-bridge p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.onderhoud-bridge-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .onderhoud-bridge-link:hover {
    opacity: .75;
  }
}

/* ── Stappenstrip (homepage — VeriCheck process overview) ── */
.stappen-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.stappen-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.stappen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.stappen-pre {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin: 0;
}

.stap-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  letter-spacing: .01em;
  border-bottom: 1px solid var(--border-md);
  padding-bottom: 1px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .stap-cta:hover {
    color: var(--gold);
    border-color: var(--gold);
  }
}

.stappen-lijst {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0;
}

.stap-item {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  padding-right: 2rem;
}

.stap-item:first-child {
  border-top-color: var(--gold);
}

.stap-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--gold);
  margin-bottom: .75rem;
}

.stap-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .25rem;
}

.stap-sub {
  display: block;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stappen-lijst {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .stap-item {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .stappen-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: 1.75rem;
  }

  .stappen-lijst {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stap-num {
    font-size: 40px;
  }
}

/* ── Tijdlijn (hoe-werkt-vericare.html) ── */
.tijdlijn {
  position: relative;
  padding-left: 2rem;
}

.tijdlijn::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: var(--border);
}

.tijdlijn-stap {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 2rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.tijdlijn-stap:last-child {
  margin-bottom: 0;
}

.tijdlijn-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: .25rem;
  position: relative;
  z-index: 1;
}

.tijdlijn-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tijdlijn-stap.highlight .tijdlijn-num {
  background: var(--gold);
}

.tijdlijn-body {
  padding-bottom: .5rem;
}

.tijdlijn-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .5rem;
  line-height: 1.1;
}

.tijdlijn-body p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 580px;
}

.tijdlijn-body p + p {
  margin-top: .625rem;
}

.tijdlijn-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-dim);
  border: 1px solid rgba(226, 83, 2, .18);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: .875rem;
}

.tijdlijn-lijst {
  margin-top: .875rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.tijdlijn-lijst li {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}

.tijdlijn-lijst li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.tijdlijn-body ul + p {
  margin-top: .875rem;
}

.tijdlijn-body .btn-ghost-dark {
  margin-top: 1.25rem;
  display: inline-block;
}

@media (max-width: 640px) {
  .tijdlijn {
    padding-left: 0;
  }

  .tijdlijn::before {
    display: none;
  }

  .tijdlijn-stap {
    grid-template-columns: 2.25rem 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

/* ── Voordelen layout (index.html + reusable) ── */
.voordelen-layout {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 768px) {
  .voordelen-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.voordelen-intro-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
  margin-top: 1.25rem;
  max-width: 480px;
}

.voordelen-list {
  padding-top: .25rem;
}

.voordeel-item {
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1.25rem;
  align-items: start;
}

.voordeel-item:first-child {
  border-top: 1px solid var(--border);
}

.voordeel-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  padding-top: 3px;
}

.voordeel-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 3px;
}

.voordeel-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Prijs band (dark CTA strip) ── */
.prijs-section {
  background: var(--brand);
}

.prijs-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 640px) {
  .prijs-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.prijs-tekst h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.05;
}

.prijs-tekst p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

.prijs-cta {
  display: inline-block;
  margin-top: 1.75rem;
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  transition: background .2s var(--ease), transform .15s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .prijs-cta:hover {
    background: #c04601;
  }
}

.prijs-cta:active {
  transform: scale(.97);
}

.prijs-bedrag {
  text-align: right;
}

@media (max-width: 640px) {
  .prijs-bedrag {
    text-align: left;
  }
}

.prijs-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 9vw, 80px);
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--gold);
  line-height: 1;
}

.prijs-per {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-top: 6px;
}

/* ── Hero (index.html split hero) ── */
.hero {
  background: var(--brand);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(620px, 85dvh);
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 88px 3.5rem 88px 2rem;
  position: relative;
  z-index: 1;
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-inner {
  max-width: 460px;
  width: 100%;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tag {
  animation: fadeUp .65s var(--ease) .15s both;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .78);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  animation: fadeUp .75s var(--ease) .28s both;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(40px, 6.5vw, 68px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-desc {
  animation: fadeUp .75s var(--ease) .42s both;
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, .8);
  max-width: 400px;
  margin-bottom: 2rem;
}

.hero-actions {
  animation: fadeUp .7s var(--ease) .56s both;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-parent {
  animation: fadeUp .65s var(--ease) .7s both;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2.25rem;
}

.hero-parent-label {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  white-space: nowrap;
}

.hero-parent-logo {
  display: flex;
  align-items: center;
  opacity: .55;
  transition: opacity .2s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .hero-parent-logo:hover {
    opacity: .9;
  }
}

.hero-parent-logo img {
  height: 18px;
  width: auto;
  display: block;
}

.hero-image {
  background: url('../../hero.jpg') center top / cover no-repeat;
  position: relative;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--brand) 0%, rgba(8, 13, 17, .12) 58%);
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-content {
    justify-content: flex-start;
    padding: 64px 1.5rem;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-image {
    display: none;
  }
}

/* ── Contact layout (index.html) ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.contact-info {
  padding-top: .25rem;
}

/* ── Adres entry (index.html multi-adres form) ── */
#adres-row {
  display: none;
}

#adres-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.adres-entry {
  display: flex;
  gap: 8px;
  align-items: center;
}

.adres-entry input {
  flex: 1;
}

.btn-adres-remove {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s var(--ease), color .2s;
}

@media (hover: hover) and (pointer: fine) {
  .btn-adres-remove:hover {
    border-color: #c0392b;
    color: #c0392b;
  }
}

.btn-adres-add {
  display: none;
  margin-top: 8px;
  width: 100%;
  background: none;
  border: 1px dashed var(--border-md);
  border-radius: 4px;
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s var(--ease), color .2s;
}

@media (hover: hover) and (pointer: fine) {
  .btn-adres-add:hover {
    border-color: var(--gold);
    color: var(--gold);
  }
}

/* ── VeriKoopCheck section ── */
.verikoopcheck {
  background: var(--brand-mid);
  color: var(--white);
  padding: 72px 2rem;
}

.verikoopcheck-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .verikoopcheck-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.verikoopcheck .section-label {
  color: rgba(226, 83, 2, .9);
}

.verikoopcheck .section-title {
  color: var(--white);
}

.verikoopcheck p {
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
  margin-top: 1rem;
}

.verikoopcheck-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

.verikoopcheck-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, .78);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.verikoopcheck-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--gold);
}

/* ── CTA block (large closing call-to-action) ── */
.cta-block {
  background: var(--brand);
  padding: 80px 2rem;
  text-align: center;
}

.cta-block-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-block h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.05;
}

.cta-block h2 em {
  font-style: normal;
  color: var(--gold);
}

.cta-block p {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.cta-block-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Aanvraag page ── */
.aanvraag-intro {
  background: var(--brand);
  padding: 3rem 2rem 2.5rem;
  text-align: center;
}

.aanvraag-intro-inner {
  max-width: 640px;
  margin: 0 auto;
}

.aanvraag-intro h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}

.aanvraag-intro p {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
}

.aanvraag-prijs-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(226, 83, 2, .15);
  border: 1px solid rgba(226, 83, 2, .3);
  border-radius: 4px;
  padding: 6px 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.aanvraag-section {
  background: var(--off-white);
  min-height: 60vh;
  padding: 3rem 2rem 5rem;
}

.aanvraag-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

/* Multi-step progress */
.form-progress {
  display: flex;
  align-items: flex-start;
  padding: 1.75rem 2rem 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  flex-shrink: 0;
}

.progress-step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 2px solid var(--border);
  color: var(--text-muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
}

.progress-step.active .progress-step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.progress-step.done .progress-step-circle {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.progress-step.done {
  cursor: pointer;
}

.progress-step.done:hover .progress-step-circle {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
}

.progress-step.done:hover .progress-step-label {
  color: var(--text);
}

.progress-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.progress-step.active .progress-step-label {
  color: var(--text);
}

.progress-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 .5rem;
  margin-top: 15px;
  transition: background .25s;
}

.progress-line.done {
  background: var(--brand);
}

/* Step body */
.form-body {
  padding: 1.75rem 2rem 0;
}

.form-step-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.form-step-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .2rem;
}

.form-step-count {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-step { display: block; }
.form-step.hidden { display: none; }
.form-body.hidden { display: none; }
.form-nav.hidden  { display: none; }
.form-progress.hidden { display: none; }

/* Summary (step 3) */
.form-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}

.form-summary h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
}

.form-summary dl {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: .25rem .75rem;
}

.form-summary dt {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  align-self: start;
}

.form-summary dd {
  font-size: 13.5px;
  color: var(--text);
  margin: 0;
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.form-summary dt:last-of-type,
.form-summary dd:last-of-type {
  border-bottom: none;
}

/* Price notice (step 3) */
.form-prijs-notice {
  background: var(--gold-dim);
  border: 1px solid rgba(226, 83, 2, .2);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.form-prijs-notice strong {
  color: var(--gold);
  font-weight: 600;
}

/* Field hint */
.field-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1.4;
}

/* Conditional adres block */
.aanvrager-adres { display: none; }
.aanvrager-adres.visible { display: block; }

.huurder-blok { display: none; }
.huurder-blok.visible { display: block; }

.huurder-blok-intro {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
  padding-top: .25rem;
}

.field-optional {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
}

/* Form nav (prev/next) */
.form-nav {
  display: flex;
  gap: 12px;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}

.form-nav .btn-ghost-dark {
  flex-shrink: 0;
}

.form-nav .btn-primary {
  flex: 1;
  text-align: center;
  border: none;
  font-size: 14px;
}

/* Success screen */
.form-success {
  padding: 3rem 2rem;
  text-align: center;
}

.form-success.hidden {
  display: none;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.form-success-icon svg {
  width: 24px;
  height: 24px;
  stroke: #166534;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .625rem;
}

.form-success p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto .5rem;
}

.form-success .fallback {
  margin-top: 1.5rem;
  font-size: 13px;
  color: var(--text-muted);
}

.form-success .fallback a {
  color: var(--text);
  font-weight: 500;
}

/* Error inline (replaces full card) */
.form-error-screen {
  padding: 2.5rem 2rem;
  text-align: center;
}

.form-error-screen.hidden {
  display: none;
}

.form-error-screen h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #991b1b;
  margin-bottom: .5rem;
}

.form-error-screen p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── Contact detail (reusable) ── */
.contact-details {
  margin-top: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:first-child {
  border-top: 1px solid var(--border);
}

.contact-detail-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--brand-light);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--brand);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-detail-body .lbl {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-body a,
.contact-detail-body span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}

@media (hover: hover) and (pointer: fine) {
  .contact-detail-body a:hover {
    color: var(--gold);
  }
}
