/* Wintermoods at Volù — stylesheet.
   Tokens are lifted verbatim from the Claude Design handoff (colour, type, spacing, shape).
   The brand is flat: no shadow, no gradient, no blur. Depth comes from a photo, an 80% black
   scrim, or a change of surface colour. The one rounded thing is the pill button; the one
   decorative shape is the arch (a photo with a semicircular top and a flat bottom). */

/* ===== Tokens ============================================================ */
:root {
  /* Base palette — verbatim from the Canva source */
  --wm-green-900: #1f4438;
  --wm-green-800: #26503f;   /* derived: raised panels on green, keeps 8:1 with bone */
  --wm-green-700: #365c4f;
  --wm-bone:      #e7e8e8;
  --wm-cream:     #ebe8e1;
  --wm-sand:      #d4bd96;
  --wm-stone:     #a8a397;
  --wm-mist:      #bdb9ae;   /* derived: muted text on green at ≥4.5:1 (stone is 4.1:1) */
  --wm-gold:      #d2c020;   /* signature only — never UI, never text */
  --wm-white:     #ffffff;

  /* Semantic surfaces */
  --surface-brand:        var(--wm-green-900);
  --surface-brand-raised: var(--wm-green-800);
  --surface-light:        var(--wm-bone);
  --scrim-photo:          rgb(0 0 0 / .8);
  --scrim-hero:           rgb(0 0 0 / .62);   /* lighter: the vaulted room is the selling point */
  --scrim-band:           rgb(0 0 0 / .84);   /* heavier: a form has to stay readable on top */

  /* Semantic text */
  --text-on-brand:        var(--wm-bone);
  --text-on-brand-muted:  var(--wm-mist);
  --text-on-brand-heading:var(--wm-cream);
  --text-on-light:        var(--wm-green-900);
  --heading-on-light:     var(--wm-green-700);

  /* Lines & actions */
  --rule:                 var(--wm-sand);
  --action-bg:            var(--wm-bone);
  --action-fg:            var(--wm-green-900);
  --action-bg-hover:      var(--wm-cream);
  --action-bg-active:     var(--wm-sand);

  /* Families */
  --font-display: "Bodoni Moda", Didot, "Times New Roman", serif;
  --font-script:  "Caveat Brush", "Segoe Script", cursive;
  --font-heading: "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Barlow Semi Condensed", "Arial Narrow", sans-serif;

  /* Weights & rhythm */
  --fw-body: 400; --fw-body-light: 300; --fw-heading: 700; --fw-display: 400;
  /* The source system stacks caps at .87. Headings here carry É and à, whose accents sit
     well above the cap line: on a heading's FIRST line the padding in .page-title catches
     them, but on any later line they land on the line above, and only ~1.3 clears that.
     So the tight stack stays the default and the generator marks the few headings that
     need the roomy value with .page-title--roomy. */
  --lh-page-title: .92; --lh-page-title-roomy: 1.3;
  --lh-body: 1.4; --lh-body-tight: 1.25;
  --ls-body: .066em; --ls-kicker: .28em; --ls-hero: -.043em; --ls-logo: -.025em;

  /* Fluid type — the 1920px source values are the upper bound of each clamp */
  --fs-hero:        clamp(52px, 11vw, 184px);
  --fs-hero-script: clamp(34px, 7.2vw, 124px);
  --fs-page-title:  clamp(36px, 5.4vw, 92px);
  --fs-section:     clamp(26px, 2.8vw, 49px);
  --fs-price:       clamp(38px, 4.2vw, 72px);
  --fs-lead:        clamp(17px, 1.5vw, 24px);
  --fs-body:        clamp(16px, 1.25vw, 21px);
  --fs-small:       clamp(14px, 1vw, 17px);
  --fs-kicker:      clamp(12px, 1.1vw, 16px);

  /* Space */
  --space-2: 8px; --space-3: 12px; --space-4: 16px; --space-5: 24px;
  --space-6: 32px; --space-7: 48px; --space-8: 64px; --space-9: 80px;
  --page-margin: 5.625%;            /* the 108px margin of a 1920px page */
  --section-pad: clamp(64px, 8.5vw, 148px);
  --measure: 62ch;

  /* Shape & motion */
  --shape-arch: 999px 999px 0 0;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --dur: 200ms; --dur-slow: 400ms;
}

