/* ==========================================================================
   Autorijschool Folkerts
   Palette taken from the school's own material: the black roof sign, the blue
   L-plate, the grey Renault Clio, the yellow NL plate and the sandy forest
   track the photos were shot on.
   ========================================================================== */

/* --- fonts ---------------------------------------------------------------- */
@font-face {
  font-family: 'Archivo';
  src: url('/assets/fonts/archivo-var.woff2') format('woff2');
  font-weight: 400 900;   /* variabele font, gewicht via de wght-as */
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Barlow';
  src: url('/assets/fonts/barlow-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* --- tokens -------------------------------------------------------------- */
:root {
  --ink:        #0c1116;
  --ink-2:      #151d25;
  --ink-3:      #1f2a33;
  --brand:      #0177a9;
  --brand-deep: #015b81;
  --brand-lift: #14a0da;
  --lplate:     #308be4;
  --plate:      #f4c020;
  --paper:      #f6f4f1;
  --paper-2:    #efece7;
  --card:       #ffffff;
  --line:       #ddd8d1;
  --line-soft:  #e9e5e0;
  --body:       #2b3238;
  --muted:      #5d666e;
  --muted-dark: #9fb0bd;

  --display: 'Archivo', 'Arial Narrow', Arial, sans-serif;
  --text: 'Barlow', system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;

  --r-sm: 6px;
  --r: 12px;
  --r-lg: 20px;

  --shadow-sm: 0 1px 2px rgba(12, 17, 22, .06), 0 2px 8px rgba(12, 17, 22, .05);
  --shadow: 0 2px 6px rgba(12, 17, 22, .07), 0 14px 34px rgba(12, 17, 22, .09);

  --wrap: 1140px;
  --gut: clamp(1.15rem, 4vw, 2.5rem);
}

/* --- reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--body);
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; display: block; }
/* Inline pictogrammen hebben geen width/height in de SVG zelf; zonder deze
   regel duwt de flex-layout ze tot nul breed. */
.ic { width: 1em; height: 1em; flex: 0 0 auto; }
a { color: var(--brand-deep); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--brand); }
:focus-visible {
  outline: 3px solid var(--lplate);
  outline-offset: 2px;
  border-radius: 3px;
}
::selection { background: var(--lplate); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0 0 .55em;
  font-weight: 700;
  text-wrap: balance;
}
h1 { font-size: clamp(2.1rem, 5.6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); }
h3 { font-size: clamp(1.16rem, 2vw, 1.34rem); letter-spacing: -.01em; }
h4 { font-size: 1.03rem; letter-spacing: 0; }
p { margin: 0 0 1.1em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

/* --- layout -------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.wrap-narrow { max-width: 780px; }
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-tight { padding-block: clamp(2.25rem, 5vw, 3.5rem); }
.section-alt { background: var(--paper-2); }
.section-dark { background: var(--ink); color: #dfe7ed; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: #9dd8f2; }
.section-dark a:hover { color: #fff; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--lplate); color: #fff; padding: .7rem 1.1rem;
  font-weight: 600; z-index: 100; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* --- the signature element: the L-plate badge ---------------------------- */
.lbadge {
  display: inline-grid; place-items: center;
  width: 1.5em; height: 1.5em;
  background: var(--lplate);
  border-radius: .22em;
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: .82em;
  line-height: 1;
  letter-spacing: 0;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .25);
}

.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0 0 .9rem;
}
.section-dark .eyebrow { color: #7ec9ec; }
.eyebrow::before {
  content: "";
  width: 1.05rem; height: 1.05rem;
  background: var(--lplate);
  border-radius: .2rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3);
  flex: 0 0 auto;
}

