/* =========================================================================
   De Haarchitect. Warm Organic design system
   Quiet luxury · ecologisch · vegan · ZEN
   ========================================================================= */

:root {
  /* Warm natural palette */
  --oat:        #EFE9DF;  /* page background */
  --sand:       #F6F2EA;  /* lighter surface */
  --paper:      #FBF9F4;  /* near-white cards */
  --clay:       #C9B8A3;  /* soft accent */
  --clay-deep:  #A8957B;  /* deeper accent · borders · eyebrows */
  --charcoal:   #242321;  /* primary text · dark sections */
  --ink-soft:   #57504593; /* never used as text, see --muted */
  --muted:      #5E574C;  /* secondary text (passes AA on oat/paper) */
  --line:       rgba(36, 35, 33, 0.12);
  --line-light: rgba(251, 249, 244, 0.16);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:    18px;
  --radius-lg: 30px;
  --radius-pill: 999px;

  --shadow-soft: 0 18px 50px -28px rgba(36, 35, 33, 0.35);
  --shadow-card: 0 1px 0 rgba(36, 35, 33, 0.04), 0 22px 48px -34px rgba(36, 35, 33, 0.45);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t: 280ms;
}

/* ----------------------------------------------------------------- Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;            /* voorkomt horizontaal scrollen door het off-canvas menu */
  background: var(--oat);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ------------------------------------------------------------- Typography */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p  { margin: 0 0 1.1em; }
.lead {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.65;
  color: var(--charcoal);
  font-weight: 300;
}
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.measure { max-width: 60ch; }
.measure-sm { max-width: 46ch; }

/* Eyebrow / small-caps label */
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--clay-deep);
  margin: 0 0 1.4rem;
}
.eyebrow--center { display: block; text-align: center; }

/* ---------------------------------------------------------------- Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.narrow { max-width: 760px; }
section { padding-block: clamp(4rem, 9vw, 8.5rem); }
.section-tight { padding-block: clamp(3rem, 6vw, 5rem); }
.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.center { text-align: center; }

/* Skip link (a11y) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--charcoal); color: var(--paper);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95em 1.9em;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.015em;
  border: 1px solid transparent;
  transition: background var(--t) var(--ease), color var(--t) var(--ease),
              border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.btn .arr { transition: transform var(--t) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-sm { padding: 0.7em 1.4em; font-size: 0.84rem; }
.btn-primary { background: var(--charcoal); color: var(--paper); }
.btn-primary:hover { background: #34322c; }
.btn-ghost { border-color: rgba(36,35,33,0.28); color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: var(--paper); border-color: var(--charcoal); }
.btn-light { background: var(--paper); color: var(--charcoal); }
.btn-light:hover { background: var(--clay); }
.btn-outline-light { border-color: var(--line-light); color: var(--paper); }
.btn-outline-light:hover { background: var(--paper); color: var(--charcoal); }

/* Inline text link with underline reveal */
.link {
  font-weight: 600; color: var(--charcoal);
  border-bottom: 1px solid var(--clay-deep);
  padding-bottom: 1px;
  transition: color var(--t) var(--ease), border-color var(--t) var(--ease);
}
.link:hover { color: var(--clay-deep); }

/* --------------------------------------------------------- Site header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(239, 233, 223, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--charcoal); line-height: 1;
}
.brand__dot { color: var(--clay-deep); }
.brand--light { color: var(--paper); }
.brand--light .brand__dot { color: var(--clay); }
.brand-logo { height: 30px; width: auto; display: block; }
.brand-logo--light { filter: brightness(0) invert(1); }  /* zwart logo -> wit op donkere voet */
@media (max-width: 880px) { .brand-logo { height: 26px; } }
.nav__links { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); }
.nav__links > a:not(.btn) {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal);
  position: relative; padding: 0.4rem 0;
  transition: color var(--t) var(--ease);
}
.nav__links > a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--clay-deep);
  transition: width var(--t) var(--ease);
}
.nav__links > a:not(.btn):hover::after,
.nav__links > a[aria-current="page"]::after { width: 100%; }
.nav__links > a[aria-current="page"] { color: var(--clay-deep); }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: transparent; position: relative;
}
.nav__toggle span {
  position: absolute; left: 50%; top: 50%; width: 18px; height: 1.5px;
  background: var(--charcoal); transform: translate(-50%, -50%);
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav__toggle span:first-child { transform: translate(-50%, -5px); }
.nav__toggle span:last-child  { transform: translate(-50%, 5px); }
.nav__toggle[aria-expanded="true"] span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 880px) {
  .nav__toggle { display: block; z-index: 60; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem 2.4rem;
    background: var(--oat); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform 360ms var(--ease);
    box-shadow: var(--shadow-soft);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links > a:not(.btn) { font-size: 1rem; }
  .nav__links .btn { margin-top: 0.6rem; }
}

/* ----------------------------------------------------------- Hero block */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 6rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero__media { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero__media .ph:first-child { grid-row: span 2; }
@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 520px; }
}