/* ===== Reset ============================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--surface-brand);
  color: var(--text-on-brand);
  font-family: var(--font-body);
  font-weight: var(--fw-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
/* Load-bearing: .field and .form set display, which otherwise beats the browser's own
   [hidden] rule and leaves JS-hidden blocks on screen. */
[hidden] { display: none !important; }
a { color: inherit; }
button { font: inherit; letter-spacing: inherit; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul { padding: 0; list-style: none; }
:focus-visible { outline: 3px solid var(--wm-sand); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.skip-link {
  position: absolute; left: var(--space-4); top: -120px; z-index: 100;
  padding: 12px 20px; background: var(--wm-bone); color: var(--wm-green-900);
  font-family: var(--font-heading); font-weight: var(--fw-heading); text-transform: uppercase;
  letter-spacing: .12em; text-decoration: none; transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--space-4); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ===== Layout primitives ================================================= */
.section { padding: var(--section-pad) var(--page-margin); }
.section--light { background: var(--surface-light); color: var(--text-on-light); }
.section--brand { background: var(--surface-brand); color: var(--text-on-brand); }
.section--brand + .section--brand { border-top: 1px solid rgb(212 189 150 / .3); }
.wrap { max-width: 1560px; margin-inline: auto; }
.wrap--narrow { max-width: 1120px; }

.kicker {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-kicker); letter-spacing: var(--ls-kicker);
  text-transform: uppercase; color: var(--wm-sand); margin: 0;
}
.section--light .kicker { color: var(--heading-on-light); }

.page-title {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-page-title); line-height: var(--lh-page-title);
  letter-spacing: 0; text-transform: uppercase; text-wrap: balance;
  padding-top: .1em;   /* room for a first-line accent, which the tight leading would clip */
  margin: clamp(16px, 2vw, 24px) 0 0;
}
.page-title--roomy { line-height: var(--lh-page-title-roomy); }
.section--light .page-title { color: var(--heading-on-light); }
.section--brand .page-title { color: var(--text-on-brand-heading); }

.rule { height: 2px; background: var(--rule); border: 0; margin: clamp(26px, 3vw, 44px) 0; }
.lead { font-size: var(--fs-lead); line-height: var(--lh-body); text-wrap: pretty; max-width: var(--measure); }
.prose p + p { margin-top: var(--space-5); }
.prose { text-wrap: pretty; max-width: var(--measure); }
.muted { color: var(--text-on-brand-muted); }
.section--light .muted { color: var(--wm-green-700); }

/* ===== Button ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 56px; padding: 0 clamp(24px, 2.4vw, 40px);
  border: 2px solid var(--action-bg); border-radius: var(--radius-pill);
  background: var(--action-bg); color: var(--action-fg);
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: clamp(14px, 1.1vw, 17px); letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: var(--action-bg-hover); border-color: var(--action-bg-hover); }
.btn:active { background: var(--action-bg-active); border-color: var(--action-bg-active); }
.btn--ghost { background: transparent; color: var(--wm-bone); border-color: var(--wm-bone); }
.btn--ghost:hover { background: rgb(231 232 232 / .14); border-color: var(--wm-bone); color: var(--wm-bone); }
.btn--on-light { background: var(--wm-green-700); border-color: var(--wm-green-700); color: var(--wm-bone); }
.btn--on-light:hover { background: var(--wm-green-900); border-color: var(--wm-green-900); }
.btn[disabled] { opacity: .55; cursor: progress; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-5); margin-top: clamp(28px, 3.4vw, 48px); }
.btn-row--center { justify-content: center; }

/* ===== Header / navigation =============================================== */
.site-header {
  position: relative; z-index: 20;
  gap: var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-5); padding: clamp(20px, 2.6vw, 32px) var(--page-margin);
}
.wordmark {
  font-family: var(--font-display); font-weight: var(--fw-display);
  font-size: clamp(21px, 2vw, 28px); letter-spacing: var(--ls-logo);
  color: var(--wm-bone); text-decoration: none; white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 40px); }
.nav a {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: 15px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--wm-bone); text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav a:hover { color: var(--wm-sand); }
.nav-toggle { display: none; }

