/* STR8FW save-the-date — styles.css
   ──────────────────────────────────────
   Palette: warm cream + fuchsia accent + subtle pride-gradient
   Typografie: Century Gothic (lokaal) / Jost (Google Fonts fallback)
*/

:root {
  --bg: #f6f3eb;
  --bg-elevated: #ffffff;
  --bg-soft: #efeadc;
  --text: #0f0c08;
  --text-muted: #5a5550;
  --text-faint: #8c857a;
  --accent: #e8267f;
  --accent-soft: rgba(232, 38, 127, 0.10);
  --accent-text: #b81260;
  --border: #e2dccd;
  --border-hi: #c8c1ae;
  --shadow-sm: 0 1px 2px rgba(15, 12, 8, 0.04);
  --shadow-md: 0 1px 3px rgba(15, 12, 8, 0.05), 0 12px 28px rgba(15, 12, 8, 0.06);
  --shadow-lg: 0 4px 12px rgba(15, 12, 8, 0.07), 0 28px 56px rgba(15, 12, 8, 0.08);
  --gradient: linear-gradient(90deg, #e40303 0%, #ff8c00 18%, #ffed00 36%, #008026 54%, #004dff 75%, #750787 100%);
  --font-display: 'Century Gothic', 'Jost', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: 'Jost', 'Century Gothic', system-ui, -apple-system, "Segoe UI", sans-serif;
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --section-y: clamp(32px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: var(--font-body); font-weight: 400;
  font-size: clamp(16px, 1.05vw, 18px); line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility; overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, label:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px;
}
img, svg { max-width: 100%; display: block; }

/* Skip link & scroll progress */
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 4px; font-weight: 700; z-index: 1000;
}
.skip-link:focus { left: 8px; }
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gradient); z-index: 100; transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 243, 235, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-color: var(--border); background: rgba(246, 243, 235, 0.94);
}
.site-header .inner {
  max-width: var(--container); margin: 0 auto; padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.brand {
  display: inline-flex; align-items: center; gap: 14px;
  color: var(--text); font-family: var(--font-display);
  font-weight: 900; letter-spacing: 0.04em; font-size: 22px;
  text-transform: uppercase; line-height: 1;
  transition: color .2s ease;
}
.brand:hover { color: var(--accent); }
.brand .mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 30px;
}
.brand .mark svg { width: 100%; height: 100%; }
@media (max-width: 480px) {
  .brand { font-size: 18px; } .brand .mark { width: 44px; height: 24px; }
}
nav.primary {
  display: flex; gap: 26px; font-size: 14px;
  color: var(--text-muted); font-weight: 500;
}
nav.primary a { position: relative; padding: 6px 0; transition: color .2s ease; }
nav.primary a:hover { color: var(--text); }
nav.primary a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--gradient);
  transform: scaleX(0); transform-origin: left center;
  transition: transform .25s ease;
}
nav.primary a:hover::after { transform: scaleX(1); }
@media (max-width: 820px) { nav.primary { display: none; } }
.header-end {
  display: flex; align-items: center; gap: 26px;
}
.lang-switcher {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-faint);
}
.lang-switcher a {
  padding: 6px 9px; border-radius: 6px;
  color: var(--text-faint);
  transition: color .15s ease, background .15s ease;
}
.lang-switcher a:hover { color: var(--text); }
.lang-switcher a[aria-current="page"] {
  color: var(--text); background: var(--bg-soft);
}
.lang-switcher .sep { color: var(--border-hi); user-select: none; }
@media (max-width: 480px) {
  .lang-switcher { font-size: 11px; gap: 2px; }
  .lang-switcher a { padding: 6px 6px; }
  .header-end { gap: 12px; }
}

.nav-toggle {
  display: none;
  background: transparent; border: 1px solid var(--border-hi);
  border-radius: 999px; padding: 8px 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text); cursor: pointer;
}
@media (max-width: 820px) { .nav-toggle { display: inline-flex; } }
.nav-toggle:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* Layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { padding: var(--section-y) 0; position: relative; scroll-margin-top: 8px; }
section + section { padding-top: var(--section-y); }
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600; margin: 0 0 14px;
}
.kicker::before {
  content: ''; width: 28px; height: 2px;
  background: var(--gradient); border-radius: 2px;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02; margin: 0; }
