/* ============================================================================
   boostjeinkomen.nl — style.css
   Mobile-first · single stylesheet for the whole site
   ============================================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Gold */
  --gold-50:  #F5EDDE;
  --gold-100: #E8D7B3;
  --gold-200: #D6BA88;
  --gold-300: #C5A26A;
  --gold:     #B8935A;
  --gold-600: #9E7B47;
  --gold-700: #7E6238;

  /* Brown */
  --brown-200: #6B5D52;
  --brown-300: #4A3E35;
  --brown:    #2C2118;

  /* Rose */
  --rose-50:  #F9EFE9;
  --rose-100: #F2DDD3;
  --rose:     #EBC9BA;
  --rose-600: #D9A993;

  /* Cream */
  --cream-50:  #FDFBF7;
  --cream:     #F8F4ED;
  --cream-200: #EDE5D5;

  /* Ink */
  --ink:      #2C2118;
  --ink-soft: #4A3E35;
  --muted:    #8A7A6E;
  --line:     #E5D9C6;
  --line-gold: #C5A26A;
  --white:    #FFFFFF;

  /* Surfaces */
  --bg:          var(--cream-50);
  --fg:          var(--ink);
  --fg-soft:     var(--ink-soft);
  --fg-muted:    var(--muted);
  --accent:      var(--gold);
  --accent-deep: var(--gold-600);
  --border:      var(--line);

  /* Type */
  --font-display: "Cormorant Garamond", "EB Garamond", Garamond, serif;
  --font-body:    "DM Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Scale (mobile defaults, scale up at breakpoints) */
  --fs-display: clamp(40px, 9vw, 88px);
  --fs-h1:      clamp(34px, 7vw, 64px);
  --fs-h2:      clamp(28px, 5vw, 52px);
  --fs-h3:      clamp(22px, 3.4vw, 32px);
  --fs-h4:      clamp(18px, 2.4vw, 24px);
  --fs-lead:    clamp(17px, 2vw, 22px);
  --fs-body:    16px;
  --fs-small:   14px;
  --fs-eyebrow: 11px;

  --lh-tight:   1.05;
  --lh-display: 1.1;
  --lh-snug:    1.25;
  --lh-body:    1.6;

  --tr-display: -0.012em;
  --tr-eyebrow: 0.22em;
  --tr-button:  0.14em;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  24px;
  --space-6:  32px;
  --space-7:  48px;
  --space-8:  64px;
  --space-9:  80px;
  --space-10: 112px;

  /* Section padding (responsive) */
  --section-y: clamp(56px, 9vw, 120px);

  --radius: 0;

  --shadow-sm: 0 1px 2px rgba(44, 33, 24, 0.04);
  --shadow:    0 8px 24px rgba(44, 33, 24, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 33, 24, 0.10);

  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 140ms;
  --dur:      260ms;
  --dur-slow: 480ms;

  --container: 1240px;
  --container-sm: 880px;

  --header-h: 64px;
}

@media (min-width: 960px) {
  :root { --header-h: 84px; }
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--accent-deep);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--gold-700); }

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

button { font: inherit; cursor: pointer; }

/* ---------- Layout ---------- */
.container,
.container-sm {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}
.container { max-width: var(--container); }
.container-sm { max-width: var(--container-sm); }

@media (min-width: 640px) {
  .container, .container-sm { padding-inline: 32px; }
}

.section { padding: var(--section-y) 0; }
.section-tight { padding: var(--space-8) 0; }
.section--rose { background: var(--rose-50); }
.section--no-top { padding-top: 0; }

.divider-gold {
  border: 0;
  border-top: 1px solid var(--line-gold);
  margin: 0;
  width: 100%;
}

.hairline {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 0;
}

.rule-spacer { margin-block: var(--space-7); }

/* ---------- Type ---------- */
h1, h2, h3, h4 { margin: 0; color: var(--ink); }
p { margin: 0; }

.display,
.h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--tr-display);
}

.h1 em, .h2 em, .h3 em, .h4 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-600);
}

.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: var(--lh-snug);
  letter-spacing: -0.005em;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h3);
  line-height: var(--lh-snug);
}
.h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-h4);
  line-height: var(--lh-snug);
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

