/* ============================================================
   Onderweg Naar JA — stylesheet
   Boho-warm: terracotta hero/footer, cream body, botanical art.
   Tokens per DESIGN.md — do not introduce ad-hoc colors.
   ============================================================ */

:root {
  --terra: #9B3A1C;
  --terra-dark: #7A2E14;
  --cognac: #8B4A1E;
  --cognac-light: #A05A2A;
  --olive: #4A5E3A;
  --olive-dark: #3D4A31;
  --cream: #FAF0E8;
  --blush: #F0C8B0;
  --blush-light: #F8EDE8;
  --card: #FDF7F1;
  --ink: #2C2018;
  --body: #4A3828;
  --muted: #9B8878;
  --border: #E8D8C8;

  --serif: 'Playfair Display', Georgia, serif;
  --script: 'Great Vibes', cursive;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-h1: clamp(2.35rem, 5.2vw, 3.85rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
  --fs-script: clamp(1.7rem, 2.8vw, 2.4rem);

  --container: 1180px;
  --ease: cubic-bezier(.19, 1, .22, 1); /* ease-out-expo-ish */

  /* z-scale */
  --z-deco: 1;
  --z-content: 2;
  --z-wave: 3;
  --z-header: 20;
  --z-drawer: 30;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 { font-family: var(--serif); color: var(--ink); text-wrap: balance; margin: 0; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--cognac); }
a:hover { color: var(--cognac-light); }

.container {
  width: min(var(--container), 100% - 2.5rem);
  margin-inline: auto;
}

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

.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--cream); color: var(--cognac);
  padding: .6rem 1.1rem; border-radius: 8px; z-index: 99;
  font-family: var(--sans); font-size: .875rem; text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--cognac);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-terra :focus-visible, .hero :focus-visible, .site-footer :focus-visible, .site-header :focus-visible {
  outline-color: #fff;
}

::selection { background: var(--blush); color: var(--ink); }

/* ============ Buttons ============ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  font-family: var(--serif); font-weight: 500;
  font-size: 1.05rem; line-height: 1.2;
  padding: .95rem 1.7rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn .icon { flex: none; }

.btn--terra {
  background: var(--terra); color: #fff; border-color: var(--terra);
}
.btn--terra:hover { background: var(--terra-dark); border-color: var(--terra-dark); color: #fff; }

.btn--cream {
  background: var(--cream); color: var(--cognac); border-color: var(--cream);
  box-shadow: 0 10px 24px rgba(44, 20, 8, .18);
}
.btn--cream:hover { background: #fff; color: var(--terra); }

.btn--outline-white {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .85);
}
.btn--outline-white:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ============ Header ============ */

.site-header {
  position: absolute; inset: 0 0 auto 0;
  z-index: var(--z-header);
  padding-top: 1.4rem;
}
.site-header .container {
  display: flex; align-items: center; gap: 2rem;
}
.brand { flex: none; display: inline-block; }
.brand img { width: clamp(108px, 11vw, 152px); height: auto; }

