/* ==========================================================================
   Cuisine de Liesbeth, design system
   Rustiek-luxe: Franse landelijkheid × moderne premium uitstraling
   ========================================================================== */

:root {
  /* Kleuren */
  --cream: #FAF6EE;
  --cream-2: #F3ECDD;
  --cream-3: #EDE3CF;
  --ink: #21261F;
  --ink-soft: #55604F;
  --green: #2E4634;
  --green-deep: #24382A;
  --green-soft: #3D5B48;
  --terra: #C05F32;
  --terra-deep: #A34D26;
  --blush: #F0DDD0;
  --gold: #B98A47;
  --line: rgba(33, 38, 31, 0.14);
  --line-light: rgba(250, 246, 238, 0.22);

  /* Typografie */
  --font-display: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  /* Maten */
  --container: 1180px;
  --radius-img: 26px;
  --radius-card: 18px;
  --section: clamp(4.5rem, 9vw, 7.5rem);
  --header-h: 84px;

  --ease: cubic-bezier(0.22, 0.8, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 5.6vw, 4.35rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

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

section { padding-block: var(--section); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.8;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1.5px;
  background: currentColor;
  opacity: 0.8;
}

.section-head { max-width: 700px; margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }

/* --------------------------------------------------------------------------
   Knoppen
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: var(--green);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(36, 56, 42, 0.55);
}

.btn--terra {
  background: var(--terra);
  color: var(--cream);
}
.btn--terra:hover {
  background: var(--terra-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(163, 77, 38, 0.55);
}

.btn--ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--cream);
  color: var(--green-deep);
}
.btn--light:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.4);
}

.btn--ghost-light {
  border-color: var(--line-light);
  color: var(--cream);
  background: transparent;
}
.btn--ghost-light:hover { border-color: var(--cream); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Header & navigatie
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header.is-hidden { transform: translateY(-110%); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand__name em { font-style: italic; font-weight: 500; }
.brand__sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a:not(.btn) {
  position: relative;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: 0.4rem;
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.btn):hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__links .btn { padding: 0.7rem 1.35rem; font-size: 0.88rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 80;
}
.nav__toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.4rem;
    background: var(--cream);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.4s ease;
    z-index: 70;
  }
  .nav__links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav__links a:not(.btn) {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 500;
  }
  .nav__links .btn { margin-top: 0.8rem; }
}

/* --------------------------------------------------------------------------
   Foto-placeholders, worden automatisch vervangen zodra echte foto's
   in assets/img/ staan (zie js/main.js + FOTOS.md)
   -------------------------------------------------------------------------- */
.ph {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-img);
  background: var(--cream-2);
  isolation: isolate;
}
.ph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.9;
}
.ph figcaption {
  position: absolute;
  z-index: 2;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem 1.3rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(250, 246, 238, 0.85);
  background: linear-gradient(180deg, transparent, rgba(30, 34, 28, 0.45));
}
.ph.has-img figcaption { display: none; }
.ph img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sfeer-gradients per onderwerp */
.ph--hero::before {
  background:
    radial-gradient(120% 90% at 15% 12%, rgba(240, 221, 208, 0.5) 0%, transparent 45%),
    radial-gradient(100% 80% at 85% 90%, rgba(46, 70, 52, 0.9) 0%, transparent 60%),
    linear-gradient(160deg, #C9A876 0%, #9A7B4F 30%, #5C6B4A 62%, #2E4634 100%);
}
.ph--portrait::before {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(240, 221, 208, 0.75) 0%, transparent 55%),
    linear-gradient(165deg, #E8CDB4 0%, #C99B72 45%, #8F6B48 100%);
}
.ph--brood::before {
  background:
    radial-gradient(80% 60% at 50% 35%, rgba(250, 236, 210, 0.85) 0%, transparent 60%),
    linear-gradient(170deg, #E9CFA4 0%, #C99A5D 50%, #8C6234 100%);
}
.ph--dordogne::before {
  background:
    radial-gradient(100% 60% at 50% 0%, rgba(214, 226, 219, 0.9) 0%, transparent 55%),
    linear-gradient(175deg, #B9C9BC 0%, #6E8A74 45%, #3A5544 100%);
}
.ph--workshop::before {
  background:
    radial-gradient(90% 70% at 25% 25%, rgba(243, 236, 221, 0.85) 0%, transparent 55%),
    linear-gradient(160deg, #D9C8A9 0%, #A98F66 50%, #6B5B3E 100%);
}
.ph--tafel::before {
  background:
    radial-gradient(90% 70% at 70% 20%, rgba(240, 221, 208, 0.6) 0%, transparent 50%),
    linear-gradient(165deg, #D8B590 0%, #B07E52 48%, #714E2E 100%);
}
.ph--gerecht::before {
  background:
    radial-gradient(85% 65% at 50% 30%, rgba(250, 246, 238, 0.9) 0%, transparent 58%),
    linear-gradient(170deg, #EADFC8 0%, #C3B48D 50%, #7E7452 100%);
}
.ph--tm7::before {
  background:
    radial-gradient(80% 60% at 50% 28%, rgba(120, 140, 122, 0.55) 0%, transparent 60%),
    linear-gradient(170deg, #46584A 0%, #33443A 50%, #1F2C24 100%);
}
.ph--markt::before {
  background:
    radial-gradient(90% 70% at 30% 20%, rgba(240, 221, 208, 0.7) 0%, transparent 55%),
    linear-gradient(160deg, #DDBB9A 0%, #B98A5E 48%, #7A5638 100%);
}

/* --------------------------------------------------------------------------
   Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--terra);
}
.hero .lead { margin-bottom: 2.2rem; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero__trust li { display: flex; align-items: center; gap: 0.5rem; }
.hero__trust svg { width: 15px; height: 15px; color: var(--gold); flex: none; }

.hero__visual { position: relative; }
.hero__arch {
  aspect-ratio: 4 / 5.1;
  border-radius: 999px 999px var(--radius-img) var(--radius-img);
  max-height: 640px;
  width: 100%;
}
.hero__card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 18px 40px -18px rgba(33, 38, 31, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  z-index: 3;
}
.hero__card small {
  display: block;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-soft);
}
.hero__card svg { width: 26px; height: 26px; color: var(--terra); flex: none; }
.hero__card--1 { top: 9%; left: -7%; }
.hero__card--2 { bottom: 20%; right: -6%; }
.hero__card--3 { bottom: -4%; left: 10%; }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; }
  .hero__card--1 { left: auto; right: -2%; }
  .hero__card--2 { right: auto; left: -2%; }
  .hero__card--3 { left: 30%; bottom: -5%; }
}

/* --------------------------------------------------------------------------
   Intro / welkom
   -------------------------------------------------------------------------- */
.intro { background: var(--cream); }
.intro__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.intro__portrait { aspect-ratio: 4 / 4.6; }
.intro__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--terra);
  margin-top: 1.6rem;
}
.intro__meta {
  display: flex;
  gap: 2.2rem;
  margin-top: 1.9rem;
  padding-top: 1.9rem;
  border-top: 1px solid var(--line);
}
.intro__meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--green);
}
.intro__meta span { font-size: 0.85rem; color: var(--ink-soft); }

@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; }
  .intro__portrait { max-width: 380px; }
}

/* --------------------------------------------------------------------------
   TM7 sectie (donker)
   -------------------------------------------------------------------------- */
.tm7 {
  background:
    radial-gradient(110% 90% at 88% -10%, rgba(61, 91, 72, 0.55) 0%, transparent 55%),
    var(--green-deep);
  color: var(--cream);
}
.tm7 .eyebrow { color: var(--gold); }
.tm7 .lead { color: rgba(250, 246, 238, 0.78); }

.tm7__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.tm7__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 2.4rem;
}
.feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: rgba(250, 246, 238, 0.06);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-card);
  transition: background 0.3s ease, transform 0.3s var(--ease);
}
.feature:hover { background: rgba(250, 246, 238, 0.1); transform: translateY(-3px); }
.feature svg { width: 24px; height: 24px; color: var(--gold); flex: none; margin-top: 2px; }
.feature strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.feature span { font-size: 0.84rem; color: rgba(250, 246, 238, 0.68); line-height: 1.5; }