.small {
  font-size: var(--fs-small);
  color: var(--fg-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-block;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 5.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-4);
  max-width: 18ch;
}
.section-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }

.section-lead {
  font-size: var(--fs-lead);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 var(--space-6);
  max-width: 52ch;
}

.body-text {
  color: var(--ink-soft);
  line-height: 1.65;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.bullet-list li {
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink-soft);
  padding-left: 26px;
  position: relative;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.bullet-list strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: var(--tr-button);
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--dur) var(--ease);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold-600);
  border-color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-on-dark {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-on-dark:hover { background: var(--gold-300); border-color: var(--gold-300); color: var(--brown); }

.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn-block { width: 100%; }

.link-arrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--gold-600);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 3px;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-arrow::after { content: "→"; }
.link-arrow:hover { gap: 14px; color: var(--gold-700); }

/* ============================================================================
   HEADER + NAV — mobile first
   ============================================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 251, 247, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 20px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 4.5vw, 28px);
  color: var(--gold);
  letter-spacing: 0.005em;
  line-height: 1;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.logo::after {
  content: "";
  display: block;
  height: 1px;
  width: 26px;
  background: var(--gold);
}

/* Hamburger button */
.hamburger {
  width: 40px;
  height: 40px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  border: 1px solid var(--line-gold);
  background: transparent;
}
.hamburger span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  display: block;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.menu-toggle:checked + .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle:checked + .hamburger span:nth-child(2) { opacity: 0; }
.menu-toggle:checked + .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.menu-toggle { position: absolute; opacity: 0; pointer-events: none; }

/* The nav itself — mobile = slide down panel */
.nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line-gold);
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.menu-toggle:checked ~ .nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.nav-item {
  border-top: 1px solid var(--line);
  position: relative;
}
.nav-item:first-child { border-top: 0; }

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--ink);
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav-link.active { color: var(--gold-600); }

/* Submenu caret on mobile */
.sub-caret {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gold);
  font-size: 20px;
  border-left: 1px solid var(--line);
  transition: transform var(--dur) var(--ease);
}
.sub-caret::before {
  content: "›";
  display: inline-block;
  transform: rotate(90deg);
  transition: transform var(--dur) var(--ease);
  font-size: 22px;
}
.sub-toggle { position: absolute; opacity: 0; pointer-events: none; }
.sub-toggle:checked ~ .sub-caret::before { transform: rotate(-90deg); }

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--cream);
  transition: max-height var(--dur-slow) var(--ease);
}
.sub-toggle:checked ~ .nav-sub {
  max-height: 600px;
}
.nav-sub li { border-top: 1px solid var(--line); }
.nav-sub a {
  display: block;
  padding: 14px 24px 14px 36px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink-soft);
  text-decoration: none;
}
.nav-sub-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  line-height: 1.15;
}
.nav-sub-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.nav-sub-desc {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.nav-cta {
  margin: 16px 20px 20px;
  display: flex;
}

@media (min-width: 960px) {
  /* Desktop nav */
  .hamburger { display: none; }

  .nav {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    max-height: none;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 32px;
    width: auto;
  }

  .nav-list {
    flex-direction: row;
    padding: 0;
    gap: 36px;
  }
  .nav-item { border: 0; }

  .nav-link {
    padding: 8px 0;
    font-size: 15px;
    justify-content: flex-start;
    position: relative;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
  }
  .nav-link:hover::after,
  .nav-link.active::after { transform: scaleX(1); }

  /* Sub on desktop = hover dropdown */
  .sub-caret { display: none; }

  .nav-has-sub > .nav-link::before {
    content: "›";
    display: inline-block;
    transform: rotate(90deg) translateX(1px);
    margin-right: 6px;
    font-size: 13px;
    color: var(--gold);
    transition: transform var(--dur) var(--ease);
  }
  .nav-has-sub:hover > .nav-link::before,
  .nav-has-sub:focus-within > .nav-link::before { transform: rotate(270deg) translateX(-1px); }

  .nav-sub {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    min-width: 280px;
    background: var(--cream-50);
    border: 1px solid var(--line-gold);
    padding: 10px 22px;
    max-height: none;
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility 0s linear var(--dur);
    box-shadow: var(--shadow);
    z-index: 60;
  }
  .nav-has-sub:hover .nav-sub,
  .nav-has-sub:focus-within .nav-sub {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  }
  .nav-sub li { border-top: 1px solid var(--line); }
  .nav-sub li:first-child { border-top: 0; }
  .nav-sub a { padding: 12px 0; }

  .nav-cta {
    margin: 0;
    padding: 10px 18px;
  }
}

/* ============================================================================
   SUBTOPIC SWITCH (under header on FV sub-pages)
   ============================================================================ */
.subtopic-switch {
  display: flex;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
  background: var(--cream);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.subtopic-switch a {
  flex: 1;
  min-width: 160px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
  border-left: 1px solid var(--line);
  white-space: nowrap;
}
.subtopic-switch a:first-child { border-left: 0; }
.subtopic-switch a:hover { background: var(--cream-200); color: var(--gold-700); }
.subtopic-switch a.active { background: var(--bg); color: var(--gold-700); }
.subtopic-switch .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: none;
}

@media (min-width: 640px) {
  .subtopic-switch a { padding: 22px 28px; font-size: 12px; }
}

.breadcrumb {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: var(--space-4);
}
.breadcrumb a { color: var(--gold-600); border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.breadcrumb a:hover { border-color: var(--gold); }
.breadcrumb .sep { color: var(--gold); }

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--line-gold);
}
.hero-left {
  padding: var(--space-8) 0 var(--space-7);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.hero-left .eyebrow { margin-bottom: -4px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 9vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
  max-width: 12ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-600);
}
.hero-sub {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-3);
}
.hero-right {
  background: var(--rose-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-5);
  position: relative;
  min-height: 320px;
  margin-inline: -20px;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(184, 147, 90, 0.4);
  pointer-events: none;
}
.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 6.5vw, 54px);
  line-height: 1.18;
  color: var(--brown);
  text-align: center;
  max-width: 14ch;
  margin: 0;
  position: relative;
}
.hero-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  color: var(--gold-300);
  position: absolute;
  top: -42px;
  left: -6px;
  line-height: 1;
}
.hero-quote-attr {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: var(--space-5);
  text-align: center;
}

