/* ===================================================
   2DAY HOME — styles.css
   Editorial Warmth Design System
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,500;1,9..144,600;1,9..144,700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Design Tokens ───────────────────────────────── */
:root {
  --cream:       #F5F1EA;
  --off-white:   #FAF8F4;
  --beige:       #C9A96E;
  --gold:        #B89968;
  --light-gold:  #E8D5B0;
  --warm-dark:   #2B2520;
  --warm-gray:   #E8E4DF;
  --text-body:   #3A3028;
  --text-muted:  #7A6E64;

  --ff-serif:  'Fraunces', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  --max-w:     1200px;
  --section-v: clamp(5rem, 10vw, 9rem);

  --shadow-card:  0 2px 16px rgba(43, 37, 32, 0.07);
  --shadow-hover: 0 8px 32px rgba(43, 37, 32, 0.13);

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--text-body);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Typography Scale ────────────────────────────── */
.display {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 600;
  line-height: 1.05;
  font-optical-sizing: auto;
  letter-spacing: -0.02em;
}

.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--beige);
}

h2.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  font-optical-sizing: auto;
  letter-spacing: -0.015em;
}

h3.product-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--beige);
}

.section-number {
  font-family: var(--ff-serif);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Layout Helpers ──────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section-pad {
  padding-top: var(--section-v);
  padding-bottom: var(--section-v);
}

/* ── Scroll Fade-in ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-quart),
              transform 0.7s var(--ease-out-quart);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.4rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.nav.scrolled {
  background: var(--cream);
  box-shadow: 0 1px 0 rgba(43, 37, 32, 0.08);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-dark);
  line-height: 1.2;
  font-style: normal;
}

.nav-logo span {
  display: block;
  font-size: 0.6rem;
  font-family: var(--ff-sans);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-dark);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--beige);
  transition: width 0.25s ease;
}

.nav-links a:hover { color: var(--beige); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--warm-dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--warm-dark);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: var(--beige); }

/* ═══════════════════════════════════════════════════
   HERO — Optie B: Atmosfeer-foto met gradient fade
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--off-white);
  overflow: hidden;
}

/* Foto rechts, faded naar links */
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  pointer-events: none;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient overlay: cream links, transparant rechts */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--off-white) 0%,
    rgba(250, 248, 244, 0.88) 30%,
    rgba(250, 248, 244, 0.45) 60%,
    transparent 100%
  );
}

/* Verticale vignette top + bottom voor diepte */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--off-white) 0%, transparent 18%),
    linear-gradient(to top, var(--off-white) 0%, transparent 18%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
  padding-top: clamp(8rem, 14vw, 12rem);
  padding-bottom: clamp(8rem, 14vw, 12rem);
}

.hero-content .eyebrow {
  margin-bottom: 1.5rem;
  display: block;
}

.hero-content .display {
  margin-bottom: 1.5rem;
}

.hero-subhead {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 38ch;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

/* Tekst-link CTA (subtiel, geen knop) */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(58, 48, 40, 0.35);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-text-link:hover {
  color: var(--beige);
  text-decoration-color: var(--beige);
}

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease,
              box-shadow 0.25s ease, transform 0.2s ease;
  border: none;
  text-decoration: none;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--beige);
  color: var(--warm-dark);
}
.btn-primary:hover {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--warm-dark);
  border: 1.5px solid var(--warm-dark);
}
.btn-secondary:hover {
  background: var(--warm-dark);
  color: var(--cream);
}

.btn-outline-beige {
  background: transparent;
  color: var(--beige);
  border: 1.5px solid var(--beige);
}
.btn-outline-beige:hover {
  background: var(--beige);
  color: var(--warm-dark);
}

.btn-bol {
  background: var(--beige);
  color: var(--warm-dark);
}
.btn-bol:hover {
  background: var(--gold);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.3);
}

/* ═══════════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════════ */
.manifesto {
  background: var(--cream);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.manifesto-image {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.manifesto-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease-out-quart);
}

.manifesto-image:hover img { transform: scale(1.025); }

.manifesto-image-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 60%;
  height: 60%;
  border: 1px solid var(--light-gold);
  border-radius: 2px;
  pointer-events: none;
  z-index: -1;
}