h2 { font-size: clamp(38px, 5.6vw, 76px); line-height: 1.05; margin-bottom: 24px; }
h3 { font-size: clamp(22px, 2.2vw, 28px); line-height: 1.2; letter-spacing: -0.01em; }
p { margin: 0 0 1.2em; max-width: 68ch; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(18px, 1.4vw, 22px); color: var(--text); }
strong { font-weight: 700; color: var(--text); }
.two-col {
  display: grid; gap: 56px; grid-template-columns: 1fr 1.2fr; align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 24px; } }
.tag {
  display: inline-flex; align-items: center; padding: 6px 14px;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 999px; font-size: 13px; color: var(--text-muted);
  margin-right: 6px; margin-bottom: 6px;
}

/* Hero */
.hero {
  min-height: 92vh; min-height: 92svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(100px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
  position: relative; overflow: hidden;
}
.hero { isolation: isolate; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    /* warme pride-tint accenten — laat licht door */
    radial-gradient(ellipse 90% 60% at 75% 25%, rgba(232, 38, 127, 0.10), transparent 65%),
    radial-gradient(ellipse 80% 55% at 15% 80%, rgba(0, 77, 255, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 1;
}
/* Kasteel-watermerk: spotlight-fade rondom centraal, alleen een deel zichtbaar */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: url('kasteel.jpg');
  background-size: cover;
  background-position: center 18%;
  background-repeat: no-repeat;
  opacity: 0.32;
  filter: saturate(0.78) contrast(0.95);
  /* horizontale band-mask: licht sky boven, kasteel + zijvleugels in focus, hortensia's gefaded */
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 18%, rgba(0,0,0,0.85) 38%, rgba(0,0,0,0.95) 55%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.12) 90%, transparent 100%);
          mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 18%, rgba(0,0,0,0.85) 38%, rgba(0,0,0,0.95) 55%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.12) 90%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero .container { position: relative; z-index: 1; }