@media (min-width: 640px) {
  .hero-right { margin-inline: -32px; padding: var(--space-9) var(--space-7); }
  .hero-right::before { inset: 36px; }
  .hero-quote::before { font-size: 110px; top: -56px; }
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1.05fr 1fr;
    min-height: 600px;
    gap: 0;
  }
  .hero-left {
    padding: var(--space-10) var(--space-9) var(--space-9) 0;
    justify-content: center;
    gap: var(--space-6);
  }
  .hero-right {
    margin-inline: 0;
    margin-right: calc(-50vw + 50%);
    padding: var(--space-9) var(--space-8);
  }
}

/* ============================================================================
   CATEGORY GRID (homepage + FV parent)
   ============================================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.cat-card {
  padding: var(--space-7) 4px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--bg);
  position: relative;
  transition: background var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
}
.cat-card:first-child { border-top: 0; }
.cat-card:hover { background: var(--cream); }
.cat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold);
  line-height: 1;
}
.cat-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  max-width: 12ch;
}
.cat-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.cat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}
.cat-link {
  margin-top: var(--space-3);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.cat-link::after { content: "→"; transition: transform var(--dur) var(--ease); }
.cat-card:hover .cat-link::after { transform: translateX(6px); }

@media (min-width: 720px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .cat-card { padding: var(--space-8) var(--space-6); border-top: 0; border-left: 1px solid var(--line-gold); }
  .cat-card:first-child { border-left: 0; }
}

@media (min-width: 960px) {
  .cat-card { padding: var(--space-9) var(--space-7); gap: var(--space-5); }
}

/* ============================================================================
   TWO-COL SECTION
   ============================================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-9); }
}

/* ============================================================================
   QUOTE CARD
   ============================================================================ */
.quote-card {
  background: var(--rose-100);
  padding: var(--space-7) var(--space-5);
  position: relative;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184, 147, 90, 0.35);
  pointer-events: none;
}
.quote-card-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 var(--space-5);
  display: block;
}
.quote-card-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 4vw, 42px);
  line-height: 1.22;
  color: var(--brown);
  margin: 0;
}
.quote-card-attr {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin: var(--space-6) 0 0;
}

