/* ==========================================================================
   Katrien Madder · Paardendierenarts
   Stylesheet volgens Brandbook Editie 01 (2026)
   --------------------------------------------------------------------------
   Je hoeft hier normaal niets in te wijzigen.
   Foto's toevoegen doe je in de HTML. Zie FOTOS-TOEVOEGEN.txt
   ========================================================================== */

/* --- 1. Fonts ------------------------------------------------------------ */
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/Fraunces.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-display: swap;
}

/* --- 2. Design tokens ---------------------------------------------------- */
:root {
  /* kleur */
  --c-pine: #16302A;
  --c-pine-dark: #0E211C;
  --c-pine-light: #2C4F44;
  --c-bone: #F2EDE4;
  --c-bone-dark: #E4DCCC;
  --c-brass: #B08A4F;
  --c-brass-light: #C9A874;
  --c-saddle: #8A5E3C;
  --c-ink: #14161A;
  --c-mist: #6B7A72;
  --c-line: rgba(22, 48, 42, .14);
  --c-line-light: rgba(242, 237, 228, .16);

  /* typografie */
  --f-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --f-text: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --t-display: clamp(40px, 7vw, 64px);
  --t-h1: clamp(32px, 5.4vw, 44px);
  --t-h2: clamp(26px, 4vw, 32px);
  --t-h3: clamp(19px, 2.4vw, 21px);
  --t-lead: clamp(16px, 2vw, 18px);
  --t-body: 16px;
  --t-small: 13px;
  --t-label: 11px;

  /* ruimte */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px;  --s-4: 24px;
  --s-5: 48px; --s-6: 96px; --s-7: 144px;

  /* overig */
  --radius: 2px;
  --maxw: 1280px;
  --gutter: 64px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: 520ms;
}

@media (max-width: 860px) {
  :root { --gutter: 24px; --s-6: 64px; --s-7: 80px; }
}

/* --- 3. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-text);
  font-size: var(--t-body);
  line-height: 1.8;
  color: var(--c-ink);
  background: var(--c-bone);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- 4. Typografie ------------------------------------------------------- */
.display, h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-variation-settings: 'opsz' 72, 'wght' 500, 'SOFT' 20, 'WONK' 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--c-pine);
}
.display { font-size: var(--t-display); font-variation-settings: 'opsz' 96, 'wght' 300, 'SOFT' 20; letter-spacing: -0.03em; }
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.2; }
h4 { font-size: 17px; line-height: 1.3; }
em, .italic {
  font-style: italic;
  font-variation-settings: 'opsz' 48, 'wght' 400, 'SOFT' 40, 'WONK' 1;
  color: var(--c-brass);
}
p { max-width: 68ch; }
.lead { font-size: var(--t-lead); line-height: 1.7; font-weight: 300; color: var(--c-mist); }
.small { font-size: var(--t-small); line-height: 1.7; color: var(--c-mist); }

.label {
  font-size: var(--t-label);
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--c-brass);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  width: 22px; height: 1px;
  background: var(--c-brass);
  flex-shrink: 0;
}
.label.no-rule::before { display: none; }

/* --- 5. Layout ----------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--s-6) 0; }
.section-lg { padding: var(--s-7) 0; }
.section-head { margin-bottom: var(--s-5); max-width: 640px; }
.section-head .label { margin-bottom: var(--s-3); }
.section-head p { margin-top: var(--s-3); }

.bg-pine { background: var(--c-pine); }
.bg-bone { background: var(--c-bone); }
.bg-white { background: #fff; }
.bg-bone-d { background: var(--c-bone-dark); }

.bg-pine h1, .bg-pine h2, .bg-pine h3, .bg-pine h4 { color: var(--c-bone); }
.bg-pine p, .bg-pine .lead { color: rgba(242, 237, 228, .62); }
.bg-pine .small { color: rgba(242, 237, 228, .5); }

.grid { display: grid; gap: var(--s-4); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }

@media (max-width: 900px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: var(--s-5); }
}
@media (max-width: 600px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
}

/* --- 6. Foto's ------------------------------------------------------------
   Elk element met class="photo" toont een foto.
   Zet de foto erin via het style-attribuut in de HTML:
     <div class="photo" style="--img:url('../img/naam.jpg')"></div>

   LET OP: schrijf altijd ../img/ voor de bestandsnaam, niet assets/img/
   Het pad wordt namelijk gelezen vanaf dit stylesheet, niet vanaf de
   HTML-pagina. Ontbreekt de foto? Dan verschijnt automatisch het
   groene merkvlak, zonder foutmelding.
   -------------------------------------------------------------------------- */
