/* =========================================================
   Design Tokens — MoyaHost Brand
   Forest green + mint + warm whites. Dutch market.
   ========================================================= */

:root {
  /* ── Brand Colours ───────────────────────────────────── */
  --forest:       #1B443B;
  --forest-l:     #2A6657;
  --forest-d:     #0F2B24;
  --forest-glow:  rgba(27, 68, 59, 0.15);
  --mint:         #D4EDE8;
  --mint-l:       #EAF6F4;
  --mid:          #4A6B63;
  --charcoal:     #1A2B26;
  --ink:          #2C2C2C;
  --warm:         #F7F4F0;
  --white:        #FFFFFF;
  --border:       #E5E0D8;
  --muted:        #888888;
  --muted-light:  #AAAAAA;

  /* ── Typography ──────────────────────────────────────── */
  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'DM Sans', system-ui, -apple-system, sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.65;

  /* ── Spacing scale ───────────────────────────────────── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Layout ──────────────────────────────────────────── */
  --content-width:  1280px;
  --content-narrow: 720px;
  --gutter:         clamp(1.5rem, 5vw, 3rem);

  /* ── Header ──────────────────────────────────────────── */
  --header-height:  72px;
  --header-bg:      rgba(255, 255, 255, 0.92);
  --header-border:  var(--border);

  /* ── Borders & Radius ────────────────────────────────── */
  --radius-sm:  4px;
  --radius-md:  7px;
  --radius-lg:  14px;
  --radius-xl:  20px;
  --radius-full:9999px;

  /* ── Shadows ─────────────────────────────────────────── */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-forest: 0 8px 24px rgba(27, 68, 59, 0.25);

  /* ── Transitions ─────────────────────────────────────── */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;

  /* ── Z-index scale ───────────────────────────────────── */
  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 100;
  --z-header:  200;
  --z-modal:   300;
}
/* =========================================================
   Modern CSS Reset
   ========================================================= */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

body {
  min-height: 100dvh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

img {
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

table {
  border-collapse: collapse;
}

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
/* =========================================================
   Typography — Cormorant Garamond (display) + DM Sans (body)
   ========================================================= */

body {
  font-family: var(--sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--ink);
  background: var(--white);
}

/* ── Headings — Cormorant Garamond ────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(52px, 5.5vw, 80px); font-weight: 300; line-height: 1.05; }
h2 { font-size: clamp(36px, 4vw,  56px);  font-weight: 300; }
h3 { font-size: clamp(24px, 2.5vw,32px);  font-weight: 400; }
h4 { font-size: 1.25rem;  font-weight: 500; font-family: var(--sans); letter-spacing: 0; }
h5 { font-size: 1.125rem; font-weight: 500; font-family: var(--sans); letter-spacing: 0; }
h6 { font-size: 1rem;     font-weight: 500; font-family: var(--sans); letter-spacing: 0; }

/* ── Italic accent ────────────────────────────────────── */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--forest);
}

/* ── Body text ────────────────────────────────────────── */
p {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  max-width: 65ch;
}

p + p {
  margin-top: var(--space-4);
}

/* ── Links ────────────────────────────────────────────── */
a:not([class]) {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

a:not([class]):hover {
  color: var(--forest-l);
}

/* ── Eyebrow / label ──────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 16px;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--forest);
  display: inline-block;
  flex-shrink: 0;
}

.eyebrow--light { color: var(--mint); }
.eyebrow-line--light { background: var(--mint); }

/* ── Utility ──────────────────────────────────────────── */
.text-muted   { color: var(--muted); }
.text-forest  { color: var(--forest); }
.text-mint    { color: var(--mint); }
.text-center  { text-align: center; }
.text-sm      { font-size: 0.875rem; }
.text-xs      { font-size: 0.75rem; }
.font-medium  { font-weight: 500; }
.font-semibold{ font-weight: 600; }

/* ── Section shared ───────────────────────────────────── */
.section-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

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

.section-lead {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  max-width: 540px;
  line-height: 1.75;
}

/* ── Reveal animation (JS adds .visible) ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
/* =========================================================
   Header / Navigation Component
   ========================================================= */

/* ── Announcement Bar ─────────────────────────────────── */
.announcement-bar {
  background: var(--forest);
  color: var(--mint);
  text-align: center;
  padding: var(--space-2) var(--gutter);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.announcement-bar a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Site Header ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-height);
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.04);
}

body.admin-bar .site-header { top: 32px; }

@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* ── Header Inner ─────────────────────────────────────── */
.header-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

/* ── Logo ─────────────────────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo-mark {
  width: 32px;
  height: 32px;
  background: var(--forest);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.01em;
}

/* ── Primary Nav ──────────────────────────────────────── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links__item,
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-links__item:hover,
.nav-links a:hover,
.nav-links__item.is-active,
.nav-links a.is-active {
  opacity: 1;
}

/* Mobile-only elements hidden on desktop */
.nav-lang-mobile,
.nav-mobile-cta {
  display: none;
}

/* ── Header actions (lang + CTA + hamburger) ──────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── Language switcher ────────────────────────────────── */
.nav-lang-switcher {
  position: relative;
}

/* Override TranslatePress default styles */
.nav-lang-switcher .trp-language-switcher,
.nav-lang-switcher .trp-ls-shortcode-language-switcher {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.nav-lang-switcher .trp-ls-shortcode-current-language > a,
.nav-lang-switcher .trp-ls-shortcode-current-language > span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.7;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, border-color 0.2s;
  cursor: pointer;
  background: transparent;
}

.nav-lang-switcher .trp-ls-shortcode-current-language > a:hover {
  opacity: 1;
  border-color: var(--forest);
}

.nav-lang-switcher .trp-flag-image {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}

/* Hide full language names, show abbreviation only via .trp-language-name */
.nav-lang-switcher .trp-language-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Dropdown */
.nav-lang-switcher .trp-ls-dropdown,
.nav-lang-switcher .trp-ls-shortcode-language-switcher ul {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-2) 0;
  min-width: 120px;
  box-shadow: var(--shadow-sm);
  list-style: none;
  margin: 0;
  z-index: 200;
}

.nav-lang-switcher .trp-ls-dropdown li a,
.nav-lang-switcher .trp-ls-shortcode-language-switcher ul li a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
  opacity: 1;
}

.nav-lang-switcher .trp-ls-dropdown li a:hover,
.nav-lang-switcher .trp-ls-shortcode-language-switcher ul li a:hover {
  background: var(--warm);
}

