/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  --bg:       oklch(9%  0.008 55);
  --bg-surf:  oklch(13% 0.008 55);
  --bg-card:  oklch(17% 0.009 55);
  --line:     rgba(255,255,255,0.09);
  --line-hi:  rgba(255,255,255,0.16);
  --gold:     oklch(74% 0.080 72);
  --gold-hi:  oklch(82% 0.068 72);
  --cream:    oklch(93% 0.007 72);
  --muted:    oklch(63% 0.005 55);
  --dim:      oklch(38% 0.005 55);
  --display:  "Cormorant Garamond", Georgia, serif;
  --body:     "Manrope", Arial, sans-serif;
  --wrap:     min(1120px, calc(100% - 48px));
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, ul, ol { margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; }
h1 em, h2 em { font-style: italic; font-weight: 400; }
button, input, select { font: inherit; }

/* ─── SKIP LINK ───────────────────────────────────────── */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
}
.skip:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 10px 16px;
  border-radius: 4px;
}

/* ─── FOCUS ───────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ─── UTILITIES ───────────────────────────────────────── */
.wrap { width: var(--wrap); margin-inline: auto; }

.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-dim  { color: var(--dim);  }

/* ─── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  font-family: var(--body);
  font-size: 0.80rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.22s, color 0.22s, border-color 0.22s, transform 0.22s;
}
.btn:hover { transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: oklch(9% 0.008 55);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hi);
  border-color: var(--gold-hi);
}

.btn-lg {
  min-height: 62px;
  padding: 0 44px;
  font-size: 0.88rem;
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(12,11,9,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  width: var(--wrap);
  margin-inline: auto;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--cream);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: none;
  gap: 24px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.18s;
}
.nav-links a:hover { color: var(--cream); }

.nav .btn {
  margin-left: auto;
  flex-shrink: 0;
}

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  margin: 0;
  z-index: 0;
}
.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    oklch(8% 0.008 55 / 0.97)  0%,
    oklch(8% 0.008 55 / 0.72) 28%,
    oklch(8% 0.008 55 / 0.35) 58%,
    oklch(8% 0.008 55 / 0.08) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  padding-top: 120px;
  padding-bottom: 72px;
}

h1 {
  font-size: clamp(3.6rem, 13vw, 8rem);
  line-height: 0.90;
  color: var(--cream);
  margin-bottom: 44px;
}
h1 em { color: var(--gold); }

/* ─── STRIP ───────────────────────────────────────────── */
.strip {
  background: var(--bg-surf);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.strip-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding: 0;
  flex-wrap: wrap;
}

.strip-item {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 28px 32px;
}

.strip-val {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1;
}

.strip-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.strip-rule {
  width: 1px;
  height: 44px;
  background: var(--line-hi);
  flex-shrink: 0;
}

/* ─── PRODUCTS ────────────────────────────────────────── */
/* header above bands */
.prod-header {
  width: var(--wrap);
  margin-inline: auto;
  padding: 96px 0 56px;
  border-top: 1px solid var(--line);
}

.prod-header h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.94;
  color: var(--cream);
  margin-bottom: 16px;
  max-width: 14ch;
}

.prod-intro {
  color: var(--muted);
  font-size: 0.96rem;
  max-width: 40ch;
  line-height: 1.75;
}

/* editorial band */
.band {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.band-img {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.band-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.9s ease;
  will-change: transform;
}
.band:hover .band-img img { transform: scale(1.025); }

.band-copy {
  background: var(--bg-surf);
  padding: 52px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.band-copy h3 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 0.94;
  color: var(--cream);
}

.band-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.78;
  max-width: 38ch;
}

.band-price {
  font-size: 0.82rem !important;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted) !important;
}
.band-price strong {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
}

/* ─── SECTION SHELL ───────────────────────────────────── */
.section { padding: 96px 0; border-top: 1px solid var(--line); }

.sec-head {
  margin-bottom: 56px;
}
.sec-head h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.94;
  color: var(--cream);
  max-width: 14ch;
}
.sec-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 40ch;
}

/* ─── PROCESS ─────────────────────────────────────────── */
.proc-section { background: var(--bg-surf); }

.proc-inner { display: grid; grid-template-columns: 1fr; gap: 48px; }

.proc-list {
  list-style: none;
  border-top: 1px solid var(--line-hi);
}
.proc-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.proc-n {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--dim);
  padding-top: 6px;
  letter-spacing: 0.06em;
}
.proc-list h3 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--cream);
  margin-bottom: 8px;
  line-height: 1.05;
}
.proc-list p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
  max-width: 42ch;
}

/* ─── ZICHTCHECK ──────────────────────────────────────── */
.check-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.check-form {
  border-top: 1px solid var(--line-hi);
}

.check-field {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.check-label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
}

.check-form select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-hi);
  color: var(--cream);
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  padding: 8px 0;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.check-form select:focus { border-bottom-color: var(--gold); }
.check-form select option {
  background: oklch(13% 0.008 55);
  color: var(--cream);
}

.check-result {
  padding: 36px;
  background: var(--bg-surf);
  border: 1px solid var(--line-hi);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.check-result h3 {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--cream);
  line-height: 1;
}
.check-result p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.72;
}

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.faq-list { border-top: 1px solid var(--line-hi); }