.site-nav { margin-inline: auto; }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.4rem);
}
.site-nav a {
  font-family: var(--serif); font-size: 1.06rem; color: #fff;
  text-decoration: none; padding-block: .35rem; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: #fff;
  transition: right .3s var(--ease);
}
.site-nav a:hover { color: #fff; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }

.header-cta { flex: none; }
.header-cta .btn {
  padding: .72rem 1.35rem; font-size: 1rem; border-radius: 10px;
  background: var(--cream); color: var(--cognac); box-shadow: none;
}
.header-cta .btn:hover { background: #fff; }
.header-cta .icon { color: var(--terra); }

.nav-toggle {
  display: none;
  background: none; border: 0; padding: .5rem; margin-left: auto;
  color: #fff; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 26px; }
.nav-toggle .bars, .nav-toggle .bars::before, .nav-toggle .bars::after {
  height: 2px; background: currentColor; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle .bars { position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 26px;
}
.nav-toggle .bars::before { top: -8px; }
.nav-toggle .bars::after { top: 8px; }
.nav-open .nav-toggle .bars { transform: rotate(45deg); }
.nav-open .nav-toggle .bars::before { transform: rotate(90deg) translateX(8px); }
.nav-open .nav-toggle .bars::after { opacity: 0; }

@media (max-width: 900px) {
  .site-nav, .header-cta { display: none; }
  .nav-toggle { display: block; z-index: calc(var(--z-drawer) + 1); position: relative; }

  .nav-open .site-nav {
    display: flex; position: fixed; inset: 0; z-index: var(--z-drawer);
    background: var(--terra) url('../img/hero-texture.webp') center / cover no-repeat;
    align-items: center; justify-content: center;
  }
  .nav-open .site-nav ul { flex-direction: column; gap: 1.6rem; text-align: center; }
  .nav-open .site-nav a { font-size: 1.5rem; }
  .nav-open { overflow: hidden; }
}

/* ============ Hero ============ */

.hero {
  position: relative;
  background: var(--terra) url('../img/hero-texture.webp') top center / cover no-repeat;
  padding-top: clamp(7.5rem, 14vw, 11.5rem);
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: var(--z-content);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: end;
  column-gap: 2rem;
}
.hero-copy { padding-bottom: clamp(5rem, 11vw, 8.5rem); }

.hero h1 {
  color: #fff;
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(2.2rem, 4vw, 3.2rem);
}
.hero h1 .ja {
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.62em;
  line-height: 0;
  display: inline-block;
  transform: rotate(-4deg) translateY(.12em);
  margin-left: .12em;
}

.hero-sub {
  color: rgba(255, 255, 255, .92);
  font-size: 1.06rem;
  line-height: 1.85;
  max-width: 44ch;
  margin-bottom: 2.2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-portrait {
  position: relative;
  align-self: end;
  margin-bottom: calc(-1 * clamp(1.5rem, 4vw, 3.4rem));
}
.hero-portrait img {
  width: min(100%, 640px);
  margin-inline: auto;
}

/* soft blush glow behind the portrait (echoes the watercolor circle) */
.hero-portrait::before {
  content: ""; position: absolute; inset: 6% 2% 0;
  background: radial-gradient(closest-side, rgba(240, 200, 176, .5), transparent 72%);
  z-index: -1;
}

.hero-wave {
  position: relative; z-index: var(--z-wave);
  display: block; width: 100%; height: clamp(38px, 7.5vw, 96px);
  margin-top: calc(-1 * clamp(38px, 7.5vw, 96px));
  pointer-events: none;
}

.hero .deco-branch--tr {
  position: absolute; top: clamp(4.5rem, 9vw, 7rem); right: -1.2rem;
  width: clamp(90px, 12vw, 170px); color: rgba(255, 255, 255, .8);
  transform: rotate(148deg);
}
.hero .deco-branch--l {
  position: absolute; left: -1.6rem; top: 56%;
  width: clamp(70px, 8vw, 120px); color: rgba(255, 255, 255, .55);
  transform: rotate(-24deg);
}

@media (max-width: 900px) {
  /* design line breaks are tuned for desktop measure; let text flow on small screens */
  .hero-sub br, .about-copy br { display: none; }
  .hero { padding-top: 8.5rem; }
  .hero h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); padding-right: .5rem; }
  .hero .deco-branch--tr { width: 76px; right: -1.6rem; top: 4.6rem; opacity: .55; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 1rem; }
  .hero-portrait { margin-bottom: -2px; }
  .hero-portrait img { width: min(78vw, 380px); }
  .hero .deco-branch--l { display: none; }
}

/* ============ Decorative botanicals ============ */

.deco { pointer-events: none; user-select: none; }
svg.deco { overflow: visible; }

.section-deco {
  position: absolute; z-index: var(--z-deco); color: var(--olive);
}

/* ============ Section basics ============ */

.section { position: relative; padding-block: clamp(3.2rem, 7vw, 5.5rem); }

.section-title {
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--olive-dark);
  display: flex; align-items: center; gap: .9rem;
}
.section-title .sprig { color: var(--olive); flex: none; }

/* ============ Stap voor stap (about) ============ */

.about { padding-top: clamp(3.6rem, 8vw, 6rem); }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr) auto;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-heading { position: relative; padding-left: clamp(4rem, 6vw, 5.5rem); }
.about-heading::before {
  /* blush watercolor circle behind the heading botanical */
  content: ""; position: absolute; left: 0; top: 50%;
  width: clamp(120px, 14vw, 190px); aspect-ratio: 1;
  transform: translate(-30%, -46%);
  background: radial-gradient(closest-side, var(--blush) 0%, rgba(240, 200, 176, .45) 62%, transparent 78%);
  border-radius: 50%;
}
.about-heading .deco-branch {
  position: absolute; left: -1rem; top: 50%;
  width: clamp(64px, 7vw, 96px);
  transform: translateY(-52%) rotate(-8deg);
  color: var(--olive);
}
.about-heading h2 {
  position: relative;
  font-size: var(--fs-h2); color: var(--olive-dark); line-height: 1.22;
}
.about-heading .script-line {
  position: relative;
  display: block;
  font-family: var(--script); font-weight: 400;
  font-size: var(--fs-script); line-height: 1.25;
  color: var(--terra);
  margin-top: .45rem;
  letter-spacing: .04em;
}

.about-copy p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.95;
  margin-bottom: 1.1em;
  max-width: 58ch;
}
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--terra); font-weight: 700; }