/* road centre line, used once as a divider */
.roadline {
  height: 6px;
  background: repeating-linear-gradient(90deg,
    var(--ink) 0 34px, transparent 34px 68px);
  opacity: .22;
}

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .005em;
  padding: .85rem 1.4rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-primary:hover { background: var(--brand-deep); border-color: var(--brand-deep); color: #fff; }
.btn-dark { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-dark:hover { background: var(--ink-3); border-color: var(--ink-3); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-on-dark { background: #fff; color: var(--ink); border-color: #fff; }
.btn-on-dark:hover { background: var(--plate); border-color: var(--plate); color: var(--ink); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }
.btn-lg { font-size: 1.075rem; padding: 1rem 1.7rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --- header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.header-in {
  display: flex; align-items: center; gap: 1rem;
  min-height: 66px;
}
.brand { display: flex; align-items: center; margin-right: auto; padding: .45rem 0; flex: 0 0 auto; }
.brand img { width: 178px; height: 55px; flex: 0 0 auto; max-width: none; }
@media (max-width: 380px) { .brand img { width: 148px; height: 46px; } }

.nav { display: flex; align-items: center; gap: .15rem; }
.nav > a {
  font-family: var(--display);
  font-weight: 600;
  font-size: .945rem;
  color: #cfdae3;
  text-decoration: none;
  padding: .55rem .68rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav > a:hover { color: #fff; background: rgba(255, 255, 255, .08); }
.nav > a[aria-current="page"] {
  color: #fff;
  box-shadow: inset 0 -3px 0 var(--lplate);
}
.header-cta { display: flex; align-items: center; gap: .5rem; margin-left: .6rem; }
.header-cta .btn { padding: .62rem 1rem; font-size: .93rem; }
.header-cta .phone-full, .header-cta .phone-short { display: inline-flex; align-items: center; gap: .45rem; }
.header-cta .phone-full { display: none; }
@media (min-width: 1260px) {
  .header-cta .phone-full { display: inline-flex; }
  .header-cta .phone-short { display: none; }
}

.nav-toggle {
  display: none;
  align-items: center; gap: .5rem;
  background: transparent; border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff; border-radius: var(--r-sm);
  font-family: var(--display); font-weight: 700; font-size: .85rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .6rem .8rem; cursor: pointer;
}
.nav-toggle svg { width: 17px; height: 17px; }

@media (max-width: 1100px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink-2);
    border-bottom: 3px solid var(--lplate);
    padding: .5rem var(--gut) 1.1rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, .3);
  }
  .nav[hidden] { display: none; }
  .nav > a { padding: .82rem .2rem; font-size: 1.05rem; border-bottom: 1px solid rgba(255, 255, 255, .08); border-radius: 0; }
  .nav > a[aria-current="page"] { box-shadow: inset 3px 0 0 var(--lplate); padding-left: .8rem; }
  .nav .nav-mobile-cta { display: flex; gap: .6rem; margin-top: .9rem; }
  .nav .nav-mobile-cta .btn { flex: 1; }
}
@media (min-width: 1101px) {
  .nav .nav-mobile-cta { display: none; }
}

/* --- hero ---------------------------------------------------------------- */
.hero { position: relative; background: var(--ink); color: #e7eef4; overflow: hidden; }
.hero-photo { position: absolute; inset: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 45%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(103deg, rgba(12, 17, 22, .96) 0%, rgba(12, 17, 22, .9) 38%, rgba(12, 17, 22, .42) 66%, rgba(12, 17, 22, .3) 100%),
    linear-gradient(180deg, rgba(12, 17, 22, .55) 0%, transparent 32%);
}
.hero-in { position: relative; padding-block: clamp(2.75rem, 7.5vw, 5.5rem); }
.hero-copy { max-width: 40rem; }
.hero h1 { color: #fff; letter-spacing: -.026em; }
.hero h1 .accent { color: var(--brand-lift); }
.hero-lead {
  font-size: clamp(1.075rem, 2.1vw, 1.28rem);
  color: #c7d5e0;
  max-width: 34rem;
  margin-bottom: 1.6rem;
}
.hero .btn-row { margin-bottom: 1.4rem; }
.hero-note {
  display: flex; flex-wrap: wrap; gap: .4rem 1.15rem;
  font-size: .95rem; color: #a9bcc9; margin: 0;
}
.hero-note span { display: flex; align-items: center; gap: .42rem; }
.hero-note svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--brand-lift); }
@media (max-width: 720px) {
  .hero-photo img { object-position: 68% 42%; }
  .hero-photo::after {
    background:
      linear-gradient(180deg, rgba(12, 17, 22, .82) 0%, rgba(12, 17, 22, .88) 45%, rgba(12, 17, 22, .95) 100%);
  }
}

/* --- facts strip: the four things a visitor came for --------------------- */
.facts { background: var(--ink-2); border-top: 1px solid rgba(255, 255, 255, .08); }
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: rgba(255, 255, 255, .1);
}
.fact { background: var(--ink-2); padding: 1.15rem 1.15rem 1.2rem; }
.fact dt {
  font-family: var(--display); font-weight: 700; font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: #7f98a8;
  margin-bottom: .28rem;
}
.fact dd {
  margin: 0; font-family: var(--display); font-weight: 700;
  font-size: clamp(1.15rem, 2.1vw, 1.42rem); color: #fff; line-height: 1.15;
  letter-spacing: -.015em;
}
.fact dd small { display: block; font-family: var(--text); font-weight: 400; font-size: .84rem; color: #9fb2c0; letter-spacing: 0; margin-top: .2rem; }
.fact dd .cash { color: var(--plate); }
@media (max-width: 860px) { .facts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .facts-grid { grid-template-columns: 1fr; } }

/* --- generic grid + cards ----------------------------------------------- */
.grid { display: grid; gap: clamp(1rem, 2.4vw, 1.6rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 1.4rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45rem; }
.card p { font-size: 1rem; }
.card-link { display: block; text-decoration: none; color: inherit; transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease; }
.card-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--brand); color: inherit; }
.card-more {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--display); font-weight: 700; font-size: .93rem;
  color: var(--brand-deep); margin-top: .85rem;
}
.card-more svg { width: 14px; height: 14px; transition: transform .14s ease; }
.card-link:hover .card-more svg { transform: translateX(3px); }

.card-icon {
  width: 2.6rem; height: 2.6rem; border-radius: var(--r-sm);
  background: rgba(1, 119, 169, .1);
  color: var(--brand-deep);
  display: grid; place-items: center;
  margin-bottom: .95rem;
}
.card-icon svg { width: 1.4rem; height: 1.4rem; }

/* --- media block (photo + copy) ----------------------------------------- */
.media {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.25rem); align-items: center;
}
.media-narrow { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); }
.media-fig { margin: 0; position: relative; }
.media-fig img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; }
.media-fig figcaption {
  font-size: .9rem; color: var(--muted); margin-top: .7rem;
}
.media-flip .media-fig { order: 2; }
@media (max-width: 800px) {
  .media, .media-narrow { grid-template-columns: 1fr; }
  .media-flip .media-fig { order: 0; }
}

