/* ===========================================================
   PARKMARK — stylesheet 2026
   =========================================================== */

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-variable.woff2") format("woff2-variations"),
       url("../fonts/manrope-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #e36d01;
  --orange-dark: #b85800;
  --orange-light: #ff9838;
  --orange-50: #fdf1e6;
  --ink: #16140f;
  --grey-900: #2a2822;
  --grey-700: #58554c;
  --grey-500: #83807a;
  --grey-300: #d8d5cd;
  --grey-200: #e9e6de;
  --grey-100: #f5f3ee;
  --white: #ffffff;
  --border: #e4e1d8;
  --max-width: 1220px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(22,20,15,.06);
  --shadow-md: 0 12px 32px rgba(22,20,15,.10);
  --shadow-lg: 0 24px 60px rgba(22,20,15,.16);
  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22,.9,.32,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "wght" 450;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--ink);
  font-variation-settings: "wght" 800;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.95rem, 5.2vw, 4.2rem); overflow-wrap: break-word; }
h2.section-title {
  text-transform: uppercase;
  font-size: .92rem;
  letter-spacing: 3px;
  color: var(--orange);
  font-variation-settings: "wght" 700;
  margin-bottom: .25em;
}
h3.section-heading {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  margin-bottom: .5em;
}
p { margin: 0 0 1em; color: var(--grey-700); }
.lead { font-size: 1.2rem; color: var(--grey-700); line-height: 1.7; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .78rem;
  font-variation-settings: "wght" 700;
  color: var(--orange);
  margin-bottom: .8em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 100px;
  font-variation-settings: "wght" 700;
  font-size: .9rem;
  letter-spacing: .3px;
  cursor: pointer;
  border: 2px solid var(--orange);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn::after {
  content: "→";
  transition: transform .25s var(--ease);
}
.btn:hover::after { transform: translateX(3px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(227,109,1,.28);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(227,109,1,.35); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--grey-300);
}
.btn-outline:hover { background: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.06);
}
.btn-ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(228,225,216,.7);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.logo img { height: 17px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--grey-700);
  font-variation-settings: "wght" 600;
  font-size: .9rem;
  padding: 10px 13px;
  border-radius: 100px;
  display: inline-block;
  white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.main-nav a:hover { color: var(--ink); background: var(--grey-100); }
.main-nav a.active { color: var(--ink); background: var(--orange-50); }
.nav-cta { display: none; }

.header-right { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.header-phone {
  font-variation-settings: "wght" 700;
  color: var(--ink);
  font-size: .92rem;
  white-space: nowrap;
}
@media (max-width: 1250px) { .header-phone { display: none; } }
.header-phone a { color: var(--ink); }
.header-right .btn-primary { padding: 12px 24px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}

/* ---------- Hero (photo, homepage-style) ---------- */
.hero-photo {
  position: relative;
  min-height: clamp(560px, 82vh, 800px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-photo .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.hero-photo .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,9,6,.93) 0%, rgba(10,9,6,.62) 45%, rgba(10,9,6,.42) 100%),
    linear-gradient(90deg, rgba(10,9,6,.55) 0%, rgba(10,9,6,.10) 62%, transparent 100%);
}
.hero-photo .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 90px;      /* let op: geen padding-shorthand — anders vervalt
                             de zijmarge van .container en raakt tekst de rand */
  padding-bottom: 64px;
  color: var(--white);
}
.hero-photo .eyebrow { color: var(--orange-light); }
.hero-photo h1 { color: var(--white); max-width: 760px; }
.hero-photo p.lead { color: rgba(255,255,255,.82); max-width: 620px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.6em; }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 20px;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px;
  background: var(--white);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: cue 1.8s infinite;
}
@keyframes cue { 0%{opacity:1; top:8px;} 70%{opacity:0; top:20px;} 100%{opacity:0; top:8px;} }

/* ---------- Simple hero (utility pages) ---------- */
.hero-simple {
  background:
    radial-gradient(1100px 420px at 12% -10%, var(--orange-50), transparent 60%),
    var(--grey-100);
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--border);
}
.hero-simple.with-photo {
  position: relative;
  min-height: clamp(380px, 52vh, 520px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  border-bottom: none;
}
.hero-simple.with-photo .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-simple.with-photo .hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10,9,6,.93) 0%, rgba(10,9,6,.60) 55%, rgba(10,9,6,.45) 100%),
    linear-gradient(90deg, rgba(10,9,6,.55) 0%, rgba(10,9,6,.10) 62%, transparent 100%);
}
.hero-simple.with-photo .container {
  position: relative;
  z-index: 2;
  width: 100%;              /* voorkomt dat de flex-container krimpt en centreert */
  padding-bottom: 56px;
  padding-top: 90px;
}
.hero-simple.with-photo .eyebrow { color: var(--orange-light); }
.hero-simple.with-photo h1 { color: var(--white); }
.hero-simple.with-photo .page-subtitle { color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--grey-100); }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3em; }