.about-sign {
  text-align: center;
  display: grid; justify-items: center; gap: .8rem;
  padding-right: clamp(0rem, 2vw, 1.5rem);
}
.about-sign .icon-heart { width: 44px; color: var(--terra); transform: rotate(6deg); }
.about-sign .signature {
  font-family: var(--script); font-size: 2rem; line-height: 1.3;
  color: var(--cognac); white-space: nowrap;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .about-sign { justify-items: start; text-align: left; padding-top: .4rem; }
}

/* ============ Vier waarden ============ */

.values { border-top: 1px solid var(--border); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.value {
  text-align: center;
  padding: .6rem clamp(1rem, 2.4vw, 2rem);
  border-left: 1px solid var(--border);
}
.value:first-child { border-left: 0; }

.badge {
  width: 76px; aspect-ratio: 1; margin: 0 auto 1.15rem;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #F6D9C6 0%, var(--blush) 78%);
  display: grid; place-items: center;
  color: var(--terra);
}
.badge .icon { width: 32px; height: 32px; }

.value h3 {
  font-size: 1.17rem; font-weight: 700; color: var(--olive-dark);
  line-height: 1.35; margin-bottom: .55rem;
}
.value p { font-size: .92rem; line-height: 1.68; margin: 0; }

@media (max-width: 900px) {
  .values-grid { grid-template-columns: 1fr 1fr; row-gap: 2.4rem; }
  .value:nth-child(3) { border-left: 0; }
}
@media (max-width: 540px) {
  .values-grid { grid-template-columns: 1fr; }
  .value { border-left: 0; border-top: 1px solid var(--border); padding-block: 2rem .4rem; }
  .value:first-child { border-top: 0; padding-top: 0; }
}

/* ============ Pakketten + kennismaking ============ */

.packages-band { position: relative; }
.packages-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: start;
}

.packages .section-title { justify-content: center; margin-bottom: 2rem; }

.package-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.25rem);
}