.photo {
  background-color: var(--c-pine);
  /* Laag 1 = jouw foto (--img). Ontbreekt die? Dan tonen laag 2 en 3 het merkvlak. */
  background-image:
    var(--img, none),
    radial-gradient(ellipse at 35% 70%, rgba(176,138,79,.22) 0%, transparent 60%),
    linear-gradient(140deg, #1C3A31 0%, #16302A 55%, #22483C 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}
.photo.ratio-43 { aspect-ratio: 4 / 3; }
.photo.ratio-34 { aspect-ratio: 3 / 4; }
.photo.ratio-11 { aspect-ratio: 1 / 1; }
.photo.ratio-169 { aspect-ratio: 16 / 9; }
.photo.tall { aspect-ratio: 3 / 4.2; }
.photo-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: var(--s-4);
  background: linear-gradient(to top, rgba(14,33,28,.86), transparent);
  color: var(--c-bone);
}
.photo-cap .q { font-family: var(--f-display); font-size: 19px; font-style: italic; line-height: 1.45; }
.photo-cap .a { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-brass-light); margin-top: 8px; }

/* --- 7. Knoppen ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  border-radius: var(--radius);
  transition: background 180ms ease-out, color 180ms ease-out, border-color 180ms ease-out;
  white-space: nowrap;
}
.btn-primary { background: var(--c-pine); color: var(--c-bone); }
.btn-primary:hover { background: var(--c-pine-light); }
.btn-brass { background: var(--c-brass); color: #fff; }
.btn-brass:hover { background: var(--c-saddle); }
.btn-outline { border: 1px solid var(--c-pine); color: var(--c-pine); }
.btn-outline:hover { background: var(--c-pine); color: var(--c-bone); }
.btn-light { background: var(--c-bone); color: var(--c-pine); }
.btn-light:hover { background: #fff; }
.btn-ghost-light { border: 1px solid rgba(242,237,228,.4); color: var(--c-bone); }
.btn-ghost-light:hover { background: rgba(242,237,228,.1); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

.link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--c-brass);
  transition: gap 180ms var(--ease);
}
.link:hover { gap: 12px; }
.link-dark { color: var(--c-pine); border-bottom: 1px solid var(--c-brass); padding-bottom: 3px; }

/* --- 8. Header ----------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(242, 237, 228, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-name { display: block; font-family: var(--f-display); font-variation-settings: 'opsz' 48, 'wght' 500, 'SOFT' 20; font-size: 19px; color: var(--c-pine); line-height: 1; letter-spacing: -0.01em; }
.brand-sub { display: block; font-size: 8.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--c-brass); margin-top: 4px; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { font-size: 14px; color: var(--c-mist); transition: color 180ms; }
.nav a:hover, .nav a.active { color: var(--c-pine); font-weight: 600; }
.nav .btn { padding: 11px 22px; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.nav-toggle { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 1.5px; background: var(--c-pine); position: relative; transition: background 200ms; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--c-pine); transition: transform 260ms var(--ease); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--c-bone);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: var(--s-4) var(--gutter) var(--s-5);
    border-bottom: 1px solid var(--c-line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  }
  .nav-open .nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--c-line); }
  .nav .btn { margin-top: var(--s-3); justify-content: center; padding: 15px; font-size: 12px; }
}

/* --- 9. Hero ------------------------------------------------------------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(14,33,28,.93) 0%, rgba(14,33,28,.74) 48%, rgba(14,33,28,.35) 100%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: var(--s-7); padding-bottom: var(--s-5); width: 100%; }
.hero-inner { max-width: 660px; }
.hero .label { color: var(--c-brass-light); margin-bottom: var(--s-4); }
.hero .label::before { background: var(--c-brass-light); }
.hero h1 { color: var(--c-bone); margin-bottom: var(--s-4); }
.hero p { color: rgba(242,237,228,.72); max-width: 500px; margin-bottom: var(--s-5); }
.hero-stats { display: flex; gap: var(--s-5); margin-top: var(--s-6); padding-top: var(--s-4); border-top: 1px solid var(--c-line-light); flex-wrap: wrap; }
.hero-stat .n { font-family: var(--f-display); font-variation-settings: 'opsz' 72, 'wght' 400; font-size: 34px; color: var(--c-bone); line-height: 1; }
.hero-stat .d { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(242,237,228,.5); margin-top: 7px; }

@media (max-width: 600px) {
  .hero { min-height: 82vh; }
  .hero-stats { gap: var(--s-4); }
  .hero-stat .n { font-size: 26px; }
}

/* --- 10. Trust bar ------------------------------------------------------- */
.trustbar { background: var(--c-brass); padding: 16px 0; }
.trustbar .wrap { display: flex; justify-content: center; gap: var(--s-6); flex-wrap: wrap; }
.trustbar-item { display: flex; align-items: center; gap: 10px; color: #fff; font-size: 13.5px; font-weight: 500; }
.trustbar-item .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.6); flex-shrink: 0; }
@media (max-width: 860px) { .trustbar .wrap { gap: var(--s-3); flex-direction: column; align-items: flex-start; } }

