/* ==========================================================================
   Massagepraktijk Maddy
   Design: "warme steen" - basalt hotstones, zand en salie.
   Signature: kiezelvormen (organische border-radius), elk net iets anders.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Karla';
  src: url('/assets/fonts/karla-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Karla';
  src: url('/assets/fonts/karla-latin-ext.woff2') format('woff2');
  font-weight: 300 700;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Tokens ---------- */
:root {
  --sand: #ede4d3;
  --linen: #f7f2e9;
  --moss: #3e5145;
  --moss-deep: #33453a;
  --sage: #8fa085;
  --basalt: #2b2926;
  --honey: #c08a45;

  --ink: var(--basalt);
  --ink-soft: #5c5850;
  --line: rgba(62, 81, 69, 0.16);
  --line-soft: rgba(62, 81, 69, 0.09);

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --step-xl: clamp(2.3rem, 1.6rem + 2.8vw, 3.6rem);
  --step-l: clamp(1.85rem, 1.45rem + 1.7vw, 2.85rem);
  --step-m: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  --step-s: clamp(1.12rem, 1.05rem + 0.35vw, 1.3rem);
  --step-body: 1.0625rem;
  --step-label: 0.8125rem;

  --measure: 68ch;
  --container: 1140px;
  --gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);
  --radius: 14px;

  --shadow-soft: 0 1px 2px rgba(43, 41, 38, 0.04),
    0 10px 30px -12px rgba(43, 41, 38, 0.13);
  --shadow-lift: 0 2px 4px rgba(43, 41, 38, 0.05),
    0 20px 48px -16px rgba(43, 41, 38, 0.2);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Oude berichten bevatten lange hashtagreeksen; die mogen de layout niet oprekken. */
  overflow-wrap: break-word;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 60, 'WONK' 1, 'opsz' 90;
  font-weight: 500;
  line-height: 1.13;
  letter-spacing: -0.015em;
  color: var(--moss);
  text-wrap: balance;
}

h1 { font-size: var(--step-xl); }
h2 { font-size: var(--step-l); }
h3 { font-size: var(--step-m); }
h4 { font-size: var(--step-s); }

p, li { text-wrap: pretty; }

a { color: var(--moss); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { color: var(--honey); }

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 3px;
}

::selection { background: var(--sage); color: var(--linen); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.15rem, 0.7rem + 1.8vw, 2rem);
}

.measure { max-width: var(--measure); }
.measure > * + * { margin-top: 1.1em; }