@media (min-width: 900px) {
  .quote-card { padding: var(--space-9) var(--space-8); min-height: 460px; }
  .quote-card::before { inset: 28px; }
}

/* ============================================================================
   SOFT-LINK (sister site)
   ============================================================================ */
.soft-link {
  margin-top: var(--space-6);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  max-width: 48ch;
}
.soft-link a {
  color: var(--gold-600);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  font-style: normal;
}

/* ============================================================================
   KIDS section
   ============================================================================ */
.kids-section {
  background: var(--rose-50);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.kids-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
.kids-numeral {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(160px, 30vw, 360px);
  line-height: 0.85;
  color: var(--gold);
  margin: 0;
  text-align: center;
}
.kids-numeral::after {
  content: "Lessen";
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: var(--space-3);
}
.lessons {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: lesson;
}
.lessons li {
  counter-increment: lesson;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(184, 147, 90, 0.28);
  align-items: baseline;
}
.lessons li:first-child { border-top: 1px solid rgba(184, 147, 90, 0.28); }
.lessons li::before {
  content: counter(lesson, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  line-height: 1;
}
.lesson-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 4px;
}
.lesson-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (min-width: 900px) {
  .kids-grid { grid-template-columns: 0.7fr 1.3fr; gap: var(--space-9); }
  .lessons li { grid-template-columns: 48px 1fr; gap: var(--space-5); }
  .lesson-title { font-size: 24px; }
  .lesson-desc { font-size: 15px; }
}

/* ============================================================================
   OPT-IN
   ============================================================================ */
.optin {
  background: var(--brown);
  color: var(--cream);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.optin::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 1px;
  height: 56px;
  background: var(--gold);
}
.optin-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
.optin-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-4);
}
.optin-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 56px);
  line-height: 1.08;
  color: var(--cream);
  margin: 0 0 var(--space-4);
  max-width: 18ch;
}
.optin-title em { font-style: italic; color: var(--gold-300); font-weight: 300; }
.optin-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.78);
  max-width: 44ch;
  margin: 0;
}
.optin-form {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-5);
  border: 1px solid var(--gold);
  background: rgba(248, 244, 237, 0.03);
}
.optin-form label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-300);
  display: block;
  margin-bottom: 6px;
}
.optin-form input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(184, 147, 90, 0.45);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 8px 0 12px;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.optin-form input:focus { border-color: var(--gold); }
.optin-form input::placeholder { color: rgba(248, 244, 237, 0.4); }
.optin-form button { margin-top: var(--space-3); width: 100%; }

@media (min-width: 900px) {
  .optin-grid { grid-template-columns: 1.1fr 1fr; gap: var(--space-9); }
  .optin-form { padding: var(--space-7); }
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.site-footer {
  background: var(--cream);
  padding: var(--space-8) 0 var(--space-6);
  border-top: 1px solid var(--line-gold);
  color: var(--ink-soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer-brand .logo {
  font-size: 26px;
  margin-bottom: var(--space-3);
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 28ch;
  margin: 0;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
  margin: 0 0 var(--space-3);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.footer-col a {
  font-size: 15px;
  color: var(--ink);
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--gold-600); }
.footer-bottom {
  border-top: 1px solid var(--line-gold);
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--muted);
}
.sister-link {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold-600);
}
.sister-link a { color: var(--gold-600); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: var(--space-7); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: baseline; }
}

/* ============================================================================
   PAGE HEAD (subpages)
   ============================================================================ */
.page-head {
  padding: var(--space-8) 0 var(--space-7);
  border-bottom: 1px solid var(--line-gold);
  background: var(--bg);
}
.page-head--rose { background: var(--rose-50); }
.page-head .eyebrow { margin-bottom: var(--space-4); }
.page-head h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0;
  max-width: 16ch;
}
.page-head h1 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.page-head .lead {
  margin-top: var(--space-4);
  max-width: 60ch;
}

@media (min-width: 900px) {
  .page-head { padding: var(--space-9) 0 var(--space-8); }
}

/* ============================================================================
   POST CARDS / ARTICLES
   ============================================================================ */
