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

:root {
  /* ── Brand palette ── */
  --forest:   #1e3a2f;
  --moss:     #3a5c4a;
  --sage:     #7a9b8a;
  --gold:     #c6963a;
  --gold-lt:  #e2b96a;
  --cream:    #f5f0e6;
  --warm-wt:  #fdfaf4;
  --earth:    #7a5233;
  --charcoal: #2c2c2c;
  --muted:    #6b7b6e;

  /* ── Hero gradient stops ── */
  --hero-mid:  #2a4f3c;
  --hero-to:   #3a6b52;

  /* ── Component tokens ── */
  --nav-bg:    rgba(30, 58, 47, 0.92);
  --glow-a:    rgba(198, 150, 58, 0.12);
  --glow-b:    rgba(122, 155, 138, 0.15);
  --ring-clr:  rgba(198, 150, 58, 0.15);

  --serif: "Georgia", "Times New Roman", serif;
  --sans:  system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ── Theme: crimson ───────────────────────────── */
/* Deep red + taupe — warm, grounded, bold        */
:root[data-theme="crimson"] {
  --forest:   #340915;
  --moss:     #6b1730;
  --sage:     #a4596d;
  --gold:     #c4a882;
  --gold-lt:  #d3cfc3;
  --cream:    #f5ede8;
  --warm-wt:  #fdf6f2;
  --earth:    #89102e;
  --charcoal: #2c1818;
  --muted:    #8a6b70;

  --hero-mid: #4a1020;
  --hero-to:  #6b1a30;

  --nav-bg:   rgba(45, 10, 20, 0.92);
  --glow-a:   rgba(196, 168, 130, 0.14);
  --glow-b:   rgba(155, 96, 112, 0.15);
  --ring-clr: rgba(196, 168, 130, 0.18);
}

/* ── Theme: sand ──────────────────────────────── */
/* Warm earth + taupe bg — the deep red as accent */
:root[data-theme="sand"] {
  --forest:   #2a1a0a;
  --moss:     #4a3218;
  --sage:     #8a7560;
  --gold:     #89102e;
  --gold-lt:  #aa2040;
  --cream:    #d3cfc3;
  --warm-wt:  #e8e4d8;
  --earth:    #7a5233;
  --charcoal: #2a1f12;
  --muted:    #8a7a6a;

  --hero-mid: #3d2510;
  --hero-to:  #523018;

  --nav-bg:   rgba(42, 26, 10, 0.92);
  --glow-a:   rgba(137, 16, 46, 0.14);
  --glow-b:   rgba(138, 117, 96, 0.15);
  --ring-clr: rgba(137, 16, 46, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--warm-wt);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 1rem;
  /* Promote named view-timelines so nav (a sibling subtree) can consume them */
  timeline-scope:
    --tl-essentie,
    --tl-voor-wie,
    --tl-aanpak,
    --tl-over-joke,
    --tl-contact;
}

/* ── Skip link ────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--gold);
  color: var(--forest);
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 2px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 1rem;
}

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

/* ── Nav ──────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--gold-lt);
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-logo:hover,
.nav-logo:focus-visible {
  color: var(--cream);
}

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

.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.2s;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  opacity: 1;
  color: var(--gold-lt);
}

/* ── Scroll-driven active nav indicator ─────── */
/* Each section registers a named view-timeline. The body's timeline-scope  */
/* lifts those names so sibling nav links can consume them.                 */
/* Fallback (no scroll-driven animation support): ::after stays hidden.     */

#essentie  { view-timeline-name: --tl-essentie; }
#voor-wie  { view-timeline-name: --tl-voor-wie; }
#aanpak    { view-timeline-name: --tl-aanpak; }
#over-joke { view-timeline-name: --tl-over-joke; }
#contact   { view-timeline-name: --tl-contact; }

/* Shared thick underline — invisible by default */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-lt);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  pointer-events: none;
}

/* Desktop: slide-in from centre → hold → slide-out */
@media (min-width: 601px) {
  @keyframes nav-active-desktop {
    0%       { opacity: 0; transform: scaleX(0.35); }
    12%      { opacity: 1; transform: scaleX(1);    }
    88%      { opacity: 1; transform: scaleX(1);    }
    100%     { opacity: 0; transform: scaleX(0.35); }
  }

  .nav-links a[href="#essentie"]::after {
    animation: nav-active-desktop linear both;
    animation-timeline: --tl-essentie;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#voor-wie"]::after {
    animation: nav-active-desktop linear both;
    animation-timeline: --tl-voor-wie;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#aanpak"]::after {
    animation: nav-active-desktop linear both;
    animation-timeline: --tl-aanpak;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#over-joke"]::after {
    animation: nav-active-desktop linear both;
    animation-timeline: --tl-over-joke;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#contact"]::after {
    animation: nav-active-desktop linear both;
    animation-timeline: --tl-contact;
    animation-range: cover 0% cover 100%;
  }
}