/* ------------------------------------------------- Image placeholders */
/* Swap: replace <figure class="ph" ...></figure> with
   <img src="img/your-photo.jpg" alt="beschrijving"> (keep rounded corners). */
.ph {
  position: relative; margin: 0;
  aspect-ratio: var(--ratio, 4 / 3);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(201,184,163,0.55), rgba(216,204,187,0.35)),
    var(--sand);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.ph::before {
  content: "";
  width: 46px; height: 46px; opacity: 0.5;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 24 24' fill='none' stroke='%23A8957B' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'><path d='M3 8.5A1.5 1.5 0 0 1 4.5 7h2L8 5h8l1.5 2h2A1.5 1.5 0 0 1 21 8.5V18a1.5 1.5 0 0 1-1.5 1.5h-15A1.5 1.5 0 0 1 3 18z'/><circle cx='12' cy='13' r='3.2'/></svg>") center / contain no-repeat;
}
.ph::after {
  content: "Foto · " attr(data-label);
  position: absolute; left: 14px; bottom: 14px;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep);
  background: rgba(251, 249, 244, 0.78);
  padding: 0.4em 0.85em; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.ph--round { border-radius: var(--radius-lg); }
.ph--circle { border-radius: 999px; aspect-ratio: 1; }

/* ------------------------------------------------------------- Surfaces */
.panel { background: var(--charcoal); color: var(--paper); }
.panel h1, .panel h2, .panel h3 { color: var(--paper); }
.panel .muted { color: rgba(251, 249, 244, 0.7); }
.surface-sand { background: var(--sand); }

/* ----------------------------------------------------------------- Cards */
.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease),
              border-color var(--t) var(--ease);
}
a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); border-color: rgba(168,149,123,0.45); }
.card__body { padding: clamp(1.4rem, 2.5vw, 2rem); display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__index {
  font-family: var(--serif); font-size: 1rem; color: var(--clay-deep);
  letter-spacing: 0.05em;
}
.card__more {
  margin-top: auto; padding-top: 0.8rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 0.5em;
}
.card .ph { border-radius: 0; }

/* Grid helpers */
.grid { display: grid; gap: clamp(1.2rem, 2.5vw, 1.8rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Split / feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.2rem; }
  .split--reverse > :first-child { order: 0; }
}

/* --------------------------------------------------------- Price list */
.pricelist { display: flex; flex-direction: column; gap: 0.2rem; }
.price-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem;
  align-items: baseline; padding: 1rem 0; border-bottom: 1px solid var(--line);
}
.price-row__name { font-family: var(--serif); font-size: 1.25rem; }
.price-row__desc { color: var(--muted); font-size: 0.92rem; }
.price-row__price { font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; }
.price-note { font-size: 0.86rem; color: var(--muted); margin-top: 0.4rem; }

/* ----------------------------------------------------------------- Forms */
.field { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.3rem; }
.field label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; color: var(--charcoal);
  background: var(--paper);
  border: 1px solid rgba(36,35,33,0.18);
  border-radius: var(--radius);
  padding: 0.85em 1.05em;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--clay-deep);
  box-shadow: 0 0 0 4px rgba(168,149,123,0.18);
}
.form-note { font-size: 0.84rem; color: var(--muted); }
.form-success {
  display: none; padding: 1rem 1.2rem; border-radius: var(--radius);
  background: rgba(168,149,123,0.16); border: 1px solid var(--clay);
  color: var(--charcoal); font-size: 0.92rem; margin-bottom: 1.2rem;
}
.form-success.show { display: block; }

/* ---------------------------------------------------- Contact details */
.contact-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.4rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ico {
  flex: none; width: 42px; height: 42px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); display: grid; place-items: center; color: var(--clay-deep);
}
.contact-list .ico svg { width: 18px; height: 18px; }
.contact-list dt { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.2rem; }