.lang { display: flex; gap: 2px; align-items: center; }
.lang a {
  font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: 13px;
  letter-spacing: .1em; text-transform: uppercase; text-decoration: none;
  color: var(--wm-mist); padding: 6px 8px; transition: color var(--dur) var(--ease);
}
.lang a:hover { color: var(--wm-bone); }
.lang a[aria-current="true"] { color: var(--wm-sand); }
.lang span[aria-hidden] { color: var(--wm-stone); }

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 10px;
    background: none; border: 2px solid var(--wm-bone); border-radius: var(--radius-pill);
    color: var(--wm-bone); padding: 9px 18px; cursor: pointer;
    font-family: var(--font-heading); font-weight: var(--fw-heading);
    font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  }
  .nav {
    position: absolute; inset: 100% var(--page-margin) auto; z-index: 30;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--wm-green-900); border: 1px solid var(--wm-sand); padding: var(--space-3);
  }
  .nav[hidden] { display: none; }
  .nav a { padding: 14px var(--space-4); }
  .nav a + a { border-top: 1px solid rgb(212 189 150 / .35); }
}

/* ===== Hero ============================================================== */
.site-header--overlay { position: absolute; inset: 0 0 auto; }
.hero { position: relative; display: flex; flex-direction: column; min-height: min(94vh, 940px); isolation: isolate;
  padding-top: clamp(76px, 8vw, 108px); }   /* room for the overlaid header */
.hero__media, .band__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img, .band__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::before, .band::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--scrim-photo);
}
.hero::before { background: var(--scrim-hero); }
.band::before { background: var(--scrim-band); }
.hero__media img { object-position: center 58%; }
.hero__body {
  flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center; padding: clamp(40px, 7vw, 120px) var(--page-margin) clamp(48px, 7vw, 108px);
}
.hero__title {
  font-family: var(--font-display); font-weight: var(--fw-display);
  font-size: var(--fs-hero); line-height: .78; letter-spacing: var(--ls-hero);
  color: var(--wm-bone); margin: clamp(18px, 3vw, 44px) 0 0;
}
.hero__script {
  font-family: var(--font-script); font-size: var(--fs-hero-script); line-height: 1.06;
  color: var(--wm-sand); margin-top: clamp(-12px, -1.2vw, -2px);
}
.hero__lead { max-width: 46ch; margin: clamp(24px, 3.4vw, 48px) auto 0; }
.hero__scroll {
  display: block; text-align: center; padding-bottom: clamp(20px, 3vw, 40px);
  font-family: var(--font-heading); font-size: 12px; letter-spacing: var(--ls-kicker);
  text-transform: uppercase; color: var(--wm-mist); text-decoration: none;
}
.hero__scroll:hover { color: var(--wm-bone); }

/* ===== Arch photo ======================================================== */
.arch { border-radius: var(--shape-arch); overflow: hidden; background: var(--wm-green-800); }
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch-pair { display: flex; gap: clamp(16px, 2vw, 32px); align-items: flex-end; justify-content: center; }
.arch-pair .arch { flex: 1 1 0; min-width: 0; }
.arch-pair .arch:first-child { aspect-ratio: 5 / 9; }
.arch-pair .arch:last-child  { aspect-ratio: 5 / 8; }

.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 5vw, 88px); align-items: center;
}

/* ===== Formula cards ===================================================== */
.formulas {
  display: grid; gap: clamp(20px, 2.2vw, 32px);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  margin-top: clamp(36px, 4vw, 64px);
}
.formula {
  display: flex; flex-direction: column;
  background: var(--surface-brand-raised); border: 1px solid rgb(212 189 150 / .45);
  padding: clamp(26px, 2.6vw, 44px);
}
.section--light .formula { background: var(--wm-green-900); color: var(--wm-bone); border-color: transparent; }
.formula__photo {
  aspect-ratio: 4 / 3; margin: calc(-1 * clamp(26px, 2.6vw, 44px)) calc(-1 * clamp(26px, 2.6vw, 44px)) clamp(22px, 2.4vw, 32px);
  border-radius: 0; overflow: hidden;
}
.formula__photo img { width: 100%; height: 100%; object-fit: cover; }
.formula__name {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-section); line-height: 1.15; text-transform: uppercase;
  color: var(--text-on-brand-heading); margin: var(--space-3) 0 0; text-wrap: balance;
  min-height: 2.1em;   /* two lines, so the prices of all three cards share a baseline */
}
.formula__price {
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
  margin: clamp(16px, 1.8vw, 24px) 0 0;
  font-family: var(--font-display); font-size: var(--fs-price); line-height: 1;
  color: var(--wm-sand);
}
/* The didone euro sign reads as a C at display size — set the symbol in the body face. */
.formula__price .cur { font-family: var(--font-body); font-size: .62em; font-weight: var(--fw-body-light); }
.formula__price small {
  font-family: var(--font-body); font-size: var(--fs-small); letter-spacing: var(--ls-body);
  color: var(--text-on-brand-muted);
}
.formula__blurb { margin: var(--space-5) 0 0; color: var(--wm-bone); }
.formula__list, .perks { margin: clamp(20px, 2.2vw, 30px) 0 0; border-top: 2px solid var(--rule); }
.perks { margin-top: 0; }
.formula__list li, .perks li { padding: var(--space-4) 0; border-bottom: 1px solid rgb(212 189 150 / .4); }
.formula__list li:last-child, .perks li:last-child { border-bottom: 0; }
.formula__list strong, .perks strong {
  display: block; font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-small); letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-on-brand-heading);
}
.formula__list span, .perks span { display: block; margin-top: 4px; font-size: var(--fs-small); color: var(--text-on-brand-muted); }
.perks strong { font-size: var(--fs-body); }
.perks span { font-size: var(--fs-body); }
.formula__cta { margin-top: auto; padding-top: clamp(24px, 2.6vw, 34px); display: flex; }
.formula__cta .btn { width: 100%; }
.formula__note { margin-top: clamp(28px, 3vw, 44px); font-size: var(--fs-small); }