/* photo stamp: reads like the sticker on the roof sign */
.stamp {
  position: absolute; bottom: -14px; left: -12px;
  background: var(--ink); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: .82rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .55rem .85rem; border-radius: var(--r-sm);
  display: flex; align-items: center; gap: .5rem;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.stamp svg { width: 15px; height: 15px; flex: 0 0 auto; }
@media (max-width: 800px) { .stamp { left: 10px; } }

/* --- steps: numbered L-plates ------------------------------------------- */
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 1rem; }
.steps > li {
  counter-increment: step;
  display: grid; grid-template-columns: auto 1fr; gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--lplate);
  border-radius: var(--r-sm);
  padding: 1.05rem 1.25rem 1.15rem;
  box-shadow: var(--shadow-sm);
}
.steps > li::before {
  content: counter(step);
  width: 2.35rem; height: 2.35rem;
  background: var(--lplate); color: #fff;
  border-radius: .35rem;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .3);
}
.steps h3 { margin: .15rem 0 .3rem; font-size: 1.1rem; }
.steps p { font-size: 1rem; margin: 0; }
.section-dark .steps > li { background: var(--ink-2); border-color: rgba(255, 255, 255, .1); color: #cfdbe4; }

/* --- ticks --------------------------------------------------------------- */
.ticks { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: .55rem; }
.ticks li { display: grid; grid-template-columns: auto 1fr; gap: .6rem; align-items: start; }
.ticks li::before {
  content: "";
  width: 1.15rem; height: 1.15rem; margin-top: .28rem;
  border-radius: .22rem;
  background: var(--lplate);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 96% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 96% no-repeat;
}
.section-dark .ticks li::before { background: var(--brand-lift); }

/* --- price cards -------------------------------------------------------- */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.4rem); align-items: start; }
@media (max-width: 900px) { .prices { grid-template-columns: 1fr; } }
.price {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow);
  position: relative;
}
.price-flag {
  position: absolute; top: -.85rem; left: 1.3rem;
  background: var(--brand); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .7rem; border-radius: 4px;
}
.price h3 { font-size: 1.3rem; margin-bottom: .1rem; }
.price-hours { font-size: .95rem; color: var(--muted); margin-bottom: .9rem; }
.price-amount {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 4.4vw, 2.6rem);
  color: var(--ink); letter-spacing: -.03em; line-height: 1;
  margin-bottom: 1.1rem;
}
.price-amount .cur { font-size: .5em; vertical-align: .42em; margin-right: .12em; color: var(--muted); }
.price .ticks { margin-bottom: 1.3rem; font-size: 1rem; }
.price .btn { margin-top: auto; width: 100%; }