.package {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.package .badge { width: 68px; margin-bottom: 1rem; }
.package h3 { font-size: 1.3rem; color: var(--cognac); margin-bottom: .9rem; }

.package ul {
  list-style: none; margin: 0 0 1.4rem; padding: 0;
  display: grid; gap: .55rem;
  text-align: left;
  font-size: .9rem; line-height: 1.5;
}
.package li { display: flex; gap: .55rem; align-items: baseline; }
.package li .icon-check { flex: none; width: 14px; height: 14px; color: var(--terra); transform: translateY(1px); }

.package .btn {
  margin-top: auto;
  font-size: .98rem; padding: .78rem 1.3rem; border-radius: 10px;
  width: 100%;
}

/* Booking panel */

.booking {
  background:
    radial-gradient(120% 90% at 12% 8%, rgba(240, 200, 176, .55) 0%, transparent 55%),
    radial-gradient(130% 100% at 92% 90%, rgba(240, 200, 176, .5) 0%, transparent 60%),
    var(--blush-light);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
  overflow: hidden;
}
.booking .deco-branch--corner {
  position: absolute; right: -30px; bottom: -34px;
  width: 88px; color: var(--olive);
  transform: rotate(-64deg);
  opacity: .8;
}

.booking h2 {
  font-size: clamp(1.45rem, 2.2vw, 1.8rem);
  color: var(--terra);
  text-align: center; line-height: 1.3;
  margin-bottom: .4rem;
}
.booking .booking-sub {
  text-align: center; font-size: .95rem; margin-bottom: 1.4rem;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
  gap: 1.2rem;
  align-items: start;
}

.calendar {
  background: var(--card);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1.2rem;
  box-shadow: 0 6px 24px rgba(120, 62, 30, .07);
}
.calendar-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .6rem;
}
.calendar-head .month {
  font-family: var(--serif); font-weight: 700; font-size: 1.2rem; color: var(--terra);
}
.cal-nav {
  background: none; border: 0; cursor: pointer; color: var(--ink);
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  transition: background-color .2s;
}
.cal-nav:hover:not(:disabled) { background: var(--blush-light); }
.cal-nav:disabled { opacity: .3; cursor: default; }