/* ===== Open dates ======================================================== */
.dates { display: grid; gap: clamp(14px, 1.6vw, 22px); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: clamp(32px, 4vw, 56px); }
.date {
  border: 1px solid var(--wm-bone); padding: clamp(20px, 2.2vw, 30px); text-align: center;
}
.date__day {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: clamp(22px, 2.2vw, 34px); text-transform: uppercase; color: var(--text-on-brand-heading);
}
.date__time { font-size: var(--fs-small); color: var(--text-on-brand-muted); margin-top: 6px; }

/* ===== Steps (verloop van de avond) ====================================== */
.steps { display: grid; gap: clamp(24px, 3vw, 44px); grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); margin-top: clamp(36px, 4vw, 64px); }
.step__arch { aspect-ratio: 1 / 1; border-radius: var(--shape-arch); border: 1px solid var(--rule); display: grid; place-items: center; }
.step__num { font-family: var(--font-display); font-size: clamp(40px, 4vw, 64px); color: var(--wm-sand); }
.step__title {
  font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: var(--fs-lead);
  text-transform: uppercase; color: var(--text-on-brand-heading); margin-top: var(--space-5);
}
.step__body { margin-top: var(--space-3); font-size: var(--fs-small); color: var(--text-on-brand-muted); }
.section--light .step__title { color: var(--heading-on-light); }
.section--light .step__body { color: var(--wm-green-900); }
.section--light .step__num { color: var(--wm-green-700); }

/* ===== Editions ========================================================== */
.editions { display: grid; gap: clamp(28px, 3.4vw, 56px); grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); margin-top: clamp(36px, 4vw, 64px); }
.edition__media { aspect-ratio: 4 / 3; overflow: hidden; }
.edition__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.edition:hover .edition__media img { transform: scale(1.03); }
.edition__meta {
  display: flex; justify-content: space-between; gap: var(--space-4); flex-wrap: wrap;
  margin-top: var(--space-4); padding-bottom: var(--space-3); border-bottom: 1px solid var(--rule);
  font-family: var(--font-heading); font-size: 13px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--wm-sand);
}
.edition__title {
  font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 44px); line-height: 1.2;
  color: var(--text-on-brand-heading); margin-top: var(--space-4);
}
.edition__body { margin-top: var(--space-3); color: var(--text-on-brand-muted); }

/* ===== Band (photo + scrim, used by the reservation section) ============= */
.band { position: relative; isolation: isolate; padding: var(--section-pad) var(--page-margin); color: var(--text-on-brand); }

/* ===== Contact box ======================================================= */
.contact-box { border: 1px solid var(--wm-bone); padding: clamp(24px, 2.6vw, 40px); }
.contact-box h3 {
  font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: var(--fs-lead);
  letter-spacing: .18em; text-transform: uppercase; color: var(--text-on-brand-heading);
}
.contact-box ul { margin-top: var(--space-5); }
.contact-box li { padding: var(--space-3) 0; border-top: 1px solid rgb(212 189 150 / .4); }
.contact-box li:first-child { border-top: 0; padding-top: 0; }
.contact-box a { color: var(--wm-sand); text-decoration: underline; text-underline-offset: 3px; }
.contact-box a:hover { color: var(--wm-bone); }