.hero-label {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 16px 8px 14px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--text);
  margin-bottom: 36px; box-shadow: var(--shadow-sm);
}
.hero-label::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.45; } }
.hero h1 {
  font-size: clamp(52px, 11vw, 160px); line-height: 0.92;
  letter-spacing: -0.035em; margin: 0 0 36px; font-weight: 700;
}
.hero h1 .grad {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Countdown */
.countdown {
  display: grid; gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 520px;
  margin: 36px 0 44px;
}
.countdown .cell {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 8px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.countdown .cell::before {
  content: ''; position: absolute;
  top: 0; left: 8px; right: 8px;
  height: 2px; background: var(--gradient);
  opacity: 0; transition: opacity .3s ease;
}
.countdown:hover .cell::before { opacity: 0.7; }
.countdown .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.countdown .lbl {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}
@media (max-width: 480px) {
  .countdown { gap: 6px; }
  .countdown .cell { padding: 14px 4px 12px; }
  .countdown .lbl { font-size: 10px; letter-spacing: 0.12em; }
}

.hero-meta {
  display: grid; gap: 32px; margin: 40px 0 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 880px;
}
@media (max-width: 720px) { .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .hero-meta { grid-template-columns: 1fr; gap: 20px; } }
.hero-meta .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-bottom: 6px;
}
.hero-meta .value {
  font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500; line-height: 1.25; color: var(--text);
}
.hero-meta a.value:hover { color: var(--accent); }
.hero-meta a.value::after {
  content: ' ↗'; opacity: 0.45; transition: opacity .2s ease;
}
.hero-meta a.value:hover::after { opacity: 1; }
.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 26px; background: var(--text); color: var(--bg);
  border-radius: 999px; font-family: var(--font-display);
  font-weight: 700; font-size: 15px; letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--text);
}
.hero-cta:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.hero-cta .arrow { transition: transform .2s ease; }
.hero-cta:hover .arrow { transform: translateY(2px); }
.hero-cta-ghost {
  background: transparent; color: var(--text);
  box-shadow: none;
  border: 1px solid var(--border-hi);
}
.hero-cta-ghost:hover {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.hero-cta-ghost .ic-cal { display: inline-flex; }

/* Add-to-calendar dropdown */
.addcal { position: relative; display: inline-block; }
.addcal .chev {
  display: inline-flex; margin-left: 2px;
  font-size: 10px; line-height: 1;
  transform: rotate(180deg);
  transition: transform .2s ease;
}
.addcal[data-open] .chev { transform: rotate(0deg); }
.addcal-menu {
  position: absolute; bottom: calc(100% + 10px); top: auto; left: 0;
  list-style: none; padding: 8px; margin: 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  z-index: 80;
  opacity: 0; transform: translateY(4px) scale(.98);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.addcal[data-open] .addcal-menu {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.addcal-menu li { padding: 0; margin: 0; }
.addcal-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border-radius: var(--radius-sm);
  color: var(--text); font-size: 14px;
  font-family: var(--font-body); font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.addcal-menu a:hover { background: var(--bg-soft); color: var(--accent); }
.addcal-menu svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0.75; }

/* Beneficiaries (Goede doelen) */
.doelen-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 56px;
}
@media (max-width: 720px) { .doelen-grid { grid-template-columns: 1fr; } }
.doel-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px 20px;
  display: flex; flex-direction: column;
  gap: 12px;
  transition: border-color .2s ease, transform .2s ease;
  text-decoration: none; color: var(--text);
  box-shadow: var(--shadow-sm);
}
.doel-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.doel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.doel-logo {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: var(--bg-soft);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 900; font-size: 14px;
  color: var(--text-muted); letter-spacing: 0.06em;
  overflow: hidden;
}
.doel-logo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.doel-amount {
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  color: var(--accent-text);
  background: var(--accent-soft);
  padding: 5px 11px; border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.doel-name {
  font-family: var(--font-display);
  font-weight: 700; font-size: 17px;
  line-height: 1.25; letter-spacing: -0.01em;
  color: var(--text);
}
.doel-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  flex: 1; margin: 0;
}
.doel-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding-top: 10px; border-top: 1px solid var(--border);
  font-size: 12px;
}
.doel-year {
  color: var(--text-faint); letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 600;
}
.doel-link {
  color: var(--text-faint); transition: color .15s ease;
}
.doel-card:hover .doel-link { color: var(--accent); }

/* Logo collage / wall */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 36px;
  padding: 28px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.logo-wall::before {
  content: ''; position: absolute;
  top: 0; left: 24px; right: 24px; height: 2px;
  background: var(--gradient); opacity: 0.45;
  border-radius: 0 0 4px 4px;
}
.logo-wall .wall-caption {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 700;
  margin-bottom: 6px;
}
.logo-wall a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  padding: 16px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid transparent;
  transition: border-color .2s ease, transform .2s ease;
  text-decoration: none;
  color: var(--text-muted);
  min-height: 96px;
}
.logo-wall a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.logo-wall img {
  width: 36px; height: 36px;
  object-fit: contain;
  filter: grayscale(0.5) opacity(0.85);
  transition: filter .25s ease;
}
.logo-wall a:hover img { filter: grayscale(0) opacity(1); }
.logo-wall .name {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.25;
}

/* Event grid */
.event-grid {
  display: grid; gap: 1px; grid-template-columns: repeat(2, 1fr); margin-top: 56px;
  background: var(--border); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
}
.event-grid .cell { background: var(--bg-elevated); padding: 32px; }
.event-grid .label {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-bottom: 12px;
}
.event-grid .value {
  font-family: var(--font-display); font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500; line-height: 1.25; color: var(--text);
}
.event-grid .value a:hover { color: var(--accent); }
@media (max-width: 720px) { .event-grid { grid-template-columns: 1fr; } }

