:root {
  --background: oklch(17% 0.006 285);
  --surface: oklch(21% 0.006 285);
  --surface-2: oklch(26% 0.007 285);
  --card: oklch(21% 0.006 285);
  --popover: oklch(21% 0.006 285);
  --secondary: oklch(26% 0.007 285);
  --muted: oklch(26% 0.007 285);
  --accent: oklch(28% 0.007 285);
}

.services-light {
  --background: oklch(98% 0.003 90);
  --foreground: oklch(18% 0.006 285);
  --surface: oklch(96% 0.004 90);
  --surface-2: oklch(92% 0.005 90);
  --card: oklch(100% 0 0);
  --card-foreground: oklch(18% 0.006 285);
  --secondary: oklch(92% 0.005 90);
  --secondary-foreground: oklch(18% 0.006 285);
  --muted: oklch(92% 0.005 90);
  --muted-foreground: oklch(42% 0.008 285);
  --accent: oklch(90% 0.006 90);
  --accent-foreground: oklch(18% 0.006 285);
  --border: oklch(18% 0.006 285 / 0.12);
  --border-strong: oklch(18% 0.006 285 / 0.22);
  background: var(--background);
  color: var(--foreground);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
}

.pricing-card {
  display: flex;
  min-height: 31rem;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
}

.pricing-card--featured {
  border-color: var(--primary);
  box-shadow: inset 0 4px 0 var(--primary);
}

.pricing-price {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-price span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted-foreground);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.pricing-features {
  display: grid;
  gap: 0.55rem;
  margin-top: 2rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pricing-features li {
  position: relative;
  padding-left: 1.25rem;
}

.pricing-features li::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background: var(--primary);
  content: "";
  transform: translateY(-50%);
}

.pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  background: var(--primary);
  padding: 1rem 1.5rem;
  color: var(--primary-foreground);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
  transition: transform 300ms ease;
}

.pricing-card__cta:hover {
  transform: translateY(-2px);
}

.pricing-options {
  display: grid;
  gap: 3.5rem;
  margin-top: 5rem !important;
  margin-bottom: 2.5rem;
}

.pricing-options__intro {
  padding-top: 1.25rem;
}

.pricing-options__intro h3 {
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

.pricing-list > div {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--card) !important;
  padding: 1.5rem;
}

.pricing-list > div::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.5rem;
  left: 1.5rem;
  height: 1px;
  background: var(--border);
  transform: scaleY(0.5);
}

.pricing-list > div:first-child::before {
  display: none;
}

.pricing-list dt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.pricing-list dt::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  flex-shrink: 0;
  background: var(--primary);
}

.pricing-list dd {
  flex-shrink: 0;
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pricing-options {
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  }
}

@media (max-width: 767px) {
  .pricing-card {
    min-height: 0;
  }

  .pricing-list > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }
}

header nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  header > div {
    position: relative;
  }

  header nav[aria-label="Hoofdnavigatie"] {
    position: absolute;
    left: 50%;
    justify-content: center;
    transform: translateX(-50%);
  }
}

header.is-scrolled {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 10px 30px rgb(0 0 0 / 8%);
}

header.is-scrolled > div > a:first-child,
header.is-scrolled nav a,
header.is-scrolled button {
  color: #111827;
}

header.is-scrolled .eyebrow {
  color: #4b5563;
}

header.is-scrolled button {
  border-color: #d1d5db;
}

/* WhatsApp buttons: brand green, regardless of header scroll state */
a[aria-label="WhatsApp SN Autoservice"] {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

a[aria-label="WhatsApp SN Autoservice"]:hover {
  background: #1fb958;
  border-color: #1fb958;
  color: #ffffff;
}

.whatsapp-cta {
  background: #25d366 !important;
  border-color: #25d366 !important;
  color: #ffffff !important;
}

.whatsapp-cta:hover {
  background: #1fb958 !important;
  border-color: #1fb958 !important;
  color: #ffffff !important;
}

.header-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
}

/* Service lists: only horizontal divider lines, no outer frame */
.service-list {
  border: none !important;
  background: transparent !important;
}

.service-list > li {
  position: relative;
  background: var(--card) !important;
}

.service-list > li::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  left: 1.5rem;
  height: 1px;
  background: var(--border);
  transform: scaleY(0.5);
}

