/* =========================================================
   LUNARIS CLINICS — 2026 — Rimowa-inspired editorial style
   ========================================================= */

:root {
  --ink:        #1a1410;
  --ink-soft:   #4a3f37;
  --brown:      #381b0d;
  --gold:       #c8a876;
  --gold-deep:  #a78656;
  --cream:      #f7f2ea;
  --cream-soft: #faf7f2;
  --paper:      #ffffff;
  --line:       rgba(26,20,16,0.12);
  --line-soft:  rgba(26,20,16,0.06);

  /* One clean sans for everything — Rimowa-style */
  --sans:  "Inter", system-ui, -apple-system, "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --serif: var(--sans); /* legacy alias — all type is now sans */

  --max:   1440px;
  --gutter: clamp(20px, 4vw, 56px);

  --t-hero:   clamp(54px, 9vw, 156px);
  --t-h1:     clamp(40px, 6vw, 92px);
  --t-h2:     clamp(28px, 3.5vw, 56px);
  --t-h3:     clamp(20px, 1.6vw, 26px);
  --t-body:   clamp(15px, 1.05vw, 17px);
  --t-small:  12px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-soft);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}
h1 { font-size: var(--t-h1); font-weight: 400; }
h2 { font-size: var(--t-h2); font-weight: 400; }
h3 { font-weight: 500; font-size: var(--t-h3); letter-spacing: -0.005em; line-height: 1.25; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lead {
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: -0.005em;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.section { padding: clamp(64px, 10vw, 160px) 0; }
.section--tight { padding: clamp(40px, 6vw, 96px) 0; }

.row     { display: grid; gap: clamp(24px, 3vw, 48px); }
.row-2   { grid-template-columns: 1fr 1fr; }
.row-3   { grid-template-columns: repeat(3, 1fr); }
.row-4   { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .row-2, .row-3, .row-4 { grid-template-columns: 1fr; }
  .row-3-sm-2 { grid-template-columns: 1fr 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
}
.btn:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--paper); border-color: var(--paper); }
.btn .arr { transition: transform .25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  padding: 18px 0;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  color: var(--cream);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.site-header__brand img { height: 62px; width: auto; }
@media (max-width: 900px) {
  .site-header__brand img { height: 50px; }
}
.site-header__brand .brand-logo--dark  { display: none; }
.site-header__brand .brand-logo--light { display: block; }
.site-header.is-scrolled .brand-logo--dark,
.site-header.is-light    .brand-logo--dark  { display: block; }
.site-header.is-scrolled .brand-logo--light,
.site-header.is-light    .brand-logo--light { display: none; }
.site-header__nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 38px);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-header__nav a { position: relative; padding: 6px 0; opacity: .9; }
.site-header__nav a:hover { opacity: 1; }
.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.site-header__nav a:hover::after,
.site-header__nav a.is-active::after { transform: scaleX(1); }
.site-header__cta { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.site-header__cta .btn { padding: 10px 18px; font-size: 12px; }

.site-header.is-scrolled,
.site-header.is-light {
  background: var(--cream-soft);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  padding: 10px 0;
}
.site-header.is-scrolled .site-header__brand img,
.site-header.is-light    .site-header__brand img { height: 40px; }
@media (max-width: 900px) {
  .site-header.is-scrolled .site-header__brand img,
  .site-header.is-light    .site-header__brand img { height: 32px; }
}

.menu-toggle {
  display: none;
  width: 36px; height: 36px;
  position: relative;
}
.menu-toggle span {
  position: absolute; left: 6px; right: 6px; height: 1px; background: currentColor;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 24px; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-header__nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 80px var(--gutter);
    background: var(--cream-soft);
    color: var(--ink);
    font-size: 22px;
    transform: translateY(-100%);
    transition: transform .4s var(--ease);
  }
  body.menu-open .site-header__nav { transform: translateY(0); }
  .menu-toggle { display: block; }
  .site-header__cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__media,
.hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.15) 35%, rgba(0,0,0,.55) 100%);
  z-index: -1;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(64px, 8vw, 120px);
  padding-top: 140px;
}
.hero__title {
  font-size: var(--t-hero);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 300;
  max-width: 14ch;
}
.hero__title em { font-style: normal; font-weight: 400; }
.hero__sub {
  margin-top: 24px;
  max-width: 52ch;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.5;
  opacity: .92;
}
.hero__actions {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: .85;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 36px;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scaleY(0.4); opacity: .4; }
  50%      { transform: scaleY(1); opacity: 1; }
}

