/* ============================================================
   Renée Hulst — website redesign
   Base + components + Richting A (Rustig)
   Richting B overrides live in direction-b.css
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--rh-paper);
  color: var(--fg-1);
  font-family: var(--font-body);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--rh-orange); outline-offset: 3px; border-radius: 4px; }

/* ---- Layout primitives ---------------------------------- */
.wrap { width: 100%; max-width: 1140px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.narrow { max-width: 760px; }
.section { padding-block: clamp(56px, 9vw, 120px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* ---- Type helpers ---------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  text-wrap: balance;
  margin: 0;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  text-wrap: balance;
  margin: 0;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin: 0;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 600;
  color: var(--rh-petrol);
  margin: 0 0 var(--s-4) 0;
  display: inline-block;
}
.eyebrow--orange { color: var(--rh-orange); }
.lead {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.6;
  font-weight: 400;
  color: var(--fg-2);
  margin: 0;
}
p { line-height: var(--lh-body); }
.muted { color: var(--fg-3); }

/* accented underline under a word */
.mark {
  position: relative;
  white-space: nowrap;
}
.mark::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.06em;
  height: 0.34em;
  background: var(--rh-orange);
  opacity: 0.30;
  z-index: -1;
  border-radius: 2px;
}
.italic-display { font-family: var(--font-display); font-style: italic; }

/* ---- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border: none;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9em 1.6em;
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  line-height: 1;
}
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--rh-orange);
  color: var(--rh-white);
  box-shadow: var(--shadow-warm);
}
.btn-primary:hover { background: var(--rh-orange-700); transform: translateY(-1px); color: var(--rh-white); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost {
  background: transparent;
  color: var(--rh-petrol);
  box-shadow: inset 0 0 0 1.5px var(--rh-petrol);
}
.btn-ghost:hover { background: var(--rh-petrol); color: var(--rh-white); transform: translateY(-1px); }
.btn-dark { background: var(--rh-black); color: var(--rh-white); }
.btn-dark:hover { background: #1a1a1a; transform: translateY(-1px); color: var(--rh-white); }
.btn-sm { padding: 0.65em 1.15em; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }
.textlink {
  display: inline-flex; align-items: center; gap: 0.45em;
  color: var(--rh-petrol); font-weight: 600; text-decoration: none;
  border-bottom: 1.5px solid transparent; padding-bottom: 2px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.textlink:hover { color: var(--rh-orange); border-color: var(--rh-orange); }
.textlink .arrow { transition: transform var(--dur-base) var(--ease-out); }
.textlink:hover .arrow { transform: translateX(4px); }

/* ---- Header ---------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(237,236,235,0.92);
  border-bottom: 1px solid var(--rh-line);
  backdrop-filter: saturate(1.1) blur(2px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  height: 76px;
}
.brandmark {
  display: inline-flex; align-items: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--rh-petrol);
  text-decoration: none;
  white-space: nowrap;
}
.brandmark span { color: var(--rh-orange); }
.nav-links { display: flex; align-items: center; gap: var(--s-6); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--fg-1); text-decoration: none; font-weight: 500; font-size: 0.98rem;
  padding: 6px 2px; position: relative;
  background: none; border: none; cursor: pointer; font-family: inherit;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--rh-orange); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--rh-petrol); }
.nav-cta { display: flex; align-items: center; gap: var(--s-3); }
.nav-toggle { display: none; background: none; border: none; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--rh-petrol); }

/* ---- Page switching -------------------------------------- */
.page { display: none; animation: pagein var(--dur-slow) var(--ease-out); }
.page.active { display: block; }
@keyframes pagein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---- Hero (Home) ----------------------------------------- */
.hero { padding-top: clamp(48px, 7vw, 96px); padding-bottom: clamp(48px, 7vw, 110px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-copy .display { margin-bottom: var(--s-5); }
.hero-copy .lead { max-width: 30ch; margin-bottom: var(--s-7); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }
.hero-note { margin-top: var(--s-5); font-size: 0.9rem; color: var(--fg-3); display: flex; align-items: center; gap: 0.5em; }
.hero-note::before { content: "●"; color: var(--rh-orange); font-size: 0.6em; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-lg) var(--r-lg) 220px 220px;
}
.hero-photo .badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--rh-white); border-radius: var(--r-md);
  box-shadow: var(--shadow-2); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px; max-width: 240px;
}
.hero-photo .badge .dot { width: 38px; height: 38px; border-radius: 50%; background: var(--rh-orange-100); display: grid; place-items: center; flex: none; }
.hero-photo .badge .dot::after { content: "→"; color: var(--rh-orange); font-weight: 700; }
.hero-photo .badge p { margin: 0; font-size: 0.82rem; line-height: 1.35; color: var(--fg-2); }
.hero-photo .badge strong { color: var(--fg-1); }
.hero-oval {
  position: absolute; inset: -4% -6% -8% -8%;
  border: 3px solid var(--rh-orange); border-radius: 50%;
  z-index: -1; opacity: 0; transform: rotate(-4deg);
}