.tm7__card {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius-img);
  padding: clamp(1.8rem, 3.5vw, 2.7rem);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.55);
}
.tm7__card .device { margin-inline: auto; margin-bottom: 1.4rem; width: min(200px, 60%); }
.tm7__card h3 { text-align: center; margin-bottom: 0.2rem; }
.tm7__card .price {
  text-align: center;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--green);
  margin: 0.4rem 0 0.2rem;
}
.tm7__card .price sup { font-size: 1.1rem; font-weight: 500; }
.tm7__card .price-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.tm7__card ul {
  list-style: none;
  margin: 0 0 1.7rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.7rem;
  font-size: 0.92rem;
}
.tm7__card li { display: flex; gap: 0.6rem; align-items: flex-start; }
.tm7__card li svg { width: 16px; height: 16px; color: var(--terra); flex: none; margin-top: 4px; }
.tm7__card .btn { width: 100%; justify-content: center; }
.tm7__card .micro {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

@media (max-width: 980px) {
  .tm7__grid { grid-template-columns: 1fr; }
  .tm7__features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .tm7__features { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Workshops
   -------------------------------------------------------------------------- */
.workshops { background: var(--cream-2); }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-img);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(33, 38, 31, 0.06);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(33, 38, 31, 0.35);
}
.card .ph { border-radius: 0; aspect-ratio: 16 / 10.5; }
.card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { font-size: 0.94rem; color: var(--ink-soft); }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
}
.card__meta li {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--ink-soft);
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--terra);
}
.card__link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.card:hover .card__link svg { transform: translateX(4px); }