/* Mobile: fade only (no transform — stacked layout) */
@media (max-width: 600px) {
  @keyframes nav-active-mobile {
    0%   { opacity: 0; }
    12%  { opacity: 1; }
    88%  { opacity: 1; }
    100% { opacity: 0; }
  }

  .nav-links a::after {
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    transform: none;
  }

  .nav-links a[href="#essentie"]::after {
    animation: nav-active-mobile linear both;
    animation-timeline: --tl-essentie;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#voor-wie"]::after {
    animation: nav-active-mobile linear both;
    animation-timeline: --tl-voor-wie;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#aanpak"]::after {
    animation: nav-active-mobile linear both;
    animation-timeline: --tl-aanpak;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#over-joke"]::after {
    animation: nav-active-mobile linear both;
    animation-timeline: --tl-over-joke;
    animation-range: cover 0% cover 100%;
  }
  .nav-links a[href="#contact"]::after {
    animation: nav-active-mobile linear both;
    animation-timeline: --tl-contact;
    animation-range: cover 0% cover 100%;
  }
}

/* Hamburger toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--cream);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  transition:
    transform 0.2s,
    opacity 0.2s;
  border-radius: 1px;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      color-mix(in srgb, var(--forest) 95%, transparent) 0%,
      color-mix(in srgb, var(--hero-mid) 85%, transparent) 55%,
      color-mix(in srgb, var(--hero-to) 55%, transparent) 100%
    ),
    url('/assets/img/spiri.webp') center / cover no-repeat;
  background-blend-mode: multiply;
  padding: 6rem 2rem 4rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, var(--glow-a) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, var(--glow-b) 0%, transparent 50%);
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--ring-clr);
  pointer-events: none;
}
.hero-ring:nth-child(2) {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
}
.hero-ring:nth-child(3) {
  width: 900px;
  height: 900px;
  top: -250px;
  right: -300px;
  opacity: 0.6;
}
.hero-ring:nth-child(4) {
  width: 300px;
  height: 300px;
  bottom: 50px;
  left: -80px;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
  align-items: center;
  max-width: 1080px;
  width: 100%;
}

.hero-logo {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
.hero-logo img {
  height: 29rem;
  width: auto;
  opacity: 0.92;
}

.hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.hero h1 em {
  color: var(--gold-lt);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(245, 240, 230, 0.8);
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.8;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
  font-weight: 600;
  border: 2px solid var(--gold);
}
.btn-gold:hover,
.btn-gold:focus-visible {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  color: var(--forest);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 240, 230, 0.5);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--cream);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(245, 240, 230, 0.4);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 240, 230, 0.3), transparent);
}

/* ── Section shared ───────────────────────────── */
section {
  padding: 6rem 2rem;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--forest);
  line-height: 1.25;
  font-weight: normal;
  margin-bottom: 1.5rem;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-intro {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 620px;
  line-height: 1.85;
}

.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ── Essence section ──────────────────────────── */
.essence {
  background: var(--warm-wt);
}

.essence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.essence-visual {
  position: relative;
}

.essence-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 15%;
  border-radius: 2px;
  display: block;
}

.essence-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 180px;
  height: 180px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  opacity: 0.4;
  pointer-events: none;
}

.pull-quote {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--forest);
  font-style: italic;
  line-height: 1.55;
  padding-left: 1.5rem;
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
}