/* trust strip */
.trust { border-top: 1px solid var(--rh-line); border-bottom: 1px solid var(--rh-line); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-5); padding-block: var(--s-5); }
.trust-row .label { font-size: 0.78rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--fg-3); font-weight: 600; }
.trust-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 64px); }
.trust-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: var(--rh-petrol); line-height: 1; }
.trust-stat .t { font-size: 0.86rem; color: var(--fg-2); margin-top: 4px; }
.trust-stat .line { display: flex; gap: 0.55em; font-size: 1.02rem; font-weight: 500; color: var(--rh-petrol); line-height: var(--lh-snug); max-width: 22ch; margin: 0; }
.trust-stat .line::before { content: "\25CF"; color: var(--rh-orange); font-size: 0.62em; line-height: inherit; transform: translateY(0.55em); flex: none; }

/* ---- Recognition section --------------------------------- */
.recognition { background: var(--rh-white); }
.reco-head { max-width: 720px; margin-bottom: var(--s-8); }
.reco-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.quote-card {
  background: var(--rh-paper);
  border: 1px solid var(--rh-line);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-5) var(--s-5) calc(var(--s-5) + 6px);
  position: relative; overflow: hidden;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--rh-petrol-700);
  line-height: 1.35;
}
.quote-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--rh-orange); }
.reco-foot { margin-top: var(--s-7); max-width: 640px; }
.reco-foot p { font-size: 1.15rem; color: var(--fg-1); }

/* ---- Approach / steps ------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); margin-top: var(--s-8); }
.step { position: relative; }
.step .num {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--rh-orange); letter-spacing: 0.1em;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: var(--s-4);
}
.step .num::before { content: ""; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--rh-orange); display: inline-block; }
.step h3 { margin-bottom: var(--s-3); }
.step p { margin: 0; color: var(--fg-2); }

/* ---- Offer cards ----------------------------------------- */
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-4); margin-top: var(--s-8); align-items: stretch; }
.offer {
  display: flex; flex-direction: column;
  background: var(--rh-white);
  border: 1px solid var(--rh-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.offer:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.offer .kicker { font-size: 0.74rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; font-weight: 600; color: var(--fg-3); margin-bottom: var(--s-3); }
.offer h3 { margin-bottom: var(--s-3); }
.offer .desc { color: var(--fg-2); font-size: 0.95rem; margin: 0 0 var(--s-5) 0; flex: 1; }
.offer .price { font-family: var(--font-display); font-weight: 700; color: var(--rh-petrol); font-size: 1.4rem; margin-bottom: var(--s-2); }
.offer .price small { font-family: var(--font-body); font-weight: 500; font-size: 0.78rem; color: var(--fg-3); display: block; letter-spacing: 0; }
.offer .offer-link { margin-top: var(--s-4); }
.offer--feature { background: var(--rh-petrol); border-color: var(--rh-petrol); color: var(--fg-on-petrol); position: relative; box-shadow: var(--shadow-2); }
.offer--feature .kicker { color: var(--rh-orange-300); }
.offer--feature h3, .offer--feature .price { color: var(--rh-white); }
.offer--feature .desc { color: rgba(255,255,255,0.85); }
.offer--feature .price small { color: rgba(255,255,255,0.65); }
.offer--feature .textlink { color: var(--rh-orange-300); border-color: transparent; }
.offer--feature .textlink:hover { color: var(--rh-white); border-color: var(--rh-white); }
.offer .tag {
  position: absolute; top: -12px; right: var(--s-6);
  background: var(--rh-orange); color: var(--rh-white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: var(--r-pill);
}

/* ---- Feature split (over mij teaser, etc) ---------------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--r-lg); }
.split-photo.arch img { border-radius: 200px 200px var(--r-md) var(--r-md); }
.split-photo { position: relative; }
.bullets { list-style: none; padding: 0; margin: var(--s-5) 0 0; display: grid; gap: var(--s-3); }
.bullets li { position: relative; padding-left: 1.6em; color: var(--fg-2); }
.bullets li::before { content: "●"; position: absolute; left: 0; top: 0.05em; color: var(--rh-orange); font-size: 0.7em; }

/* ---- Testimonials ---------------------------------------- */
.testi-section { background: var(--rh-white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin-top: var(--s-8); }
.testi {
  background: var(--rh-paper); border: 1px solid var(--rh-line);
  border-radius: var(--r-lg); padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.testi .stars { color: var(--rh-orange); letter-spacing: 2px; font-size: 0.9rem; }
.testi blockquote { margin: 0; font-size: 1.02rem; line-height: 1.55; color: var(--fg-1); }
.testi .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--rh-petrol-100); color: var(--rh-petrol); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.testi .who .name { font-weight: 600; font-size: 0.92rem; }
.testi .who .role { font-size: 0.8rem; color: var(--fg-3); }
.testi--feature { grid-column: 1 / -1; background: var(--rh-petrol); border-color: var(--rh-petrol); color: var(--fg-on-petrol); display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--s-7); align-items: center; padding: clamp(28px,4vw,56px); }
.testi--feature blockquote { color: var(--rh-white); font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem,2.2vw,1.9rem); line-height: 1.3; }
.testi--feature .who .name { color: var(--rh-white); }
.testi--feature .who .role { color: var(--rh-orange-300); }
.testi--feature .avatar { background: rgba(255,255,255,0.15); color: var(--rh-white); }
.testi--feature img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--r-md); }