/* ── Header CTA ───────────────────────────────────────── */
.nav-cta {
  padding: 9px 20px;
  background: var(--forest);
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--forest-l);
  transform: translateY(-1px);
}

/* ── Hamburger ────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 0;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.nav-hamburger:hover { background: var(--warm); }

.nav-hamburger .icon-close { display: none; }
.nav-hamburger[aria-expanded="true"] .icon-menu { display: none; }
.nav-hamburger[aria-expanded="true"] .icon-close { display: block; }

/* ── Global buttons ───────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--forest);
  color: var(--white) !important;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--forest-l);
  transform: translateY(-2px);
  box-shadow: var(--shadow-forest);
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.2s;
}

.btn-ghost:hover { border-color: var(--forest); }

.btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--mint);
  color: var(--forest-d) !important;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-mint:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 400;
  color: var(--mint);
  border-bottom: 1px solid rgba(212,237,232,0.3);
  padding-bottom: 1px;
  transition: border-color 0.2s;
  text-decoration: none;
}

.btn-outline-white:hover { border-color: var(--mint); }

/* ── CTA band (reused across pages) ──────────────────── */
.cta-band {
  background: var(--forest);
  padding: 80px var(--gutter);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,237,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.cta-band h2 em { font-style: italic; color: var(--mint); }

.cta-band p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(212,237,232,0.7);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Layout container ─────────────────────────────────── */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Page body offset for fixed header ────────────────── */
#page {
  padding-top: var(--header-height);
}

/* ── Mobile Nav (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-lang-switcher,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: var(--space-8) var(--gutter) var(--space-12);
    gap: 0;
    overflow-y: auto;
    z-index: calc(var(--z-header) - 1);
    border-top: 1px solid var(--border);
  }

  .nav-links.is-open .nav-links__item,
  .nav-links.is-open a.nav-links__item {
    font-size: 18px;
    font-weight: 400;
    opacity: 1;
    width: 100%;
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--border);
    display: block;
  }

  .nav-links.is-open .nav-lang-mobile {
    display: block;
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border);
    width: 100%;
  }

  /* Style TranslatePress in mobile drawer */
  .nav-lang-mobile .trp-language-switcher,
  .nav-lang-mobile .trp-ls-shortcode-language-switcher {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .nav-lang-mobile .trp-ls-shortcode-current-language > a,
  .nav-lang-mobile a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .nav-lang-mobile .trp-flag-image {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
  }

  .nav-lang-mobile .trp-ls-dropdown,
  .nav-lang-mobile .trp-ls-shortcode-language-switcher ul {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    list-style: none;
    margin: 0;
  }

  .nav-lang-mobile .trp-ls-dropdown li a,
  .nav-lang-mobile .trp-ls-shortcode-language-switcher ul li a {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    color: var(--ink);
    text-decoration: none;
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    opacity: 1;
    white-space: nowrap;
  }

  .nav-links.is-open .nav-mobile-cta {
    display: inline-flex;
    margin-top: var(--space-8);
    align-self: stretch;
    justify-content: center;
  }
}
/* =========================================================
   Footer Component
   ========================================================= */

/* ── Main Footer ──────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 60px var(--gutter) 40px;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── Footer Grid ──────────────────────────────────────── */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ── Footer Brand Column ──────────────────────────────── */
.footer-brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-brand-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 240px;
  margin-bottom: 20px;
}

/* ── Footer Contact Links ─────────────────────────────── */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-contact__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact__link svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.footer-contact__link:hover {
  color: var(--mint);
}

.footer-contact__link:hover svg {
  opacity: 1;
}

/* ── Footer Social ────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social__link:hover {
  color: var(--mint);
}

/* ── Footer Nav Columns ───────────────────────────────── */
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--mint);
}

/* ── Footer Location Column ───────────────────────────── */
.footer-location {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-location__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.4;
}

.footer-location__item svg {
  flex-shrink: 0;
  opacity: 0.5;
}

/* ── Footer Legal Row ─────────────────────────────────── */
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-col--brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* =========================================================
   Homepage — section styles
   ========================================================= */

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding: 152px var(--gutter) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--content-width);
  margin: 0 auto;
}

.hero-left { position: relative; }

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero-overline-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
}

.hero h1 {
  opacity: 0;
  animation: fadeUp 0.7s ease 0.2s forwards;
}

.hero h1 strong {
  font-weight: 600;
  font-style: normal;
}

.hero-sub {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.35s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.5s forwards;
}

.hero-note {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.65s forwards;
}

.hero-note-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  display: inline-block;
  flex-shrink: 0;
}

.hero-note span {
  font-size: 13px;
  color: #999;
  font-style: italic;
}

/* ── Hero right: image + floating card ────────────────── */
.hero-right {
  position: relative;
  opacity: 0;
  animation: fadeIn 0.9s ease 0.3s forwards;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(15, 43, 36, 0.3));
  pointer-events: none;
}

.hero-card {
  position: absolute;
  bottom: 32px;
  left: -32px;
  z-index: 2;
  background: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.hero-card-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 6px;
}

.hero-card-stat {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1;
}

.hero-card-sub {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}

.hero-tag {
  position: absolute;
  top: 32px;
  right: -20px;
  z-index: 2;
  background: var(--forest);
  color: var(--mint);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: var(--shadow-forest);
}

/* ── Trusted by ───────────────────────────────────────── */
.trusted {
  padding: 40px var(--gutter);
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trusted-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #aaa;
  flex-shrink: 0;
}

.trusted-logos {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trusted-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.02em;
}

/* ── About strip ──────────────────────────────────────── */
.about-strip {
  background: var(--warm);
  padding: 100px var(--gutter);
}

.about-grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

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

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--forest);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-forest);
  font-size: 13px;
  line-height: 1.5;
  max-width: 180px;
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 18px;
  display: block;
  margin-bottom: 2px;
}

.about-intro {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin-bottom: 28px;
}

.about-body p {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: none;
}

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

