/* ════════════════════════════════════════════════════════════════
   Connys Retouchehuisje — www.connysretouchehuisje.be
   Premium blush design system · Cormorant Garamond + Caveat
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Palet — warm blush met diep bruinzwart */
  --blush-050: #fdf9f6;
  --blush-100: #f9f1ec;
  --blush-150: #f5e9e2;
  --blush-200: #f0ded5;
  --rose-300: #e3bdb6;
  --rose-400: #d3a09a;
  --rose-500: #c48782;
  --rose-600: #b06f6b;
  --rose-700: #96575a;
  --ink-900: #26201b;
  --ink-800: #332b25;
  --ink-600: #5c5049;
  --ink-500: #776a61;
  --paper: #fffdfb;
  --line: #e9d8d0;
  --night: #211a16;
  --night-soft: #2c241f;

  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-script: "Caveat", cursive;
  /* Functionele sans: cijfers en micro-labels — Cormorant-cijfers zijn te fijn voor data */
  --font-sans: "Jost", "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 6px;
  --shadow-soft: 0 18px 45px -18px rgba(84, 52, 46, 0.28);
  --shadow-card: 0 10px 30px -14px rgba(84, 52, 46, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--blush-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--rose-300); color: var(--ink-900); }

/* ── Typografie ─────────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }

.script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--rose-600);
  line-height: 1.25;
}

.kicker {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: 1rem;
}

/* Data-tekst: nummers (BTW, KBO, datums, prijzen) in de functionele sans */
.data {
  font-family: var(--font-sans);
  font-size: 0.9rem !important;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.75;
}

.lead { font-size: 1.25rem; color: var(--ink-600); }

/* ── Layout helpers ─────────────────────────────────────────── */

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

.section { padding-block: clamp(4rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--paper { background: var(--paper); }
.section--blush { background: var(--blush-100); }

/* ── Knoppen ────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.95rem 1.9rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn .arrow { transition: transform 0.25s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn--rose {
  background: var(--rose-500);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}
.btn--rose:hover { background: var(--rose-600); }

.btn--ghost {
  border-color: var(--rose-400);
  color: var(--rose-700);
  background: transparent;
}
.btn--ghost:hover { background: var(--rose-500); border-color: var(--rose-500); color: var(--paper); }

.btn--light {
  background: var(--paper);
  color: var(--ink-900);
}
.btn--light:hover { background: var(--blush-150); }

/* ── Header ─────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 249, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.9rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark { width: 52px; height: 52px; flex-shrink: 0; }

.brand__name {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1;
}

.brand__tag {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 0.35rem;
}

.site-nav { display: flex; align-items: center; gap: 1.9rem; }

.site-nav a {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--ink-800);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover { color: var(--rose-600); }
.site-nav a[aria-current="page"] { color: var(--rose-600); border-color: var(--rose-500); }

.header-script {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--rose-500);
  text-align: right;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink-900);
  margin-block: 6px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ── Hero ───────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  color: var(--paper);
  background:
    url("/assets/img/handwerk.jpg") center 30% / cover no-repeat,
    linear-gradient(120deg, #4c3833, #86625a);
}

/* Achtergrondvideo: ligt óp de fallback-achtergrond, ónder de overlay en de tekst */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(38, 26, 22, 0.78) 0%, rgba(38, 26, 22, 0.45) 42%, rgba(38, 26, 22, 0.12) 75%);
}

.hero > .container, .hero__aside { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
}

/* Op gsm en tablet tonen we de foto in plaats van de video */
@media (max-width: 860px) {
  .hero__video { display: none; }
  .hero { min-height: min(72vh, 620px); }
}

.hero__content { max-width: 640px; padding-block: clamp(4rem, 9vw, 7rem); }

.hero .kicker { color: var(--rose-300); }

.hero h1 { color: var(--paper); }

.hero .lead { color: rgba(255, 250, 247, 0.88); margin-block: 1.4rem 2.2rem; max-width: 34rem; }

.hero__aside {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  top: clamp(2rem, 8vw, 5rem);
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: rgba(255, 244, 240, 0.92);
  transform: rotate(4deg);
  text-align: center;
  line-height: 1.2;
}

/* ── USP-strip ──────────────────────────────────────────────── */

.usp-strip { background: var(--paper); border-block: 1px solid var(--line); }

.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.usp {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.6rem 1.4rem;
  border-right: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink-800);
}

.usp:last-child { border-right: none; }

.usp svg { width: 34px; height: 34px; flex-shrink: 0; color: var(--rose-500); }

/* ── Split (Over ons) ───────────────────────────────────────── */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split--reverse { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); }

.photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--blush-200);
}

.photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.photo--tall img { aspect-ratio: 3 / 4; }

.side-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--rose-500);
  line-height: 1.25;
}

/* ── Dienstenkaarten ────────────────────────────────────────── */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.6rem;
  flex-wrap: wrap;
}

.section-head .note {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-500);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.6rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }

/* Bewust staand formaat (zo stond het er ook vóór de aspect-fix en dat oogde beter);
   height:auto verslaat de presentational hint van het height-attribuut */
.service-card__img {
  aspect-ratio: 9 / 16;
  object-fit: cover;
  width: 100%;
  height: auto;
  transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.service-card:hover .service-card__img { transform: scale(1.06); }

.service-card__label {
  position: relative;
  z-index: 1;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.3rem;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ink-900);
  transition: color 0.3s ease;
}

.service-card:hover .service-card__label { color: var(--rose-600); }

.service-card__label .arrow { color: var(--rose-500); transition: transform 0.25s ease; }
.service-card:hover .service-card__label .arrow { transform: translateX(5px); }

/* ── Contentpagina's ────────────────────────────────────────── */

.page-hero {
  background: linear-gradient(180deg, var(--blush-150), var(--blush-100));
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3rem, 7vw, 5rem);
}

.page-hero .lead { margin-top: 1.2rem; max-width: 44rem; }

.breadcrumbs {
  font-size: 0.92rem;
  color: var(--ink-500);
  margin-bottom: 1.4rem;
}

.breadcrumbs a:hover { color: var(--rose-600); }
.breadcrumbs span[aria-current] { color: var(--rose-600); }

.prose { max-width: 46rem; }
.prose h2 { margin-block: 2.4rem 0.9rem; }
.prose h3 { margin-block: 1.8rem 0.6rem; }
.prose p { margin-bottom: 1.1rem; }
.prose ul { margin: 0 0 1.2rem 1.3rem; }
.prose li { margin-bottom: 0.45rem; }
.prose strong { color: var(--ink-900); }

.checklist { list-style: none; margin-left: 0 !important; }

.checklist li {
  position: relative;
  padding-left: 2rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 50%;
  background: var(--rose-300);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5 10 18 20 6"/></svg>') center / contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><path d="M4 12.5 10 18 20 6"/></svg>') center / contain no-repeat;
  background: var(--rose-600);
}

/* ── Prijstabellen ──────────────────────────────────────────── */

.price-block { margin-bottom: 3rem; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.price-table th, .price-table td {
  text-align: left;
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}

.price-table th {
  background: var(--blush-150);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.price-table tr:last-child td { border-bottom: none; }

.price-table td:last-child {
  text-align: right;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--rose-700);
  white-space: nowrap;
}

.price-note { font-size: 0.95rem; color: var(--ink-500); margin-top: 0.8rem; }

/* ── Prijslijst-tabs ────────────────────────────────────────── */

.tabs { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-bottom: 2.6rem; }

.tab-btn {
  padding: 0.75rem 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--rose-400);
  background: transparent;
  color: var(--rose-700);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.tab-btn:hover { border-color: var(--rose-500); }

.tab-btn[aria-selected="true"] {
  background: var(--rose-500);
  border-color: var(--rose-500);
  color: var(--paper);
  box-shadow: var(--shadow-card);
}

/* ── FAQ-accordeon ──────────────────────────────────────────── */

.faq-item {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--rose-500);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item .faq-body { padding: 0 1.5rem 1.3rem; color: var(--ink-600); }

/* ── CTA-band ───────────────────────────────────────────────── */

.cta-band {
  background:
    linear-gradient(100deg, rgba(150, 87, 90, 0.94), rgba(196, 135, 130, 0.88)),
    url("/assets/img/stitch-pattern.svg") center / 420px repeat;
  color: var(--paper);
  text-align: center;
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}

.cta-band h2 { color: var(--paper); }

.cta-band .script { color: rgba(255, 246, 242, 0.95); font-size: 1.8rem; }

.cta-band p { max-width: 38rem; margin: 1rem auto 2rem; color: rgba(255, 249, 246, 0.9); }

/* ── Contact ────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.info-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem 2.2rem;
  margin-bottom: 1.5rem;
}

.info-card h3 { margin-bottom: 1rem; }

.info-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  color: var(--ink-600);
}

.info-row svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--rose-500); margin-top: 0.2rem; }

.info-row a:hover { color: var(--rose-600); }

/* Label/waarde-rijen in kaarten — lichte variant van de footer-dl */
.info-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  row-gap: 0.45rem;
  align-items: baseline;
}

.info-dl dt {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  white-space: nowrap;
}