/* ── Box metaphor ─────────────────────────────── */
.box-section {
  background: var(--forest);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.box-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 90% 10%,
      rgba(198, 150, 58, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 10% 90%,
      rgba(122, 155, 138, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.box-section .section-title {
  color: var(--cream);
}
.box-section .section-intro {
  color: rgba(245, 240, 230, 0.75);
}
.box-section .divider {
  background: var(--gold);
}

/* ── Box accordion ────────────────────────────── */
.box-cards {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  border: 1px solid rgba(245, 240, 230, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.box-card {
  position: relative;
  background: rgba(245, 240, 230, 0.03);
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
  transition: background 0.25s;
}
.box-card:last-child {
  border-bottom: none;
}

/* Gold left-edge accent on open item */
.box-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: background 0.3s;
  pointer-events: none;
}
.box-card[open]::after {
  background: var(--gold);
}

/* ── Summary (trigger row) ───────────────────── */
.box-card > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.box-card > summary::-webkit-details-marker { display: none; }
.box-card > summary::marker              { display: none; }

.box-card > summary:hover {
  background: rgba(245, 240, 230, 0.05);
}
.box-card[open] > summary {
  background: rgba(198, 150, 58, 0.06);
}

.box-card-num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  border: 1px solid rgba(198, 150, 58, 0.35);
  border-radius: 50%;
  line-height: 1;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.box-card[open] .box-card-num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest);
}

.box-card > summary h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold-lt);
  font-weight: normal;
  flex: 1;
  margin: 0;
  line-height: 1.4;
}

/* Animated V-chevron */
.box-card-chevron {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 1px;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: auto;
  opacity: 0.8;
}
.box-card[open] .box-card-chevron {
  transform: translateY(3px) rotate(-135deg);
}

/* ── Sliding body (grid trick) ───────────────── */
.box-card-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: grid-template-rows;
}
.box-card[open]:not(.is-closing) > .box-card-body {
  grid-template-rows: 1fr;
}
/* Define the before-change state so the browser has a start value
   even when the element was previously display:none (UA stylesheet) */
@starting-style {
  .box-card[open]:not(.is-closing) > .box-card-body {
    grid-template-rows: 0fr;
  }
}

.box-card-inner {
  overflow: hidden;
  padding: 0 2rem 2rem;
  opacity: 0;
  transform: translateY(-10px);
  /* Close: fade out fast, no delay */
  transition: opacity 0.2s ease,
              transform 0.2s ease;
  will-change: opacity, transform;
}
.box-card[open]:not(.is-closing) .box-card-inner {
  opacity: 1;
  transform: none;
  /* Open: delay so height reveals first, then content fades in */
  transition: opacity 0.35s ease 0.22s,
              transform 0.4s cubic-bezier(0.2, 0, 0, 1) 0.22s;
}
@starting-style {
  .box-card[open]:not(.is-closing) .box-card-inner {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/* Header image */
.box-card-img-wrap {
  margin: 0 0 1.5rem;
  border-radius: 2px;
  overflow: hidden;
  line-height: 0;
}
.box-card-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.85;
}
.box-card[open] .box-card-img-wrap img {
  transform: scale(1.025);
  opacity: 1;
}

.box-card-inner p {
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.75);
  line-height: 1.85;
  margin: 0;
}

/* ── For whom ─────────────────────────────────── */
.forwhom {
  background: var(--cream);
}

.forwhom-visual {
  margin: 2.5rem 0;
  border-radius: 2px;
  overflow: hidden;
}

.forwhom-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.persona-card {
  background: var(--warm-wt);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  transition: box-shadow 0.3s;
}
.persona-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 47, 0.1);
}

.persona-card .persona-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.persona-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
  font-weight: normal;
  line-height: 1.3;
}

.persona-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.persona-triggers {
  list-style: none;
  padding: 0;
}

.persona-triggers li {
  font-size: 0.88rem;
  color: var(--charcoal);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  border-bottom: 1px solid rgba(30, 58, 47, 0.07);
}
.persona-triggers li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── Approach ─────────────────────────────────── */
.approach {
  background: var(--warm-wt);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(30, 58, 47, 0.1);
}
.step:last-child {
  border-bottom: none;
}

.step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-top: 0.1rem;
}

.step-body h4 {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--forest);
  font-weight: normal;
  margin-bottom: 0.4rem;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