.about-sig {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.about-sig-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

.about-sig-role {
  font-size: 13px;
  color: #888;
  margin-top: 2px;
}

/* ── Services grid ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 56px;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background 0.2s;
  cursor: default;
}

.service-card:hover { background: var(--mint-l); }

.service-card--cta {
  background: var(--forest) !important;
  cursor: pointer;
}

.service-card--cta:hover {
  background: var(--forest-l) !important;
}

.service-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
  margin-bottom: 20px;
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--mint-l);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
  color: var(--forest);
}

.service-icon svg { width: 22px; height: 22px; }

.service-card:hover .service-icon { background: var(--mint); }

.service-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: none;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.2s;
}

.service-card:hover .service-link { opacity: 1; }

/* ── Results ──────────────────────────────────────────── */
.results {
  background: var(--forest-d);
  padding: 100px var(--gutter);
}

.results-inner { max-width: var(--content-width); margin: 0 auto; }

.results-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.results-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.results-title em { font-style: italic; color: var(--mint); }

.results-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.6);
  line-height: 1.75;
  max-width: none;
  color: rgba(212, 237, 232, 0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

.stat {
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.03);
}

.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(212, 237, 232, 0.5);
  font-weight: 300;
  max-width: none;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

.case-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 32px;
}

.case-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(212, 237, 232, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.case-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 10px;
}

.case-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.55);
  line-height: 1.7;
  max-width: none;
}

.case-result {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.case-result-num {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: var(--mint);
}

.case-result-text {
  font-size: 13px;
  color: rgba(212, 237, 232, 0.5);
  max-width: none;
}

/* ── Pricing snapshot ─────────────────────────────────── */
.pricing-snap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-snap__card {
  background: var(--white);
  padding: 36px 32px;
  position: relative;
}

.pricing-snap__card--featured {
  background: var(--forest);
}

.pricing-snap__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(212, 237, 232, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.pricing-snap__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.pricing-snap__card--featured .pricing-snap__name {
  color: var(--white);
}

.pricing-snap__price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 12px;
}

.pricing-snap__price span {
  font-size: 18px;
  font-weight: 300;
  color: var(--mid);
}

.pricing-snap__card--featured .pricing-snap__price { color: var(--white); }
.pricing-snap__card--featured .pricing-snap__price span { color: rgba(212,237,232,0.6); }

.pricing-snap__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  max-width: none;
}

.pricing-snap__card--featured .pricing-snap__desc {
  color: rgba(212, 237, 232, 0.65);
}

/* ── Process ──────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  margin: 0 auto 20px;
}

.process-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.process-desc {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  max-width: none;
}

/* ── Trust bar ────────────────────────────────────────── */
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.trust-item strong {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
}

.trust-item span {
  font-size: 12px;
  color: #999;
  font-weight: 300;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Section wrappers ─────────────────────────────────── */
.home-services,
.home-pricing,
.home-process {
  padding: 80px 0;
  background: var(--white);
}

.home-pricing { background: var(--warm); }

.home-section-lead {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.home-services__footer {
  margin-top: var(--space-8);
  text-align: center;
}

/* ── About sig avatar ──────────────────────────────────── */
.about-sig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--mint);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Case study result link ────────────────────────────── */
.case-result-link {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: 13px;
  font-weight: 500;
  color: var(--mint);
  text-decoration: none;
  transition: color 0.2s;
}

.case-result-link:hover { color: rgba(212,237,232,0.7); }

/* ── Trust bar ─────────────────────────────────────────── */
.home-trust {
  background: var(--warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-8) var(--gutter);
}

.home-trust__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

/* ── Kennisbank preview ────────────────────────────────── */
.home-kb {
  background: var(--warm);
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.home-kb__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.home-kb__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-kb__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.home-kb__card:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.home-kb__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.home-kb__card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--mint-l);
}

.home-kb__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.home-kb__card:hover .home-kb__card-thumb img {
  transform: scale(1.03);
}

.home-kb__card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mint-l) 0%, var(--mint) 100%);
}

.home-kb__card-body {
  padding: var(--space-5) var(--space-6);
}

.home-kb__card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
  margin-bottom: var(--space-3);
}

.home-kb__card-type {
  font-weight: 500;
  color: var(--forest);
  text-transform: capitalize;
}

.home-kb__card-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: var(--space-3);
}

.home-kb__card-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  margin: 0;
  max-width: none;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 120px var(--gutter) 60px; min-height: auto; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-header { grid-template-columns: 1fr; gap: 24px; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .case-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }
  .pricing-snap { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .home-kb__grid { grid-template-columns: 1fr 1fr; }
  .home-kb__header { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .hero { padding: 100px var(--gutter) 60px; }
  .trusted { padding: 32px var(--gutter); }
  .about-strip { padding: 72px var(--gutter); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .results { padding: 72px var(--gutter); }
  .trust-item { flex-direction: row; gap: 6px; }
  .home-kb__grid { grid-template-columns: 1fr; }
  .home-trust__inner { gap: var(--space-5); justify-content: flex-start; }
}
/* =========================================================
   Services — archive + single landing page
   ========================================================= */

/* ── Archive hero ─────────────────────────────────────── */
.svc-archive-hero {
  background: var(--white);
  padding: 80px var(--gutter) 64px;
  border-bottom: 1px solid var(--border);
}

.svc-archive-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.svc-archive-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-8);
}

.svc-archive-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* ── Service cards (archive) ──────────────────────────── */
.svc-archive-list {
  padding: var(--space-16) var(--gutter);
  background: var(--white);
}

.svc-card {
  border-bottom: 1px solid var(--border);
  padding: var(--space-16) 0;
}

.svc-card:first-child { padding-top: 0; }
.svc-card:last-of-type { border-bottom: none; }

.svc-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-card__inner--flip {
  direction: rtl;
}

.svc-card__inner--flip > * {
  direction: ltr;
}

.svc-card__num {
  font-family: var(--serif);
  font-size: 80px;
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.svc-card__icon {
  margin-bottom: var(--space-4);
}

.svc-card__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.svc-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.svc-card__title a:hover { color: var(--forest); }

.svc-card__tagline {
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin-bottom: var(--space-6);
  max-width: 42ch;
}

.svc-card__features {
  list-style: none;
  margin: 0 0 var(--space-6);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.svc-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.svc-card__features li svg {
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 1px;
}

.svc-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.svc-card__price {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
}

.svc-card__outcome {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #999;
  background: var(--warm);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.svc-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.svc-card__cta:hover {
  color: var(--forest-l);
  gap: 12px;
}

/* ── Visual side ──────────────────────────────────────── */
.svc-card__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--warm);
}

.svc-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card__visual-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mint-l) 0%, var(--mint) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card__visual-num {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 300;
  color: rgba(27, 68, 59, 0.15);
  line-height: 1;
}