/* ---- Newsletter band ------------------------------------- */
.news { background: var(--rh-black); color: var(--fg-on-black); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 64px); }
.news-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,64px); align-items: center; }
.news h2 { color: var(--rh-white); }
.news p { color: rgba(255,255,255,0.78); margin-top: var(--s-4); }
.news .eyebrow { color: var(--rh-orange); }
.form-row { display: flex; gap: var(--s-3); flex-wrap: wrap; }
.form-row + .form-row { margin-top: var(--s-3); }
.input {
  flex: 1; min-width: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--rh-white);
  border-radius: var(--r-pill); padding: 0.9em 1.3em; font-size: 1rem; font-family: inherit;
}
.input::placeholder { color: rgba(255,255,255,0.5); }
.input:focus { border-color: var(--rh-orange); outline: none; background: rgba(255,255,255,0.12); }
.form-hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: var(--s-3); }
.form-ok { color: var(--rh-orange-300); font-weight: 600; margin-top: var(--s-3); }

/* ---- Closing CTA (arched) -------------------------------- */
.closing { text-align: center; }
.arch-frame { width: min(320px, 70vw); margin: 0 auto var(--s-6); position: relative; }
.arch-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 999px 999px var(--r-md) var(--r-md); border: 5px solid var(--rh-orange); }
.closing .h2 { max-width: 16ch; margin-inline: auto; }
.closing .lead { max-width: 46ch; margin: var(--s-5) auto var(--s-7); }

/* ---- Footer ---------------------------------------------- */
.site-footer { background: var(--rh-petrol); color: var(--fg-on-petrol); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--s-6); padding-block: clamp(48px,6vw,80px); }
.site-footer .brandmark { color: var(--rh-white); }
.site-footer .brandmark span { color: var(--rh-orange-300); }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: var(--tracking-caps); text-transform: uppercase; color: var(--rh-orange-300); margin: 0 0 var(--s-4); font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-3); }
.footer-col a, .footer-col button {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem;
  background: none; border: none; padding: 0; font-family: inherit; text-align: left; cursor: pointer;
}
.footer-col a:hover, .footer-col button:hover { color: var(--rh-orange-300); }
.footer-col p { color: rgba(255,255,255,0.8); font-size: 0.95rem; margin: var(--s-3) 0 0; max-width: 32ch; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.15); padding-block: var(--s-5); display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s-3); font-size: 0.82rem; color: rgba(255,255,255,0.6); }
.footer-bottom a { color: rgba(255,255,255,0.6); }
.social { display: flex; gap: var(--s-3); margin-top: var(--s-5); }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); display: grid; place-items: center; color: var(--rh-white); }
.social a:hover { background: var(--rh-orange); border-color: var(--rh-orange); color: var(--rh-white); }
.social svg { width: 18px; height: 18px; }