.hours { list-style: none; padding: 0; margin: 0; }
.hours li { display: flex; justify-content: space-between; gap: 1.5rem; padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.hours li.is-closed { color: var(--muted); }
.hours .day { font-weight: 600; }

.map-frame { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; line-height: 0; }
.map-frame iframe { width: 100%; height: 420px; border: 0; filter: grayscale(0.25) contrast(0.96); }

/* ------------------------------------------------------------- Webshop */
.product .ph { border-radius: 0; }
.product__cat { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep); font-weight: 700; }
.product__name { font-family: var(--serif); font-size: 1.3rem; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 0.8rem; }
.product__price { font-weight: 700; }

.badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--clay-deep); background: rgba(168,149,123,0.14);
  padding: 0.45em 0.9em; border-radius: var(--radius-pill);
}

/* Cart slide-over */
.cart-toggle {
  position: relative; display: inline-flex; align-items: center; gap: 0.5em;
  border: 1px solid rgba(36,35,33,0.28); border-radius: var(--radius-pill);
  padding: 0.6em 1.1em; background: transparent; color: var(--charcoal);
  font-size: 0.84rem; font-weight: 600;
  transition: background var(--t) var(--ease), color var(--t) var(--ease);
}
.cart-toggle:hover { background: var(--charcoal); color: var(--paper); }
.cart-count {
  min-width: 20px; height: 20px; padding: 0 5px; border-radius: 999px;
  background: var(--clay-deep); color: var(--paper);
  font-size: 0.7rem; font-weight: 700; display: grid; place-items: center;
}
.cart-overlay {
  position: fixed; inset: 0; background: rgba(36,35,33,0.4);
  opacity: 0; visibility: hidden; transition: opacity var(--t) var(--ease), visibility var(--t); z-index: 90;
}
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-panel {
  position: fixed; top: 0; right: 0; height: 100%; width: min(92vw, 400px);
  background: var(--oat); z-index: 100; transform: translateX(100%);
  transition: transform 360ms var(--ease); display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.cart-panel.open { transform: translateX(0); }
.cart-panel__head { display: flex; align-items: center; justify-content: space-between; padding: 1.6rem; border-bottom: 1px solid var(--line); }
.cart-panel__body { flex: 1; overflow-y: auto; padding: 1.6rem; }
.cart-panel__foot { padding: 1.6rem; border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 52px 1fr auto; gap: 0.9rem; align-items: center; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.cart-item .ph { aspect-ratio: 1; border-radius: 12px; }
.cart-item__name { font-family: var(--serif); font-size: 1.05rem; line-height: 1.2; }
.cart-item__remove { background: none; border: 0; color: var(--muted); font-size: 0.78rem; text-decoration: underline; }
.cart-empty { color: var(--muted); text-align: center; padding-top: 2rem; }
.icon-btn { background: none; border: 0; width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; color: var(--charcoal); }
.icon-btn:hover { background: rgba(36,35,33,0.06); }

/* ----------------------------------------------------------------- Footer */
.site-footer { background: var(--charcoal); color: rgba(251,249,244,0.82); margin-top: auto; }
.site-footer a { color: rgba(251,249,244,0.82); }
.footer__grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__tag { max-width: 34ch; color: rgba(251,249,244,0.66); margin: 1rem 0 1.6rem; }
.footer__h { font-family: var(--sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay); margin: 0 0 1.3rem; }
.footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__list a:hover { color: var(--paper); }
.footer__hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.3rem 0; border-bottom: 1px solid var(--line-light); font-size: 0.92rem; }
.footer__base {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between;
  padding-block: 1.6rem; border-top: 1px solid var(--line-light);
  font-size: 0.82rem; color: rgba(251,249,244,0.55);
}
.footer__base nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ------------------------------------------------------------- Motion */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid var(--clay-deep); outline-offset: 3px; border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* Page intro hero (interior pages) */
.page-hero { padding-block: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 3.5rem); }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--clay-deep); }
.stat-row { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3rem); }
.stat__num { font-family: var(--serif); font-size: clamp(2rem, 3vw, 2.6rem); color: var(--charcoal); line-height: 1; }
.stat__label { font-size: 0.8rem; letter-spacing: 0.06em; color: var(--muted); margin-top: 0.4rem; }