/* ── "Not sure?" prompt ───────────────────────────────── */
.svc-prompt {
  margin-top: var(--space-16);
  background: var(--forest);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.svc-prompt__inner {
  padding: var(--space-16) var(--space-12);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.svc-prompt__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.svc-prompt__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.7);
  line-height: 1.75;
  margin-bottom: var(--space-8);
  max-width: none;
}

/* ── Single: Hero ─────────────────────────────────────── */
.svc-hero {
  background: var(--forest-d);
  padding: 80px var(--gutter) 72px;
}

.svc-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.svc-hero__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 237, 232, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  padding: 8px;
}

.svc-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.svc-hero__tagline {
  font-size: 18px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.75);
  line-height: 1.75;
  max-width: 48ch;
  margin-bottom: var(--space-8);
}

.svc-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}

/* ── Hero aside: stat + price cards ──────────────────── */
.svc-hero__aside {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding-top: var(--space-6);
}

.svc-hero__stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.svc-hero__stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.svc-hero__stat-label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.svc-hero__price-card {
  background: var(--forest);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.svc-hero__price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212, 237, 232, 0.5);
  margin-bottom: var(--space-2);
}

.svc-hero__price-val {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.svc-hero__price-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--mint);
  text-decoration: none;
  transition: color 0.2s;
}

.svc-hero__price-link:hover { color: rgba(212,237,232,0.7); }

.svc-hero__compliance {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.55);
}

.svc-hero__compliance svg { color: var(--mint); flex-shrink: 0; }

/* ── Single: two-col layout ───────────────────────────── */
.svc-problem {
  background: var(--warm);
  padding: 80px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.svc-solution {
  background: var(--white);
  padding: 80px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.svc-two-col {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.svc-two-col__label {
  padding-top: var(--space-1);
}

.svc-two-col__content {}

.svc-problem__body,
.svc-solution__body {
  font-size: 17px;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
}

.svc-problem__body p,
.svc-solution__body p {
  max-width: none;
  margin-bottom: var(--space-5);
  color: #444;
  font-size: 17px;
}

.svc-problem__body h2,
.svc-solution__body h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
}

.svc-problem__callout {
  margin-top: var(--space-8);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.svc-problem__callout p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  color: var(--charcoal);
  margin: 0;
  max-width: none;
}

/* ── Single: Features ─────────────────────────────────── */
.svc-features {
  background: var(--mint-l);
  padding: 80px var(--gutter);
  border-bottom: 1px solid rgba(27, 68, 59, 0.1);
}

.svc-features__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-10);
  letter-spacing: -0.02em;
}

.svc-features__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-4);
}

.svc-features__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(27, 68, 59, 0.1);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  transition: border-color 0.2s;
}

.svc-features__item svg {
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 1px;
}

.svc-features__item:hover {
  border-color: var(--forest);
}

/* ── Related services ─────────────────────────────────── */
.svc-related {
  background: var(--warm);
  padding: 80px var(--gutter);
  border-top: 1px solid var(--border);
}

.svc-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: var(--space-8);
}

.svc-related__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.svc-related__card:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.svc-related__link {
  display: block;
  padding: var(--space-6);
  text-decoration: none;
  color: inherit;
}

.svc-related__name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.svc-related__tagline {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
  margin-bottom: var(--space-5);
  max-width: none;
}

.svc-related__features {
  list-style: none;
  margin: 0 0 var(--space-5);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.svc-related__features li {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  padding-left: var(--space-4);
  position: relative;
}

.svc-related__features li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--forest);
}

.svc-related__price {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.svc-related__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
}

/* ── Breadcrumb bar ───────────────────────────────────── */
.svc-breadcrumb-bar {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) var(--gutter);
}

.svc-breadcrumb-bar .kb-breadcrumb {
  padding: 0;
}

/* ── Pricing strip ────────────────────────────────────── */
.svc-pricing-strip {
  background: var(--warm);
  border-top: 1px solid var(--border);
  padding: 80px var(--gutter);
  text-align: center;
}

.svc-pricing-strip__eyebrow {
  justify-content: center;
}

.svc-pricing-strip .section-title {
  font-size: clamp(28px, 3vw, 44px);
}

.svc-pricing-strip__mo {
  font-size: 0.5em;
  vertical-align: middle;
}

.svc-pricing-strip__body {
  max-width: 44ch;
  margin: 0 auto var(--space-8);
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .svc-card__inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-card__inner--flip { direction: ltr; }
  .svc-card__visual { display: none; }
  .svc-hero__inner { grid-template-columns: 1fr; }
  .svc-hero__aside { flex-direction: row; flex-wrap: wrap; }
  .svc-two-col { grid-template-columns: 1fr; gap: 32px; }
  .svc-related__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .svc-features__grid { grid-template-columns: 1fr; }
  .svc-related__grid { grid-template-columns: 1fr; }
  .svc-hero__aside { flex-direction: column; }
  .svc-prompt__inner { padding: var(--space-10) var(--space-6); }
}
/* =========================================================
   Pricing page + FAQ page
   ========================================================= */

/* ── Pricing hero ──────────────────────────────────────── */
.pricing-hero {
  background: var(--white);
  padding: 80px var(--gutter) 64px;
  border-bottom: 1px solid var(--border);
}

.pricing-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.pricing-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-6);
}

.pricing-annual-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  background: var(--mint-l);
  border: 1px solid var(--mint);
  border-radius: var(--radius-full);
  padding: 6px 14px;
}

/* ── Pricing grid ──────────────────────────────────────── */
.pricing-plans {
  background: var(--warm);
  padding: 72px var(--gutter);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: var(--content-width);
  margin: 0 auto;
}

/* ── Pricing card ──────────────────────────────────────── */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.pricing-card--featured {
  border-color: var(--forest);
  box-shadow: 0 0 0 2px var(--forest);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 2px var(--forest), var(--shadow-sm);
}

.pricing-card__badge {
  background: var(--forest);
  color: var(--mint);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  text-align: center;
}

.pricing-card__header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--border);
}

.pricing-card__name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: var(--space-4);
}

.pricing-card__amount {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-card__period {
  font-size: 15px;
  font-weight: 300;
  color: #999;
}

.pricing-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.5;
}

.pricing-card__features li svg {
  flex-shrink: 0;
  color: var(--forest);
  margin-top: 1px;
}

.pricing-card__footer {
  padding: var(--space-6) var(--space-8) var(--space-8);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: flex-start;
}