/* --- table -------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); }
table { width: 100%; border-collapse: collapse; font-size: 1rem; }
caption { text-align: left; font-size: .93rem; color: var(--muted); padding: .8rem 1.1rem; border-bottom: 1px solid var(--line-soft); }
th, td { text-align: left; padding: .82rem 1.1rem; border-bottom: 1px solid var(--line-soft); }
thead th {
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  background: var(--paper-2);
}
tbody tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
td.num { font-family: var(--display); font-weight: 700; color: var(--ink); }

/* --- FAQ ---------------------------------------------------------------- */
.faq { display: grid; gap: .7rem; }
.faq details {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; gap: .8rem;
  padding: 1rem 1.2rem;
  font-family: var(--display); font-weight: 700; font-size: 1.055rem;
  color: var(--ink); letter-spacing: -.008em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; margin-left: auto; flex: 0 0 auto;
  width: 1.1rem; height: 1.1rem; margin-top: .28rem;
  background: var(--brand-deep);
  transition: transform .18s ease;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%23000' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq .faq-body { padding: 0 1.2rem 1.2rem; }
.faq .faq-body p { font-size: 1rem; }

/* --- CTA band ----------------------------------------------------------- */
.cta {
  background: var(--ink);
  color: #dfe8ee;
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 4vw, 2.9rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.6rem; align-items: center;
}
.cta h2 { color: #fff; margin-bottom: .4rem; }
.cta p { margin: 0; color: #b8c8d4; }
.cta .btn-row { justify-content: flex-end; }
@media (max-width: 820px) {
  .cta { grid-template-columns: 1fr; }
  .cta .btn-row { justify-content: flex-start; }
}

/* --- donker paneel (zelfde kleur als de CTA, maar gestapeld) ------------- */
.panel {
  background: var(--ink);
  color: #cfdbe4;
  border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
}
.panel h2 { color: #fff; font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
.panel .ticks li::before { background: var(--brand-lift); }
.panel .small { color: var(--muted-dark); }

/* --- videokaart: eigen thumbnail, opent op YouTube ---------------------- */
.video-link {
  position: relative; display: block;
  border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow);
}
.video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-play::before {
  content: ""; width: 4.4rem; height: 3.1rem;
  background: rgba(12, 17, 22, .82);
  border-radius: .55rem;
  transition: background-color .15s ease;
}
.video-play::after {
  content: ""; position: absolute;
  width: 0; height: 0; margin-left: .3rem;
  border-left: 1.05rem solid #fff;
  border-top: .66rem solid transparent;
  border-bottom: .66rem solid transparent;
}
.video-link:hover .video-play::before { background: var(--brand); }

/* --- contact / NAP ------------------------------------------------------ */
.nap { font-style: normal; }
.nap-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .95rem; }
.nap-list li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; }
.nap-ico {
  width: 2.15rem; height: 2.15rem; border-radius: var(--r-sm);
  background: rgba(1, 119, 169, .1); color: var(--brand-deep);
  display: grid; place-items: center; flex: 0 0 auto;
}
.nap-ico svg { width: 1.15rem; height: 1.15rem; }
.nap-label {
  font-family: var(--display); font-weight: 700; font-size: .72rem;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted);
  display: block;
}
.nap-value { font-size: 1.09rem; font-weight: 600; color: var(--ink); }
.nap-value a { color: var(--ink); text-decoration: none; }
.nap-value a:hover { color: var(--brand); text-decoration: underline; }