.faq-list details { border-bottom: 1px solid var(--line); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3.5vw, 1.65rem);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.2;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  transition: color 0.2s;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  padding-bottom: 28px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.78;
  max-width: 58ch;
}

/* ─── CONTACT CTA ─────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: var(--bg-surf);
  border-top: 1px solid var(--line);
  text-align: center;
}

.cta-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-inner h2 {
  font-size: clamp(2.8rem, 9vw, 6rem);
  line-height: 0.90;
  color: var(--cream);
}
.cta-inner h2 em { color: var(--gold); }

.cta-sub {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 36ch;
}

.cta-note {
  font-size: 0.82rem;
  color: var(--dim);
}
.cta-note a {
  color: var(--muted);
  border-bottom: 1px solid var(--line-hi);
  padding-bottom: 1px;
  transition: color 0.18s;
}
.cta-note a:hover { color: var(--cream); }

/* ─── FOOTER ──────────────────────────────────────────── */
.foot {
  border-top: 1px solid var(--line);
  padding: 44px 0;
}

.foot-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.foot-tag {
  font-size: 0.80rem;
  color: var(--dim);
  margin-top: 8px;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.foot-nav a {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.18s;
}
.foot-nav a:hover { color: var(--muted); }

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

/* ─── MOBILE ONLY (max 767px) ────────────────────────── */
@media (max-width: 767px) {
  /* Nav: alleen wordmark, geen CTA (hero heeft er al één) */
  .nav .btn { display: none; }

  /* Hero: CTA vult volledige breedte */
  .hero-body .btn { display: flex; width: 100%; }

  /* Strip: verticaal stapelen, geen vreemde wrap */
  .strip-inner     { flex-direction: column; padding: 0; }
  .strip-item      { padding: 22px 24px; flex: none; }
  .strip-rule      { width: 100%; height: 1px; flex: none; }

  /* Products header: compacter op mobile */
  .prod-header { padding: 64px 0 40px; }

  /* Band copy: minder padding op mobile */
  .band-copy { padding: 40px 24px 48px; }
  .band-copy h3 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .band-price strong { font-size: 2.2rem; }

  /* Process: kleiner padding */
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 40px; }

  /* Check selects: iets kleiner op mobile */
  .check-form select { font-size: 1.25rem; }
  .check-result { padding: 28px 24px; }

  /* CTA sectie: button full-width */
  .cta-inner .btn   { width: 100%; }
  .cta-inner h2     { font-size: clamp(2.4rem, 10vw, 3.6rem); }

  /* FAQ summary iets kleiner */
  .faq-list summary { font-size: clamp(1.1rem, 4.5vw, 1.4rem); }
}

/* ─── TABLET (768px – 1099px) ────────────────────────── */
@media (min-width: 768px) {
  :root { --wrap: min(1120px, calc(100% - 80px)); }

  /* Nav: links tonen, CTA pas op 1024px (te krap onder die breedte) */
  .nav-links { display: flex; margin-left: auto; }
  .nav .btn  { display: none; }

  /* Strip: altijd horizontaal op tablet+ */
  .strip-inner { flex-direction: row; flex-wrap: nowrap; }

  /* Product bands: side-by-side */
  .band           { grid-template-columns: 1fr 1fr; min-height: 540px; }
  .band-img       { aspect-ratio: unset; height: 100%; }
  .band-copy      { padding: 64px 56px; }

  /* Process: heading links, stappen rechts */
  .proc-inner                { grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
  .proc-inner .sec-head      { margin-bottom: 0; }

  /* Zichtcheck: form links, resultaat rechts */
  .check-grid { grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

  /* FAQ: heading links, vragen rechts */
  .faq-inner              { grid-template-columns: 260px 1fr; gap: 60px; align-items: start; }
  .faq-inner .sec-head    { margin-bottom: 0; }

  /* Footer: horizontaal */
  .foot-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ─── DESKTOP (1024px+): nav CTA terug ───────────────── */
@media (min-width: 1024px) {
  .nav .btn { display: inline-flex; }
}

/* ─── DESKTOP (1100px+): volle editorial layout ──────── */
@media (min-width: 1100px) {
  .band      { min-height: 640px; }
  .band-copy { padding: 88px 80px; }

  /* Flip tweede band: afbeelding rechts, copy links */
  .band-flip .band-img  { order: 2; }
  .band-flip .band-copy { order: 1; }

  /* Process: 3 kolommen naast elkaar */
  .proc-inner {
    grid-template-columns: 1fr 3fr;
    gap: 100px;
  }
  .proc-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
  }
  .proc-list li {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px 40px 0 0;
    border-bottom: none;
    border-right: 1px solid var(--line);
    border-top: 1px solid var(--line-hi);
  }
  .proc-list li:first-child { padding-left: 0; }
  .proc-list li:last-child  { border-right: none; padding-right: 0; }

  /* FAQ: bredere heading kolom */
  .faq-inner { grid-template-columns: 320px 1fr; }
}

/* ─── REDUCED MOTION ──────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .band-img img { transition: none; }
  .btn          { transition: none; }
  html          { scroll-behavior: auto; }
}
