/* ==================================================================
   Dolphin Pedicure Praktijk — styles.css
   Restyling: warm, verfijnd, tijdloos, persoonlijk en professioneel
   ================================================================== */

/* ----------------------------------------------------------------
   Design tokens
   ---------------------------------------------------------------- */
:root {
  /* Kleurpalet — warm plum */
  --plum-950: #2e0730;
  --plum-900: #3e0b40;
  --plum-700: #631464;
  --plum-600: #7a1a7c;
  --plum-500: #8e3a8b;
  --plum-400: #a85ca6;
  --plum-200: #d4aed3;
  --plum-100: #eedeed;
  --plum-50:  #f7f1f7;
  --plum-25:  #fbf8fb;

  /* Tekst */
  --text-dark:    #262626;
  --text-body:    #363636;
  --text-muted:   #5e5e5e;
  --text-subtle:  #909090;

  /* Achtergronden */
  --bg-white:    #ffffff;
  --bg-page:     #e8e2e8;
  --bg-soft:     #f7f2f7;
  --bg-card:     #f9f5f9;

  /* Borders */
  --border-soft:   #e5dde5;
  --border-medium: #cdc0cd;
  --border-strong: #b8a8b8;

  /* Typografie */
  --font-serif: 'Cardo', Georgia, 'Times New Roman', serif;
  --font-sans:  'Segoe UI', -apple-system, BlinkMacSystemFont, system-ui, Arial, sans-serif;

  /* Border radius */
  --r-sm: 3px;
  --r-md: 5px;
  --r-lg: 8px;

  /* Schaduwen */
  --shadow-xs: 0 1px 2px rgba(40, 5, 42, 0.06);
  --shadow-sm: 0 1px 4px rgba(40, 5, 42, 0.09);
  --shadow-md: 0 3px 12px rgba(40, 5, 42, 0.13);

  /* Layout */
  --max-w: 1200px;
  --pad-x: 32px;
}

/* ----------------------------------------------------------------
   Reset & globals
   ---------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 0 var(--pad-x);
}

a {
  color: var(--plum-700);
  text-decoration: none;
}

a:hover {
  color: var(--plum-500);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ----------------------------------------------------------------
   Header
   ---------------------------------------------------------------- */
.site-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 18px var(--pad-x) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}

.brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  order: 1;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--plum-700);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  margin: 3px 0 0;
}

.header-contact {
  display: flex;
  gap: 8px;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
  order: 2;
}

.main-nav {
  background: var(--plum-700);
  flex: 0 0 calc(100% + 2 * var(--pad-x));
  order: 3;
  margin: 18px 0 0 calc(var(--pad-x) * -1);
}

.main-nav ul {
  list-style: none;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}

.main-nav li {
  display: block;
}

.main-nav a {
  display: block;
  padding: 11px 16px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.main-nav a:hover,
.main-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.13);
  color: #ffffff;
  text-decoration: none;
}

/* ----------------------------------------------------------------
   Buttons
   ---------------------------------------------------------------- */
.button {
  display: inline-block;
  padding: 9px 22px;
  background: var(--plum-700);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--plum-700);
  border-radius: var(--r-sm);
  cursor: pointer;
  line-height: 1.4;
}

.button:hover {
  background: var(--plum-600);
  border-color: var(--plum-600);
  color: #ffffff;
  text-decoration: none;
}

.button-secondary {
  display: inline-block;
  padding: 9px 22px;
  background: var(--bg-white);
  color: var(--plum-700);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--border-medium);
  border-radius: var(--r-sm);
  cursor: pointer;
  line-height: 1.4;
}

.button-secondary:hover {
  background: var(--plum-50);
  border-color: var(--plum-700);
  color: var(--plum-700);
  text-decoration: none;
}

.header-contact .button,
.header-contact .button-secondary {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  white-space: nowrap;
  font-size: 13px;
  padding: 8px 16px;
}

/* ----------------------------------------------------------------
   Main content
   ---------------------------------------------------------------- */
main.wrap {
  padding-top: 16px;
  padding-bottom: 40px;
}

.section {
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
}

.section:first-child {
  border-top: none;
  padding-top: 4px;
}

/* ----------------------------------------------------------------
   Typografie
   ---------------------------------------------------------------- */
h1 {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--plum-900);
  margin: 0 0 16px;
  line-height: 1.22;
  font-weight: 700;
}

h2 {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--plum-900);
  margin: 0 0 12px;
  line-height: 1.3;
  font-weight: 700;
}

h3 {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--plum-900);
  margin: 0 0 9px;
  line-height: 1.3;
  font-weight: 700;
}

p {
  margin: 0 0 15px;
}

.lead {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-muted);
}

/* Label boven h1 */
.label {
  display: block;
  font-size: 11px;
  color: var(--plum-500);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  margin: 0 0 10px;
}