.map-link {
  display: block; text-decoration: none; color: var(--brand-deep);
  border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  background: var(--card); box-shadow: var(--shadow-sm);
}
.map-link img { width: 100%; height: auto; }
.map-link span {
  display: flex; align-items: center; gap: .45rem;
  padding: .8rem 1.05rem;
  font-family: var(--display); font-weight: 700; font-size: .96rem;
}
.map-link span svg { width: 15px; height: 15px; }
.map-link:hover { border-color: var(--brand); }
.map-link:hover span { background: var(--brand); color: #fff; }
.map-fallback {
  aspect-ratio: 16 / 9; display: grid; place-items: center;
  background: var(--paper-2); color: var(--muted); font-size: .95rem;
}

/* --- misc --------------------------------------------------------------- */
.lead { font-size: clamp(1.09rem, 2vw, 1.24rem); color: #3c454c; max-width: 62ch; }
.section-dark .lead { color: #c1d0dc; }
.small { font-size: .93rem; color: var(--muted); }
.section-dark .small { color: var(--muted-dark); }
.center { text-align: center; }
.btn-row-center { justify-content: center; }
.text-left { text-align: left; }
.center p, .center .lead { margin-inline: auto; }
.center .eyebrow { justify-content: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 1.75rem; } .mt-3 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: 1.75rem; }
.section-head { max-width: 60ch; margin-bottom: clamp(1.6rem, 3.5vw, 2.4rem); }
.center .section-head { margin-inline: auto; }

.breadcrumb { font-size: .9rem; color: var(--muted); padding-top: 1.35rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: .4rem; color: var(--line); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand); text-decoration: underline; }

.page-head { background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-head .inner { padding-block: clamp(1.4rem, 3.5vw, 2.4rem) clamp(2rem, 4.5vw, 3rem); }
.page-head h1 { margin-bottom: .6rem; }

.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(1, 119, 169, .1); color: var(--brand-deep);
  font-family: var(--display); font-weight: 700; font-size: .8rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .34rem .7rem; border-radius: 999px;
}

.note {
  border-left: 4px solid var(--plate);
  background: #fdf7e6;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1rem 1.2rem;
  font-size: 1rem;
}
.note strong { display: block; margin-bottom: .2rem; }

.linklist { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.linklist a { font-weight: 600; }

/* --- footer ------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #a8bac7; padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.5rem; font-size: 1rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h2 {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: #7d94a4; margin-bottom: .9rem;
}
.site-footer img.footer-logo { width: 190px; height: 58px; margin-bottom: 1rem; }
.site-footer a { color: #cfdae3; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-nap { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.footer-meta {
  margin-top: 2.25rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .88rem; color: #7d94a4;
}
.footer-meta p { margin: 0; }

/* --- mobile action bar -------------------------------------------------- */
.mobile-bar { display: none; }
@media (max-width: 760px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: var(--ink);
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding: .5rem .55rem calc(.5rem + env(safe-area-inset-bottom));
    gap: .5rem;
    box-shadow: 0 -6px 20px rgba(12, 17, 22, .25);
  }
  .mobile-bar .btn { padding: .8rem .6rem; font-size: .98rem; }
  body { padding-bottom: 4.6rem; }
}

/* --- print -------------------------------------------------------------- */
@media print {
  .site-header, .mobile-bar, .cta, .hero-photo { display: none !important; }
  body { background: #fff; padding-bottom: 0; }
}