/* ---- Generic page header (subpages) ---------------------- */
.page-hero { padding-top: clamp(40px,5vw,72px); padding-bottom: clamp(28px,4vw,48px); }
.page-hero .display { max-width: 20ch; }
.page-hero .lead { max-width: 56ch; margin-top: var(--s-5); }

/* ---- Aanbod detail rows ---------------------------------- */
.aanbod-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px,5vw,72px); align-items: center; padding-block: clamp(36px,5vw,64px); border-top: 1px solid var(--rh-line); }
.aanbod-row:first-of-type { border-top: none; }
.aanbod-row.flip .aanbod-media { order: 2; }
.aanbod-media img { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--r-lg); }
.aanbod-body .price-line { display: flex; align-items: baseline; gap: 10px; margin: var(--s-4) 0 var(--s-5); }
.aanbod-body .price-line .p { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--rh-petrol); }
.aanbod-body .price-line .sub { font-size: 0.85rem; color: var(--fg-3); }
.pill-tag { display: inline-block; background: var(--rh-orange-100); color: var(--rh-orange-700); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: var(--s-4); }

/* ---- Values (over mij) ----------------------------------- */
.values { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--s-5); margin-top: var(--s-7); }
.value { padding: var(--s-5); border-radius: var(--r-md); background: var(--rh-white); border: 1px solid var(--rh-line); }
.value .v { font-family: var(--font-display); font-weight: 700; color: var(--rh-petrol); font-size: 1.15rem; margin-bottom: var(--s-2); }
.value p { margin: 0; color: var(--fg-2); font-size: 0.92rem; }

.prose { max-width: 680px; }
.prose p { font-size: 1.08rem; color: var(--fg-2); margin: 0 0 var(--s-5); }
.prose p.first::first-letter { initial-letter: 2; color: var(--rh-orange); font-family: var(--font-display); font-weight: 700; margin-right: 8px; }
.pullquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem,2.4vw,2rem); line-height: 1.3; color: var(--rh-petrol); border-left: 3px solid var(--rh-orange); padding-left: var(--s-5); margin: var(--s-7) 0; }