.pricing-card__cta {
  align-self: stretch;
  text-align: center;
  justify-content: center;
}

.pricing-card__extra {
  font-size: 12px;
  font-weight: 300;
  color: #aaa;
  text-align: center;
  width: 100%;
}

.pricing-vat-note {
  margin-top: var(--space-8);
  text-align: center;
  font-size: 13px;
  font-weight: 300;
  color: #999;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* ── Add-ons ───────────────────────────────────────────── */
.pricing-addons {
  background: var(--white);
  padding: 80px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.pricing-addons__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-10);
  letter-spacing: -0.02em;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.addon-item {
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--warm);
  transition: border-color 0.2s;
}

.addon-item:hover { border-color: var(--forest); }

.addon-item--annual {
  background: var(--mint-l);
  border-color: var(--mint);
}

.addon-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.addon-item__price {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-3);
}

.addon-item__desc {
  font-size: 13px;
  font-weight: 300;
  color: #777;
  line-height: 1.6;
  margin: 0;
  max-width: none;
}

/* ── What's included ───────────────────────────────────── */
.pricing-included {
  background: var(--warm);
  padding: 80px var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-included__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-12);
  letter-spacing: -0.02em;
}

.pricing-included__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  max-width: var(--content-width);
  margin: 0 auto;
}

.pricing-included__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.pricing-included__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--mint-l);
  border: 1px solid var(--mint);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-top: 2px;
}

.pricing-included__item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: var(--space-2);
}

.pricing-included__item p {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

/* ── FAQ (shared: pricing page strip + full FAQ page) ──── */
.pricing-faq {
  background: var(--white);
  padding: 80px var(--gutter);
}

.faq-section {
  background: var(--white);
  padding: 64px var(--gutter) 80px;
}

.pricing-faq__title,
.faq-hero__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-10);
  letter-spacing: -0.02em;
}

.pricing-faq__more {
  margin-top: var(--space-10);
}

.faq-list {
  max-width: 720px;
}

.faq-list--full {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--forest);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.2s;
}

.faq-item[open] > .faq-item__q {
  color: var(--forest);
}

.faq-item[open] > .faq-item__q::after {
  transform: rotate(45deg);
}

.faq-item__a {
  padding-bottom: var(--space-6);
}

.faq-item__a p {
  font-size: 15px;
  font-weight: 300;
  color: #555;
  line-height: 1.8;
  margin: 0;
  max-width: none;
}

.faq-item__a p + p {
  margin-top: var(--space-4);
}

/* ── FAQ hero ──────────────────────────────────────────── */
.faq-hero {
  background: var(--white);
  padding: 80px var(--gutter) 64px;
  border-bottom: 1px solid var(--border);
}

.faq-hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 0;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
  .addon-grid { grid-template-columns: 1fr 1fr; }
  .pricing-included__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .addon-grid { grid-template-columns: 1fr; }
  .pricing-included__grid { grid-template-columns: 1fr; }
  .pricing-card__header { padding: var(--space-6); }
  .pricing-card__features { padding: var(--space-5) var(--space-6); }
  .pricing-card__footer { padding: var(--space-5) var(--space-6) var(--space-6); }
}
/* =========================================================
   About page — /over-ons/
   ========================================================= */

/* ── Hero ─────────────────────────────────────────────── */
.about-hero {
  background: var(--white);
  padding: 80px var(--gutter) 72px;
  border-bottom: 1px solid var(--border);
}

.about-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}

.about-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.about-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 50ch;
  margin: 0;
}

.about-hero__stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  padding: var(--space-8);
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.about-stat__num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
  margin-bottom: var(--space-1);
  letter-spacing: -0.02em;
}

.about-stat__label {
  font-size: 13px;
  font-weight: 300;
  color: #888;
}

/* ── Founder ───────────────────────────────────────────── */
.about-founder {
  background: var(--warm);
  padding: 96px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.about-founder__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-founder__img-wrap {
  position: relative;
}

.about-founder__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--mint-l);
}

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

.about-founder__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  color: var(--forest);
  opacity: 0.4;
  padding: var(--space-8);
  text-align: center;
}

.about-founder__img-placeholder p {
  font-size: 13px;
  line-height: 1.5;
  max-width: none;
}

.about-founder__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--forest);
  color: var(--white);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(27, 68, 59, 0.3);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
  max-width: 180px;
}

.about-founder__badge strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  color: var(--mint);
}

.about-founder__quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.4;
  margin: 0 0 var(--space-8);
  border-left: 3px solid var(--forest);
  padding-left: var(--space-6);
}

.about-founder__body p {
  font-size: 16px;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  max-width: none;
}

.about-founder__body p + p {
  margin-top: var(--space-4);
}

.about-founder__sig {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}

.about-founder__sig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--mint);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-founder__sig-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
}

.about-founder__sig-role {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  margin-top: 2px;
}

/* ── Why we exist ──────────────────────────────────────── */
.about-why {
  background: var(--white);
  padding: 80px var(--gutter);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.about-why__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-12);
  letter-spacing: -0.02em;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
  max-width: var(--content-width);
  margin: 0 auto;
}

.about-why__num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.about-why__item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.about-why__item p {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  max-width: none;
  margin: 0;
}

/* ── How we work ───────────────────────────────────────── */
.about-how {
  background: var(--forest-d);
  padding: 80px var(--gutter);
}

.about-how__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.about-how__inner .eyebrow {
  color: var(--mint);
}

.about-how__inner .eyebrow-line {
  background: var(--mint);
}

.about-how__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-6);
}

.about-how__body p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.7);
  line-height: 1.85;
  max-width: none;
}

.about-how__body p + p {
  margin-top: var(--space-4);
}

.about-how__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.about-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--mint);
  background: rgba(212, 237, 232, 0.08);
  border: 1px solid rgba(212, 237, 232, 0.15);
  border-radius: var(--radius-full);
  padding: 5px 12px;
}

/* ── Values ────────────────────────────────────────────── */
.about-values {
  background: var(--warm);
  padding: 80px var(--gutter);
  border-top: 1px solid var(--border);
}

.about-values__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: var(--space-12);
  letter-spacing: -0.02em;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-value {
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.about-value:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}

.about-value__icon {
  width: 40px;
  height: 40px;
  background: var(--mint-l);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
  margin-bottom: var(--space-5);
}

.about-value h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.about-value p {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

/* ── Trust bar ─────────────────────────────────────────── */
.about-trust {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--space-8) var(--gutter);
}