/* Kookclub */
.kookclub-card {
  margin-top: 56px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.kookclub-card .head {
  padding: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--border); position: relative;
}
.kookclub-card .head::before {
  content: ''; position: absolute; top: 0; left: 32px; right: 32px;
  height: 3px; background: var(--gradient);
}
.kookclub-card .name {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(32px, 4vw, 48px); letter-spacing: -0.02em; margin: 0 0 8px;
}
.kookclub-card .name .em { color: var(--accent); }
.kookclub-card .tagline { font-size: 18px; color: var(--text-muted); margin: 0; }
.kookclub-card .body { padding: clamp(32px, 4vw, 48px); }
.kookclub-card p { color: var(--text-muted); }
.kookclub-card .meta-grid {
  display: grid; gap: 24px; grid-template-columns: repeat(4, 1fr);
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border);
}
@media (max-width: 720px) { .kookclub-card .meta-grid { grid-template-columns: repeat(2, 1fr); } }
.kookclub-card .meta .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-bottom: 6px;
}
.kookclub-card .meta .value {
  font-family: var(--font-display); font-weight: 500;
  font-size: 16px; line-height: 1.3; color: var(--text);
}
.kookclub-card .footnote {
  margin-top: 28px; padding: 18px 22px;
  background: var(--bg-soft); border-radius: var(--radius);
  font-size: 14px; color: var(--text-muted);
  display: flex; gap: 14px; align-items: flex-start;
}
.kookclub-card .footnote .ic {
  flex-shrink: 0; width: 28px; height: 28px;
  background: var(--accent-soft); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-text); font-weight: 700;
}
.kookclub-card .footnote strong { color: var(--text); }

/* Timeline */
.timeline {
  list-style: none; padding: 0; margin: 56px 0 0;
  display: grid; gap: 0; position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 10px; bottom: 10px;
  width: 1px; background: var(--border-hi);
}
.timeline li {
  display: grid; grid-template-columns: 110px 1fr; gap: 32px;
  padding: 20px 0; align-items: start; position: relative;
}
.timeline li::before {
  content: ''; position: absolute; left: 4px; top: 28px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--text); border: 2px solid var(--bg); z-index: 1;
}
.timeline li.highlight::before { background: var(--accent); box-shadow: 0 0 10px var(--accent-soft); }
.timeline .year {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  letter-spacing: 0.05em; color: var(--text); padding-top: 4px;
}
.timeline .desc { color: var(--text-muted); margin: 0; max-width: 56ch; line-height: 1.55; }
.timeline .desc strong { color: var(--text); font-weight: 600; }
@media (max-width: 560px) { .timeline li { grid-template-columns: 80px 1fr; gap: 16px; } }

/* Gift section */
.gift { background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 50%, transparent 100%); }
.gift-card {
  margin-top: 56px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr 1.2fr;
}
@media (max-width: 820px) { .gift-card { grid-template-columns: 1fr; } }
.gift-qr {
  padding: clamp(32px, 4vw, 48px); background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 18px; border-right: 1px solid var(--border);
}
@media (max-width: 820px) {
  .gift-qr { border-right: 0; border-bottom: 1px solid var(--border); }
}
.qr-frame {
  background: #fff; padding: 16px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.qr-frame img { width: 200px; height: 200px; display: block; }
.qr-caption {
  text-align: center; font-size: 13px; color: var(--text-muted); max-width: 220px;
}
.qr-caption strong { color: var(--text); }
.gift-detail { padding: clamp(32px, 4vw, 48px); }
.gift-detail h3 { margin-bottom: 12px; }
.gift-detail p { color: var(--text-muted); margin-bottom: 24px; }
.iban-block {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px; margin-bottom: 16px;
}
.iban-block .label {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 600; margin-bottom: 8px;
}
.iban-block .value {
  display: flex; align-items: center; gap: 12px;
  font-family: 'SF Mono', 'Monaco', 'Consolas', 'Courier New', monospace;
  font-size: clamp(16px, 1.6vw, 20px); font-weight: 600;
  color: var(--text); flex-wrap: wrap;
}
.iban-block .value.text { font-family: var(--font-display); font-size: 18px; }
.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; background: var(--text); color: var(--bg);
  border: none; border-radius: 999px; font-family: var(--font-display);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}