/* ---------- Reveal-on-scroll ----------
   Alleen actief wanneer JavaScript beschikbaar is (.js op <html>).
   Zonder JS is alle content gewoon zichtbaar. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-1 { transition-delay: .06s; }
.js .reveal-2 { transition-delay: .12s; }
.js .reveal-3 { transition-delay: .18s; }
.js .reveal-4 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Stat band ---------- */
.stat-band {
  background: var(--ink);
  color: var(--white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  text-align: center;
}
.stat { padding: 14px 10px; }
.stat .num {
  font-size: clamp(2rem, 4.4vw, 3rem);
  font-variation-settings: "wght" 800;
  color: var(--white);
  letter-spacing: -.02em;
  display: block;
}
.stat .num span.accent { color: var(--orange-light); }
.stat .label {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: .4em;
}

/* ---------- Gallery / Slider ---------- */
.slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--grey-900);
  box-shadow: var(--shadow-lg);
}
.slider-track { display: flex; transition: transform .7s var(--ease); }
.slider-track img { width: 100%; flex: 0 0 100%; object-fit: cover; max-height: 600px; }
.slider-dots {
  position: absolute;
  bottom: 22px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.45);
  cursor: pointer; padding: 0;
  transition: width .3s var(--ease), background .3s var(--ease);
}
.slider-dots button.active { background: var(--white); width: 22px; border-radius: 5px; }