ul.ticks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.9rem; }
ul.ticks li { display: flex; gap: 0.8rem; align-items: flex-start; }
ul.ticks li::before {
  content: ""; flex: none; margin-top: 0.5em; width: 16px; height: 16px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8957B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center / contain no-repeat;
}

/* === batch-fix: layout utilities (vervangt de Tailwind CDN) === */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }

/* === batch-fix: prijslijst-kaart responsive (mobiel) === */
.pricelist-card { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 240px; }
.pricelist-card .ph { height: 100%; }
@media (max-width: 680px) {
  .pricelist-card { grid-template-columns: 1fr; }
  .pricelist-card .ph { height: auto; min-height: 200px; aspect-ratio: 16 / 10; }
}

/* === Aanbod: signatuurbehandelingen (niveau 1), ruim, met ademruimte === */
.signature { display: flex; flex-direction: column; gap: clamp(3.5rem, 8vw, 7rem); }
.signature .split { align-items: center; }
.price-tag {
  font-family: var(--serif); font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  color: var(--charcoal); line-height: 1; margin: 0.3rem 0 1.3rem;
}
.price-tag .from {
  display: block; font-family: var(--sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep); margin-bottom: 0.5rem;
}

/* === Aanbod: salonaanbod (niveau 2), compact en stiller === */
.salon-offer { max-width: 720px; }
.salon-row__extra { display: block; font-size: 0.84rem; color: var(--muted); margin-top: 0.2rem; }

/* === Detailpagina: het verloop (genummerde stappen) === */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.15rem; }
.steps li { display: flex; gap: 1rem; align-items: flex-start; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--serif); font-size: 1.15rem; color: var(--clay-deep);
  min-width: 1.8em; line-height: 1.45;
}

/* === Detailpagina: behandelingstiers === */
.tiers { display: flex; flex-direction: column; gap: 1.1rem; }
.tier {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.3rem);
}
.tier--signature { border-color: rgba(168,149,123,0.55); box-shadow: var(--shadow-card); }
.tier__badge {
  display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--clay-deep); margin-bottom: 0.7rem;
}
.tier__head {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 0.3rem 1.5rem;
}
.tier__head h3 { margin: 0; }
.tier__price { font-family: var(--serif); font-size: clamp(1.4rem, 2vw, 1.85rem); color: var(--charcoal); white-space: nowrap; }
.tier__price .from {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--clay-deep); margin-right: 0.5em;
}
.tier p { margin: 0.9rem 0 0; }

/* Inline prijslabel in hero */
.price-tag--hero { margin-top: 1.4rem; }

/* === Homepage: full-bleed gevel-hero === */
.hero-full {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: clamp(560px, 84vh, 860px);
  background-color: var(--charcoal);          /* nette fallback vóór de foto er is */
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  overflow: hidden;
}
.hero-full::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(36, 35, 33, 0.08) 0%,
    rgba(36, 35, 33, 0.02) 22%,
    rgba(36, 35, 33, 0.10) 44%,
    rgba(36, 35, 33, 0.60) 64%,
    rgba(36, 35, 33, 0.88) 82%,
    rgba(36, 35, 33, 0.96) 100%);
}
.hero-full > .container { position: relative; z-index: 2; width: 100%; padding-block: clamp(3rem, 9vw, 6rem); }
.hero-full .eyebrow { color: var(--clay); }
.hero-full h1 { color: var(--paper); }
.hero-full__sub { color: rgba(251, 249, 244, 0.88); font-weight: 300; }
.hero-ph-tag {
  position: absolute; top: 1rem; right: 1rem; z-index: 3;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clay); background: rgba(36, 35, 33, 0.6); border: 1px solid var(--line-light);
  padding: 0.45em 0.9em; border-radius: var(--radius-pill); backdrop-filter: blur(4px);
}
@media (max-width: 720px) {
  .hero-full { min-height: clamp(440px, 74vh, 600px); background-position: center top; }
  .hero-full > .container { padding-block: clamp(1.8rem, 6vw, 3rem); }
  .hero-full h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); line-height: 1.12; }
  .hero-full__sub { font-size: 1rem; line-height: 1.55; }
  .hero-br { display: none; }
}
.hero-full h1 { overflow-wrap: break-word; }