@media (max-width: 960px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* Frankrijk-banner */
.france-banner {
  position: relative;
  margin-top: 1.6rem;
  border-radius: var(--radius-img);
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}
.france-banner .ph {
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.france-banner .ph figcaption { display: none; }
.france-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg, rgba(31, 44, 36, 0.88) 20%, rgba(31, 44, 36, 0.25) 75%, transparent);
}
.france-banner__inner {
  position: relative;
  z-index: 2;
  padding: clamp(2.4rem, 5.5vw, 4.2rem);
  max-width: 620px;
}
.france-banner .eyebrow { color: var(--gold); }
.france-banner p { color: rgba(250, 246, 238, 0.85); font-size: 0.98rem; }
.france-banner .btn { margin-top: 1.4rem; }

/* --------------------------------------------------------------------------
   Ervaringen
   -------------------------------------------------------------------------- */
.reviews { background: var(--cream); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review {
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  background: var(--cream-2);
  border-radius: var(--radius-img);
  position: relative;
}
.review::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4.6rem;
  line-height: 0.6;
  color: var(--terra);
  display: block;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}
.review blockquote {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 480;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.review figcaption { font-size: 0.88rem; color: var(--ink-soft); }
.review figcaption strong { color: var(--ink); font-weight: 600; display: block; }

@media (max-width: 820px) {
  .reviews__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Recepten & Instagram
   -------------------------------------------------------------------------- */
.recipes { background: var(--cream-2); }
.recipes .cards-3 .card .ph { aspect-ratio: 4 / 3; }
.badge {
  position: absolute;
  z-index: 3;
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(250, 246, 238, 0.92);
  color: var(--terra-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insta-band {
  margin-top: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: clamp(1.6rem, 3.5vw, 2.4rem) clamp(1.7rem, 4vw, 3rem);
  background: var(--cream);
  border-radius: var(--radius-img);
  border: 1px solid rgba(33, 38, 31, 0.06);
  flex-wrap: wrap;
}
.insta-band__label { display: flex; align-items: center; gap: 1.1rem; }
.insta-band__label svg { width: 40px; height: 40px; color: var(--terra); }
.insta-band__label strong { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; display: block; }
.insta-band__label span { font-size: 0.88rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   CTA-band
   -------------------------------------------------------------------------- */
.cta-band {
  background:
    radial-gradient(100% 130% at 10% 0%, rgba(192, 95, 50, 0.16) 0%, transparent 50%),
    radial-gradient(100% 130% at 90% 100%, rgba(185, 138, 71, 0.18) 0%, transparent 50%),
    var(--blush);
  text-align: center;
}
.cta-band h2 { max-width: 640px; margin-inline: auto; }
.cta-band h2 em { font-style: italic; font-weight: 500; color: var(--terra); }
.cta-band .lead { margin: 0 auto 2.2rem; }
.cta-band__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(250, 246, 238, 0.75);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
.site-footer a:hover { color: var(--cream); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 238, 0.14);
}
.footer__brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9rem; max-width: 30ch; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-top: 1.8rem;
  font-size: 0.78rem;
  color: rgba(250, 246, 238, 0.45);
}

@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Subpagina's, page-hero
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-hero .lead { max-width: 62ch; }
.page-hero--center { text-align: center; }
.page-hero--center .lead { margin-inline: auto; }

/* Split-secties */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split .ph { aspect-ratio: 4 / 3.4; }
.split--rev > *:first-child { order: 2; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--rev > *:first-child { order: 0; }
}

/* Chips (functies TM7) */
.chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.6rem; }
.chip {
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--cream);
}
.chip--accent { background: var(--green); border-color: var(--green); color: var(--cream); }

/* Stappen */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 2rem 1.8rem;
  background: var(--cream);
  border-radius: var(--radius-img);
  border: 1px solid rgba(33, 38, 31, 0.07);
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--terra);
  opacity: 0.9;
  display: block;
  margin-bottom: 0.9rem;
  line-height: 1;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 1.2rem;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--terra);
  transition: transform 0.3s var(--ease);
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-top: 0.8rem; color: var(--ink-soft); font-size: 0.97rem; max-width: 60ch; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { display: grid; gap: 1.1rem; }
.info-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(33, 38, 31, 0.07);
  border-radius: var(--radius-card);
}
.info-card svg { width: 22px; height: 22px; color: var(--terra); flex: none; margin-top: 3px; }
.info-card strong { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--ink-soft); margin: 0; text-decoration: none; }
.info-card a:hover { color: var(--terra); }