.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.post-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5) 0;
  border-top: 1px solid var(--line);
  transition: opacity var(--dur) var(--ease);
  text-decoration: none;
  color: inherit;
}
.post-card:hover { opacity: 0.82; }
.post-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.15;
  margin: 0;
  color: var(--ink);
}
.post-card h3 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.post-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.post-meta {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: var(--space-3);
}
.post-meta span + span::before {
  content: "·";
  margin-right: var(--space-3);
  color: var(--gold);
}

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-6);
}

@media (min-width: 720px) {
  .post-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
  .section-head-row { flex-direction: row; align-items: baseline; justify-content: space-between; gap: var(--space-5); margin-bottom: var(--space-7); }
}

/* ============================================================================
   ASSET / TOPIC GRID
   ============================================================================ */
.asset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.asset-card {
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  border-left: 1px solid var(--line-gold);
  border-top: 1px solid var(--line-gold);
}
.asset-card:nth-child(odd) { border-left: 0; }
.asset-card:nth-child(-n+2) { border-top: 0; }
.asset-symbol {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.asset-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  margin: 0;
  color: var(--ink);
}
.asset-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}
.asset-meta {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: var(--tr-eyebrow);
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

@media (min-width: 720px) {
  .asset-grid { grid-template-columns: repeat(4, 1fr); }
  .asset-card { padding: var(--space-7) var(--space-5); gap: var(--space-4); border-top: 0; border-left: 1px solid var(--line-gold); }
  .asset-card:nth-child(odd) { border-left: 1px solid var(--line-gold); }
  .asset-card:first-child { border-left: 0; }
  .asset-symbol { font-size: 56px; }
  .asset-name { font-size: 24px; }
  .asset-desc { font-size: 14px; }
}

/* 3-col variant */
.asset-grid--3 { grid-template-columns: 1fr; }
.asset-grid--3 .asset-card { border-left: 0; }
.asset-grid--3 .asset-card + .asset-card { border-top: 1px solid var(--line-gold); }
@media (min-width: 720px) {
  .asset-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .asset-grid--3 .asset-card { border-top: 0; border-left: 1px solid var(--line-gold); }
  .asset-grid--3 .asset-card:first-child { border-left: 0; }
  .asset-grid--3 .asset-card + .asset-card { border-top: 0; }
}

/* ============================================================================
   FAQ accordion (controlled by inline JS via aria-expanded)
   ============================================================================ */
.faq {
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:first-child { border-top: 0; }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: var(--space-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.25;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--dur) var(--ease);
}
.faq-q em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.faq-q:hover { color: var(--gold-700); }
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after  { width: 1px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-slow) var(--ease);
}
.faq-a > div { overflow: hidden; }
.faq-q[aria-expanded="true"] + .faq-a { grid-template-rows: 1fr; }
.faq-q[aria-expanded="true"] + .faq-a > div { padding-bottom: var(--space-5); }
.faq-a p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}
.faq-a p + p { margin-top: var(--space-3); }

/* ============================================================================
   ABOUT page
   ============================================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: start;
}
.about-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--rose-100) 0%, var(--rose) 60%, var(--rose-600) 100%);
  position: relative;
  overflow: hidden;
}
.about-portrait::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.5);
}
.about-portrait::after {
  content: "Portret";
  position: absolute;
  bottom: var(--space-4);
  left: 0; right: 0;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.about-text h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.08;
  margin: 0 0 var(--space-4);
}
.about-text h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.about-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 var(--space-4);
}
.about-text .pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.3;
  color: var(--gold-600);
  border-left: 1px solid var(--gold);
  padding: 4px 0 4px var(--space-4);
  margin: var(--space-5) 0;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1fr 1.1fr; gap: var(--space-9); }
}

/* ============================================================================
   UTIL
   ============================================================================ */
.text-center { text-align: center; }
.sister-block { text-align: center; }
.sister-block .section-eyebrow { justify-content: center; }
.sister-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.35;
  color: var(--brown);
  margin: 0 auto;
  max-width: 36ch;
}
.sister-block .btn { margin-top: var(--space-6); }

.mb-0 { margin-bottom: 0; }
.mt-5 { margin-top: var(--space-5); }
.mt-7 { margin-top: var(--space-7); }

/* Skip-link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brown);
  color: var(--cream);
  padding: 8px 14px;
  z-index: 200;
}
.skip-link:focus { top: 0; color: var(--cream); }