.manifesto-text .eyebrow { margin-bottom: 1rem; }
.manifesto-text h2 { margin-bottom: 2rem; }

.manifesto-body p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════
   PRODUCT INTRO (bamboe als hoofdproduct)
   ═══════════════════════════════════════════════════ */
.product-intro {
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--warm-gray);
  display: flex;
  align-items: baseline;
  gap: 2rem;
}

.product-intro .eyebrow { margin-bottom: 0; }

.product-intro-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 48ch;
}

.product-hero-section { background: var(--off-white); }

/* ═══════════════════════════════════════════════════
   PRODUCT SECTIONS
   ═══════════════════════════════════════════════════ */
.product-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.product-section:nth-child(odd) { background: var(--cream); }
.product-section:nth-child(even) { background: var(--off-white); }

.product-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.product-grid.reverse {
  grid-template-columns: 45fr 55fr;
}

.product-grid.reverse .product-images { order: 2; }
.product-grid.reverse .product-info   { order: 1; }

.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-main-img {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.product-main-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: var(--off-white);
  padding: 1.5rem;
  transition: transform 0.5s var(--ease-out-quart);
}

.product-main-img:hover img { transform: scale(1.02); }

.product-secondary-img {
  border-radius: 2px;
  overflow: hidden;
  max-width: 65%;
  align-self: flex-end;
}

.product-secondary-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out-quart);
}

.product-secondary-img:hover img { transform: scale(1.02); }

/* Product Info */
.product-info .section-number { margin-bottom: 0.5rem; }
.product-info h3 { margin-bottom: 1rem; }

.product-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.product-usps {
  list-style: none;
  margin-bottom: 2rem;
}

.product-usps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--warm-gray);
  color: var(--text-body);
}

.product-usps li:last-child { border-bottom: none; }

.usp-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.usp-icon svg {
  width: 10px;
  height: 10px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-price {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--warm-dark);
  margin-bottom: 1.25rem;
}

.product-price small {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   MOMENTEN GRID
   ═══════════════════════════════════════════════════ */
.momenten {
  background: var(--warm-dark);
}

.momenten .eyebrow { color: var(--light-gold); margin-bottom: 1rem; }
.momenten .section-title { color: var(--off-white); margin-bottom: 0.75rem; }

.momenten-sub {
  color: rgba(250, 248, 244, 0.6);
  font-size: 1rem;
  margin-bottom: 3.5rem;
}

.momenten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.moment-card {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}

.moment-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out-quart);
  filter: brightness(0.88);
}

.moment-card:hover img { transform: scale(1.04); filter: brightness(0.95); }

.moment-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 244, 0.9);
}

/* ═══════════════════════════════════════════════════
   LEAD MAGNET (Receptenboek)
   ═══════════════════════════════════════════════════ */
.recepten {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.recepten::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.recepten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.recepten-image {
  border-radius: 2px;
  overflow: hidden;
}

.recepten-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center;
}

.recepten-content .eyebrow { margin-bottom: 1rem; }
.recepten-content h2 { margin-bottom: 0.75rem; }

.recepten-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.recepten-bullets {
  list-style: none;
  margin-bottom: 2rem;
}

.recepten-bullets li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--text-body);
  margin-bottom: 0.75rem;
}

.check-icon {
  flex-shrink: 0;
  color: var(--beige);
  margin-top: 2px;
}

/* Form */
.recepten-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.form-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: white;
  border: 1.5px solid var(--warm-gray);
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--text-body);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--beige);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-input::placeholder { color: var(--text-muted); }

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--warm-dark);
  color: var(--cream);
  border: none;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.form-submit:hover {
  background: var(--beige);
  color: var(--warm-dark);
  transform: translateY(-1px);
}

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════ */
.reviews {
  background: var(--cream);
}

.reviews .section-title { text-align: center; margin-bottom: 3rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 3px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.star {
  width: 14px;
  height: 14px;
  fill: var(--beige);
}

.review-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  font-optical-sizing: auto;
}

.review-name {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--warm-dark);
  border-radius: 3px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--light-gold);
  font-weight: 500;
}

.trust-item .trust-value {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 600;
}

.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(250, 248, 244, 0.15);
}

/* ═══════════════════════════════════════════════════
   MINI PRODUCT (Vaatdoekhouder)
   ═══════════════════════════════════════════════════ */
