/* =========================================
   All-Cars Specialist — Stylesheet
   Light theme, rood/zwart-wit palette uit logo
   ========================================= */

:root {
  --brand-red: #E11D2E;
  --brand-red-dark: #B7141F;
  --brand-red-soft: rgba(225,29,46,0.08);
  --ink: #1A1A1A;
  --ink-2: #2D2D2F;
  --muted: #5B616B;
  --line: #E5E7EB;
  --line-strong: #D1D5DB;
  --surface: #FFFFFF;
  --surface-2: #F6F6F7;
  --surface-3: #EEEEF0;
  --footer: #1F1F23;
  --radius: 8px;
  --container: 1200px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  font-size: 16px;
}
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.005em;
  line-height: 1.05;
  font-weight: 800;
  text-transform: uppercase;
}
h1 { font-size: clamp(40px, 6.2vw, 76px); }
h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); font-weight: 700; }
h4 { font-size: 18px; font-weight: 700; }
p { margin: 0 0 1em; }
a { color: inherit; }
ul, ol { padding-left: 22px; }
li { margin-bottom: 6px; }
img { max-width: 100%; display: block; }

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

/* ------- LOGO ------- */
.acs-logo { display: block; height: 56px; width: auto; }
.acs-logo .acs-text { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-weight: 900; }

/* ------- Top bar ------- */
.topbar {
  background: var(--ink);
  color: #d2d2d8;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  padding: 7px 0 6px;
  border-bottom: 1px solid #2a2a30;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { text-decoration: none; }
.topbar a:hover { color: #fff; }
.topbar .pipe { color: #3a3a40; margin: 0 8px; }

/* ------- Header ------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  gap: 24px;
}
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  text-decoration: none; color: var(--ink-2); font-weight: 500;
  font-size: 15px; padding: 6px 0; position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--brand-red);
}
.header-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.15s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-red); color: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}
.btn-primary:hover { background: var(--brand-red-dark); }
.btn-outline {
  background: #fff; color: var(--ink); border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 24px; font-size: 16px; }
.btn-icon { width: 18px; height: 18px; flex: none; }

@media (max-width: 900px) {
  .nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .acs-logo { height: 44px; }
  .topbar { font-size: 12px; padding: 6px 0; }
  .topbar .container { gap: 8px; row-gap: 4px; }
  .topbar .container > div:first-child > span:nth-child(3) { display: none; } /* hide hours on mobile */
  .topbar .container > div:first-child > .pipe { display: none; }
  .topbar .container > div:last-child > a[href^='mailto'],
  .topbar .container > div:last-child > .pipe { display: none; }
}

/* ------- Hero (light) ------- */
.hero {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 90% 0%, rgba(225,29,46,0.07), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f9f9fa 100%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%) skewX(-15deg);
  width: 90px; height: 240px;
  background:
    linear-gradient(var(--brand-red), var(--brand-red)) 0 30% / 100% 6px no-repeat,
    linear-gradient(var(--brand-red), var(--brand-red)) 0 50% / 70% 6px no-repeat,
    linear-gradient(var(--brand-red), var(--brand-red)) 0 70% / 100% 6px no-repeat;
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  padding: 96px 0 112px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border: 1px solid rgba(225,29,46,0.25);
  padding: 6px 14px;
  font-family: 'Barlow Condensed';
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--brand-red); }
.hero p.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 28px; margin-top: 40px;
  color: var(--muted);
  font-size: 14px; flex-wrap: wrap;
}
.hero-trust div { display: flex; align-items: center; gap: 8px; }
.hero-trust strong { color: var(--ink); font-weight: 700; }

.hero-visual {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #efefef 0%, #dcdcde 100%);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.hero-badge {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--brand-red);
  color: #fff;
  padding: 18px 22px;
  border-radius: 10px;
  font-family: 'Barlow Condensed';
  font-style: italic;
  font-weight: 900;
  line-height: 1.05;
  box-shadow: 0 20px 40px -10px rgba(225,29,46,0.4);
}
.hero-badge .num { font-size: 38px; display: block; }
.hero-badge .lbl { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; opacity: 0.95; text-transform: uppercase; }