.section { padding-block: var(--section-y); }
.section--linen { background: var(--linen); }
.section--cta { padding-top: clamp(1rem, 0.6rem + 1.2vw, 2.25rem); }
.section--moss { background: var(--moss); color: #e8e3d7; }
.section--moss h2,
.section--moss h3 { color: var(--linen); }
.section--moss a { color: var(--linen); }

.section__head { max-width: 62ch; margin-bottom: clamp(2rem, 1.4rem + 1.6vw, 3.25rem); }
.section__head > * + * { margin-top: 0.85rem; }

.eyebrow {
  font-size: var(--step-label);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  display: block;
}
.section--moss .eyebrow { color: #b9c7ae; }

.lede {
  font-size: clamp(1.1rem, 1.02rem + 0.4vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
}
.section--moss .lede { color: #cfd6c6; }

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

.skip-link {
  position: absolute; left: 0.5rem; top: -4rem; z-index: 200;
  background: var(--moss); color: var(--linen);
  padding: 0.7rem 1.1rem; border-radius: 8px; text-decoration: none;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 0.5rem; color: var(--linen); }

/* ---------- Signature: kiezels (pebbles) ---------- */
/* Elke kiezel krijgt een eigen organische vorm, zoals echte stenen. */
.pebble { overflow: hidden; border-radius: 56% 44% 47% 53% / 44% 40% 60% 56%; }
.pebble--a { border-radius: 61% 39% 44% 56% / 47% 36% 64% 53%; }
.pebble--b { border-radius: 43% 57% 62% 38% / 39% 55% 45% 61%; }
.pebble--c { border-radius: 52% 48% 36% 64% / 58% 43% 57% 42%; }
.pebble--d { border-radius: 65% 35% 55% 45% / 42% 62% 38% 58%; }
.pebble--e { border-radius: 38% 62% 48% 52% / 61% 41% 59% 39%; }

/* Gestapelde stenen als sectiescheiding */
.stones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.55rem;
  padding-block: clamp(2rem, 1.5rem + 1.5vw, 3rem);
}
.stones span {
  display: block;
  background: var(--sage);
  opacity: 0.55;
}
.stones span:nth-child(1) { width: 30px; height: 20px; border-radius: 58% 42% 45% 55% / 52% 48% 52% 48%; }
.stones span:nth-child(2) { width: 46px; height: 28px; border-radius: 46% 54% 60% 40% / 45% 52% 48% 55%; opacity: 0.75; }
.stones span:nth-child(3) { width: 24px; height: 16px; border-radius: 62% 38% 43% 57% / 55% 45% 55% 45%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease,
    border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) {
  .btn:hover { transform: none; }
}

.btn--primary { background: var(--moss); color: var(--linen); box-shadow: var(--shadow-soft); }
.btn--primary:hover { background: var(--moss-deep); color: var(--linen); box-shadow: var(--shadow-lift); }

.btn--ghost { background: transparent; color: var(--moss); border-color: var(--line); }
.btn--ghost:hover { background: rgba(62, 81, 69, 0.06); color: var(--moss); border-color: var(--moss); }

.btn--light { background: var(--linen); color: var(--moss); }
.btn--light:hover { background: #fff; color: var(--moss-deep); }

.btn--outline-light { background: transparent; color: var(--linen); border-color: rgba(247, 242, 233, 0.4); }
.btn--outline-light:hover { background: rgba(247, 242, 233, 0.12); color: var(--linen); border-color: var(--linen); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(237, 228, 211, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--moss);
  flex-shrink: 0;
}
.brand__mark {
  width: 34px; height: 26px;
  background: var(--sage);
  border-radius: 58% 42% 46% 54% / 50% 46% 54% 50%;
  flex-shrink: 0;
  position: relative;
}
.brand__mark::after {
  content: '';
  position: absolute; inset: 6px 8px 8px 6px;
  background: var(--moss);
  border-radius: 60% 40% 45% 55% / 52% 45% 55% 48%;
  opacity: 0.55;
}
.brand__name {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 70, 'WONK' 1, 'opsz' 40;
  font-size: 1.32rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav__list { display: flex; align-items: center; gap: 1.4rem; list-style: none; padding: 0; margin: 0; }
.nav__list a {
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  padding-block: 0.4rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav__list a:hover { color: var(--moss); border-bottom-color: var(--sage); }
.nav__list a[aria-current='page'] { color: var(--moss); font-weight: 600; border-bottom-color: var(--moss); }

.nav__cta { flex-shrink: 0; padding: 0.7rem 1.25rem; font-size: 0.95rem; }

/* Belknop in de header. Op mobiel is bellen de belangrijkste actie, dus die
   staat daar altijd zichtbaar naast het menu. Op desktop volstaat de CTA. */
.header-call {
  display: none;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  margin-left: auto;
  background: var(--moss);
  color: var(--linen);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.header-call:hover { background: var(--moss-deep); color: var(--linen); }
.header-call svg { flex-shrink: 0; }

@media (max-width: 940px) {
  .header-call { display: inline-flex; }
  .nav-toggle { margin-left: 0; }
}
@media (max-width: 400px) {
  .header-call { padding: 0.5rem 0.8rem; }
  .header-call span { display: none; }
  .header-call { padding: 0.55rem; }
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--moss);
  cursor: pointer;
}
.nav-toggle__bars { display: grid; gap: 3.5px; }
.nav-toggle__bars span { display: block; width: 17px; height: 1.8px; background: var(--moss); border-radius: 2px; }

@media (max-width: 940px) {
  .js .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--linen);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem clamp(1.15rem, 0.7rem + 1.8vw, 2rem) 1.75rem;
    box-shadow: var(--shadow-lift);
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    display: none;
  }
  .js .nav[data-open='true'] { display: flex; }
  .js .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .js .nav__list a {
    display: block;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 1.05rem;
  }
  .js .nav__list a:hover,
  .js .nav__list a[aria-current='page'] { border-bottom-color: var(--line-soft); }
  .js .nav__cta { margin-top: 1.15rem; width: 100%; }
  .js .nav-toggle { display: inline-flex; }
}

/* Smalle telefoons: merknaam kleiner zodat de menuknop past.
   De hoogte van de header blijft 76px, want het mobiele menu hangt daaraan. */
@media (max-width: 540px) {
  .site-header__inner { gap: 0.75rem; }
  .brand { min-width: 0; flex-shrink: 1; }
  .brand__mark { width: 28px; height: 22px; }
  .brand__name { font-size: 1.05rem; }
  .brand__name small { font-size: 0.62rem; }
  .nav-toggle { padding: 0.5rem 0.8rem; font-size: 0.86rem; }
}

/* Zeer smalle schermen (vanaf 320px): merknaam mag over twee regels. */
@media (max-width: 400px) {
  .brand__name { font-size: 0.98rem; line-height: 1.15; }
  .nav-toggle { padding: 0.5rem 0.7rem; }
  .nav-toggle__bars span { width: 15px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 2rem + 4vw, 5.5rem) var(--section-y); }
.hero::before {
  content: '';
  position: absolute;
  top: -22%; right: -12%;
  width: min(58vw, 640px);
  aspect-ratio: 1.25;
  background: radial-gradient(circle at 45% 45%, rgba(143, 160, 133, 0.34), rgba(143, 160, 133, 0) 68%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
}
.hero__copy > * + * { margin-top: 1.35rem; }
.hero__copy h1 { font-variation-settings: 'SOFT' 75, 'WONK' 1, 'opsz' 130; }
.hero__lede { font-size: clamp(1.12rem, 1rem + 0.5vw, 1.35rem); line-height: 1.6; color: var(--ink-soft); max-width: 46ch; }
.hero .btn-row { margin-top: 1.9rem; }

.hero__media { position: relative; }
.hero__media img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 1.75rem;
  background: var(--linen);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lift);
  max-width: 15rem;
}
.hero__badge strong {
  display: block;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  font-size: 1.05rem;
  color: var(--moss);
  line-height: 1.25;
}
.hero__badge span { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.45; display: block; margin-top: 0.15rem; }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-soft);
  list-style: none;
  padding-left: 0;
}
.hero__trust li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__trust li::before {
  content: '';
  width: 13px; height: 9px;
  background: var(--sage);
  border-radius: 58% 42% 46% 54% / 50% 46% 54% 50%;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 30rem; }
  .hero__media img { aspect-ratio: 4 / 3.4; }
  .hero__badge { left: auto; right: 0.75rem; bottom: -1rem; }
}