/* Hero: gradient boven de blur, onder de tekst */
.hero-full::after { z-index: 1; }
/* Zachte blur op het onderste deel (rustig tekstcanvas); bovenste derde blijft scherp */
.hero-full::before {
  content: ""; position: absolute; left: 0; right: 0; top: 33%; bottom: 0; z-index: 1;
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 14%);
  pointer-events: none;
}
/* Waarden-strip onderaan de hero */
.hero-full__values {
  display: block; margin: 2rem 0 0; color: var(--clay);
  font-family: var(--sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
}

/* === Onze aanpak: vier pijlers === */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: clamp(2.5rem, 5vw, 4rem);
}
.pillar { border-top: 1px solid var(--line); padding-top: 1rem; }
.pillar h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
.pillar p { margin: 0; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
@media (max-width: 760px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .pillars { grid-template-columns: 1fr; } }

/* === Reviews (social proof) === */
.reviews { background: var(--sand); }
.rating { display: flex; align-items: baseline; justify-content: center; gap: 0.35rem; margin-top: 0.6rem; }
.rating__score { font-family: var(--serif); font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--charcoal); line-height: 1; }
.rating__max { font-family: var(--serif); font-size: 1.4rem; color: var(--clay-deep); }
.rating__source { font-size: 0.84rem; color: var(--muted); margin-top: 0.6rem; }
.review-slider { display: grid; margin-top: clamp(2.5rem, 5vw, 4rem); }
.review { grid-area: 1 / 1; opacity: 0; transition: opacity 900ms var(--ease); pointer-events: none; }
.review.is-active { opacity: 1; pointer-events: auto; }
.review p {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  line-height: 1.35; color: var(--charcoal); margin: 0;
}
.review cite {
  display: block; margin-top: 1.4rem; font-style: normal; font-size: 0.74rem;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clay-deep);
}
@media (prefers-reduced-motion: reduce) { .review { transition: none; } }

/* === Webshop: kuur-kaarten === */
.shop-group + .shop-group { margin-top: clamp(2.8rem, 6vw, 4.5rem); }
.shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: clamp(1.4rem, 3vw, 2rem); }
@media (max-width: 640px) { .shop-grid { grid-template-columns: 1fr; } }
.shop-card {
  display: flex; flex-direction: column; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
}
.shop-card h3 { font-size: 1.25rem; margin: 0 0 0.5rem; }
.shop-card__desc { color: var(--muted); font-size: 0.95rem; line-height: 1.55; margin: 0; flex: 1; }
.shop-card__foot { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }
.shop-card__price { font-family: var(--serif); font-size: 1.7rem; color: var(--charcoal); line-height: 1.05; }
.shop-card__old { display: block; font-family: var(--sans); font-size: 0.8rem; color: var(--muted); margin-top: 0.25rem; }

/* ============================== ACCESSIBILITY / SEO ============================== */
/* Visueel verborgen, maar leesbaar voor Google en screenreaders (echte H1 voor SEO) */
.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;
}

/* Rustige welkomstregel bovenaan de hero (geen grote dubbele titel) */
.hero-full__kicker {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--paper);
  opacity: 0.92;
  margin: 0 0 0.7rem;
}

/* ============================== COOKIE BANNER ============================== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: clamp(0.8rem, 2vw, 1.5rem);
  transform: translateX(-50%) translateY(12px);
  z-index: 200;
  width: min(680px, calc(100% - 2rem));
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(36, 35, 33, 0.16);
  padding: clamp(1.1rem, 2.4vw, 1.6rem) clamp(1.2rem, 2.6vw, 1.8rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.in { opacity: 1; transform: translateX(-50%) translateY(0); }
.cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}
.cookie-banner__text a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner__actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }

/* ============================== GEBLOKKEERDE EXTERNE EMBEDS ============================== */
.consent-embed { position: relative; }
.consent-embed > iframe { display: none; }
.consent-embed.consented > iframe { display: block; }
.consent-embed.consented > .consent-block { display: none; }
.consent-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 152px;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--sand);
  border: 1px dashed var(--clay-deep);
  border-radius: var(--radius);
}
.consent-block p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.55; max-width: 44ch; }
.map-frame .consent-block { min-height: 320px; }