/* Compact (sub-page) hero variant */
.hero-compact { padding: 0; }
.hero-compact .hero-grid { padding: 64px 0 64px; grid-template-columns: 1fr; gap: 24px; max-width: 760px; }
.hero-compact h1 { font-size: clamp(36px, 5vw, 60px); }
.hero-compact p.lead { max-width: 100%; margin-bottom: 24px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; padding: 28px 0 64px; }
  .hero-visual { aspect-ratio: 3/2; }
  .hero::after { display: none; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero p.lead { margin-bottom: 24px; }
}

/* ------- USP strip ------- */
.usps {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-2);
}
.usps .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 24px;
}
.usp { display: flex; gap: 14px; align-items: flex-start; }
.usp svg { width: 28px; height: 28px; flex: none; color: var(--brand-red); margin-top: 2px; }
.usp .usp-title {
  font-family: 'Inter'; font-size: 15px; font-weight: 700;
  color: var(--ink); margin: 0 0 4px;
  letter-spacing: 0; text-transform: none;
}
.usp p { font-size: 14px; margin: 0; color: var(--muted); }
@media (max-width: 900px) {
  .usps .container { grid-template-columns: repeat(2, 1fr); }
}

/* ------- Sections ------- */
section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-alt { background: var(--surface-2); }
.section-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-header.left { margin-left: 0; text-align: left; }
.section-header .eyebrow {
  color: var(--brand-red-dark);
  font-family: 'Barlow Condensed';
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.section-header p { font-size: 17px; color: var(--muted); }

/* ------- Service cards grid ------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; left: 0; top: 0; right: 0;
  height: 3px; background: var(--brand-red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.service-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icon {
  width: 48px; height: 48px;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; font-family: 'Inter'; font-size: 18px; font-weight: 700; text-transform: none; letter-spacing: 0; }
.service-card p { font-size: 14.5px; color: var(--muted); margin-bottom: 16px; }
.service-card a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-size: 14px; font-weight: 600;
  text-decoration: none;
}
.service-card a svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card a:hover svg { transform: translateX(3px); }
.service-card.featured {
  background: var(--brand-red);
  color: #fff;
  border-color: var(--brand-red);
}
.service-card.featured::before { display: none; }
.service-card.featured h3 { color: #fff; }
.service-card.featured p { color: #fff; }
.service-card.featured .icon { background: rgba(255,255,255,0.18); color: #fff; }
.service-card.featured a { color: #fff; }
.service-card.featured .badge {
  position: absolute; top: 14px; right: 14px;
  background: #fff; color: var(--brand-red);
  font-family: 'Barlow Condensed'; font-style: italic;
  font-size: 12px; font-weight: 800;
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ------- Two-col content (subpages) ------- */
.two-col {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.flipped { grid-template-columns: 1fr 1.2fr; }
.two-col img, .two-col .photo {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: 12px;
  background: var(--surface-3);
  border: 1px solid var(--line);
}
@media (max-width: 900px) { .two-col, .two-col.flipped { grid-template-columns: 1fr; gap: 32px; } }

/* ------- Specialist block ------- */
.specialist {
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.specialist::before {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%) skewX(-15deg);
  width: 80px; height: 240px;
  background:
    linear-gradient(var(--brand-red), var(--brand-red)) 0 30% / 100% 6px no-repeat,
    linear-gradient(var(--brand-red), var(--brand-red)) 0 50% / 70% 6px no-repeat,
    linear-gradient(var(--brand-red), var(--brand-red)) 0 70% / 100% 6px no-repeat;
  opacity: 0.5;
}
.specialist .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative;
}
.specialist h2 .accent { color: var(--brand-red); }
.specialist p { font-size: 17px; color: var(--ink-2); }
.specialist ul.checks {
  list-style: none; padding: 0; margin: 24px 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.specialist ul.checks li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--ink-2); font-size: 15px;
}
.specialist ul.checks li svg { width: 18px; height: 18px; color: var(--brand-red); flex: none; margin-top: 2px; }
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand-red);
  padding: 36px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 12px 30px -12px rgba(0,0,0,0.1);
}
.quote-card .quote-mark {
  font-family: 'Barlow Condensed'; font-style: italic;
  font-size: 100px; line-height: 1;
  color: var(--brand-red); opacity: 0.18;
  position: absolute; top: 4px; right: 18px;
}
.quote-card blockquote {
  margin: 0 0 18px; font-size: 19px; color: var(--ink); line-height: 1.5; font-weight: 500;
}
.quote-card cite {
  font-style: normal;
  display: flex; gap: 12px; align-items: center;
  color: var(--muted); font-size: 14px;
}
.quote-card cite::before {
  content: ''; width: 32px; height: 1px; background: var(--line-strong);
}
@media (max-width: 900px) {
  .specialist .container { grid-template-columns: 1fr; gap: 40px; }
  .specialist ul.checks { grid-template-columns: 1fr; }
}