.calendar table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.calendar th {
  font: 600 .68rem/1 var(--sans); letter-spacing: .06em;
  color: var(--ink); padding-block: .45rem; text-align: center;
}
.calendar td { text-align: center; padding: 2px; }
.cal-day {
  width: 100%; aspect-ratio: 1; max-height: 42px;
  border: 0; background: none; border-radius: 50%;
  font: 500 .92rem var(--serif); color: var(--ink);
  cursor: pointer;
  display: inline-grid; place-items: center;
  transition: background-color .2s, color .2s;
}
.cal-day:hover:not(:disabled) { background: var(--blush); }
.cal-day:disabled { color: #C9B8A9; cursor: default; }
.cal-day[aria-pressed="true"] { background: var(--terra); color: #fff; font-weight: 700; }

.slots-title {
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  color: var(--ink); text-align: center; margin: .2rem 0 .9rem;
}
.slots { display: grid; gap: .55rem; }
.slot {
  font: 500 1rem var(--serif);
  border: 1.5px solid var(--cognac);
  color: var(--cognac); background: var(--card);
  border-radius: 10px; padding: .5rem;
  cursor: pointer; text-align: center;
  transition: background-color .2s, color .2s, border-color .2s;
}
.slot:hover { background: var(--blush-light); }
.slot[aria-pressed="true"] { background: var(--terra); border-color: var(--terra); color: #fff; }

.tz-note { font-size: .72rem; color: var(--body); text-align: right; margin: .8rem 0 0; white-space: nowrap; }

.booking-confirm {
  margin-top: 1rem; text-align: center;
  display: none;
}
.booking-confirm.show { display: block; }
.booking-confirm p { font-size: .95rem; margin-bottom: .7rem; }
.booking-confirm strong { color: var(--terra); }
.booking-confirm .btn { font-size: .95rem; padding: .7rem 1.4rem; }

@media (max-width: 1080px) {
  .packages-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .package-cards { grid-template-columns: 1fr; }
  .package { padding: 1.8rem 1.5rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .tz-note { text-align: center; }
}

/* ============ Contact + reviews ============ */

.connect-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 3.5vw, 3rem);
  align-items: start;
}
.connect-grid > * { min-width: 0; }
@media (min-width: 1081px) {
  .connect-grid--contact { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); }
}

.contact-panel {
  background:
    radial-gradient(100% 130% at 8% 90%, rgba(240, 200, 176, .6) 0%, transparent 58%),
    radial-gradient(120% 100% at 90% 6%, rgba(240, 200, 176, .38) 0%, transparent 55%),
    var(--blush-light);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(1.6rem, 3vw, 2.3rem);
  position: relative;
}
.contact-panel .deco-branch--corner {
  position: absolute; left: -30px; bottom: -30px;
  width: 84px; color: var(--olive);
  transform: rotate(58deg) scaleX(-1);
  opacity: .85;
}

.contact-panel h2 {
  font-size: clamp(1.35rem, 1.9vw, 1.6rem);
  color: var(--olive-dark);
  display: flex; align-items: center; justify-content: center; gap: .7rem;
  text-align: center;
}
.contact-panel h2 .icon-heart { width: 26px; color: var(--terra); transform: rotate(6deg); flex: none; }
.contact-sub { text-align: center; font-size: .95rem; margin: .5rem 0 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr; gap: .8rem; margin-bottom: .8rem; }
@media (min-width: 560px) { .form-row { grid-template-columns: 1fr 1fr 1fr; } }

.field label { display: block; }
.field input, .field textarea {
  width: 100%;
  font: 400 .95rem/1.5 var(--sans);
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #8A7460; opacity: 1; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--cognac);
  box-shadow: 0 0 0 3px rgba(139, 74, 30, .14);
}
.field textarea { min-height: 132px; resize: vertical; }
.field .error-msg {
  display: none; font-size: .8rem; color: #8C2413; margin-top: .3rem;
}
.field.invalid input, .field.invalid textarea { border-color: #B03A20; }
.field.invalid .error-msg { display: block; }

.form-foot {
  display: flex; align-items: flex-end; justify-content: flex-end; gap: 1rem;
  margin-top: .9rem;
}
.form-note { font-size: .8rem; color: var(--body); margin: 0 auto 0 0; max-width: 30ch; }

.form-success {
  text-align: center; padding: 2.5rem 1rem;
  font-family: var(--serif); font-size: 1.15rem; line-height: 1.7; color: var(--olive-dark);
}
.form-success .signature { font-family: var(--script); font-size: 1.7rem; color: var(--cognac); display: block; margin-top: .5rem; }

/* Reviews */

.reviews .section-title { justify-content: center; margin-bottom: 1.8rem; }

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 1.6vw, 1.3rem);
}

.review {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.15rem 1.2rem;
  display: flex; flex-direction: column;
}
.review .quote-mark {
  font-family: var(--serif); font-weight: 700;
  font-size: 2.6rem; line-height: .6;
  color: var(--terra);
  display: block; margin: .35rem 0 .9rem;
}
.review blockquote {
  margin: 0 0 1rem;
  font-family: var(--serif); font-size: .95rem; line-height: 1.68; color: var(--ink);
}
.review figcaption {
  margin-top: auto;
  font-family: var(--serif); font-weight: 500; font-size: .92rem; color: var(--cognac);
}

.review-dots {
  display: flex; justify-content: center; gap: .55rem; margin-top: 1.5rem;
}
.review-dots button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 0; padding: 6px; cursor: pointer;
  background: var(--blush);
  background-clip: content-box;
  transition: background-color .25s, transform .25s;
}
.review-dots button[aria-current="true"] { background-color: var(--terra); transform: scale(1.15); }