/* ===== Form ============================================================== */
.season-note {
  margin-top: clamp(24px, 2.6vw, 36px); padding: var(--space-4) var(--space-5);
  border-left: 3px solid var(--wm-sand); background: rgb(212 189 150 / .1);
  font-size: var(--fs-small); color: var(--text-on-brand);
}
.form { display: grid; gap: var(--space-5); margin-top: clamp(28px, 3vw, 44px); }
.field { display: flex; flex-direction: column; gap: var(--space-2); }
.field--row { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(168px, 1fr)); }
.field label, .consent span {
  font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-on-brand-heading);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; background: rgb(231 232 232 / .07);
  border: 1px solid var(--wm-stone); border-radius: 0; color: var(--wm-bone);
  font-family: var(--font-body); font-size: var(--fs-body); letter-spacing: var(--ls-body);
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--wm-stone); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--wm-sand); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wm-bone); background: rgb(231 232 232 / .12); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--wm-sand) 50%), linear-gradient(135deg, var(--wm-sand) 50%, transparent 50%); background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px); background-size: 7px 7px, 7px 7px; background-repeat: no-repeat; padding-right: 46px; }
.field select option { background: var(--wm-green-900); color: var(--wm-bone); }
.field__hint { font-size: var(--fs-small); color: var(--text-on-brand-muted); }
.consent { display: flex; gap: var(--space-3); align-items: flex-start; }
.consent input { width: 22px; height: 22px; margin-top: 2px; accent-color: var(--wm-sand); flex: none; }
.consent span { text-transform: none; letter-spacing: var(--ls-body); font-family: var(--font-body); font-weight: var(--fw-body); font-size: var(--fs-small); color: var(--wm-bone); }
.consent a { color: var(--wm-sand); text-decoration: underline; text-underline-offset: 3px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: var(--fs-small); min-height: 1.4em; }
.form__status[data-state="error"] { color: #f3b8a6; }
.form__status[data-state="ok"] { color: var(--wm-sand); }
.form-grid { display: grid; gap: clamp(36px, 4.5vw, 80px); grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); align-items: start; }

/* ===== FAQ =============================================================== */
.faq { margin-top: clamp(32px, 4vw, 56px); border-top: 2px solid var(--rule); }
.faq details { border-bottom: 1px solid rgb(212 189 150 / .45); }
.faq summary {
  cursor: pointer; list-style: none; padding: clamp(18px, 2vw, 26px) 44px clamp(18px, 2vw, 26px) 0;
  position: relative;
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-lead); text-transform: uppercase; color: var(--heading-on-light);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; translate: 0 -50%;
  font-family: var(--font-display); font-size: 1.6em; line-height: 1; color: var(--wm-green-700);
  transition: rotate var(--dur) var(--ease);
}
.faq details[open] summary::after { content: "–"; }
.faq p { padding: 0 0 clamp(18px, 2vw, 26px); max-width: var(--measure); }