/* --- 11. Kaarten --------------------------------------------------------- */
.card {
  background: var(--c-bone);
  border-top: 2px solid var(--c-brass);
  padding: var(--s-4);
  display: flex; flex-direction: column;
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}
.bg-bone .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: 0 10px 34px rgba(22,48,42,.09); }
.card .label { font-size: 9.5px; letter-spacing: .26em; margin-bottom: var(--s-2); }
.card h3 { margin-bottom: var(--s-2); }
.card p { font-size: 14.5px; line-height: 1.75; color: var(--c-mist); flex: 1; }
.card .link { margin-top: var(--s-3); }

/* --- 12. Stappen / werkwijze --------------------------------------------- */
.step { border-top: 1px solid var(--c-line); padding-top: var(--s-3); }
.bg-pine .step { border-top-color: var(--c-line-light); }
.step .n { font-family: var(--f-display); font-variation-settings: 'opsz' 72, 'wght' 300; font-size: 34px; color: var(--c-brass); line-height: 1; margin-bottom: var(--s-2); }
.step h4 { margin-bottom: var(--s-1); }
.step p { font-size: 14px; color: var(--c-mist); }

/* --- 13. Lijst met diensten (detailpagina) ------------------------------- */
.dienst {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  gap: var(--s-5); align-items: start;
  padding: var(--s-5) 0; border-bottom: 1px solid var(--c-line);
}
.dienst:first-of-type { padding-top: 0; }
.dienst .num { font-family: var(--f-display); font-variation-settings: 'opsz' 96, 'wght' 300; font-size: 54px; color: var(--c-bone-dark); line-height: 1; }
.dienst h3 { margin-bottom: var(--s-2); }
.dienst .tag { display: inline-block; font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-brass); border: 1px solid rgba(176,138,79,.45); padding: 4px 12px; margin-bottom: var(--s-3); }
.dienst ul { margin-top: var(--s-3); }
.dienst li { font-size: 14px; color: var(--c-mist); padding: 7px 0; border-bottom: 1px solid var(--c-line); display: flex; gap: 10px; }
.dienst li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--c-brass); margin-top: 11px; flex-shrink: 0; }
@media (max-width: 900px) {
  .dienst { grid-template-columns: 50px 1fr; gap: var(--s-3); }
  .dienst .num { font-size: 34px; }
  .dienst > div:last-child { grid-column: 2; }
}

/* --- 14. Tijdlijn -------------------------------------------------------- */
.tl-item { display: grid; grid-template-columns: 140px 1fr; gap: var(--s-5); padding: var(--s-4) 0; border-bottom: 1px solid var(--c-line); }
.tl-item .yr { font-family: var(--f-display); font-variation-settings: 'opsz' 48, 'wght' 500; font-size: 19px; color: var(--c-brass); }
.tl-item h4 { margin-bottom: var(--s-1); }
.tl-item p { font-size: 14.5px; color: var(--c-mist); }
@media (max-width: 700px) { .tl-item { grid-template-columns: 1fr; gap: var(--s-2); } }

/* --- 15. Spoedband ------------------------------------------------------- */
.urgent { background: var(--c-pine); padding: var(--s-5) 0; }
.urgent .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.urgent h3 { color: var(--c-bone); margin-bottom: 5px; }
.urgent p { color: rgba(242,237,228,.55); font-size: 14px; }
.urgent .btn { font-size: 16px; padding: 16px 32px; }

/* --- 16. Citaten --------------------------------------------------------- */
.quote { border: 1px solid var(--c-line); padding: var(--s-4); background: #fff; }
.bg-white .quote { background: var(--c-bone); }
.quote .stars { color: var(--c-brass); font-size: 13px; letter-spacing: 3px; margin-bottom: var(--s-3); }
.quote p { font-family: var(--f-display); font-variation-settings: 'opsz' 36, 'wght' 400, 'SOFT' 30; font-style: italic; font-size: 16px; line-height: 1.6; color: var(--c-pine); }
.quote .who { font-size: 12px; color: var(--c-mist); margin-top: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--c-line); }