.info-dl dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: var(--ink-800);
}

.info-dl dd a:hover { color: var(--rose-600); }

.map-frame {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  filter: saturate(0.8) hue-rotate(-8deg);
}

/* ── Footer ─────────────────────────────────────────────────── */

.site-footer {
  position: relative;
  background: var(--night) url("/assets/img/footer-sfeer.jpg") center bottom / cover no-repeat;
  color: rgba(250, 243, 239, 0.78);
  font-size: 1.06rem;
}

/* Zachte sluier bovenaan zodat de kolomtekst altijd wint van de decoratie */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(33, 26, 22, 0.72) 0%, rgba(33, 26, 22, 0.28) 55%, rgba(33, 26, 22, 0) 100%);
  pointer-events: none;
}

.site-footer > .container { position: relative; }

@media (max-width: 900px) {
  /* Gestapelde mobiele footer wordt te hoog voor het 3:1-beeld — dan gewoon effen */
  .site-footer { background-image: none; }
  .site-footer::before { display: none; }
}

.site-footer a { transition: color 0.2s ease; }
.site-footer a:hover { color: #fff; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.35fr 1fr;
  gap: 3rem;
  padding-block: 3.8rem 3.2rem;
}

.site-footer .brand__name { color: #faf3ef; }
.site-footer .brand__tag { color: rgba(250, 243, 239, 0.5); }

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-300);
  line-height: 1;
  margin-bottom: 1.4rem;
}

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.6rem; }

/* Snel naar: twee nette kolommen zodat de kolom even hoog eindigt als de rest */
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.6rem;
  row-gap: 0.7rem;
}

.footer-links li { margin: 0; }

/* Sociale kanalen onder de linkerkolom */
.social-row { display: flex; gap: 0.9rem; margin-top: 1.5rem; justify-content: flex-end; }

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(227, 189, 182, 0.45);
  border-radius: 50%;
  color: var(--rose-300);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.social-btn svg { width: 20px; height: 20px; }

.social-btn:hover { background: var(--rose-500); border-color: var(--rose-500); color: #fff; }

.footer-script {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--rose-300);
  line-height: 1.3;
  text-align: right;
  transform: rotate(-2deg);
}

.footer-meta { font-size: 0.88rem; line-height: 1.7; color: rgba(250, 243, 239, 0.55); }

/* Contactregels met icoon, in de stijl van de contactkaarten */
.footer-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 0.8rem;
}

.footer-row svg { width: 21px; height: 21px; flex-shrink: 0; color: var(--rose-300); margin-top: 0.25rem; }

/* Bedrijfsgegevens als gestructureerde label/waarde-rijen */
.footer-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  row-gap: 0.45rem;
  align-items: baseline;
}

.footer-dl dt {
  font-family: var(--font-sans);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 243, 239, 0.5);
  white-space: nowrap;
}

.footer-dl dd {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  color: rgba(250, 243, 239, 0.85);
}

.site-footer__bottom {
  padding-block: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(250, 243, 239, 0.5);
}

.site-footer__bottom .credit a {
  display: inline-block;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.site-footer__bottom .credit a:hover { opacity: 1; transform: scale(1.04); }
.site-footer__bottom .credit img { display: block; width: 118px; height: 39px; }

/* ── Reveal-animatie ────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsief ─────────────────────────────────────────────── */

@media (max-width: 1080px) {
  .header-script { display: none; }
}

@media (max-width: 1020px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.6rem; }
}

@media (max-width: 900px) {
  .split, .split--reverse, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .photo { order: -1; }
  .hero__aside { display: none; }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--blush-050);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .site-nav.is-open { max-height: 420px; }

  .site-nav a {
    padding: 0.95rem 1.6rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a[aria-current="page"] { border-bottom-color: var(--line); background: var(--blush-150); }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 640px) {
  body { font-size: 17px; }

  /* Footer volledig gecentreerd op mobiel; desktop behoudt de kolomopmaak */
  .site-footer__grid { grid-template-columns: 1fr; text-align: center; }
  .site-footer .brand { justify-content: center; }
  .site-footer .footer-script { text-align: center; }
  .social-row { justify-content: center; }
  .footer-row { justify-content: center; }
  .footer-dl, .footer-links { width: max-content; max-width: 100%; margin-inline: auto; text-align: left; }
  .usp { border-right: none; border-bottom: 1px solid var(--line); padding-block: 1.1rem; }
  .usp:last-child { border-bottom: none; }
  .price-table th, .price-table td { padding: 0.7rem 0.9rem; }
}

/* Richtprijs-bedrag op dienstpagina's */
.price-num {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