.approach-right {
  background: var(--forest);
  color: var(--cream);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.approach-right::before {
  content: "\201C";
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(198, 150, 58, 0.15);
  line-height: 1;
  pointer-events: none;
}

.approach-right blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.approach-attribution {
  font-size: 0.85rem;
  color: rgba(245, 240, 230, 0.55);
  margin-bottom: 1.5rem;
}

.approach-desc {
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.7);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.approach-tools-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.approach-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tool-tag {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(198, 150, 58, 0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 1px;
}

.approach-img {
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
}

.approach-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center 100%;
  display: block;
  opacity: 0.85;
}

/* ── About ────────────────────────────────────── */
.about {
  background: var(--cream);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-text p strong {
  color: var(--charcoal);
  font-weight: 600;
}

.signature {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--forest);
  font-style: italic;
  margin-top: 2rem;
  opacity: 0.7;
}

.about-visual {
  position: relative;
}

.about-img-accent {
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  width: 140px;
  height: 140px;
  background: rgba(198, 150, 58, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center 10%;
  border-radius: 2px;
  display: block;
  position: relative;
  z-index: 1;
}

/* ── Contact ──────────────────────────────────── */
.contact {
  background: var(--forest);
  color: var(--cream);
  text-align: center;
  padding: 7rem 2rem;
}

.contact .section-title {
  color: var(--cream);
}
.contact .section-intro {
  color: rgba(245, 240, 230, 0.75);
  margin: 0 auto;
}

.contact-details {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.contact-item a,
.contact-value {
  color: var(--cream);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.2s;
}
.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--gold-lt);
}

.contact-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 240, 230, 0.2);
  align-self: center;
}

/* ── Footer ───────────────────────────────────── */
footer {
  background: #111f18;
  color: rgba(245, 240, 230, 0.4);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

footer a {
  color: rgba(198, 150, 58, 0.7);
  text-decoration: none;
}
footer a:hover,
footer a:focus-visible {
  color: var(--gold-lt);
}

/* ── Utility ──────────────────────────────────── */
.text-center {
  text-align: center;
}
.text-center .section-intro {
  margin: 0 auto;
}
.text-center .divider {
  margin-left: auto;
  margin-right: auto;
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-links {
    gap: 1.2rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero-logo {
    margin-bottom: 2rem;
  }
  .hero-logo img {
    height: 14rem;
    max-width: 90vw;;
  }
  .hero-content {
    text-align: center;
  }
  .hero-payoff {
    margin-top: 1rem;
    font-size: 1.3rem;
    font-style: italic;
    font-family: var(--serif);
  }
  .hero-sub {
    margin: 0 auto 2.5rem;
    max-width: none;
  }
  .hero-cta {
    justify-content: center;
    .btn {
      width: 20rem
    }
  }

  .essence-grid,
  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .essence-accent {
    display: none;
  }
  .persona-grid {
    grid-template-columns: 1fr;
  }
  .box-card > summary {
    padding: 1.25rem 1.25rem;
    gap: 1rem;
  }
  .box-card-inner {
    padding: 0 1.25rem 1.5rem;
  }
  .box-card-img-wrap img {
    height: 190px;
  }
  .contact-divider {
    display: none;
  }
  .contact-details {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .forwhom-visual img {
    height: 280px;
  }
}

@media (max-width: 600px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(20, 0, 0, 0.90);
    backdrop-filter: blur(20px) saturate(250%); 
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links li a {
    display: block;
    padding: 0.75rem 2.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  section {
    padding: 4rem 1.25rem;
  }
  .approach-right {
    padding: 2rem;
  }
}

/* ── Page hero (sub-pages) ────────────────────── */
.page-hero {
  background: var(--forest);
  color: var(--cream);
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.page-hero .section-title {
  color: var(--cream);
}

.page-hero .section-intro {
  color: rgba(245, 240, 230, 0.75);
  max-width: 52ch;
  margin: 0 auto;
}

.page-hero .divider {
  margin: 1.5rem auto;
}

/* ── Tarieven ─────────────────────────────────── */
.tarieven {
  padding: 6rem 2rem;
}

.tarieven-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tarief-card {
  background: var(--warm-wt);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(5.5rem, auto) auto 1fr;
  gap: 1rem;
  align-items: start;
  transition: box-shadow 0.3s;
}

.tarief-card:hover {
  box-shadow: 0 8px 32px rgba(30, 58, 47, 0.1);
}

.tarief-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--forest);
  line-height: 1.4;
  margin: 0;
}

.tarief-card h3 em {
  font-style: italic;
  color: var(--muted);
}

.tarief-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  padding-top: 0.5rem;
}

.tarief-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}

.tarief-unit {
  font-size: 0.85rem;
  color: var(--muted);
}

.tarief-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.tarieven-info {
  margin: 3rem auto 0;
  max-width: 640px;
  background: var(--warm-wt);
  border-top: 3px solid var(--gold);
  padding: 1.75rem 2rem;
}

.tarieven-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tarieven-info li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.tarieven-info li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--forest);
}

.tarieven-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.tarieven-cta p {
  font-size: 1.1rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
  .nav-links a::after {
    animation: none !important;
  }
}