/* Meta-row — credentials en CTA-rij */
.meta-row {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.meta-row span {
  display: inline-block;
  padding: 4px 12px;
  background: var(--plum-50);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   Hero grid
   ---------------------------------------------------------------- */
.hero-grid {
  display: flex;
  align-items: flex-start;
  gap: 44px;
  padding: 10px 0 20px;
}

.hero-copy {
  flex: 0 0 56%;
  max-width: 720px;
}

.hero-media {
  flex: 1;
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
}

/* ----------------------------------------------------------------
   Hero-copy — vertikaal ritme binnen de tekstkolom
   ---------------------------------------------------------------- */
.hero-copy .label {
  margin-bottom: 14px;
}

.hero-copy h1 {
  margin-bottom: 22px;
}

.hero-copy .lead {
  font-size: 17px;
  line-height: 1.84;
  margin-bottom: 22px;
}

.hero-copy p {
  margin-bottom: 20px;
}

.hero-copy .credentials-row {
  margin-top: 30px;
  margin-bottom: 10px;
}

.hero-copy .cta-row {
  margin-top: 26px;
}

.hero-copy .meta-row {
  margin-top: 24px;
  margin-bottom: 8px;
}

/* ----------------------------------------------------------------
   Trio-grid — drie panelen naast elkaar
   ---------------------------------------------------------------- */
.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.trio-grid .panel {
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   Overview grid (kaarten)
   ---------------------------------------------------------------- */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.overview-grid .card {
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-xs);
  margin-bottom: 0;
}

/* Contact pagina: 3 kaarten naast elkaar */
.contact-methods {
  grid-template-columns: repeat(3, 1fr);
}

/* ----------------------------------------------------------------
   Two-column layout
   ---------------------------------------------------------------- */
.two-column {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.two-column > * {
  flex: 1;
}

/* ----------------------------------------------------------------
   Lijsten
   ---------------------------------------------------------------- */
.usp-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}

.usp-list li {
  padding: 10px 0 10px 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.55;
}

.usp-list li:last-child {
  border-bottom: none;
}

.usp-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--plum-500);
  font-weight: 700;
  font-size: 13px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.check-list li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.55;
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--plum-500);
  font-weight: 700;
  font-size: 13px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.bullet-list li {
  padding: 4px 0 4px 14px;
  position: relative;
  font-size: 14px;
}

.bullet-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--plum-400);
}

/* Productlijst */
.product-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.product-list li {
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
}

.product-list li:last-child {
  border-bottom: none;
}

/* ----------------------------------------------------------------
   Notice
   ---------------------------------------------------------------- */
.notice {
  background: var(--plum-50);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--plum-500);
  padding: 14px 18px;
  margin: 16px 0;
  font-size: 14px;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

/* ----------------------------------------------------------------
   Panels, cards, service items, FAQ, product cards, contact cards
   ---------------------------------------------------------------- */
.panel,
.card,
.service-item,
.product-card,
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}

/* FAQ items: opgemaakt als nette open lijst, niet als losse kaarten */
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  border-radius: 0;
  padding: 18px 0;
  margin-bottom: 0;
  box-shadow: none;
}

.faq-item:first-of-type {
  padding-top: 0;
}

.faq-item:last-of-type {
  border-bottom: none;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

/* ----------------------------------------------------------------
   Prijstabel
   ---------------------------------------------------------------- */
.price-table-wrap {
  overflow: hidden;
  margin: 16px 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table th {
  background: var(--plum-700);
  color: #ffffff;
  padding: 13px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.price-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
  line-height: 1.5;
}

.price-table td:first-child {
  font-weight: 600;
  color: var(--plum-900);
}

.price-table td:last-child {
  white-space: nowrap;
  font-weight: 700;
  color: var(--plum-700);
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tbody tr:hover td {
  background: var(--plum-50);
}

/* ----------------------------------------------------------------
   Contact grid
   ---------------------------------------------------------------- */
.contact-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.contact-grid > * {
  flex: 1;
}

.contact-form-grid {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.form-card {
  flex: 0 0 58%;
}

.contact-form-grid .contact-card,
.contact-form-grid .map-embed {
  flex: 0 0 36%;
}

.form-grid {
  display: block;
}

/* ----------------------------------------------------------------
   Forms
   ---------------------------------------------------------------- */
label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin: 16px 0 5px;
  color: var(--text-dark);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid var(--border-medium);
  background: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-body);
  border-radius: var(--r-sm);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--plum-700);
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 20, 100, 0.10);
}

/* ----------------------------------------------------------------
   Breadcrumbs
   ---------------------------------------------------------------- */