/* page hero (smaller, for subpages) */
.page-hero {
  padding: 180px 0 80px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; }
.page-hero p { margin-top: 20px; max-width: 60ch; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--cream-soft);
  overflow: hidden;
}
.marquee__track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.marquee__track span { display: inline-flex; align-items: center; gap: 64px; }
.marquee__track span::after {
  content: "✶";
  color: var(--gold-deep);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Map section ---------- */
.locations {
  background: var(--cream);
  padding: clamp(64px, 10vw, 140px) 0;
}
.locations__head { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: end; margin-bottom: 56px; }
@media (max-width: 800px) { .locations__head { grid-template-columns: 1fr; } }
.locations__head h2 { max-width: 14ch; }
.locations__head p { color: var(--ink-soft); max-width: 50ch; }

.map-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
@media (max-width: 900px) { .map-wrap { grid-template-columns: 1fr; } }

.nl-map {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: clamp(20px, 3vw, 48px);
  min-height: 520px;
}
.nl-map svg { width: 100%; height: 100%; max-height: 720px; display: block; }

/* Province fills + boundaries (uit Wikimedia provincies-kaart) */
.nl-map .nl-provinces path {
  fill: #e0d4b5;            /* warm beige — een paar tinten donkerder dan cream */
  stroke: rgba(26, 20, 16, 0.20);
  stroke-width: 0.35;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition: fill .25s var(--ease);
}
.nl-map .nl-provinces path:hover { fill: #d6c8a3; }
/* Outer country outline — slightly stronger so the silhouette reads */
.nl-map .nl-country-outline {
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.6;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  pointer-events: none;
  opacity: 0.55;
}

/* Water labels */
.nl-map .nl-label {
  font-size: 4.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  fill: var(--gold-deep);
  opacity: 0.7;
  pointer-events: none;
}
.nl-map .nl-label--soft { opacity: 0.45; }

/* Google-style location pin */
.nl-map .pin { cursor: pointer; transform-origin: center; }
.nl-map .pin .pin-shape {
  fill: var(--brown);
  stroke: #f5ebd6;        /* witte/beige rand */
  stroke-width: 0.9;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 1.5px rgba(0,0,0,0.25));
  transition: fill .2s var(--ease), transform .2s var(--ease), stroke .2s var(--ease);
  transform-box: fill-box;
  transform-origin: 50% 100%;
}
.nl-map .pin .pin-hole {
  fill: #f5ebd6;
  pointer-events: none;
  transition: fill .2s var(--ease);
}
.nl-map .pin .halo {
  fill: var(--gold);
  opacity: 0;
  transition: opacity .25s var(--ease), r .25s var(--ease);
}
.nl-map .pin text {
  font-size: 4.4px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  fill: var(--ink);
  pointer-events: none;
}
.nl-map .pin:hover .pin-shape,
.nl-map .pin.is-active .pin-shape {
  fill: var(--gold-deep);
  transform: scale(1.18);
}
.nl-map .pin:hover .halo,
.nl-map .pin.is-active .halo { opacity: 0.4; r: 9; }

.loc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.loc-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: padding-left .25s var(--ease), background .25s var(--ease);
}
.loc-item:hover, .loc-item.is-active {
  background: var(--cream-soft);
  padding-left: 18px;
  padding-right: 18px;
  margin: 0 -18px;
}
.loc-item__num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--gold-deep);
}
.loc-item__name {
  font-family: var(--serif);
  font-size: 26px;
  letter-spacing: -0.01em;
}
.loc-item__addr {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 4px;
}
.loc-item__arr {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: grid; place-items: center;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.loc-item:hover .loc-item__arr,
.loc-item.is-active .loc-item__arr {
  background: var(--ink); color: var(--cream);
}

/* ---------- Editorial sections ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.editorial--reverse > :first-child { order: 2; }
@media (max-width: 800px) {
  .editorial { grid-template-columns: 1fr; }
  .editorial--reverse > :first-child { order: 0; }
}
.editorial__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--cream);
}
.editorial__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.editorial__media:hover img { transform: scale(1.04); }
.editorial__copy h2 { margin-bottom: 24px; max-width: 14ch; }
.editorial__copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.65; max-width: 50ch; }
.editorial__copy .btn,
.editorial__copy .link-arrow { margin-top: 28px; }

/* ---------- Treatment cards ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .tcards { grid-template-columns: 1fr; } }
.tcard {
  background: var(--cream-soft);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 320px;
  transition: background .25s var(--ease);
}
.tcard:hover { background: var(--paper); }
.tcard__num { font-family: var(--serif); font-size: 14px; color: var(--gold-deep); letter-spacing: 0.1em; }
.tcard h3 { font-family: var(--serif); font-size: clamp(24px, 2vw, 32px); font-weight: 400; letter-spacing: -0.01em; line-height: 1.1; }
.tcard p { color: var(--ink-soft); font-size: 14px; line-height: 1.6; flex: 1; }
.tcard .link-arrow { font-size: 12px; }

/* ---------- Stats / values strip ---------- */
.values {
  background: var(--ink);
  color: var(--cream);
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 800px) { .values__grid { grid-template-columns: 1fr 1fr; } }
.values__item {
  padding: clamp(36px, 5vw, 72px) clamp(20px, 3vw, 36px);
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.values__item:last-child { border-right: none; }
.values__num {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--gold);
}
.values__label {
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: .8;
  max-width: 24ch;
}

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(20px, 2vw, 32px);
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  display: flex;
  flex-direction: column;
}
.team-card__photo {
  aspect-ratio: 4/5;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 18px;
  position: relative;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo--placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-soft) 100%);
  color: var(--gold-deep);
  font-family: var(--serif);
  font-size: 64px;
  letter-spacing: -0.02em;
}
.team-card__name { font-family: var(--serif); font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; }
.team-card__role { margin-top: 6px; font-size: 14px; color: var(--ink-soft); }
.team-card__big { margin-top: 8px; font-size: 12px; color: var(--ink-soft); letter-spacing: 0.05em; text-transform: uppercase; }
.team-card__links { margin-top: 12px; display: flex; gap: 10px; align-items: center; }
.team-card__links a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-soft); letter-spacing: 0.04em;
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.team-card__links a:hover { color: var(--ink); border-color: var(--gold); background: var(--cream-soft); }
.team-card__links svg { flex-shrink: 0; }