.about-trust__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-10);
  flex-wrap: wrap;
}

.about-trust__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

.about-trust__item svg {
  color: var(--forest);
  flex-shrink: 0;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .about-hero__stats { flex-direction: row; flex-wrap: wrap; }
  .about-founder__grid { grid-template-columns: 1fr; }
  .about-founder__img { aspect-ratio: 4 / 3; max-width: 480px; }
  .about-founder__badge { right: 0; bottom: -12px; }
  .about-why__grid { grid-template-columns: 1fr 1fr; }
  .about-how__inner { grid-template-columns: 1fr; gap: 32px; }
  .about-values__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .about-why__grid { grid-template-columns: 1fr; }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-trust__grid { gap: var(--space-5); justify-content: flex-start; }
  .about-founder__badge { display: none; }
}
/* =========================================================
   Resultaten — case study archive + single
   ========================================================= */

/* ── Archive hero ──────────────────────────────────────── */
.res-hero {
  background: var(--forest-d);
  padding: 80px var(--gutter) 72px;
}

.res-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.res-hero__title {
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.res-hero__title em { color: var(--mint); }

.res-hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.6);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0;
}

/* ── Hero stats ────────────────────────────────────────── */
.res-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.res-hero__stat {
  background: rgba(255, 255, 255, 0.04);
  padding: var(--space-6) var(--space-8);
}

.res-hero__stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--mint);
  line-height: 1;
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.res-hero__stat-num span {
  font-size: 28px;
}

.res-hero__stat-label {
  font-size: 13px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.5);
}

/* ── Case study grid ───────────────────────────────────── */
.res-cases {
  background: var(--white);
  padding: 80px var(--gutter);
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--content-width);
  margin: 0 auto;
}

.res-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.res-card:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.res-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.res-card__link--static {
  cursor: default;
}

.res-card__top {
  background: var(--forest-d);
  padding: var(--space-6) var(--space-8);
  min-height: 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.res-card__thumb {
  position: absolute;
  inset: 0;
}

.res-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.res-card__top { position: relative; }

.res-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(212, 237, 232, 0.1);
  border: 1px solid rgba(212, 237, 232, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  position: relative;
  z-index: 1;
}

.res-card__body {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.res-card__title {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}

.res-card__name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin: 0;
}

.res-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  margin: 0;
  max-width: none;
}

.res-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border);
}

.res-card__metric {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  background: var(--mint-l);
  border: 1px solid var(--mint);
  border-radius: var(--radius-full);
  padding: 4px 14px;
}

.res-card__quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: #777;
  border-left: 2px solid var(--mint);
  padding-left: var(--space-4);
  margin: var(--space-2) 0 0;
}

.res-card__quote cite {
  display: block;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: #aaa;
  margin-top: var(--space-2);
}

.res-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  margin-top: var(--space-2);
  transition: gap 0.2s;
}

.res-card:hover .res-card__cta { gap: 12px; }

/* ── "Could this be you?" prompt ───────────────────────── */
.res-prompt {
  background: var(--forest-d);
  padding: 80px var(--gutter);
}

.res-prompt__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.res-prompt__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.res-prompt__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.6);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0;
}

.res-prompt__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex-shrink: 0;
}

/* ── Single: hero ──────────────────────────────────────── */
.cs-hero {
  background: var(--forest-d);
  padding: 80px var(--gutter) 72px;
}

.cs-hero__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

.cs-hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(212, 237, 232, 0.1);
  border: 1px solid rgba(212, 237, 232, 0.15);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
}

.cs-hero__client {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.cs-hero__project {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: var(--space-5);
}

.cs-hero__desc {
  font-size: 17px;
  font-weight: 300;
  color: rgba(212, 237, 232, 0.7);
  line-height: 1.75;
  max-width: 50ch;
  margin: 0;
}

.cs-hero__thumb {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.cs-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Metrics bar ───────────────────────────────────────── */
.cs-metrics {
  background: var(--forest);
  padding: var(--space-8) var(--gutter);
}

.cs-metrics__grid {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.cs-metric__val {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--mint);
  letter-spacing: -0.02em;
}

/* ── Single: challenge / solution ──────────────────────── */
.cs-section {
  padding: 72px var(--gutter);
  border-bottom: 1px solid var(--border);
}

.cs-challenge { background: var(--warm); }
.cs-solution  { background: var(--white); }

.cs-two-col {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
}

.cs-two-col__label { padding-top: var(--space-1); }

.cs-body {
  font-size: 17px;
  font-weight: 300;
  color: #444;
  line-height: 1.85;
}

.cs-body p { max-width: none; color: #444; font-size: 17px; margin-bottom: var(--space-5); }
.cs-body h2 { font-family: var(--serif); font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; color: var(--charcoal); margin-bottom: var(--space-4); }
.cs-body ul { padding-left: var(--space-5); margin-bottom: var(--space-5); }
.cs-body li { margin-bottom: var(--space-2); }

/* ── Testimonial ───────────────────────────────────────── */
.cs-testimonial {
  background: var(--mint-l);
  padding: 80px var(--gutter);
  border-bottom: 1px solid rgba(27, 68, 59, 0.1);
}

.cs-testimonial__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.cs-testimonial__mark {
  color: var(--mint);
  margin-bottom: var(--space-6);
}

.cs-testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0 0 var(--space-6);
}

.cs-testimonial__author {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  font-style: normal;
  letter-spacing: 0.04em;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .res-hero__inner { grid-template-columns: 1fr; }
  .res-hero__stats { flex-direction: row; flex-wrap: wrap; background: none; gap: 16px; }
  .res-hero__stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius-lg); flex: 1; min-width: 140px; }
  .res-prompt__inner { grid-template-columns: 1fr; }
  .res-prompt__actions { flex-direction: row; }
  .cs-hero__inner { grid-template-columns: 1fr; }
  .cs-two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .res-grid { grid-template-columns: 1fr; }
  .cs-metrics__grid { gap: 32px; }
}
/* =========================================================
   Contact page
   ========================================================= */

.contact-section {
  padding: 80px var(--gutter) 100px;
  background: var(--white);
}