/* ---------- Cards ---------- */
.grid { display: grid; gap: clamp(1.4rem, 1rem + 1.4vw, 2.25rem); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr)); }

.card {
  display: flex;
  flex-direction: column;
  background: var(--linen);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.section--linen .card { background: #fffdf8; }
.card > * + * { margin-top: 0.75rem; }
.card__media {
  width: 88px; height: 68px;
  object-fit: cover;
  background: var(--sage);
  margin-bottom: 0.35rem;
}
.card h3 { font-size: var(--step-s); }
.card p { font-size: 0.98rem; color: var(--ink-soft); line-height: 1.62; }
.card__meta {
  margin-top: auto;
  padding-top: 1.1rem;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sage);
}
.card__link { margin-top: 1.1rem; font-weight: 600; font-size: 0.96rem; text-decoration: none; color: var(--moss); }
.card__link::after { content: ' \2192'; }
.card__link:hover { color: var(--honey); }

a.card { text-decoration: none; color: inherit; }
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
@media (prefers-reduced-motion: reduce) {
  a.card:hover { transform: none; }
}

/* ---------- Klachten / voor wie ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.65rem; list-style: none; padding: 0; }
.chips li {
  background: var(--linen);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.section--moss .chips li { background: rgba(247, 242, 233, 0.1); border-color: rgba(247, 242, 233, 0.22); color: #ddE2d4; }

/* ---------- Split (over) ---------- */
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 1.2rem + 3.5vw, 4rem);
  align-items: center;
}
.split--flip { grid-template-columns: 1.15fr 0.85fr; }
.split__media img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.split__body > * + * { margin-top: 1.15rem; }
@media (max-width: 800px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split__media { max-width: 24rem; }
}