.form {
  background: var(--cream);
  border: 1px solid rgba(33, 38, 31, 0.08);
  border-radius: var(--radius-img);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: 0 30px 60px -40px rgba(33, 38, 31, 0.3);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 640px) { .form__row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form .field { margin-bottom: 1.15rem; }
.form input, .form select, .form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46, 70, 52, 0.14);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; }
.form__note { font-size: 0.78rem; color: var(--ink-soft); text-align: center; margin-top: 0.9rem; }
.form__success {
  display: none;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  background: rgba(46, 70, 52, 0.1);
  border: 1px solid rgba(46, 70, 52, 0.25);
  color: var(--green-deep);
  font-size: 0.9rem;
  margin-bottom: 1.1rem;
}
.form__success.is-visible { display: block; }

/* --------------------------------------------------------------------------
   Reveal-animaties
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .feature { transition: none; }
}

/* Uitsnede-hulpklassen voor staande foto's in liggende kaders */
.ph--top img { object-position: 50% 18%; }

/* --------------------------------------------------------------------------
   Receptenarchief
   -------------------------------------------------------------------------- */
.archief-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(1.8rem, 4vw, 2.6rem);
}
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.filter-chip {
  padding: 0.5rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--green); border-color: var(--green); color: var(--cream); }
.archief-zoek { position: relative; }
.archief-zoek input {
  font: inherit;
  font-size: 0.92rem;
  padding: 0.6rem 1.1rem 0.6rem 2.6rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: min(260px, 70vw);
  transition: border-color 0.25s ease;
}
.archief-zoek input:focus { outline: none; border-color: var(--green); }
.archief-zoek svg {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  translate: 0 -50%;
  width: 16px;
  height: 16px;
  color: var(--ink-soft);
  pointer-events: none;
}
.recept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.recept-kaart {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 0 var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.recept-kaart:hover { transform: translateY(-5px); box-shadow: 0 24px 44px -24px rgba(33, 38, 31, 0.35); }
.recept-kaart figure { margin: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.recept-kaart img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.recept-kaart:hover img { transform: scale(1.05); }
.recept-kaart__body {
  padding: 1.15rem 1.3rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.recept-kaart__cat {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terra);
}
.recept-kaart h3 { font-size: 1.16rem; margin: 0; }
.recept-kaart__meta {
  margin-top: auto;
  padding-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.gv-pill {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green);
  border: 1px solid var(--green-soft);
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
}
.geen-resultaat {
  display: none;
  text-align: center;
  color: var(--ink-soft);
  padding: 3rem 0;
}
.archief-teller { font-size: 0.88rem; color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   Receptpagina
   -------------------------------------------------------------------------- */
.terug-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
  transition: color 0.25s ease;
}
.terug-link:hover { color: var(--terra); }
.terug-link svg { width: 15px; height: 15px; }
.recept-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.recept-hero__img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: var(--radius-img);
  display: block;
}
.recept-bron { font-size: 0.9rem; font-style: italic; color: var(--ink-soft); margin-top: 1rem; }
.recept-body {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}
.ingredienten-kaart {
  background: #fff;
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  position: sticky;
  top: calc(var(--header-h) + 1.2rem);
}
.ingredienten-kaart h2 { font-size: 1.45rem; margin-bottom: 1.1rem; }
.ingredienten-kaart h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 1.3rem 0 0.4rem;
}
.ingredienten-kaart ul { list-style: none; margin: 0; padding: 0; }
.ingredienten-kaart li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  line-height: 1.5;
}
.ingredienten-kaart li:last-child { border-bottom: 0; }
.ingredienten-kaart .benodigd {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.stappen { counter-reset: stap; }
.stappen h2 { font-size: 1.45rem; margin-bottom: 1.4rem; }
.stappen h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  margin: 1.8rem 0 1.1rem;
}
.stappen ol { list-style: none; margin: 0; padding: 0; }
.stappen li {
  counter-increment: stap;
  position: relative;
  padding: 0 0 1.35rem 3.4rem;
}
.stappen li::before {
  content: counter(stap);
  position: absolute;
  left: 0;
  top: -0.15rem;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--terra);
  color: var(--terra);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}