/* ============================== JURIDISCHE / LEGAL TEKST ============================== */
.legal h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.8rem);
  color: var(--charcoal);
  margin: 2.8rem 0 0.9rem;
  line-height: 1.25;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--charcoal);
  margin: 1.9rem 0 0.6rem;
}
.legal p { color: var(--muted); line-height: 1.72; margin: 0 0 1.05rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 1.25rem; color: var(--muted); line-height: 1.72; }
.legal li { margin: 0.35rem 0; }
.legal a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal .legal-block { color: var(--muted); line-height: 1.7; margin: 0 0 1.2rem; }

/* Korte privacy-verwijzing onder verstuur- en bestelknoppen */
.privacy-note { font-size: 0.82rem; color: var(--muted); line-height: 1.5; margin-top: 0.9rem; }
.privacy-note a { color: var(--clay-deep); text-decoration: underline; text-underline-offset: 2px; }

/* ============================== BOUTIQUE-ACCENT TUSSEN SECTIES ============================== */
/* Subtiele, gecentreerde gouden rule tussen de grote secties (editorial accent) */
main > section + section::before {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--clay-deep);
  margin: 0 auto clamp(2.2rem, 4vw, 3.2rem);
}

/* Sierlijke italic-accenten op sleutelwoorden in koppen */
h1 em, h2 em, h3 em { font-style: italic; font-weight: inherit; }

/* Mobiele herofoto: standaard verborgen (desktop toont de background-image hero) */
.hero-full__photo { display: none; }

/* ============================================================================
   MOBIELE OPTIMALISATIE  (max-width: 767px)
   Grijpt UITSLUITEND in op mobiele breedtes. Desktop (>= 768px) blijft
   volledig ongewijzigd: geen bestaande desktop-regel wordt hier aangepast.
   ============================================================================ */