/* ---------- Feature grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.feature {
  text-align: left;
  background: var(--white);
  padding: 40px 32px;
}
.feature .num {
  font-size: .8rem;
  font-variation-settings: "wght" 800;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: .8em;
  display: block;
}

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col.reverse .col-img { order: 2; }
.two-col.reverse .col-text { order: 1; }
.col-img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow-md); }

/* ---------- Model selector ---------- */
.model-tabs { margin-top: 2.4em; }
.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3em;
  justify-content: center;
}
.tab-btn {
  background: var(--grey-100);
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 13px 24px;
  font-variation-settings: "wght" 700;
  font-size: .9rem;
  color: var(--grey-700);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.tab-btn:hover { background: var(--orange-50); color: var(--orange-dark); }
.tab-btn.active { background: var(--ink); color: var(--white); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadein .5s var(--ease); }
@keyframes fadein { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.model-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.model-card .col-img img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.model-card h3 { margin-bottom: .4em; font-size: clamp(1.5rem, 2.6vw, 2rem); }

/* ---------- Specs table ---------- */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 1.4em; }
.specs-table th, .specs-table td {
  text-align: left;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.specs-table th { color: var(--grey-500); font-variation-settings: "wght" 600; width: 45%; }
.specs-table td { color: var(--ink); font-variation-settings: "wght" 700; }

/* ---------- Extra / 3-col info ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card { text-align: left; background: var(--white); padding: 40px 34px; }
.info-card h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .95rem;
  font-variation-settings: "wght" 800;
  margin-bottom: .9em;
  color: var(--orange);
}

/* ---------- Client logos ---------- */
.client-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
}
.client-strip img {
  max-height: 40px;
  width: auto;
  filter: grayscale(100%);
  opacity: .55;
  transition: opacity .25s var(--ease), filter .25s var(--ease), transform .25s var(--ease);
}
.client-strip a:hover img { filter: none; opacity: 1; transform: scale(1.05); }

/* ---------- Reference / project cards ---------- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.4em;
  align-items: center;
}
.filter-bar input[type="search"] {
  flex: 1;
  min-width: 240px;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .95rem;
  font-family: var(--font);
  background: var(--grey-100);
}
.filter-bar input[type="search"]:focus { outline: none; border-color: var(--orange); background: var(--white); }
.filter-count { color: var(--grey-500); font-size: .88rem; white-space: nowrap; padding-left: 8px; }

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--grey-200); }
.project-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.project-card:hover .thumb img { transform: scale(1.06); }
.project-card .thumb.no-img {
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-500); font-size: .8rem; letter-spacing: .5px;
  background: repeating-linear-gradient(135deg, var(--grey-100), var(--grey-100) 10px, var(--grey-200) 10px, var(--grey-200) 20px);
}
.project-card .body { padding: 18px 20px 20px; }
.project-card h4 { font-size: 1rem; margin: 0 0 .3em; font-variation-settings: "wght" 700; }
.project-card .addr { font-size: .86rem; color: var(--grey-700); margin: 0 0 .6em; }
.project-card .spaces {
  display: inline-block;
  font-size: .74rem;
  font-variation-settings: "wght" 800;
  color: var(--orange-dark);
  background: var(--orange-50);
  padding: 5px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.contact-card { text-align: left; background: var(--white); padding: 40px 34px; }
.contact-card h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: .88rem;
  font-variation-settings: "wght" 800;
  color: var(--orange);
  margin-bottom: .9em;
}
.contact-card p { margin: 0; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.field label { font-size: .85rem; font-variation-settings: "wght" 700; color: var(--grey-700); }
.field input, .field select, .field textarea {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--ink);
  background: var(--grey-100);
  transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-note { font-size: .82rem; color: var(--grey-500); margin-top: 1em; }
.form-success, .form-error { padding: 18px 20px; border-radius: var(--radius-sm); margin-bottom: 1.6em; font-variation-settings: "wght" 700; }
.form-success { background: #eaf6ec; color: #226b32; }
.form-error { background: #fbeaea; color: #9c2b2b; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 300px at 50% 0%, rgba(227,109,1,.25), transparent 70%);
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h3 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.65); }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #a9a69d; padding: 64px 0 28px; font-size: .92rem; border-top: 1px solid #2c2a23; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h5 { color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; margin: 0 0 1.2em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: .7em; }
.footer-grid a { color: #a9a69d; }
.footer-grid a:hover { color: var(--orange-light); }
.footer-logo img { height: 18px; width: auto; margin-bottom: 1.2em; }
.footer-bottom { border-top: 1px solid #2c2a23; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .82rem; color: #6f6c63; }

/* ---------- Utilities ---------- */
.page-title { margin-bottom: .3em; }
.page-subtitle { color: var(--grey-700); font-size: 1.1rem; max-width: 680px; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .two-col, .model-card { grid-template-columns: 1fr; gap: 32px; }
  .model-card { padding: 28px; }
  .two-col.reverse .col-img { order: 1; }
  .two-col.reverse .col-text { order: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-photo { min-height: clamp(520px, 74vh, 700px); }
}

@media (max-width: 620px) {
  /* harde regelafbreking in koppen negeren op smalle schermen */
  h1 br { display: none; }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .header-right .btn-primary { display: none; }   /* past niet naast logo + hamburger */
  .logo img { height: 15px; }
  .header-inner { height: 72px; }
  .nav-cta { display: block; margin-top: 10px; }
  .nav-cta a {
    background: var(--orange);
    color: var(--white) !important;
    text-align: center;
  }
  .nav-cta a:hover { background: var(--orange-dark); color: var(--white) !important; }
  body.nav-open .main-nav { top: 72px; }
  body.nav-open .main-nav {
    display: block;
    position: fixed;
    top: 88px; left: 0; right: 0; bottom: 0;
    background: var(--white);
    padding: 24px 28px;
    overflow-y: auto;
  }
  body.nav-open .main-nav ul { flex-direction: column; gap: 4px; }
  body.nav-open .main-nav a { display: block; padding: 16px 18px; border-radius: 12px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  section { padding: 64px 0; }
  .hero-photo { min-height: clamp(520px, 78vh, 680px); }
  .hero-photo .hero-content { padding-top: 70px; padding-bottom: 48px; }
}

/* ---------- Contactpagina: twee kolommen ---------- */
.contact-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .contact-grid-2 { grid-template-columns: 1fr; } }

/* ---------- Vraagstukken / problemen ---------- */
.issue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.issue {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.section-alt .issue { background: var(--white); }
.issue h4 {
  font-size: 1.12rem;
  margin-bottom: .5em;
  font-variation-settings: "wght" 800;
}
.issue p { margin-bottom: 0; font-size: .95rem; }
.issue .tag {
  display: inline-block;
  font-size: .7rem;
  font-variation-settings: "wght" 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange-dark);
  background: var(--orange-50);
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 1em;
}

/* ---------- FAQ (native details/summary, werkt zonder JS) ---------- */
.faq { max-width: 860px; margin: 0 auto; }
.faq-group + .faq-group { margin-top: 2.6em; }
.faq-group > h3 {
  font-size: 1.3rem;
  padding-bottom: .5em;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
  margin-bottom: .8em;
}
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq details[open] { border-color: var(--orange); }
.faq summary {
  cursor: pointer;
  padding: 18px 54px 18px 22px;
  font-variation-settings: "wght" 700;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  list-style: none;
  transition: background .2s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--grey-100); }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--orange);
  font-variation-settings: "wght" 600;
}
.faq details[open] summary::after { content: "–"; }
.faq .answer { padding: 0 22px 20px; }
.faq .answer p:last-child { margin-bottom: 0; }
.faq .answer ul { margin: 0 0 1em; padding-left: 1.2em; color: var(--grey-700); }
.faq .answer li { margin-bottom: .4em; }