/* ===== Footer ============================================================ */
.site-footer { background: var(--surface-brand); padding: clamp(40px, 5vw, 72px) var(--page-margin); border-top: 1px solid rgb(212 189 150 / .4); }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: var(--space-6); justify-content: space-between; align-items: flex-end; }
.site-footer__brand { font-family: var(--font-display); font-size: clamp(26px, 2.4vw, 40px); letter-spacing: var(--ls-logo); color: var(--wm-bone); }
.site-footer__brand span { display: block; font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: 13px; letter-spacing: var(--ls-kicker); text-transform: uppercase; color: var(--wm-sand); margin-top: var(--space-3); }
.site-footer__meta { display: flex; flex-direction: column; gap: 6px; font-size: var(--fs-small); color: var(--text-on-brand-muted); text-align: right; }
.site-footer__meta a { color: var(--text-on-brand-muted); text-decoration: none; }
.site-footer__meta a:hover { color: var(--wm-bone); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal { margin-top: clamp(28px, 3vw, 44px); padding-top: var(--space-5); border-top: 1px solid rgb(212 189 150 / .25); display: flex; flex-wrap: wrap; gap: var(--space-5); justify-content: space-between; font-size: 14px; color: var(--text-on-brand-muted); }
.site-footer__legal a { color: var(--text-on-brand-muted); text-decoration: underline; text-underline-offset: 3px; }
.site-footer__legal a:hover { color: var(--wm-bone); }
@media (max-width: 640px) { .site-footer__meta { text-align: left; } }

/* ===== Text pages (privacy, legal) ======================================= */
.textpage { padding: clamp(48px, 6vw, 96px) var(--page-margin) var(--section-pad); }
.textpage h2 { font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: var(--fs-section); text-transform: uppercase; color: var(--text-on-brand-heading); margin-top: clamp(32px, 3.4vw, 52px); }
.textpage p, .textpage li { max-width: var(--measure); }
.textpage p { margin-top: var(--space-4); }
.textpage ul { margin-top: var(--space-4); }
.textpage li { padding-left: 22px; position: relative; margin-top: var(--space-3); }
.textpage li::before { content: "—"; position: absolute; left: 0; color: var(--wm-sand); }
.textpage a { color: var(--wm-sand); text-decoration: underline; text-underline-offset: 3px; }
.textpage a.btn { color: var(--action-fg); text-decoration: none; }

/* ===== Forced colours ==================================================== */
@media (forced-colors: active) {
  .btn, .formula, .date, .contact-box, .field input, .field select, .field textarea { border: 1px solid ButtonText; }
  .hero::before, .band::before { background: Canvas; }
}

/* ===== Gift voucher page ================================================= */
.voucher { padding: clamp(40px, 5vw, 80px) var(--page-margin) var(--section-pad); }
.voucher .lead { max-width: 56ch; }
.voucher__form { margin-top: clamp(32px, 4vw, 56px); }
.voucher__steps-title {
  margin: clamp(56px, 6vw, 96px) 0 0; padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-lead); letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-on-brand-heading);
}
.voucher .steps { margin-top: clamp(28px, 3vw, 44px); }

.voucher__status {
  border: 1px solid var(--wm-sand); padding: clamp(20px, 2.4vw, 32px);
  margin-top: clamp(28px, 3vw, 44px);
}
.voucher__status h2 {
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: var(--fs-section); text-transform: uppercase; color: var(--text-on-brand-heading);
  margin: 0 0 var(--space-4);
}
.voucher__status p { margin: 0; }
.voucher__status .code {
  display: block; margin-top: var(--space-5);
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 38px); color: var(--wm-sand);
}
.voucher__status .code small {
  display: block; font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: 12px; letter-spacing: var(--ls-kicker); text-transform: uppercase;
  color: var(--text-on-brand-muted); margin-bottom: 6px;
}
.voucher__status[data-state="cancelled"] { border-color: var(--wm-stone); }

/* Fieldsets carry no border of their own; the legend is styled like any other label. */
.field fieldset, fieldset.field { border: 0; padding: 0; margin: 0; }
.field legend {
  padding: 0; margin-bottom: var(--space-2);
  font-family: var(--font-heading); font-weight: var(--fw-heading); font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-on-brand-heading);
}
.chips { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.chip { position: relative; }
.chip input {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0;
  opacity: 0; cursor: pointer;
}
.chip span {
  display: block; padding: 12px 22px; border: 1px solid var(--wm-stone);
  border-radius: var(--radius-pill); color: var(--wm-bone);
  font-family: var(--font-heading); font-weight: var(--fw-heading);
  font-size: 15px; letter-spacing: .06em;
  transition: var(--transition-surface);
}
.chip input:hover + span { border-color: var(--wm-sand); }
.chip input:checked + span { background: var(--wm-bone); border-color: var(--wm-bone); color: var(--wm-green-900); }
.chip input:focus-visible + span { outline: 3px solid var(--wm-sand); outline-offset: 3px; }
.chip--theme span::before {
  content: ""; display: inline-block; width: 13px; height: 13px; margin-right: 9px;
  translate: 0 2px; border: 1px solid var(--wm-sand); border-radius: 999px 999px 0 0;
}
.chip--groen span::before { background: var(--wm-green-900); }
.chip--zand span::before { background: var(--wm-bone); }

.radio { display: flex; gap: var(--space-3); align-items: flex-start; padding: var(--space-2) 0; cursor: pointer; }
.radio input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--wm-sand); flex: none; }
.radio span { font-size: var(--fs-small); color: var(--wm-bone); }

.inline-link { color: var(--wm-sand); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
.inline-link:hover { color: var(--wm-bone); }