@media (max-width: 1080px) {
  .connect-grid { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 860px) {
  .review-track {
    grid-template-columns: none;
    grid-auto-flow: column; grid-auto-columns: min(78vw, 320px);
    min-width: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 .2rem .5rem;
    margin-inline: -.2rem;
  }
  .review-track::-webkit-scrollbar { display: none; }
  .review { scroll-snap-align: center; }
}
@media (min-width: 861px) {
  .review-dots { display: none; }
}

/* ============ Footer ============ */

.footer-wave {
  display: block; width: 100%; height: clamp(34px, 6.5vw, 84px);
  color: var(--terra);
  margin-bottom: -1px;
}

.site-footer {
  background-color: var(--terra);
  background-image: linear-gradient(rgba(122, 46, 20, .3), rgba(122, 46, 20, .3)),
    url('../img/footer-texture.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { color: var(--blush); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr .8fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(2.6rem, 5vw, 4rem) clamp(2.2rem, 4vw, 3.2rem);
  position: relative; z-index: var(--z-content);
}

.footer-brand img { width: 132px; margin-bottom: 1rem; }
.footer-tagline {
  font-family: var(--script); font-size: 1.55rem; line-height: 1.4;
  color: #fff; margin-bottom: .6rem;
}
.footer-brand p { font-size: .88rem; color: rgba(255, 255, 255, .82); max-width: 32ch; }

.site-footer h2 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; color: #fff;
  margin-bottom: 1.1rem;
}
.footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .8rem; }
.footer-contact li { display: flex; align-items: center; gap: .8rem; font-size: .93rem; }
.footer-contact .icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .5);
  display: grid; place-items: center;
}
.footer-contact .icon svg { width: 15px; height: 15px; }