.tips-kaart {
  margin-top: 2.2rem;
  background: var(--cream-2);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.tips-kaart h2 { font-size: 1.25rem; margin-bottom: 0.8rem; }
.tips-kaart ul { margin: 0; padding-left: 1.2rem; }
.tips-kaart li { margin-bottom: 0.5rem; }
.tips-kaart li:last-child { margin-bottom: 0; }

@media (max-width: 1020px) {
  .recept-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .recept-body { grid-template-columns: 1fr; }
  .ingredienten-kaart { position: static; }
}
@media (max-width: 620px) {
  .recept-grid { grid-template-columns: 1fr; }
  .archief-tools { flex-direction: column; align-items: stretch; }
  .archief-zoek input { width: 100%; }
}

/* --------------------------------------------------------------------------
   Zwevende WhatsApp-knop
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 1.3rem;
  bottom: calc(1.3rem + env(safe-area-inset-bottom, 0px));
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 16px 34px -14px rgba(36, 56, 42, 0.6);
  transition: transform 0.3s var(--ease), background 0.25s ease;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover {
  transform: translateY(-3px) scale(1.04);
  background: var(--green-deep);
}

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.bg-alt { background: var(--cream-2); }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--green);
  color: var(--cream);
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------------------
   WordPress-specifiek
   -------------------------------------------------------------------------- */
.hp-veld { position: absolute !important; left: -9999px !important; }
.recept-kaart figure img, .recept-hero__img { background: var(--cream-2); }
.page .bg-alt h2 { font-size: 1.5rem; margin-top: 2rem; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; background: var(--cream); padding: 0.6rem 1rem; border-radius: 8px; }