.breadcrumbs {
  padding: 10px var(--pad-x);
  font-size: 12px;
  color: var(--text-subtle);
  border-bottom: 1px solid var(--border-soft);
  letter-spacing: 0.01em;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs li::after {
  content: ' › ';
  color: var(--border-medium);
}

.breadcrumbs li:last-child::after {
  content: '';
}

.breadcrumbs a {
  color: var(--plum-700);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ----------------------------------------------------------------
   Fotolijst
   ---------------------------------------------------------------- */
.photo-frame {
  background: transparent;
  border: none;
  padding: 0;
  border-radius: var(--r-md);
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}

.photo-frame figcaption {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: 8px;
  font-style: italic;
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   Kaartinbedding
   ---------------------------------------------------------------- */
.map-embed iframe {
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  display: block;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--plum-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 40px 0 28px;
}

.site-footer .wrap {
  background: transparent;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer h2,
.site-footer h3 {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.45);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin: 0 0 14px;
  padding-bottom: 0;
  border-bottom: none;
}

.footer-grid {
  display: flex;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.footer-grid section {
  flex: 1;
}

.footer-grid section + section {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 48px;
}

.hours-list,
.info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.hours-list li,
.info-list li {
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.footer-links li {
  display: inline;
}

.footer-links li::after {
  content: ' · ';
  color: rgba(255, 255, 255, 0.25);
}

.footer-links li:last-child::after {
  content: '';
}

.small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
  margin-top: 14px;
}

/* ----------------------------------------------------------------
   Toegankelijkheid
   ---------------------------------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1em;
  top: 1em;
  background: var(--plum-700);
  color: #fff;
  padding: 8px 12px;
  z-index: 9999;
  border-radius: var(--r-sm);
}

/* ----------------------------------------------------------------
   Info strip — dunne balk boven header met uren en telefoon
   ---------------------------------------------------------------- */
.info-strip {
  background: var(--plum-950);
  color: rgba(255, 255, 255, 0.60);
  font-size: 12px;
  padding: 6px var(--pad-x);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.info-strip a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 600;
}

.info-strip a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* ----------------------------------------------------------------
   Credentials row — trust-signalen gescheiden van CTA-knoppen
   ---------------------------------------------------------------- */
.credentials-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 6px;
}

.credentials-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: var(--plum-50);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.credentials-row span::before {
  content: '✓';
  color: var(--plum-500);
  font-size: 11px;
  font-weight: 700;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
}

/* ----------------------------------------------------------------
   USP sectie — luchtiger, 2-koloms grid
   ---------------------------------------------------------------- */
.usp-section {
  padding: 4px 0 0;
}

.usp-section h2 {
  margin-bottom: 20px;
}

.usp-list--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  margin: 0;
}

.usp-list--grid li {
  padding: 9px 0 9px 24px;
}

.usp-list--grid li:last-child {
  border-bottom: 1px solid var(--border-soft);
}

/* ----------------------------------------------------------------
   Contact kaart varianten — primair / gedimpt
   ---------------------------------------------------------------- */
.card--featured {
  background: var(--plum-50);
  border-color: var(--plum-200);
  position: relative;
}

.card--featured h2 {
  color: var(--plum-700);
}

.card--muted h2 {
  color: var(--text-muted);
  font-size: 18px;
}

.card--muted .button {
  background: transparent;
  color: var(--plum-700);
  border-color: var(--border-medium);
  font-weight: 500;
}

.card--muted .button:hover {
  background: var(--plum-50);
  border-color: var(--plum-700);
}

/* ----------------------------------------------------------------
   Openingstijden tabel — compact inline grid op contact
   ---------------------------------------------------------------- */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 4px 0 12px;
}

.hours-table tr {
  border-bottom: 1px solid var(--border-soft);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 6px 0;
  line-height: 1.4;
  vertical-align: top;
}

.hours-table td:first-child {
  width: 110px;
  color: var(--text-muted);
  font-size: 13px;
}

.hours-table td.closed {
  color: var(--text-subtle);
}

/* ----------------------------------------------------------------
   Trust card — kwalificaties op over-mij
   ---------------------------------------------------------------- */
.trust-card {
  background: var(--plum-50);
  border: 1px solid var(--plum-200);
  border-radius: var(--r-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-xs);
}

.trust-card h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.trust-card .check-list li {
  font-size: 14.5px;
  font-weight: 500;
}

.trust-card .cta-links {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}

/* ----------------------------------------------------------------
   Producten grid — side-by-side layout
   ---------------------------------------------------------------- */
.products-grid {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.products-grid .product-card {
  flex: 1;
}

.product-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--plum-500);
  margin-bottom: 6px;
}

.fungismart-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
}

.fungismart-note strong {
  display: block;
  color: var(--plum-900);
  font-size: 14px;
  margin-bottom: 4px;
}

/* ----------------------------------------------------------------
   Prijstabel — prijskolom typografie
   ---------------------------------------------------------------- */
.price-table td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.price-table th:last-child {
  text-align: right;
}