.contact-wrap {
  max-width: var(--content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* ── Left column ──────────────────────────────────────── */
.contact-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.contact-lead {
  font-size: 17px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: var(--space-8);
}

/* ── Email link ───────────────────────────────────────── */
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: var(--space-10);
}

.contact-email:hover {
  border-color: var(--forest);
  box-shadow: var(--shadow-sm);
}

.contact-email__icon {
  color: var(--forest);
  flex-shrink: 0;
}

/* ── What to expect steps ─────────────────────────────── */
.contact-expect {
  margin-bottom: var(--space-10);
}

.contact-expect__title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-5);
}

.contact-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.contact-step__num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  color: var(--forest);
  margin-top: 1px;
}

.contact-step div strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-step div p {
  font-size: 13px;
  font-weight: 300;
  color: #888;
  line-height: 1.55;
  margin: 0;
  max-width: none;
}

/* ── Trust row ────────────────────────────────────────── */
.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.contact-trust__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-trust__item strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.contact-trust__item span {
  font-size: 12px;
  font-weight: 300;
  color: #999;
}

/* ── Right column: form card ──────────────────────────── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-height) + var(--space-8));
}

.contact-form-card__header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--warm);
}

.contact-form-card__label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: var(--space-2);
  max-width: none;
}

.contact-form-card__sub {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  margin: 0;
  max-width: none;
}

.contact-form-card__body {
  padding: var(--space-8);
}

/* ── Fluent Forms overrides ───────────────────────────── */
.contact-form-card__body .ff-el-group {
  margin-bottom: var(--space-5) !important;
}

.contact-form-card__body .ff-el-form-control {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  color: var(--ink) !important;
  background: var(--white) !important;
  padding: 11px 14px !important;
  transition: border-color 0.2s !important;
  box-shadow: none !important;
}

.contact-form-card__body .ff-el-form-control:focus {
  border-color: var(--forest) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(27, 68, 59, 0.1) !important;
}

.contact-form-card__body .ff-el-form-control::placeholder {
  color: #bbb !important;
  font-weight: 300 !important;
}

.contact-form-card__body label,
.contact-form-card__body .ff-el-input--label {
  font-family: var(--sans) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  margin-bottom: 6px !important;
}

.contact-form-card__body .ff_submit_btn_container .ff-btn-submit,
.contact-form-card__body button[type="submit"] {
  background: var(--forest) !important;
  color: var(--white) !important;
  font-family: var(--sans) !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 13px 28px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
}

.contact-form-card__body .ff_submit_btn_container .ff-btn-submit:hover,
.contact-form-card__body button[type="submit"]:hover {
  background: var(--forest-l) !important;
  transform: translateY(-1px) !important;
}

/* ── FAQ grid ─────────────────────────────────────────── */
.contact-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 64px;
}

.contact-faq__item h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: var(--space-3);
}

.contact-faq__item p {
  font-size: 15px;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  max-width: none;
}

.contact-faq__item a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form-card {
    position: static;
  }

  .contact-faq {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 60px var(--gutter) 80px;
  }

  .contact-form-card__body {
    padding: var(--space-6);
  }
}
/* =========================================================
   Kennisbank — hub, archives, single posts
   ========================================================= */

/* ── Hub / archive hero ───────────────────────────────── */
.kb-hero {
  background: var(--white);
  padding: 80px var(--gutter) 60px;
  border-bottom: 1px solid var(--border);
}

.kb-hero--dark {
  background: var(--forest-d);
  border-bottom-color: rgba(255,255,255,0.07);
}

.kb-hero--archive {
  padding: 60px var(--gutter) 48px;
}

.kb-hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.kb-title--light { color: var(--white); }

.kb-hero__sub {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: var(--space-10);
}

.kb-sub--light { color: rgba(212, 237, 232, 0.7); }

/* ── Type navigation pills ────────────────────────────── */
.kb-type-nav {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.kb-type-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--charcoal);
  transition: all 0.2s;
}

.kb-type-nav__item:hover {
  border-color: var(--forest);
  background: var(--mint-l);
  color: var(--forest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.kb-type-nav__icon {
  color: var(--forest);
  flex-shrink: 0;
}

.kb-type-nav__item span:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.kb-type-nav__item strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  transition: color 0.2s;
}

.kb-type-nav__item:hover strong { color: var(--forest); }

.kb-type-nav__item em {
  font-size: 12px;
  font-style: normal;
  font-weight: 300;
  color: #999;
}

/* ── Sections ─────────────────────────────────────────── */
.kb-section {
  padding: 80px var(--gutter);
  background: var(--white);
}

.kb-section + .kb-section {
  border-top: 1px solid var(--border);
}

.kb-section--dark {
  background: var(--forest-d);
}

.kb-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.kb-section__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0;
}

.kb-eyebrow--light { color: var(--mint); }
.kb-eyebrow-line--light { background: var(--mint); }
.kb-title--light { color: var(--white); }

.kb-view-all {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.kb-view-all:hover { color: var(--forest-l); }
.kb-view-all--light { color: var(--mint); }
.kb-view-all--light:hover { color: rgba(212,237,232,0.7); }

/* ── Card grid ────────────────────────────────────────── */
.kb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kb-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ── Card ─────────────────────────────────────────────── */
.kb-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kb-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.kb-card--dark {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}

.kb-card--dark:hover {
  background: rgba(255,255,255,0.07);
  box-shadow: none;
}

.kb-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ── Card media ───────────────────────────────────────── */
.kb-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--warm);
  flex-shrink: 0;
}

.kb-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kb-card:hover .kb-card__media img {
  transform: scale(1.03);
}

.kb-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--mint-l), var(--mint));
}

.kb-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 43, 36, 0.4);
  color: var(--white);
  transition: background 0.2s;
}

.kb-card:hover .kb-card__play {
  background: rgba(15, 43, 36, 0.6);
}

/* ── Card body ────────────────────────────────────────── */
.kb-card__body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kb-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.kb-card__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  background: var(--mint-l);
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.kb-card--dark .kb-card__tag {
  color: var(--mint);
  background: rgba(212,237,232,0.12);
}

.kb-card__time {
  font-size: 12px;
  font-weight: 300;
  color: #999;
}

.kb-card--dark .kb-card__time { color: rgba(212,237,232,0.4); }

.kb-card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.3;
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

.kb-card--dark .kb-card__title { color: var(--white); }

.kb-card__excerpt {
  font-size: 14px;
  font-weight: 300;
  color: #777;
  line-height: 1.65;
  margin-bottom: var(--space-4);
  flex: 1;
  max-width: none;
}

.kb-card--dark .kb-card__excerpt { color: rgba(212,237,232,0.55); }