.category-cta {
  margin-top: auto;
  position: relative;
  top: 1rem;
}

/* Feature tags (Interieur / Exterieur / Detailing / Maatwerk) */
.feature-tags span.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--foreground);
}

.feature-tags span.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1px;
  background: var(--primary);
}

/* "Waarom SN Autoservice" value cards: black on the white section */
.value-grid {
  gap: 1rem;
}

.value-card {
  --foreground: #ffffff;
  --muted-foreground: #a7a7ac;
  background: #1a1a1d;
  color: var(--foreground);
  border: none !important;
  padding: 2.5rem 2rem !important;
}

.value-card > span.eyebrow {
  color: var(--primary);
}

/* Mobiele navigatie */
body.mobile-nav-open {
  overflow: hidden;
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--background);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.mobile-nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-overlay nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.35rem;
  text-align: center;
}

.mobile-nav-overlay nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--foreground);
  text-transform: uppercase;
}

.mobile-nav-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
}

.mobile-nav-overlay__close svg {
  width: 1.7rem;
  height: 1.7rem;
}

.mobile-nav-overlay__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(78vw, 21rem);
  margin-top: 2.75rem;
  background: var(--primary);
  padding: 1.15rem 2.5rem;
  color: var(--primary-foreground);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-nav-overlay nav a::after {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-nav-overlay {
    display: none;
  }
}

/* Mega menu (desktop) */
main section[id] {
  scroll-margin-top: 6rem;
}

.mega-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 55;
  border-top: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  box-shadow: 0 20px 40px rgb(0 0 0 / 12%);
}

.mega-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
}

.mega-menu__col a.mega-menu__col-heading {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: var(--foreground);
}