.copy-btn:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.copy-btn.copied { background: #1f7a44; color: #fff; }

/* Form section */
.doe-mee { background: linear-gradient(180deg, transparent 0%, var(--accent-soft) 100%); }
.form-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: clamp(32px, 4vw, 56px);
  margin-top: 56px; max-width: 720px; position: relative; box-shadow: var(--shadow-md);
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 24px; right: 24px;
  height: 3px; background: var(--gradient); border-radius: 0 0 4px 4px;
}
.field { margin-bottom: 22px; }
.field label.txt {
  display: block; font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 10px;
}
.field .optional {
  color: var(--text-faint); text-transform: none;
  letter-spacing: 0; font-weight: 400; margin-left: 6px;
}
.field input[type="text"], .field input[type="email"], .field input[type="tel"] {
  width: 100%; background: var(--bg); border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm); padding: 16px 18px;
  color: var(--text); font-family: var(--font-body); font-size: 16px;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--text-faint); }
.field input:focus {
  outline: none; border-color: var(--accent); background: var(--bg-elevated);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.checks { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; padding: 0; border: 0; }
.checks label {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.checks label:hover { border-color: var(--border-hi); }
.checks label:has(input:checked) {
  border-color: var(--accent); background: var(--accent-soft);
}
.checks input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; width: 20px; height: 20px;
  flex-shrink: 0; margin-top: 2px; border: 1.5px solid var(--text-muted);
  border-radius: 4px; background: transparent; cursor: pointer;
  transition: all .2s ease; position: relative;
}
.checks input[type="checkbox"]:checked { background: var(--accent); border-color: var(--accent); }
.checks input[type="checkbox"]:checked::after {
  content: '✓'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 700;
}
.checks .check-label { color: var(--text); font-weight: 500; line-height: 1.4; }
.checks .check-label .hint {
  display: block; font-size: 14px; color: var(--text-muted); margin-top: 2px; font-weight: 400;
}
.submit {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 28px;
  background: var(--text); color: var(--bg); border: none; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  letter-spacing: 0.02em; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  box-shadow: var(--shadow-md);
}
.submit:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.form-fineprint { margin: 20px 0 0; font-size: 13px; color: var(--text-faint); }
.honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* Footer */
footer {
  border-top: 1px solid var(--border); padding: 80px 0 60px;
  margin-top: 40px; background: var(--bg-soft); position: relative;
}
footer::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0;
  height: 2px; background: var(--gradient); opacity: 0.55;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-grid .col h4 {
  font-family: var(--font-display); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-faint); font-weight: 700; margin: 0 0 14px;
}
.footer-grid p, .footer-grid a {
  font-size: 14px; line-height: 1.6; color: var(--text-muted); margin: 0;
}
.footer-grid a:hover { color: var(--accent); }
.footer-grid strong {
  color: var(--text); font-weight: 600; display: block; margin-bottom: 4px;
}
.socials { display: flex; gap: 14px; margin-top: 12px; }
.socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; background: var(--bg-elevated);
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--text-muted);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }
.footer-meta {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-faint);
}
.footer-meta .brand { font-size: 16px; }
.footer-meta .brand .mark { width: 44px; height: 22px; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text); color: var(--bg);
  padding: 14px 22px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 200;
}
.toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto;
}

/* Privacy page (en gewone content-pagina's) */
.content-page main { padding-top: clamp(120px, 14vw, 160px); }
.content-page .content { max-width: 760px; }
.content-page h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.03em;
  margin: 0 0 32px;
}
.content-page h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
}
.content-page p { max-width: 68ch; margin: 0 0 1.1em; color: var(--text-muted); line-height: 1.65; }
.content-page p strong { color: var(--text); }
.content-page ul {
  margin: 0 0 1.2em; padding-left: 1.5em;
  color: var(--text-muted); line-height: 1.65;
  max-width: 68ch;
}
.content-page ul li { margin-bottom: 0.4em; }
.content-page .lead-block {
  padding: 22px 24px; border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 0 0 32px;
}
.content-page .lead-block p { margin: 0; color: var(--text); }
.content-page .updated {
  font-size: 13px; color: var(--text-faint);
  margin-top: 48px; padding-top: 20px;
  border-top: 1px solid var(--border);
}