@media (max-width: 767px) {

  /* --- Header: solide, leesbare balk. Het opheffen van backdrop-filter is
         essentieel: een ancestor met backdrop-filter maakt het position:fixed
         menu relatief aan de header (76px) i.p.v. het scherm, waardoor items
         werden afgeknipt. --- */
  .site-header {
    background: var(--oat);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* --- Mobiel menu: volledige schermhoogte, solide achtergrond,
         alle items zichtbaar en scrollbaar, ruime tap-doelen. --- */
  .nav__links {
    width: min(86vw, 360px);
    top: 0; right: 0; left: auto; bottom: 0;
    height: 100vh; height: 100dvh;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.2rem;
    padding: 5.75rem 2rem 2.4rem;
    background: var(--paper);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .nav__links > a:not(.btn) {
    display: flex; align-items: center;
    width: 100%; min-height: 48px;
    font-size: 1.05rem;
  }
  .nav__links .btn { margin-top: 1.1rem; min-height: 48px; }

  /* --- Hero (index): foto als banner bovenaan, tekst eronder op effen
         charcoal. Geen overlay-tekst meer, dus gradient en blur uit. --- */
  .hero-full {
    background-image: none !important;
    background-color: var(--charcoal);
    min-height: 0;
    display: block;
    overflow: visible;
  }
  .hero-full::before,
  .hero-full::after { display: none; }
  .hero-full__photo {
    display: block;
    width: 100%; height: auto;
    aspect-ratio: 2400 / 1079;
    object-fit: cover;
  }
  .hero-full > .container { padding-block: clamp(1.8rem, 7vw, 2.6rem); }

  /* --- Interieur-koppen: kleinere h1 + geforceerde regelafbrekingen
         neutraliseren, zodat lange koppen niet voorbij de schermrand lopen. --- */
  .page-hero h1 { font-size: clamp(2rem, 8.5vw, 2.9rem); }
  .page-hero h1 br { display: none; }

  /* --- Tap-doelen >= 44px voor kleine tekstlinks en kleine knoppen --- */
  .footer__base nav a,
  .footer__list a { display: inline-block; padding-block: 0.45rem; }
  .breadcrumb a { display: inline-block; padding: 0.3rem 0; }
  .btn-sm { padding: 0.85em 1.55em; }

  /* --- Iets compactere, consistente sectie-ritmiek op smal scherm --- */
  section { padding-block: clamp(3rem, 10vw, 5rem); }

  /* --- Lange links/woorden mogen nooit horizontale overflow veroorzaken --- */
  .legal a, .cookie-banner__text a { overflow-wrap: anywhere; }
}

/* ============================== CADEAUBON ============================== */
.giftcard-section { scroll-margin-top: clamp(80px, 11vh, 120px); }

.giftcard {
  position: relative;
  overflow: hidden;
  /* Donkere kern + glanzende gouden gradient-rand (border-box clipping) */
  border: 1px solid transparent;
  background:
    linear-gradient(150deg, #322e29 0%, var(--charcoal) 60%) padding-box,
    linear-gradient(135deg, var(--clay) 0%, var(--clay-deep) 32%, var(--charcoal) 60%, var(--clay-deep) 86%, var(--clay) 100%) border-box;
  border-radius: var(--radius-lg);
  color: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(239, 233, 223, 0.10),
    0 24px 60px rgba(36, 35, 33, 0.22);
  /* Subtiele 3D-kanteling op hover (vars worden door app.js gezet) */
  transform: perspective(1100px) rotateX(var(--gc-rx, 0deg)) rotateY(var(--gc-ry, 0deg)) translateY(var(--gc-lift, 0px));
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.45s ease;
}
.giftcard:hover {
  box-shadow:
    inset 0 1px 0 rgba(239, 233, 223, 0.16),
    0 36px 90px rgba(36, 35, 33, 0.32);
}
/* Zachte gouden gloed die op hover oplicht */
.giftcard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(120% 80% at 50% -10%, rgba(201, 184, 163, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s ease;
  z-index: 1;
}
.giftcard:hover::before { opacity: 1; }
/* Inhoud boven de gloed-laag */
.giftcard > * { position: relative; z-index: 2; }
/* Warme gouden satijnglans die traag over de kaart strijkt */
.giftcard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  /* Glans via background-position (alleen paint, geen layout/scroll-impact) */
  background-image: linear-gradient(105deg, transparent 42%, rgba(239, 233, 223, 0.14) 50%, transparent 58%);
  background-repeat: no-repeat;
  background-size: 280% 100%;
  background-position: 175% 0;
  animation: giftcard-shine 7.5s ease-in-out infinite;
}
.giftcard:hover::after {
  background-image: linear-gradient(105deg, transparent 38%, rgba(239, 233, 223, 0.22) 50%, transparent 62%);
}
@keyframes giftcard-shine {
  0%   { background-position: 175% 0; }
  55%  { background-position: -75% 0; }
  100% { background-position: -75% 0; }
}

.giftcard__logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.giftcard__label {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  /* Glossy gold-foil wordmerk */
  background: linear-gradient(118deg, var(--clay-deep) 0%, var(--oat) 46%, var(--clay) 78%, var(--clay-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.giftcard__from {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--clay);
}

/* Webshop: brede uitgelichte kaart (logo-paneel + tekst) */
.giftcard--feature {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.8rem, 4vw, 3rem);
}
.giftcard__face {
  text-align: center;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  border: 1px solid transparent;
  border-radius: var(--radius);
  background:
    rgba(0, 0, 0, 0.12) padding-box,
    linear-gradient(135deg, rgba(201, 184, 163, 0.5), rgba(168, 149, 123, 0.14) 50%, rgba(201, 184, 163, 0.42)) border-box;
}
.giftcard__body h2 { color: var(--paper); margin: 0; }
.giftcard__body p { color: rgba(251, 249, 244, 0.82); margin-top: 1rem; }
.giftcard__note { color: rgba(251, 249, 244, 0.6); font-size: 0.82rem; margin-top: 1.1rem; }

/* Homepage: compacte presentatie van de cadeaubon */
.giftcard--mini { padding: clamp(2.2rem, 5vw, 3.2rem); text-align: center; }

/* Mobiel: brede kaart stapelt netjes (na de basisregel, zodat deze wint) */
@media (max-width: 767px) {
  .giftcard--feature { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .giftcard::after { animation: none; }
}

/* ============================== PREMIUM DIEPTE (Fase 1) ============================== */
/* Reveal-zoom: beeld zoomt zacht in wanneer het in beeld scrollt (werkt overal). */
.zoom-frame { overflow: hidden; border-radius: var(--radius-lg); }
[data-reveal] .zoom-frame img {
  transform: scale(1.07);
  transition: transform 1.4s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}
[data-reveal].in .zoom-frame img { transform: scale(1); }

/* Micro-parallax: beeld beweegt licht trager dan de scroll (alleen desktop via JS). */
.parallax-frame { overflow: hidden; border-radius: var(--radius-lg); }
.parallax-frame img { display: block; width: 100%; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] .zoom-frame img,
  [data-reveal].in .zoom-frame img { transform: none; transition: none; }
}