/* ------- Process / steps ------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  position: relative;
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: 'Barlow Condensed'; font-style: italic; font-weight: 900;
  font-size: 56px; color: var(--brand-red); opacity: 0.18;
  position: absolute; top: 12px; right: 18px; line-height: 1;
}
.step h4 { font-family: 'Barlow Condensed'; font-size: 22px; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

/* ------- FAQ accordion ------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: 0 6px 20px -6px rgba(0,0,0,0.06); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: 'Barlow Condensed';
  font-weight: 800; font-size: 19px;
  color: var(--ink);
  display: flex; align-items: center; gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: '+';
  font-family: 'Barlow Condensed'; font-weight: 900; font-size: 28px;
  color: var(--brand-red); flex: none;
  width: 24px; line-height: 0.7;
}
.faq details[open] summary::before { content: '–'; }
.faq .answer { padding: 0 24px 22px; color: var(--ink-2); font-size: 15.5px; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ------- Reviews ------- */
.reviews { background: #fff; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review {
  background: var(--surface-2);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.review .stars { display: flex; gap: 2px; color: #FFB400; margin-bottom: 14px; }
.review .stars svg { width: 16px; height: 16px; fill: currentColor; }
.review p { color: var(--ink-2); margin-bottom: 16px; font-size: 15px; }
.review .author {
  display: flex; gap: 10px; align-items: center;
  color: var(--muted); font-size: 13px;
  border-top: 1px solid var(--line); padding-top: 14px;
}
.review .author strong { color: var(--ink); font-weight: 600; }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ------- Pricing / info table ------- */
.price-table {
  width: 100%; border-collapse: collapse;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.price-table th, .price-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.price-table th {
  background: var(--surface-2);
  font-family: 'Barlow Condensed'; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--ink);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table td.amount {
  font-family: 'Barlow Condensed'; font-weight: 800;
  font-size: 19px; color: var(--ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.price-note {
  font-size: 13px; color: var(--muted);
  margin-top: 12px;
}

/* ------- Contact CTA strip (rood) ------- */
.contact-cta {
  background: var(--brand-red);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute; left: -60px; top: 50%; transform: translateY(-50%) skewX(-15deg);
  width: 100px; height: 200px;
  background:
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)) 0 30% / 100% 6px no-repeat,
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)) 0 50% / 70% 6px no-repeat,
    linear-gradient(rgba(255,255,255,0.5), rgba(255,255,255,0.5)) 0 70% / 100% 6px no-repeat;
}
.contact-cta .container {
  display: grid; grid-template-columns: 1fr auto; gap: 32px;
  align-items: center; position: relative;
}
.contact-cta h2 { color: #fff; margin-bottom: 8px; }
.contact-cta p { color: rgba(255,255,255,0.92); margin: 0; font-size: 17px; }
.contact-cta .btns { display: flex; gap: 12px; flex-wrap: wrap; }
.contact-cta .btn-primary { background: #fff; color: var(--brand-red); }
.contact-cta .btn-primary:hover { background: var(--ink); color: #fff; }
.contact-cta .btn-outline {
  background: transparent; color: #fff; border-color: rgba(255,255,255,0.6);
}
.contact-cta .btn-outline:hover { background: #fff; color: var(--brand-red); border-color: #fff; }
@media (max-width: 800px) { .contact-cta .container { grid-template-columns: 1fr; } }

/* ------- Forms ------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid .full { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 13px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-red);
  box-shadow: 0 0 0 3px var(--brand-red-soft);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

/* Contact info card */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-card h3 { font-family: 'Barlow Condensed'; font-size: 22px; text-transform: uppercase; }
.contact-card dl { margin: 0; }
.contact-card dt {
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 16px;
}
.contact-card dd { margin: 4px 0 0; color: var(--ink); font-size: 15.5px; }
.contact-card dd a { color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--line-strong); }
.contact-card dd a:hover { border-color: var(--brand-red); color: var(--brand-red); }

.maps-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-3);
  border: 1px solid var(--line);
}
.maps-embed iframe { width: 100%; height: 100%; border: 0; }

/* ------- Footer ------- */
.footer {
  background: var(--footer);
  color: #B5B5BA;
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer .footer-title {
  font-family: 'Inter'; font-weight: 700; color: #fff;
  margin: 0 0 14px; font-size: 14px; letter-spacing: 0.02em;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer a { color: #B5B5BA; text-decoration: none; }
.footer a:hover { color: #fff; }
.footer .legal {
  border-top: 1px solid #303035;
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 13px; color: #8A8A92;
  flex-wrap: wrap;
}
/* footer .acs-logo niet meer gebruikt — tekstueel logotype */
@media (max-width: 800px) {
  .footer .grid { grid-template-columns: 1fr 1fr; }
}

/* ------- Utilities ------- */
.text-center { text-align: center; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  color: var(--brand-red);
  font-family: 'Barlow Condensed';
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 10px;
}
.checks-list {
  list-style: none; padding: 0; margin: 16px 0;
}
.checks-list li {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 8px; color: var(--ink-2); font-size: 15.5px;
}
.checks-list li::before {
  content: '';
  width: 18px; height: 18px; flex: none; margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E11D2E' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: contain; background-repeat: no-repeat;
}
.tag {
  display: inline-block;
  background: var(--brand-red-soft);
  color: var(--brand-red);
  border: 1px solid rgba(225,29,46,0.25);
  padding: 4px 10px; border-radius: 4px;
  font-family: 'Barlow Condensed'; font-style: italic;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
}

/* Print-safe */
@media print {
  .header, .footer, .contact-cta, .topbar { display: none; }
  body { background: #fff; }
}


/* ------- Footer-brand: tekstueel logotype (geen img) ------- */
.footer-brand { margin-bottom: 12px; }
.footer-brand .footer-name {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.005em;
  line-height: 1.05;
  text-transform: uppercase;
}
.footer-brand .footer-name em {
  font-style: italic;
  color: #fff;
  font-weight: 700;
  opacity: 0.7;
}
.footer-brand .footer-sub {
  display: inline-block;
  margin-top: 8px;
  background: var(--brand-red);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 12px;
  padding: 3px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  transform: skewX(-10deg);
}
.footer-brand .footer-sub span { display: inline-block; transform: skewX(10deg); }


/* ------- Mobile nav toggle (hamburger) ------- */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  color: var(--ink);
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-left: 4px;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle svg { width: 26px; height: 26px; pointer-events: none; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 16px;
    gap: 0;
    box-shadow: 0 16px 30px -10px rgba(0,0,0,0.12);
  }
  .nav.open { display: flex; }
  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 500;
  }
  .nav a:last-child { border-bottom: 0; }
  .nav a.active::after { display: none; }
  .nav a.active { color: var(--brand-red); font-weight: 600; }
  .header-cta { gap: 6px; }
}


/* Checks-list met inline SVG (algemeen, los van section) */
ul.checks {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 15px;
  margin-bottom: 0;
}
ul.checks li svg {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--brand-red);
  margin-top: 3px;
}


/* ------- Floating WhatsApp CTA ------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18), 0 2px 4px rgba(0,0,0,0.10);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.35;
  animation: wa-pulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.95); opacity: 0.45; }
  70%  { transform: scale(1.30); opacity: 0; }
  100% { transform: scale(1.30); opacity: 0; }
}
.wa-float:hover {
  background: #1ebe5a;
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22), 0 3px 6px rgba(0,0,0,0.12);
}
.wa-float:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.35), 0 6px 20px rgba(0,0,0,0.18);
}
.wa-float svg { width: 32px; height: 32px; display: block; }
.wa-float .wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: #fff;
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wa-float .wa-tooltip strong {
  display: block;
  font-size: 13px;
  color: #25D366;
  margin-bottom: 2px;
}
.wa-float .wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.wa-float:hover .wa-tooltip,
.wa-float:focus-visible .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 600px) {
  .wa-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 28px; height: 28px; }
  .wa-float .wa-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float:hover { transition: none; transform: none; }
  .wa-float::before { animation: none; }
}
@media print {
  .wa-float { display: none; }
}


/* Reviews — author avatar (initials circle) */
.review .author .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--brand-red-soft);
  color: var(--brand-red-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; letter-spacing: 0.04em;
  flex: none;
}
.review .author > div { line-height: 1.35; }
.review .author > div strong { color: var(--ink); font-weight: 600; }