/* ---------- Tarieven tabel ---------- */
.price-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); background: var(--linen); }
.price-table { width: 100%; border-collapse: collapse; min-width: 32rem; }
.price-table caption {
  text-align: left;
  padding: 1.4rem 1.5rem 0;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 60, 'WONK' 1;
  font-size: var(--step-m);
  color: var(--moss);
}
.price-table th, .price-table td { text-align: left; padding: 0.95rem 1.5rem; border-bottom: 1px solid var(--line-soft); }
.price-table thead th {
  font-size: var(--step-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}
.price-table tbody th { font-weight: 600; color: var(--ink); font-family: var(--font-body); font-size: 1rem; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-table tbody tr:last-child th, .price-table tbody tr:last-child td { border-bottom: 0; }
.price-table .price { font-weight: 700; color: var(--moss); }
.price-table .duration { color: var(--ink-soft); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq { max-width: 78ch; }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 55, 'WONK' 1, 'opsz' 30;
  font-size: var(--step-s);
  font-weight: 500;
  color: var(--moss);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 11px;
  margin-top: 0.42em;
  background: var(--sage);
  border-radius: 58% 42% 46% 54% / 50% 46% 54% 50%;
  transition: transform 0.22s ease, background-color 0.22s ease;
}
.faq__item[open] summary::after { transform: scale(1.35) rotate(18deg); background: var(--honey); }
@media (prefers-reduced-motion: reduce) {
  .faq__item summary::after { transition: none; }
}
.faq__answer { padding-bottom: 1.35rem; max-width: var(--measure); color: var(--ink-soft); }
.faq__answer > * + * { margin-top: 0.8rem; }

/* ---------- Afspraakblok / CTA ---------- */
.cta-block { border-radius: clamp(18px, 1.4vw, 26px); background: var(--moss); color: #e8e3d7; padding: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem); position: relative; overflow: hidden; }
.cta-block::after {
  content: '';
  position: absolute;
  right: -6%; bottom: -38%;
  width: min(42%, 340px); aspect-ratio: 1.3;
  background: rgba(143, 160, 133, 0.28);
  border-radius: 56% 44% 47% 53% / 44% 40% 60% 56%;
  pointer-events: none;
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { color: var(--linen); }
.cta-block p { color: #cfd6c6; max-width: 52ch; }
.cta-block > * + * { margin-top: 1.1rem; }
.cta-block .btn-row { margin-top: 1.9rem; }

.contact-lines { list-style: none; padding: 0; margin-top: 1.75rem; display: grid; gap: 0.55rem; font-size: 1.02rem; }
.contact-lines a { color: var(--linen); font-weight: 600; }
.contact-lines a:hover { color: var(--honey); }

/* ---------- Contact / NAP ---------- */
.nap { font-style: normal; line-height: 1.75; }
.nap strong { color: var(--moss); }
.nap a { font-weight: 600; }

.info-list { list-style: none; padding: 0; display: grid; gap: 0.9rem; }
.info-list dt, .info-list__label {
  font-size: var(--step-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
}

.hours { width: 100%; border-collapse: collapse; max-width: 30rem; }
.hours th, .hours td { text-align: left; padding: 0.6rem 0; border-bottom: 1px solid var(--line-soft); font-weight: 400; }
.hours th { font-weight: 600; color: var(--ink); width: 45%; }
.hours td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--sage); }

.map-link { display: block; width: 100%; text-decoration: none; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); background: var(--linen); max-width: 40rem; }
.map-link img { width: 100%; height: auto; }
.map-link span { display: block; padding: 0.9rem 1.25rem; font-weight: 600; color: var(--moss); font-size: 0.96rem; }
.map-link:hover span { color: var(--honey); }
.map-placeholder {
  display: grid; place-items: center;
  aspect-ratio: 16 / 9;
  background: repeating-linear-gradient(45deg, var(--sand), var(--sand) 12px, #e6dcc8 12px, #e6dcc8 24px);
  color: var(--ink-soft); font-size: 0.95rem; text-align: center; padding: 1rem;
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs { padding-top: 1.5rem; font-size: 0.88rem; color: var(--ink-soft); }
.breadcrumbs ol { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.breadcrumbs li + li::before { content: '/'; margin-right: 0.4rem; color: var(--sage); }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs [aria-current='page'] { color: var(--ink); }

/* ---------- Page header ---------- */
.page-head { padding-block: clamp(2.25rem, 1.6rem + 2.4vw, 3.75rem) clamp(1.5rem, 1rem + 2vw, 2.75rem); }
.page-head > * + * { margin-top: 1rem; }
.page-head .lede { max-width: 58ch; }

/* ---------- Prose (artikelen, voorwaarden, nieuws) ---------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: 1.15rem; }
.prose h2 { margin-top: 2.5rem; font-size: var(--step-m); }
.prose h3 { margin-top: 2rem; font-size: var(--step-s); }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: 0.5rem; }
.prose li::marker { color: var(--sage); }
.prose strong { color: var(--moss); }
.prose blockquote {
  border-left: 3px solid var(--sage);
  padding-left: 1.25rem;
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 70, 'WONK' 1;
  font-size: var(--step-s);
  color: var(--moss);
}
.prose img { border-radius: var(--radius); margin-block: 1.75rem; }
.prose figure { margin-block: 1.75rem; }
.prose figcaption { font-size: 0.88rem; color: var(--ink-soft); margin-top: 0.6rem; }

/* ---------- Nieuws ---------- */
.post-meta { font-size: 0.88rem; color: var(--sage); font-weight: 600; letter-spacing: 0.04em; }
.post-card__media { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-radius: 10px; margin-bottom: 0.4rem; }

/* ---------- Armbanden (shop catalogus) ---------- */
.product { text-align: left; }
.product__media {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--sand);
  margin-bottom: 0.9rem;
}
.product__media--empty { display: grid; place-items: center; color: var(--sage); font-size: 0.85rem; text-align: center; padding: 1rem; }
.product h3 { font-size: 1.08rem; }
.product__price { font-weight: 700; color: var(--moss); font-variant-numeric: tabular-nums; margin-top: 0.3rem; }

.notice {
  background: var(--linen);
  border-left: 3px solid var(--honey);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: var(--measure);
}
.notice strong { color: var(--moss); }
.notice > * + * { margin-top: 0.6rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--moss); color: #cfd6c6; padding-block: clamp(3rem, 2.2rem + 2.4vw, 4.5rem) 2rem; margin-top: auto; }
.site-footer a { color: #e8e3d7; text-decoration: none; }
.site-footer a:hover { color: var(--honey); text-decoration: underline; }
.site-footer h2, .site-footer h3 { color: var(--linen); font-size: 1.06rem; margin-bottom: 0.9rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: clamp(1.75rem, 1rem + 2.5vw, 3rem); }
.footer__grid ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; font-size: 0.96rem; }
.footer__brand .brand { color: var(--linen); margin-bottom: 1rem; }
.footer__brand .brand__name small { color: #a9b89e; }
.footer__brand p { font-size: 0.95rem; max-width: 32ch; }
.footer__legal {
  margin-top: clamp(2.25rem, 1.8rem + 1.5vw, 3.25rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 242, 233, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  font-size: 0.87rem;
}
.footer__legal ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; }
@media (max-width: 800px) {
  .footer__grid { grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }
}

/* ---------- Page shell ---------- */
body { display: flex; flex-direction: column; min-height: 100dvh; }
main { flex: 1; }