/* ---- Modal ----------------------------------------------- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(11,61,74,0.55);
  display: none; align-items: center; justify-content: center; z-index: 1000;
  padding: 20px; animation: fadein var(--dur-base) var(--ease-out);
}
.modal-overlay.open { display: flex; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--rh-paper); border-radius: var(--r-xl);
  width: min(560px, 100%); max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-3); position: relative;
  animation: modalin var(--dur-base) var(--ease-out);
}
@keyframes modalin { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-head { padding: var(--s-6) var(--s-6) 0; }
.modal-body { padding: var(--s-5) var(--s-6) var(--s-6); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(0,0,0,0.06); display: grid; place-items: center; font-size: 1.2rem; color: var(--fg-1); }
.modal-close:hover { background: rgba(0,0,0,0.12); }
.modal .eyebrow { margin-bottom: var(--s-2); }
.field { display: grid; gap: 6px; margin-bottom: var(--s-4); }
.field label { font-size: 0.85rem; font-weight: 600; color: var(--fg-1); }
.field input, .field textarea, .field select {
  border: 1px solid var(--rh-line-strong); background: var(--rh-white);
  border-radius: var(--r-sm); padding: 0.8em 1em; font-size: 0.98rem; font-family: inherit; color: var(--fg-1);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--rh-orange); box-shadow: 0 0 0 3px var(--rh-orange-100); }
.field .err { color: var(--danger); font-size: 0.8rem; display: none; }
.field.invalid .err { display: block; }
.field.invalid input, .field.invalid textarea { border-color: var(--danger); }

/* booking */
.book-days { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: var(--s-4) 0; }
.book-day { border: 1px solid var(--rh-line-strong); background: var(--rh-white); border-radius: var(--r-md); padding: 12px 6px; text-align: center; transition: all var(--dur-fast); }
.book-day:hover { border-color: var(--rh-petrol); }
.book-day.sel { background: var(--rh-petrol); border-color: var(--rh-petrol); color: var(--rh-white); }
.book-day .dow { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }
.book-day .dnum { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; line-height: 1.1; }
.book-day .mon { font-size: 0.68rem; opacity: 0.7; }
.book-times { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: var(--s-3); }
.book-time { border: 1px solid var(--rh-line-strong); background: var(--rh-white); border-radius: var(--r-pill); padding: 9px 4px; text-align: center; font-size: 0.92rem; font-weight: 600; transition: all var(--dur-fast); }
.book-time:hover { border-color: var(--rh-petrol); }
.book-time.sel { background: var(--rh-orange); border-color: var(--rh-orange); color: var(--rh-white); }
.book-confirm { text-align: center; padding: var(--s-5) 0; }
.book-confirm .check { width: 64px; height: 64px; border-radius: 50%; background: var(--rh-orange); color: #fff; display: grid; place-items: center; font-size: 2rem; margin: 0 auto var(--s-4); }

/* toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); background: var(--rh-black); color: #fff; padding: 14px 22px; border-radius: var(--r-pill); box-shadow: var(--shadow-3); opacity: 0; transition: all var(--dur-base) var(--ease-out); z-index: 1100; font-size: 0.92rem; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Tweaks panel ---------------------------------------- */
#tweaks-panel {
  position: fixed; top: 16px; right: 16px; z-index: 2000;
  width: 290px; background: var(--rh-white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-3); border: 1px solid var(--rh-line);
  font-family: var(--font-body); display: none; overflow: hidden;
}
#tweaks-panel.show { display: block; }
.tw-head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--rh-line); background: var(--rh-paper); }
.tw-head h5 { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--rh-petrol); }
.tw-close { background: none; border: none; font-size: 1.3rem; color: var(--fg-3); line-height: 1; }
.tw-body { padding: 16px; display: grid; gap: 18px; max-height: 80vh; overflow-y: auto; }
.tw-group label.tw-l { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-3); font-weight: 600; margin-bottom: 8px; }
.tw-seg { display: flex; gap: 6px; background: var(--rh-paper); padding: 4px; border-radius: var(--r-pill); }
.tw-seg button { flex: 1; border: none; background: none; padding: 8px 6px; border-radius: var(--r-pill); font-size: 0.85rem; font-weight: 600; color: var(--fg-2); }
.tw-seg button.on { background: var(--rh-petrol); color: #fff; }
.tw-swatches { display: flex; gap: 8px; }
.tw-sw { width: 34px; height: 34px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; }
.tw-sw.on { border-color: var(--fg-1); box-shadow: 0 0 0 2px var(--rh-white) inset; }
.tw-body input[type=text] { width: 100%; border: 1px solid var(--rh-line-strong); border-radius: var(--r-sm); padding: 8px 10px; font-family: inherit; font-size: 0.9rem; }
.tw-body input[type=text]:focus { outline: none; border-color: var(--rh-orange); }
.tw-toggle { display: flex; align-items: center; justify-content: space-between; }
.tw-switch { width: 44px; height: 26px; border-radius: 999px; background: var(--rh-line-strong); position: relative; transition: background var(--dur-fast); border: none; }
.tw-switch.on { background: var(--rh-orange); }
.tw-switch::after { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; border-radius: 50%; background: #fff; transition: transform var(--dur-fast); }
.tw-switch.on::after { transform: translateX(18px); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 460px; margin-inline: auto; order: -1; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .testi--feature { grid-template-columns: 1fr; }
  .news-grid, .split, .split--reverse, .aanbod-row, .aanbod-row.flip { grid-template-columns: 1fr; }
  .aanbod-row.flip .aanbod-media { order: 0; }
  .split-photo, .aanbod-media { max-width: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: var(--s-5); }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--rh-paper); padding: var(--s-5); gap: var(--s-4); border-bottom: 1px solid var(--rh-line); box-shadow: var(--shadow-2);
  }
  .reco-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .news, .news-grid { border-radius: var(--r-lg); }
  .footer-grid { grid-template-columns: 1fr; }
  #tweaks-panel { left: 16px; right: 16px; width: auto; }
}