.meer {
  background: var(--off-white);
}

.meer .eyebrow { margin-bottom: 1rem; }
.meer .section-title { margin-bottom: 3rem; }

.meer-card {
  max-width: 380px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.meer-img-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--light-gold) 0%, var(--warm-gray) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem;
}

.meer-img-placeholder .placeholder-label {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--warm-dark);
  text-align: center;
  font-optical-sizing: auto;
}

.meer-img-placeholder .placeholder-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
}

.meer-card-body {
  padding: 1.75rem;
}

.meer-card-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.meer-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
footer {
  background: var(--warm-dark);
  color: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.5fr 1.8fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245, 241, 234, 0.55);
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.45);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  margin-bottom: 0.65rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.7);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--light-gold); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(245, 241, 234, 0.7);
  line-height: 1.65;
  margin-bottom: 0.5rem;
}

.footer-contact a {
  color: var(--light-gold);
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--beige); }

/* Footer Newsletter Mini-form */
.footer-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-input {
  padding: 0.7rem 1rem;
  background: rgba(245, 241, 234, 0.07);
  border: 1px solid rgba(245, 241, 234, 0.18);
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-input::placeholder { color: rgba(245, 241, 234, 0.4); }

.footer-input:focus {
  border-color: var(--beige);
  background: rgba(245, 241, 234, 0.1);
}

.footer-form-btn {
  padding: 0.7rem;
  background: var(--beige);
  color: var(--warm-dark);
  border: none;
  border-radius: 3px;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease;
}

.footer-form-btn:hover { background: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 234, 0.1);
  padding-top: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(245, 241, 234, 0.4);
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--light-gold); }

/* ═══════════════════════════════════════════════════
   THANK YOU PAGE
   ═══════════════════════════════════════════════════ */
.bedankt-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.bedankt-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  padding: 6rem 2rem;
}

.bedankt-content {
  max-width: 580px;
  text-align: center;
}

.bedankt-icon {
  width: 56px;
  height: 56px;
  background: var(--light-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.bedankt-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bedankt-content .eyebrow { margin-bottom: 1rem; }
.bedankt-content h1 { margin-bottom: 1rem; }

.bedankt-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.bedankt-download {
  margin: 2rem 0;
}

.bedankt-upsell {
  background: white;
  border-radius: 3px;
  padding: 2rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-card);
  text-align: left;
}

.bedankt-upsell p {
  font-size: 0.92rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.bedankt-upsell .upsell-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

.upsell-link-secondary {
  font-family: var(--ff-sans);
  font-size: 0.92rem;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--warm-gray);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.upsell-link-secondary:hover {
  color: var(--warm-dark);
  border-color: var(--warm-dark);
}

/* ═══════════════════════════════════════════════════
   SIMPLE PAGES (AV / Privacy)
   ═══════════════════════════════════════════════════ */
.simple-page {
  min-height: 100svh;
  padding: 8rem 2rem 5rem;
  background: var(--off-white);
}

.simple-page-content {
  max-width: 640px;
  margin: 0 auto;
}

.simple-page h1 {
  font-family: var(--ff-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 2rem;
  color: var(--warm-dark);
}

.simple-page p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.simple-page a { color: var(--beige); }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */

/* 1024px ─ tablet landscape */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .momenten-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 768px ─ tablet portrait */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-bg {
    width: 100%;
    opacity: 0.25;
  }

  .hero-bg::after {
    background: linear-gradient(
      to right,
      var(--off-white) 0%,
      rgba(250, 248, 244, 0.95) 40%,
      rgba(250, 248, 244, 0.85) 100%
    );
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .manifesto-image { max-width: 80%; }
  .manifesto-image-accent { display: none; }

  .product-grid,
  .product-grid.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-grid.reverse .product-images,
  .product-grid.reverse .product-info {
    order: unset;
  }

  .product-secondary-img { max-width: 50%; }

  .recepten-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .recepten-image { display: none; }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .trust-strip {
    flex-direction: column;
    gap: 1rem;
  }

  .trust-divider { display: none; }
}

/* 375px ─ mobile */
@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    text-align: center;
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .momenten-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bedankt-upsell .upsell-btns {
    flex-direction: column;
  }
}