/* ----------------------------------------------------------------
   Desktop (≥ 901px) — ruimere schaal, grotere containers
   ---------------------------------------------------------------- */
@media (min-width: 901px) {
  :root {
    --pad-x: 40px;
  }

  .main-nav ul {
    justify-content: space-evenly;
  }

  .main-nav a {
    font-size: 15px;
    padding: 12px 22px;
  }

  main.wrap {
    padding-top: 20px;
    padding-bottom: 48px;
  }

  .section {
    padding: 28px 0;
  }

  .section:first-child {
    padding-top: 8px;
  }

  .hero-grid {
    gap: 64px;
    padding: 14px 0 28px;
  }

  .hero-copy {
    flex: 0 0 52%;
  }

  .hero-copy h1 {
    font-size: 33px;
    line-height: 1.2;
  }

  .two-column {
    gap: 48px;
  }

  .overview-grid {
    gap: 24px;
  }

  .products-grid {
    gap: 32px;
  }

  .footer-grid {
    gap: 56px;
  }

  .footer-grid section + section {
    padding-left: 56px;
  }

  /* Leesbreedte bewaken voor enkele volledige breedte tekst */
  .faq-item p {
    max-width: 72ch;
  }

  .usp-section > p {
    max-width: 68ch;
  }

  /* ----------------------------------------------------------------
     Subpagina's (met breadcrumbs) — desktop afwerking.
     Homepage heeft geen breadcrumbs en wordt niet geraakt.
     ---------------------------------------------------------------- */

  /* Minder top-padding wanneer breadcrumbs al ruimte toevoegen */
  .breadcrumbs + main.wrap {
    padding-top: 8px;
  }

  /* Sections op subpagina's: iets compacter */
  .breadcrumbs ~ main .section {
    padding: 22px 0;
  }

  /* Hero-sectie: hogere spec (2 klassen) voorkomt cascade-conflicten */
  .breadcrumbs ~ main .hero-grid.section {
    padding: 6px 0 10px;
  }

  /* Hero: tekstkolom iets breder zodat de afbeeldingkolom smaller wordt */
  .breadcrumbs ~ main .hero-copy {
    flex: 0 0 57%;
  }

  .breadcrumbs ~ main .hero-grid--media-lg .hero-copy {
    flex: 0 0 46%;
  }

  .breadcrumbs ~ main .hero-grid--media-lg .hero-media img {
    max-height: 520px;
  }

  /* Hero-afbeelding: hoogte begrenzen zodat de afbeelding de teksthoogte
     niet fors overstijgt en een leeg vlak onder de tekst creëert.
     object-fit: cover behoudt de uitsnede netjes. */
  .breadcrumbs ~ main .hero-media img {
    max-height: 440px;
    object-fit: cover;
    object-position: center top;
  }

  /* Homepage hero: portretfoto — hoogte iets boven teksthoogte */
  main.hero .hero-media img {
    max-height: 560px;
    object-fit: cover;
    object-position: center top;
  }
}

/* ----------------------------------------------------------------
   Responsive — tablet (≤ 900px)
   ---------------------------------------------------------------- */
@media (max-width: 900px) {
  :root {
    --pad-x: 24px;
  }

  .hero-grid {
    flex-direction: column;
    gap: 24px;
  }

  .hero-copy,
  .hero-media {
    flex: 0 0 100%;
    width: 100%;
  }

  .hero-media img {
    max-height: 380px;
    object-fit: cover;
    object-position: top center;
  }

  .main-nav a {
    padding: 10px 13px;
    font-size: 13px;
  }

  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }

  .trio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ----------------------------------------------------------------
   Responsive — mobiel (≤ 600px)
   ---------------------------------------------------------------- */
@media (max-width: 600px) {
  :root {
    --pad-x: 18px;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    height: 34px;
    width: auto;
  }

  .brand-title {
    font-size: 18px;
  }

  .header-contact {
    width: 100%;
  }

  .header-contact .button,
  .header-contact .button-secondary {
    flex: 1;
    text-align: center;
  }

  .main-nav ul {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }

  .main-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px var(--pad-x);
  }

  main.wrap {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .hero-grid,
  .two-column,
  .contact-form-grid,
  .contact-grid {
    flex-direction: column;
    gap: 20px;
  }

  .overview-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    gap: 24px;
  }

  .footer-grid section + section {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 19px;
  }

  .meta-row .button,
  .meta-row .button-secondary {
    flex: 1 1 auto;
    text-align: center;
  }

  .cta-row .button,
  .cta-row .button-secondary {
    flex: 1 1 auto;
    text-align: center;
  }

  .usp-list--grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .products-grid {
    flex-direction: column;
  }

  .info-strip {
    font-size: 11px;
    padding: 5px var(--pad-x);
  }

  .credentials-row span {
    font-size: 12px;
  }
}