.footer-social { display: flex; gap: .8rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .55);
  display: grid; place-items: center;
  transition: background-color .25s, border-color .25s;
}
.footer-social a:hover { background: rgba(255, 255, 255, .14); border-color: #fff; color: #fff; }
.footer-social svg { width: 17px; height: 17px; }

.site-footer .deco-branch--fl {
  position: absolute; left: -1.4rem; bottom: 8%;
  width: 120px; color: rgba(255, 255, 255, .35); transform: rotate(18deg);
}
.site-footer .deco-branch--fr {
  position: absolute; right: -1rem; top: 14%;
  width: 140px; color: rgba(255, 255, 255, .3); transform: rotate(-150deg);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
  background: rgba(122, 46, 20, .55);
  position: relative; z-index: var(--z-content);
}
.footer-bottom .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1rem;
  padding-block: 1rem;
  font-size: .8rem; color: rgba(255, 255, 255, .72);
}
.footer-bottom a { color: rgba(255, 255, 255, .72); text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ============ Subpage: page hero ============ */

.page-hero {
  position: relative;
  background: var(--terra) url('../img/footer-texture.webp') center / cover no-repeat;
  padding-top: clamp(9rem, 15vw, 12.5rem);
  overflow: hidden;
  text-align: center;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
}
.page-hero .script-line {
  display: block;
  font-family: var(--script); font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #fff;
  margin-top: .7rem;
  letter-spacing: .04em;
}
.page-hero .page-hero-sub {
  color: rgba(255, 255, 255, .92);
  max-width: 58ch;
  margin: 1.1rem auto 0;
  font-size: 1.02rem;
}
.page-hero .container { position: relative; z-index: var(--z-content); padding-bottom: clamp(4.5rem, 9vw, 7rem); }
.page-hero .deco-branch--tr {
  position: absolute; top: clamp(4.5rem, 9vw, 7rem); right: -1.2rem;
  width: clamp(80px, 10vw, 140px); color: rgba(255, 255, 255, .7);
  transform: rotate(148deg);
}
.page-hero .deco-branch--bl {
  position: absolute; left: -1.4rem; bottom: 18%;
  width: clamp(70px, 8vw, 110px); color: rgba(255, 255, 255, .45);
  transform: rotate(24deg);
}

/* ============ Photos ============ */

.photo {
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(120, 62, 30, .14);
}
.photo--circle {
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
.photo-caption { font-size: .82rem; color: var(--muted); margin-top: .6rem; text-align: center; }

/* ============ Split sections (image + text) ============ */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--flip { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }
.split--flip .split-media { order: 2; }
.split h2 { font-size: var(--fs-h2); color: var(--olive-dark); line-height: 1.25; margin-bottom: 1.1rem; }
.split h2 .script-accent {
  display: block; font-family: var(--script); font-weight: 400;
  font-size: .85em; color: var(--terra); margin-top: .35rem; letter-spacing: .04em;
}
.split p { max-width: 58ch; }
.split .btn { margin-top: .8rem; }

.checklist { list-style: none; margin: 1.2rem 0 0; padding: 0; display: grid; gap: .7rem; }
.checklist li { display: flex; gap: .7rem; align-items: baseline; line-height: 1.55; }
.checklist .icon-check { flex: none; width: 15px; height: 15px; color: var(--terra); transform: translateY(2px); }
.checklist strong { color: var(--ink); }

@media (max-width: 900px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split-media { order: 0; }
}

/* ============ Process steps ============ */

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 2.2rem;
}
.step {
  counter-increment: step;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  position: relative;
}
.step::before {
  content: counter(step);
  display: grid; place-items: center;
  width: 46px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #F6D9C6 0%, var(--blush) 78%);
  font-family: var(--script); font-size: 1.5rem; color: var(--terra);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.15rem; color: var(--cognac); margin-bottom: .5rem; }
.step p { font-size: .93rem; margin: 0; }

/* ============ FAQ accordion ============ */

.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--sans); font-size: 1.3rem; font-weight: 400; color: var(--terra);
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 1.3rem 1.2rem; }
.faq details > div p { margin-bottom: .6em; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ============ CTA band (pre-footer) ============ */

.cta-band { padding-block: clamp(1rem, 3vw, 2rem) clamp(3.2rem, 7vw, 5.5rem); }
.cta-band .inner {
  position: relative;
  background:
    radial-gradient(120% 90% at 10% 10%, rgba(240, 200, 176, .5) 0%, transparent 55%),
    radial-gradient(130% 100% at 90% 90%, rgba(240, 200, 176, .45) 0%, transparent 60%),
    var(--blush-light);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: clamp(2.2rem, 5vw, 3.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--olive-dark);
}
.cta-band .script-line {
  display: block; font-family: var(--script); font-weight: 400;
  font-size: .95em; color: var(--terra); margin-top: .4rem; letter-spacing: .04em;
}
.cta-band p { max-width: 52ch; margin: .9rem auto 1.6rem; }
.cta-band .cta-row { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band .btn--outline-cognac {
  background: transparent; color: var(--cognac); border-color: var(--cognac);
}
.cta-band .btn--outline-cognac:hover { background: rgba(139, 74, 30, .08); }
.cta-band .deco-branch--l {
  position: absolute; left: -22px; bottom: -24px; width: 96px;
  color: var(--olive); transform: rotate(50deg) scaleX(-1); opacity: .8;
}
.cta-band .deco-branch--r {
  position: absolute; right: -20px; top: -26px; width: 96px;
  color: var(--olive); transform: rotate(-130deg); opacity: .8;
}

/* ============ Prose (privacyverklaring) ============ */

.prose { max-width: 70ch; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; color: var(--olive-dark); margin: 2.2rem 0 .8rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .4rem; }

/* ============ Image gallery row ============ */

.photo-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: stretch;
}
.photo-row .photo { width: 100%; height: 100%; object-fit: cover; }

/* ============ Small-screen touch polish ============ */

@media (max-width: 700px) {
  .cta-band .deco-branch--l, .cta-band .deco-branch--r { display: none; }
  .booking .deco-branch--corner, .contact-panel .deco-branch--corner { opacity: .45; }
}
@media (max-width: 560px) {
  .hero-cta .btn,
  .cta-band .cta-row .btn,
  .booking-confirm .btn { width: 100%; justify-content: center; }
  .form-foot { justify-content: stretch; }
  .form-foot .btn { width: 100%; justify-content: center; }
  .split .btn { width: 100%; justify-content: center; }
}

/* ============ Scroll reveals (enhance-only) ============ */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
html.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .cal-day, .slot { transition: none; }
}