/* --- 17. FAQ ------------------------------------------------------------- */
.faq-item { border-bottom: 1px solid var(--c-line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s-4);
  padding: var(--s-4) 0;
  font-family: var(--f-display); font-variation-settings: 'opsz' 48, 'wght' 500, 'SOFT' 20;
  font-size: 18px; color: var(--c-pine); line-height: 1.3;
}
.faq-icon { width: 14px; height: 14px; position: relative; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--c-brass); transition: transform 260ms var(--ease); }
.faq-icon::before { top: 6.5px; left: 0; width: 14px; height: 1.5px; }
.faq-icon::after { left: 6.5px; top: 0; width: 1.5px; height: 14px; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 340ms var(--ease); }
.faq-a p { font-size: 15px; color: var(--c-mist); padding-bottom: var(--s-4); }

/* --- 18. Formulier ------------------------------------------------------- */
.form-field { margin-bottom: var(--s-3); }
.form-field label { display: block; font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--c-mist); margin-bottom: 7px; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 15px;
  font-family: var(--f-text); font-size: 15px; color: var(--c-ink);
  background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
  transition: border-color 180ms, box-shadow 180ms;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--c-brass); box-shadow: 0 0 0 3px rgba(176,138,79,.16);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-note { font-size: 12px; color: var(--c-mist); margin-top: var(--s-3); }

/* --- 19. Contactgegevens ------------------------------------------------- */
.contact-item { padding: var(--s-4) 0; border-bottom: 1px solid var(--c-line-light); }
.contact-item:last-child { border-bottom: none; }
.contact-item .k { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--c-brass); margin-bottom: 8px; }
.contact-item .v { font-family: var(--f-display); font-variation-settings: 'opsz' 48, 'wght' 500, 'SOFT' 20; font-size: 22px; color: var(--c-bone); line-height: 1.2; }
.contact-item .v a:hover { color: var(--c-brass-light); }
.contact-item .m { font-size: 13px; color: rgba(242,237,228,.45); margin-top: 6px; }

/* --- 20. Pagina-kop (subpagina's) ---------------------------------------- */
.pagehead { background: var(--c-pine); padding: var(--s-6) 0 var(--s-6); position: relative; overflow: hidden; }
.pagehead::after {
  content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 340px; height: 340px; border: 1px solid rgba(176,138,79,.14); border-radius: 50%;
}
.pagehead .wrap { position: relative; z-index: 2; }
.crumb { font-size: 12px; color: rgba(242,237,228,.4); margin-bottom: var(--s-3); }
.crumb a:hover { color: var(--c-brass-light); }
.pagehead h1 { color: var(--c-bone); max-width: 700px; }
.pagehead p { color: rgba(242,237,228,.6); max-width: 560px; margin-top: var(--s-3); }

/* --- 21. Footer ---------------------------------------------------------- */
.site-footer { background: var(--c-pine-dark); padding: var(--s-6) 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: var(--s-5); padding-bottom: var(--s-5); }
.site-footer .brand-name { color: var(--c-bone); font-size: 21px; display: block; }
.site-footer p { font-size: 13.5px; color: rgba(242,237,228,.4); line-height: 1.8; margin-top: var(--s-3); max-width: 280px; }
.footer-col h5 { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--c-brass); margin-bottom: var(--s-3); font-family: var(--f-text); font-weight: 500; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { font-size: 13.5px; color: rgba(242,237,228,.5); transition: color 180ms; }
.footer-col a:hover { color: var(--c-bone); }
.footer-bottom { border-top: 1px solid var(--c-line-light); padding: var(--s-4) 0; display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(242,237,228,.3); margin: 0; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-4); } }

/* --- 22. Mobiele belbalk ------------------------------------------------- */
.callbar { display: none; }
@media (max-width: 860px) {
  .callbar {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: var(--c-pine); border-top: 1px solid rgba(176,138,79,.3);
  }
  .callbar a { flex: 1; padding: 15px; text-align: center; font-size: 13px; font-weight: 600; color: var(--c-bone); letter-spacing: .04em; }
  .callbar a:first-child { border-right: 1px solid rgba(242,237,228,.14); }
  .callbar a.primary { background: var(--c-brass); color: #fff; }
  body { padding-bottom: 54px; }
}

/* --- 23. Animatie -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* --- 24. Hulpklassen ----------------------------------------------------- */
.mt-1 { margin-top: var(--s-1); } .mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); }
.mb-3 { margin-bottom: var(--s-3); } .mb-4 { margin-bottom: var(--s-4); } .mb-5 { margin-bottom: var(--s-5); }
.center { text-align: center; }
.center p { margin-left: auto; margin-right: auto; }
.rule { height: 1px; background: var(--c-line); }
.rule-brass { width: 40px; height: 1px; background: var(--c-brass); }
.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-pine); color: var(--c-bone); padding: 12px 20px; z-index: 200;
}
.skip:focus { left: 0; }