/* ---------- Pricing list ---------- */
.pricing { border-top: 1px solid var(--line); }
.pricing__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.pricing__name { font-family: var(--serif); font-size: clamp(20px, 1.6vw, 26px); }
.pricing__desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; max-width: 60ch; }
.pricing__price { font-family: var(--serif); font-size: clamp(20px, 1.6vw, 24px); color: var(--brown); white-space: nowrap; }

/* ---------- FAQ ---------- */
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(18px, 1.4vw, 24px);
  letter-spacing: -0.005em;
  color: var(--ink);
}
.faq__icon {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  left: 0; right: 0; top: 50%;
  height: 1px;
  transition: transform .3s var(--ease);
}
.faq__icon::after { transform: rotate(90deg); }
.faq__item.is-open .faq__icon::after { transform: rotate(0deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq__item.is-open .faq__a { max-height: 600px; }
.faq__a > div {
  padding: 0 0 24px;
  color: var(--ink-soft);
  max-width: 70ch;
  font-size: 16px;
  line-height: 1.65;
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field textarea, .field select {
  font: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  color: var(--ink);
  outline: none;
  transition: border-color .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }

/* Honeypot — hide visually + from a11y, keep tab-order out */
.field--honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Checkbox row (consent) */
.field--check {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.field--check input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px; flex: 0 0 18px;
  margin-top: 2px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--paper);
  cursor: pointer;
  position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field--check input[type="checkbox"]:hover { border-color: var(--gold); }
.field--check input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.field--check input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px; top: 1px;
  width: 5px; height: 10px;
  border: solid var(--cream);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}
.field--check label { font-size: 13px; letter-spacing: normal; text-transform: none; color: var(--ink-soft); }
.field--check label a { border-bottom: 1px solid var(--ink-soft); padding-bottom: 1px; }
.field--check label a:hover { color: var(--ink); border-color: var(--ink); }

/* Form states */
.form-status { font-size: 13px; margin-top: 4px; line-height: 1.55; }
.form-status--info  { color: var(--ink-soft); }
.form-status--ok    { color: var(--gold-deep); }
.form-status--err   { color: #b8462b; }
.btn[disabled], .btn[aria-busy="true"] { opacity: .55; cursor: not-allowed; pointer-events: none; }
.btn[aria-busy="true"] .arr { animation: arrSpin 0.9s linear infinite; }
@keyframes arrSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* Success card replaces form */
.form-success {
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold-deep);
  border-radius: 4px;
}
.form-success h4 {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.form-success p { margin: 0; color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }
.form-success .ms-tip { margin-top: 14px; font-size: 13px; opacity: .8; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(60px, 8vw, 100px) 0 32px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: .7;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { font-size: 14px; opacity: .85; transition: opacity .2s var(--ease); }
.site-footer a:hover { opacity: 1; }
.site-footer__brand img { height: 32px; }
.site-footer__brand p { margin-top: 14px; opacity: .7; max-width: 36ch; font-size: 14px; line-height: 1.6; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 12px; opacity: .6;
}
.site-footer__support {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  color: rgba(247,242,234,0.55);
}
.site-footer__support a {
  color: var(--gold);
  border-bottom: 1px solid rgba(200,168,118,0.4);
  padding-bottom: 1px;
  opacity: 1;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.site-footer__support a:hover { color: var(--cream); border-color: var(--gold); }
.site-footer__support .arr { font-size: 11px; opacity: .8; }

/* ---------- Luna chatbot ---------- */
.luna-toggle {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 80;
  width: 64px; height: 64px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.luna-toggle:hover { transform: translateY(-2px); background: var(--brown); }
.luna-toggle svg { width: 26px; height: 26px; }
.luna-toggle::after {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  opacity: .4;
  animation: lunaRing 2.5s ease-in-out infinite;
}
@keyframes lunaRing {
  0%, 100% { transform: scale(1); opacity: .4; }
  50%      { transform: scale(1.12); opacity: 0; }
}

.luna-panel {
  position: fixed;
  right: 24px; bottom: 100px;
  z-index: 81;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  transform-origin: bottom right;
  transform: scale(.92) translateY(8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.luna-panel.is-open { transform: scale(1) translateY(0); opacity: 1; pointer-events: auto; }

.luna-head {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--cream);
  border-radius: 12px 12px 0 0;
  display: flex; align-items: center; gap: 12px;
}
.luna-avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  font-weight: 500;
}
.luna-meta { flex: 1; }
.luna-meta strong { font-family: var(--serif); font-weight: 400; font-size: 17px; letter-spacing: -0.005em; }
.luna-meta span { display: block; font-size: 11px; opacity: .7; margin-top: 2px; }
.luna-meta span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: #6ad36a;
  border-radius: 999px;
  margin-right: 6px;
  vertical-align: middle;
}
.luna-close { color: var(--cream); width: 32px; height: 32px; border-radius: 999px; opacity: .7; transition: opacity .2s var(--ease); }
.luna-close:hover { opacity: 1; }

.luna-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
}
.luna-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  animation: lunaPop .3s var(--ease);
}
@keyframes lunaPop {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.luna-msg--bot {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.luna-msg--user {
  background: var(--ink);
  color: var(--cream);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.luna-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
}
.luna-typing span {
  width: 6px; height: 6px;
  background: var(--ink-soft);
  border-radius: 999px;
  animation: dot 1.2s ease-in-out infinite;
}
.luna-typing span:nth-child(2) { animation-delay: .15s; }
.luna-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes dot {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40%           { transform: scale(1);  opacity: 1; }
}

.luna-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 20px 8px;
}
.luna-suggestions button {
  font-size: 12px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.luna-suggestions button:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.luna-input {
  border-top: 1px solid var(--line);
  padding: 12px 14px;
  display: flex; gap: 8px; align-items: center;
}
.luna-input input {
  flex: 1;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 14px;
  outline: none;
}
.luna-input button {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream);
  display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.luna-input button:hover { background: var(--brown); }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Utilities ---------- */
.center  { text-align: center; }
.muted   { color: var(--ink-soft); }
.divider { height: 1px; background: var(--line); margin: clamp(40px, 6vw, 80px) 0; }
.kicker  { font-family: var(--serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.15; letter-spacing: -0.01em; max-width: 22ch; }

/* ---------- Site-menu overlay (alle pagina's) ---------- */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.site-menu[hidden] { display: none; }
body.site-menu-open .site-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
body.site-menu-open { overflow: hidden; }

.site-menu__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 56px) var(--gutter) clamp(40px, 6vw, 80px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.site-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: clamp(28px, 4vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: clamp(28px, 4vw, 48px);
}
.site-menu__close {
  width: 44px; height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  display: grid; place-items: center;
  color: var(--cream);
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.site-menu__close:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.site-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}
@media (max-width: 900px) { .site-menu__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .site-menu__grid { grid-template-columns: 1fr; } }

.site-menu__card {
  background: var(--ink);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 180px;
  transition: background .25s var(--ease), padding-left .25s var(--ease);
  position: relative;
}
.site-menu__card:hover {
  background: var(--brown);
  padding-left: calc(clamp(24px, 3vw, 36px) + 6px);
}
.site-menu__card .num {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.site-menu__card .title {
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 4px;
}
.site-menu__card .desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(247,242,234,0.65);
  margin-top: auto;
}
.site-menu__card::after {
  content: "→";
  position: absolute;
  right: clamp(20px, 2.5vw, 28px);
  bottom: clamp(20px, 2.5vw, 28px);
  font-size: 18px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.site-menu__card:hover::after { opacity: 1; transform: translateX(0); }

.site-menu__foot {
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(247,242,234,0.55);
}
.site-menu__foot a { border-bottom: 1px solid rgba(247,242,234,0.55); padding-bottom: 1px; }

/* ---------- Social media row in footer ---------- */
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}
.site-footer__social-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-right: 8px;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.85;
  transition: opacity .2s var(--ease), gap .2s var(--ease);
}
.site-footer__social a:hover { opacity: 1; gap: 10px; }
.site-footer__social a svg { display: block; }

.site-menu__foot-social { display: inline-flex; gap: 14px; align-items: center; }
.site-menu__foot-social a { color: rgba(247,242,234,0.65); transition: color .2s var(--ease); }
.site-menu__foot-social a:hover { color: var(--gold); }


/* ---------- Language dropdown (NL / EN) ---------- */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease);
  opacity: 0.85;
}
.lang-dropdown__toggle:hover { opacity: 1; background: rgba(255,255,255,0.08); }
.site-header.is-scrolled .lang-dropdown__toggle:hover,
.site-header.is-light    .lang-dropdown__toggle:hover { background: rgba(26,20,16,0.05); }
.lang-dropdown__toggle .flag {
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
  display: block;
}
.lang-dropdown__label {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-dropdown__chev {
  transition: transform .2s var(--ease);
}
.lang-dropdown.is-open .lang-dropdown__chev { transform: rotate(180deg); }

.lang-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 70;
}
.lang-dropdown.is-open .lang-dropdown__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown__menu li { margin: 0; padding: 0; }
.lang-dropdown__menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  transition: background .15s var(--ease);
}
.lang-dropdown__menu a:hover { background: var(--cream); }
.lang-dropdown__menu a.is-active {
  background: var(--cream-soft);
  font-weight: 500;
}
.lang-dropdown__menu a.is-active::after {
  content: "✓";
  margin-left: auto;
  color: var(--gold-deep);
  font-size: 12px;
}
.lang-dropdown__menu .flag {
  flex-shrink: 0;
  border-radius: 2px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .lang-dropdown__toggle { padding: 6px 8px; }
  .lang-dropdown__label { display: none; }
}

/* ---------- Promo modal popup (10% korting) ---------- */
.promo-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26,20,16,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.promo-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.promo-overlay[hidden] { display: none; }

.promo-card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 48px);
  max-width: 480px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.96);
  transition: transform .4s var(--ease);
  text-align: center;
}
.promo-overlay.is-open .promo-card { transform: translateY(0) scale(1); }

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  margin-bottom: 20px;
}
.promo-badge::before {
  content: "✦";
  color: var(--gold-deep);
}

.promo-card h3 {
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--ink);
}
.promo-card .highlight {
  color: var(--brown);
  font-weight: 500;
}
.promo-card p {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.promo-card .promo-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  opacity: 0.8;
  margin-top: 16px;
  margin-bottom: 0;
}

.promo-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px; height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--ink-soft);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.promo-close:hover {
  background: var(--cream);
  color: var(--ink);
}