.mega-menu__col-heading span {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.mega-menu__col-heading strong {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

.mega-menu__col-heading:hover strong {
  color: var(--primary);
}

.mega-menu__col {
  display: flex;
  flex-direction: column;
}

.mega-menu__col ul {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.mega-menu__webshop-link {
  margin-top: auto;
  padding-top: 2rem !important;
}

.mega-menu__webshop-link svg {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--primary);
  transition: transform 200ms ease;
}

.mega-menu__webshop-link:hover svg {
  transform: translateX(0.25rem);
}

.webshop-banner-content {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.webshop-banner {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.5rem;
  height: 12rem;
  overflow: hidden;
}

.webshop-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.webshop-col-text {
  position: relative;
  align-self: start;
}

.webshop-col-price {
  position: relative;
  background: var(--background);
}

@media (min-width: 768px) {
  .webshop-banner-content {
    padding-top: 8rem;
    padding-bottom: 12.5rem;
  }

  .webshop-banner {
    left: 2.5rem;
    right: 2.5rem;
    bottom: 2rem;
    height: 16rem;
  }
}

.mega-menu__col li {
  border-bottom: 1px solid var(--border);
}

.mega-menu__col a {
  display: block;
  padding: 0.85rem 0;
  color: var(--muted-foreground);
  font-size: 1.05rem;
  transition: color 200ms ease;
}

.mega-menu__col li a:hover {
  color: var(--primary);
}

.mega-menu__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  background: var(--primary);
  padding: 1rem 2rem;
  color: var(--primary-foreground);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: transform 300ms ease;
}

.mega-menu__cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 1023px) {
  .mega-menu {
    display: none !important;
  }
}

/* Over ons */
.about-wrap { width: min(100% - 2.5rem, 1320px); margin-inline: auto; }
.about-kicker { margin-bottom: 1.25rem; color: var(--primary); font-size: .68rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.about-hero { min-height: 760px; padding: 10rem 0 6rem; background: radial-gradient(circle at 78% 20%, rgb(222 34 49 / 20%), transparent 28%), linear-gradient(135deg, #1d1d20, #29292d); color: #fff; }
.about-hero__inner { display: grid; min-height: 560px; align-items: end; gap: 4rem; }
.about-hero__copy { max-width: 850px; }
.about-hero h1, .about-story h2, .about-values h2, .about-expertise h2, .about-visit h2, .about-cta h2 { font-family: var(--font-display); font-weight: 500; line-height: .95; text-transform: uppercase; }
.about-hero h1 { font-size: clamp(3.4rem, 8vw, 7.5rem); letter-spacing: -.035em; }
.about-hero h1 span { color: var(--primary); }
.about-lead { max-width: 690px; margin-top: 2rem; color: #c9c9cd; font-size: clamp(1.05rem, 2vw, 1.35rem); line-height: 1.75; }
.about-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.about-button { display: inline-flex; align-items: center; justify-content: center; background: var(--primary); padding: 1rem 1.6rem; color: var(--primary-foreground); font-size: .72rem; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; transition: transform .25s ease; }
.about-button:hover { transform: translateY(-2px); }
.about-text-link { color: inherit; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-text-link span { margin-left: .5rem; color: var(--primary); }
.about-stat-panel { display: grid; border-top: 1px solid rgb(255 255 255 / 16%); }
.about-stat-panel div { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid rgb(255 255 255 / 16%); padding: 1.15rem 0; }
.about-stat-panel strong { color: #fff; font-family: var(--font-display); font-size: 2rem; font-weight: 500; }
.about-stat-panel span { color: #a7a7ac; font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.about-story, .about-values, .about-expertise, .about-visit, .about-cta { padding: 7rem 0; }
.about-story__grid, .about-expertise__grid, .about-visit__grid { display: grid; gap: 4rem; }
.about-story h2, .about-values h2, .about-expertise h2, .about-visit h2, .about-cta h2 { max-width: 760px; font-size: clamp(2.5rem, 5vw, 5rem); letter-spacing: -.025em; }
.about-story__text { display: grid; gap: 1.5rem; color: var(--muted-foreground); font-size: 1rem; line-height: 1.85; }
.about-section-heading { margin-bottom: 4rem; }
.about-value-grid { display: grid; gap: 1px; background: var(--border); }
.about-value-grid article { min-height: 340px; background: var(--card); padding: 2.25rem; }
.about-value-grid article > span { color: var(--primary); font-family: var(--font-display); font-size: 1.4rem; }
.about-value-grid h3 { margin-top: 5rem; font-family: var(--font-display); font-size: 2rem; font-weight: 500; text-transform: uppercase; }
.about-value-grid p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.75; }
.about-expertise__intro > p:not(.about-kicker) { max-width: 560px; margin: 1.75rem 0 2rem; color: var(--muted-foreground); line-height: 1.8; }
.about-expertise__list { border-top: 1px solid var(--border); }
.about-expertise__list a { display: grid; grid-template-columns: 3rem 1fr; gap: .8rem 1rem; border-bottom: 1px solid var(--border); padding: 1.6rem 0; color: inherit; }
.about-expertise__list span { color: var(--primary); font-size: .72rem; }
.about-expertise__list strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; text-transform: uppercase; }
.about-expertise__list em { grid-column: 2; color: var(--muted-foreground); font-size: .85rem; font-style: normal; }
.about-visit address { margin: 2rem 0; color: var(--muted-foreground); font-style: normal; line-height: 1.8; }
.about-visit__note { margin-top: 2rem; color: var(--primary); font-weight: 700; }
.about-hours { border: 1px solid var(--border); padding: 2rem; }
.about-hours h3 { margin-bottom: 1.5rem; font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; text-transform: uppercase; }
.about-hours dl > div { display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--border); padding: .9rem 0; color: var(--muted-foreground); }
.about-hours dd { color: var(--foreground); text-align: right; }
.about-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 3rem; }
.about-cta h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }

@media (min-width: 900px) {
  .about-hero__inner { grid-template-columns: minmax(0, 1fr) 280px; }
  .about-story__grid, .about-expertise__grid, .about-visit__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 899px) {
  .about-hero { min-height: auto; padding-top: 8rem; }
  .about-story, .about-values, .about-expertise, .about-visit, .about-cta { padding: 5rem 0; }
  .about-cta__inner, .about-actions { align-items: flex-start; flex-direction: column; }
}

/* Contact */
.contact-hero { position: relative; padding: 12rem 0 7rem; background: linear-gradient(90deg, rgb(20 20 22 / 96%) 0%, rgb(20 20 22 / 88%) 48%, rgb(20 20 22 / 68%) 100%), var(--sn-background, url("/media/6b2d1ed8cdb66c80.jpg")) center 48% / cover no-repeat; color: #fff; }
.contact-hero__grid { display: grid; gap: 4rem; align-items: end; }
.contact-hero h1, .contact-main h2, .contact-details h2, .contact-hours h2 { font-family: var(--font-display); font-weight: 500; line-height: .95; text-transform: uppercase; }
.contact-hero h1 { max-width: 900px; font-size: clamp(3.4rem, 7.5vw, 7rem); letter-spacing: -.035em; }
.contact-hero__intro { max-width: 520px; color: #c9c9cd; line-height: 1.8; }
.contact-hero__intro a { display: inline-block; margin-top: 1.8rem; color: #fff; font-weight: 700; }
.contact-hero__intro span { margin-left: .5rem; color: var(--primary); }
.contact-main, .contact-details, .contact-hours { padding: 7rem 0; }
.contact-main__grid { display: grid; gap: 5rem; }
.contact-main h2, .contact-details h2, .contact-hours h2 { font-size: clamp(2.6rem, 5vw, 5rem); letter-spacing: -.025em; }
.contact-form-intro > p:not(.about-kicker), .contact-hours p { max-width: 570px; margin-top: 1.75rem; color: var(--muted-foreground); line-height: 1.8; }
.contact-expectation { display: grid; gap: 0; margin-top: 3rem; border-top: 1px solid var(--border); }
.contact-expectation span { color: var(--primary); font-family: var(--font-display); }
.contact-expectation > * { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.contact-expectation p { margin: 0; color: var(--foreground); }
.contact-form { display: grid; gap: 1.4rem; border: 1px solid var(--border); background: var(--card); padding: clamp(1.5rem, 4vw, 3rem); }
.contact-field-row { display: grid; gap: 1.4rem; }
.contact-form label { display: grid; gap: .7rem; color: var(--foreground); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--border); border-radius: 0; outline: none; background: var(--background); padding: 1rem; color: var(--foreground); font: inherit; font-size: .95rem; letter-spacing: 0; text-transform: none; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--primary); }
.contact-form .about-button { border: 0; cursor: pointer; }
.contact-form .about-button:disabled { cursor: wait; opacity: .7; }
.contact-form__status { margin: 0; font-size: .9rem; line-height: 1.6; }
.contact-form__status:empty { display: none; }
.contact-form__status.is-success { color: #287a45; }
.contact-form__status.is-error { color: #a52a2a; }
.contact-details__heading { margin-bottom: 4rem; }
.contact-card-grid { display: grid; gap: 1px; background: var(--border); }
.contact-card-grid article { min-height: 330px; background: var(--card); padding: 2.25rem; }
.contact-card-grid article > span { color: var(--primary); font-family: var(--font-display); font-size: 1.4rem; }
.contact-card-grid h3 { margin-top: 4rem; font-family: var(--font-display); font-size: 2rem; font-weight: 500; text-transform: uppercase; }
.contact-card-grid p, .contact-card-grid address { margin: 1rem 0 2rem; color: var(--muted-foreground); font-style: normal; line-height: 1.7; }
.contact-card-grid a { color: var(--foreground); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-hours dl { border: 1px solid var(--border); padding: 2rem; }
.contact-hours dl > div { display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--border); padding: .9rem 0; color: var(--muted-foreground); }
.contact-hours dl > div:first-child { border-top: 0; }
.contact-hours dd { color: var(--foreground); text-align: right; }
.contact-details--compact { margin-top: 3.5rem; padding: 0; background: transparent; }
.contact-details--compact .about-wrap { width: 100%; }
.contact-details--compact .contact-details__heading { margin-bottom: 1.5rem; }
.contact-details--compact .about-kicker { display: none; }
.contact-details--compact h2 { max-width: 520px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; }
.contact-details--compact .contact-card-grid { grid-template-columns: 1fr; margin-top: 0; }
.contact-details--compact .contact-card-grid article { display: flex; min-height: 250px; flex-direction: column; background: #202023; padding: 1.25rem; color: #fff; }
.contact-details--compact .contact-card-grid article > span { font-size: 1rem; }
.contact-details--compact .contact-card-grid h3 { margin-top: .75rem; font-size: 1.35rem; }
.contact-details--compact .contact-card-grid p,
.contact-details--compact .contact-card-grid address { margin: .5rem 0 1rem; color: #b8b8bd; font-size: .82rem; }
.contact-details--compact .contact-card-grid a { margin-top: auto; color: #fff; font-size: .65rem; }

/* Horizontale projectcarrousel */
.service-carousel-wrapper {
  position: relative;
}

.service-carousel {
  width: 100%;
  overflow: hidden;
}

.service-carousel__track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-carousel__track::-webkit-scrollbar {
  display: none;
}

.service-carousel__track img {
  flex: 0 0 min(64vw, 840px);
  width: min(64vw, 840px) !important;
  height: clamp(360px, 42vw, 620px) !important;
  object-fit: cover;
  scroll-snap-align: start;
}

.service-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  transform: translateY(-50%);
  border: none;
  background: rgb(255 255 255 / 92%);
  color: #151517;
  cursor: pointer;
  transition: background 200ms ease;
}

.service-carousel__nav:hover {
  background: #ffffff;
}

.service-carousel__nav svg {
  width: 1.35rem;
  height: 1.35rem;
}

.service-carousel__nav--prev {
  left: 1.25rem;
}

.service-carousel__nav--next {
  right: 1.25rem;
}

@media (max-width: 767px) {
  .service-carousel__track img {
    flex-basis: 84vw;
    width: 84vw !important;
    height: 62vw !important;
  }

  .service-carousel__nav {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (min-width: 900px) {
  .contact-hero__grid, .contact-main__grid { grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr); }
  .contact-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-details--compact .contact-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .contact-field-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-expectation { grid-template-columns: 3rem 1fr; }
}

@media (max-width: 899px) {
  .contact-hero { padding: 9rem 0 5rem; }
  .contact-main, .contact-details, .contact-hours { padding: 5rem 0; }
  .contact-details--compact { padding: 0; }
}


/* --- logo in header en footer --- */
.sn-logo{display:block;width:auto;height:34px}
.sn-logo--footer{height:50px}
/* voor/na-vergelijker: slepen mag overal, de range-input alleen voor toetsenbord */
.sn-voorna{touch-action:pan-y}
.sn-voorna img{-webkit-user-drag:none;user-select:none}
#ba-range{pointer-events:none}
#ba-range:focus-visible{outline:2px solid var(--primary);outline-offset:4px;opacity:1}

/* de header wordt wit zodra je scrollt: dan de donkere variant tonen */
.sn-logo--dark{display:none}
header.is-scrolled .sn-logo--light{display:none}
header.is-scrolled .sn-logo--dark{display:block}
@media (min-width:768px){.sn-logo{height:42px}.sn-logo--footer{height:58px}}

/* Consistente leesbaarheid en merkhiërarchie */
.sn-logo { height: 42px; }
.sn-logo--footer { height: 66px; }

@media (min-width: 768px) {
  .sn-logo { height: 50px; }
  .sn-logo--footer { height: 78px; }
}

.page-intro > div > .eyebrow,
.page-intro .about-kicker {
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
}

.page-intro__subtitle {
  color: #ffffff !important;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem) !important;
  line-height: 1.75 !important;
}

main > section p.max-w-lg.leading-relaxed.text-muted-foreground,
main > section p.max-w-2xl.leading-relaxed.text-muted-foreground {
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.8;
}

.hero-brandline { gap: 0.75rem 1.25rem; }
.hero-brandline .eyebrow {
  color: #ffffff !important;
  font-size: clamp(0.82rem, 1.35vw, 1rem) !important;
  line-height: 1.4;
}

.hero-subtitle {
  max-width: 46rem !important;
  color: #ffffff !important;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem) !important;
  line-height: 1.7 !important;
}

.hero-projects-button {
  border: 1px solid #77777c !important;
  background: #171719 !important;
  color: #ffffff !important;
  transition: border-color 250ms ease, color 250ms ease, transform 300ms ease !important;
}
.hero-projects-button:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}

.section-kicker--large {
  font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
}
.home-about-copy > p:not(.eyebrow) {
  color: var(--foreground) !important;
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 1.45vw, 1.25rem) !important;
  line-height: 1.75 !important;
}
.home-about-copy .feature-tags .eyebrow {
  font-size: clamp(0.82rem, 1.1vw, 0.95rem) !important;
}
.home-about-copy .feature-tags {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 28rem);
}

.home-services article h3,
.home-service-showcase h3 {
  font-size: clamp(2.15rem, 3.8vw, 3.65rem) !important;
  line-height: 1;
}
.home-services article p,
.home-services article li {
  color: #ffffff !important;
  font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
  line-height: 1.75 !important;
}
.home-services article li span { color: #ffffff !important; }

/* Desktop: omschrijvingen, scheidingslijnen en CTA's exact op één lijn. */
@media (min-width: 768px) {
  .home-services article p {
    min-height: calc(4 * 1.75em);
  }

  .home-services article ul {
    margin-bottom: 3rem;
  }

  .home-services .category-cta {
    top: 0;
  }
}

@media (min-width: 1200px) {
  .home-services article p {
    min-height: calc(3 * 1.75em);
  }
}

[data-sn="index:s5.3-van-subtiele-upgra"] {
  display: none !important;
}

.home-service-showcase h3 + p {
  color: var(--muted-foreground) !important;
  font-size: clamp(1rem, 1.25vw, 1.15rem) !important;
  line-height: 1.75 !important;
}

/* WhatsApp: rustig zwart/groen in de pagina, wit/groen in de header */
.whatsapp-cta {
  border: 1px solid #77777c !important;
  background: #151517 !important;
  color: #ffffff !important;
}
.whatsapp-cta:hover {
  border-color: var(--primary) !important;
  background: #151517 !important;
  color: var(--primary) !important;
}

header a[aria-label="WhatsApp SN Autoservice"] {
  border: 1px solid #25d366 !important;
  background: #ffffff !important;
  color: #25d366 !important;
}
header a[aria-label="WhatsApp SN Autoservice"]:hover {
  border-color: #25d366 !important;
  background: #ffffff !important;
  color: #25d366 !important;
}

header a[aria-label="WhatsApp SN Autoservice"] {
  display: none !important;
}

main .eyebrow,
main .about-kicker {
  font-size: clamp(0.8rem, 1.05vw, 0.94rem) !important;
  line-height: 1.4;
}

[data-sn="index:s7.3-vertel-ons-wat-je"] {
  color: var(--foreground) !important;
}

.home-contact-light {
  background: #eeece7 !important;
  color: var(--foreground);
}
.home-contact-light > img,
.home-contact-light > .absolute {
  display: block !important;
}
.home-contact-light > img {
  display: block !important;
  opacity: 0.42 !important;
  filter: grayscale(35%);
}
.home-contact-light > .absolute {
  background: rgb(238 236 231 / 66%) !important;
}
.home-contact-light .reveal > .eyebrow,
.home-contact-light .reveal > h2,
.home-contact-light .reveal > p {
  color: var(--foreground) !important;
}
.home-contact-light .whatsapp-cta {
  border-color: #151517 !important;
  background: #151517 !important;
  color: #ffffff !important;
}
.home-contact-light .whatsapp-cta:hover {
  border-color: #151517 !important;
  background: #151517 !important;
  color: #ffffff !important;
}

.is-homepage #over-ons > div {
  align-items: start;
}
.is-homepage #over-ons .home-about-copy {
  padding-top: 0 !important;
}

/* Gelijke subtitels en kleine bovenkoppen op alle pagina's. */
main .site-kicker {
  font-size: clamp(0.8rem, 1.05vw, 0.94rem) !important;
  line-height: 1.4 !important;
}
.page-intro .text-muted-foreground,
.page-intro__subtitle {
  color: #ffffff !important;
}
.services-light .text-muted-foreground {
  color: var(--muted-foreground);
}
.before-after-service {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Dienstpagina's: één rustige leesgrootte voor alle toelichtingen. */
.service-page main p.text-muted-foreground,
.service-page main .service-list li,
.service-page main .value-card p,
.service-page main .pricing-card li,
.service-page main .pricing-options p,
.service-page main .pricing-list {
  font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
  line-height: 1.7 !important;
}

.service-page main p.eyebrow {
  color: var(--primary) !important;
}

.service-page main .value-card p {
  color: #ffffff !important;
}

.service-final-cta .reveal {
  max-width: 64rem !important;
}

.service-final-cta h2 {
  width: min(100%, 64rem);
  font-size: clamp(2rem, 4.4vw, 3.8rem) !important;
  line-height: 1.04;
}

.service-final-cta p.text-muted-foreground {
  width: min(100%, 44rem);
  max-width: none !important;
  color: #ffffff !important;
}

/* Contact: intro en formulier behouden hun eigen schaal; overige leestekst gelijk. */
.contact-page .contact-form-intro > p:not(.about-kicker),
.contact-page .contact-expectation p,
.contact-page .contact-details--compact .contact-card-grid p,
.contact-page .contact-details--compact .contact-card-grid address {
  font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
  line-height: 1.7 !important;
}

.contact-page .contact-details--compact .contact-card-grid p,
.contact-page .contact-details--compact .contact-card-grid address {
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
}

.contact-page .contact-details--compact .contact-card-grid a {
  width: 100%;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--primary) !important;
  font-size: 0.78rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.contact-page .contact-details--compact .contact-card-grid a.whatsapp-cta {
  border: 0 !important;
  background: transparent !important;
  padding: 1.25rem 0 0 !important;
}

/* Over ons: consistente leestekst, met wit op de donkere onderdelen. */
.about-page .about-story__text,
.about-page .about-value-grid p,
.about-page .about-expertise__intro > p:not(.about-kicker),
.about-page .about-expertise__list em,
.about-page .about-visit address {
  font-size: clamp(1rem, 1.05vw, 1.08rem) !important;
  line-height: 1.7 !important;
}

.about-page .about-value-grid p,
.about-page .about-visit address,
.about-page .about-stat-panel span {
  color: #ffffff !important;
}

.about-page .about-visit__grid {
  grid-template-columns: 1fr !important;
}

.about-page .about-visit__content {
  display: grid;
  align-items: start;
  gap: 3rem 5rem;
}

.about-page .about-visit__details {
  max-width: 28rem;
}

/* De afsluitende witte CTA is overbodig na het complete Kom langs-blok. */
.about-page .about-cta {
  display: none;
}

@media (min-width: 900px) {
  .about-page .about-visit__content {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  }
}

footer .eyebrow {
  font-size: clamp(0.8rem, 1.05vw, 0.94rem) !important;
  line-height: 1.4;
}

.home-projects .group > div.absolute.inset-x-0.bottom-0 { padding: 1.5rem; }
.home-projects .group > div.absolute.inset-x-0.bottom-0 .eyebrow {
  font-size: clamp(0.78rem, 1.05vw, 0.9rem) !important;
}
.home-projects .group > div.absolute.inset-x-0.bottom-0 .display {
  font-size: clamp(1.55rem, 2.5vw, 2.1rem) !important;
  line-height: 1.05;
}

.home-projects-source,
.home-project-slider { display: none; }

@media (max-width: 767px) {
  .home-projects .mt-14.grid { display: none !important; }
  .home-project-slider { display: block; margin-top: 2.5rem; }
  .home-project-slider__track {
    display: flex;
    gap: 1rem;
    margin-inline: -1.25rem;
    padding-inline: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .home-project-slider__track::-webkit-scrollbar { display: none; }
  .home-project-slider__slide {
    position: relative;
    flex: 0 0 calc(100vw - 3.5rem);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    scroll-snap-align: center;
  }
  .home-project-slider__slide img { width: 100%; height: 100%; object-fit: cover; }
  .home-project-slider__caption {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    gap: .35rem;
    padding: 3.5rem 1.25rem 1.25rem;
    background: linear-gradient(to top, rgb(15 15 17 / 94%), transparent);
    color: #fff;
  }
  .home-project-slider__caption span {
    color: var(--primary);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .home-project-slider__caption strong {
    font-family: var(--font-display);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
  }
  .home-project-slider__dots {
    display: flex;
    justify-content: center;
    gap: .55rem;
    margin-top: 1.25rem;
  }
  .home-project-slider__dot {
    width: .5rem;
    height: .5rem;
    border: 1px solid var(--primary);
    border-radius: 50%;
    background: transparent;
  }
  .home-project-slider__dot.is-active { background: var(--primary); }
}

@media (max-width: 639px) {
  .sn-logo { height: 38px; }
  .hero-brandline .eyebrow.hidden { display: block !important; }
  .hero-brandline { align-items: flex-start; flex-direction: column; }

  footer [data-sn="site:f-2026-sn-autoservice-wormerve"] {
    display: none !important;
  }
}