.kb-card__cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  margin-top: auto;
}

.kb-card--dark .kb-card__cta { color: var(--mint); }

/* ── Breadcrumb ───────────────────────────────────────── */
.kb-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  font-weight: 300;
  color: #999;
  margin-bottom: var(--space-5);
}

.kb-breadcrumb a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s;
}

.kb-breadcrumb a:hover { color: var(--forest-l); }

/* ── Single post header ───────────────────────────────── */
.kb-post-header {
  padding: 64px var(--gutter) 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.kb-post-header--video {
  background: var(--forest-d);
  border-bottom-color: rgba(255,255,255,0.07);
}

.kb-post-header--video .kb-breadcrumb { color: rgba(212,237,232,0.4); }
.kb-post-header--video .kb-breadcrumb a { color: var(--mint); }

.kb-post-header__meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.kb-post-header__sep { color: var(--border); }
.kb-post-header__date { font-size: 13px; font-weight: 300; color: #999; }
.kb-post-header__time { font-size: 13px; font-weight: 300; color: #999; }

.kb-post-header--video .kb-post-header__date,
.kb-post-header--video .kb-post-header__time,
.kb-post-header--video .kb-post-header__sep {
  color: rgba(212,237,232,0.4);
}

.kb-post-header__title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.1;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin-bottom: var(--space-5);
}

.kb-post-header--video .kb-post-header__title { color: var(--white); }

.kb-post-header__lead {
  font-size: 18px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
  max-width: 56ch;
}

.kb-post-header--video .kb-post-header__lead { color: rgba(212,237,232,0.65); }

/* ── Video embed ──────────────────────────────────────── */
.kb-post-video {
  background: var(--forest-d);
  padding: 0 var(--gutter) var(--space-12);
}

.video-embed {
  position: relative;
  padding-top: 56.25%; /* 16:9 */
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ── Post thumbnail ───────────────────────────────────── */
.kb-post-thumb {
  padding: var(--space-8) var(--gutter);
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}

.kb-post-thumb__img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ── Post body ────────────────────────────────────────── */
.kb-post-body {
  background: var(--white);
  padding: var(--space-16) var(--gutter);
}

.kb-post-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Guide banner ─────────────────────────────────────── */
.kb-gids-banner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--mint-l);
  border-left: 3px solid var(--forest);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: var(--space-8);
}

/* ── Post content typography ──────────────────────────── */
.entry__content h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  color: var(--charcoal);
  margin-top: var(--space-12);
  margin-bottom: var(--space-4);
}

.entry__content h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--charcoal);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.entry__content p {
  font-size: 17px;
  font-weight: 300;
  color: #444;
  line-height: 1.8;
  margin-bottom: var(--space-5);
  max-width: none;
}

.entry__content ul,
.entry__content ol {
  margin: 0 0 var(--space-6) var(--space-6);
  list-style: disc;
}

.entry__content ol { list-style: decimal; }

.entry__content li {
  font-size: 16px;
  font-weight: 300;
  color: #444;
  line-height: 1.75;
  margin-bottom: var(--space-2);
}

.entry__content blockquote {
  border-left: 3px solid var(--forest);
  margin: var(--space-8) 0;
  padding: var(--space-4) var(--space-6);
  background: var(--warm);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.entry__content blockquote p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  color: var(--charcoal);
  margin: 0;
}

.entry__content a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 400;
}

/* ── Post footer ──────────────────────────────────────── */
.kb-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-10);
  margin-top: var(--space-12);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.kb-post-footer__back {
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
  transition: color 0.2s;
}

.kb-post-footer__back:hover { color: var(--forest-l); }

/* ── Related posts ────────────────────────────────────── */
.kb-related {
  background: var(--warm);
  padding: 80px var(--gutter);
  border-top: 1px solid var(--border);
}

/* ── Pagination ───────────────────────────────────────── */
.kb-pagination {
  margin-top: var(--space-12);
  display: flex;
  justify-content: center;
}

.kb-pagination .nav-links {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}

.kb-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  transition: all 0.2s;
}

.kb-pagination .page-numbers:hover,
.kb-pagination .page-numbers.current {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

.kb-empty {
  padding: var(--space-16) 0;
  text-align: center;
  color: #999;
  font-style: italic;
  font-size: 16px;
}

/* ── Newsletter strip ─────────────────────────────────── */
.kb-newsletter {
  background: var(--warm);
  border-top: 1px solid var(--border);
  padding: 80px var(--gutter);
  text-align: center;
}

.kb-newsletter__eyebrow {
  justify-content: center;
}

.kb-newsletter .section-title {
  font-size: clamp(28px, 3vw, 44px);
}

.kb-newsletter__body {
  max-width: 44ch;
  margin: 0 auto var(--space-8);
  font-size: 16px;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .kb-grid { grid-template-columns: 1fr 1fr; }
  .kb-section__header { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
}

@media (max-width: 640px) {
  .kb-grid { grid-template-columns: 1fr; }
  .kb-type-nav { flex-direction: column; }
  .kb-post-footer { flex-direction: column; align-items: flex-start; }
  .kb-hero { padding: 60px var(--gutter) 40px; }
}
/* =========================================================
   Elementor Compatibility Shims
   Theme CSS vars override Elementor defaults.
   ========================================================= */

/* ── Container max-width ──────────────────────────────── */
.elementor-section-boxed > .elementor-container,
.e-con-boxed > .e-con-inner {
  max-width: var(--content-width) !important;
  padding-inline: var(--gutter) !important;
}

/* ── Typography: theme fonts win ─────────────────────── */
.elementor-widget-text-editor p,
.elementor-widget-text-editor li {
  font-family: var(--sans);
  color: #555;
  font-weight: 300;
  line-height: 1.75;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--serif);
  letter-spacing: -0.02em;
}

/* ── Elementor editor: unfix header ───────────────────── */
.elementor-editor-active .site-header {
  position: relative;
}

.elementor-editor-active #page {
  padding-top: 0;
}

/* ── Admin bar + fixed header offset ─────────────────── */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* ── Elementor popup ──────────────────────────────────── */
.elementor-popup-modal {
  z-index: var(--z-modal) !important;
}

/* ── Divider ──────────────────────────────────────────── */
.elementor-divider-separator {
  border-color: var(--border) !important;
}

/* ── Section background reset ─────────────────────────── */
.elementor-section.elementor-section-boxed {
  padding-left: 0;
  padding-right: 0;
}
