:root {
  --bg: #f4f0e8;
  --paper: #fbf9f4;
  --ink: #1d211e;
  --muted: #6b6f68;
  --line: #d9d4ca;
  --sage: #dfe5dc;
  --olive: #6f7868;
  --dark: #1f2520;
  --accent: #b68a5a;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(28, 34, 28, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 92px 0; }
.section-light { background: var(--paper); }
.section-dark { background: var(--dark); color: white; }

a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .01em;
  transition: transform .2s ease, background .2s ease;
}
a.btn:hover { transform: translateY(-1px); background: #111411; }
a.btn-small { min-height: 44px; padding: 0 17px; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}
.text-link span { font-size: 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244,240,232,.92);
  border-bottom: 1px solid rgba(217,212,202,.8);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  font-family: "DM Serif Display", serif;
  font-size: 17px;
}
.brand-text { font-weight: 700; font-size: 13px; line-height: 1.1; letter-spacing: -.01em; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a:not(.btn) { text-decoration: none; font-size: 13px; font-weight: 600; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; }

.hero { padding-top: 104px; padding-bottom: 82px; }
.hero-grid { display: grid; grid-template-columns: 1.3fr .78fr; gap: 72px; align-items: center; }
.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--olive);
}
h1, h2, h3 { margin: 0; font-weight: 400; }
h1, h2 { font-family: "DM Serif Display", serif; letter-spacing: -.025em; }
h1 { font-size: clamp(54px, 6.4vw, 88px); line-height: .97; max-width: 860px; }
h2 { font-size: clamp(40px, 4.7vw, 64px); line-height: 1.02; }
h3 { font-size: 22px; line-height: 1.2; }
.hero-intro { font-size: clamp(19px, 1.8vw, 24px); line-height: 1.45; max-width: 770px; margin: 30px 0 0; color: #343934; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 34px; flex-wrap: wrap; }
.promise { margin: 22px 0 0; color: var(--muted); font-size: 13px; display: flex; align-items: center; gap: 10px; }
.promise-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.hero-for { margin: 11px 0 0; color: #868980; font-size: 12px; max-width: 720px; }
.hero-panel {
  background: var(--dark);
  color: white;
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.hero-panel-top { display: flex; justify-content: space-between; color: #aeb4ae; font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.13); padding-bottom: 22px; letter-spacing: .08em; }
.hero-panel-link {
  display: block;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.13);
  text-decoration: none;
}
.hero-panel-link:last-child { border-bottom: 0; padding-bottom: 8px; }
.hero-panel-link small { display: block; color: #aeb4ae; margin-bottom: 9px; font-size: 11px; letter-spacing: .11em; }
.hero-panel-link strong { display: block; font-family: "DM Serif Display", serif; font-size: 28px; line-height: 1.1; font-weight: 400; }
.hero-panel-link > span { display: inline-block; margin-top: 14px; color: #d6dcd5; font-size: 12px; font-weight: 700; }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p:last-child { color: var(--muted); font-size: 17px; margin-top: 18px; }
.split-head { max-width: none; display: grid; grid-template-columns: 1.15fr .75fr; gap: 78px; align-items: end; }
.split-head > p { margin: 0 0 8px; }
.light-head .eyebrow { color: #b7c0b4; }
.light-head > p { color: #c6ccc5 !important; }

.choice-section { padding-top: 82px; }
.topic-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topic-chip {
  min-height: 88px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  cursor: default;
  background: rgba(255,255,255,.22);
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.topic-chip:hover {
  background: var(--dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(28,34,28,.13);
  position: relative;
  z-index: 2;
}
.topic-chip > span { color: var(--olive); font-size: 11px; transition: color .2s ease; }
.topic-chip:hover > span { color: #b7c0b4; }
.topic-chip strong { font-size: 16px; font-weight: 600; }


.capability-catalog { margin-top: 38px; }
.catalog-loading { margin: 0; color: var(--muted); }
.catalog-show-all-row { display: flex; justify-content: flex-end; margin: 0 0 12px; }
.catalog-question-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 0 0 34px; }
.catalog-question {
  background: rgba(255,255,255,.42);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.catalog-question-label {
  display: block;
  color: var(--olive);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 13px;
}
.catalog-category-list { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.catalog-category-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.catalog-category-btn:hover,
.catalog-category-btn:focus-visible {
  border-color: var(--olive);
  transform: translateY(-1px);
}
.catalog-category-btn.is-active {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.catalog-group-show-all {
  padding: 7px 11px;
  font-size: 11px;
  color: var(--olive);
  background: transparent;
}
.catalog-result-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 16px;
}
.catalog-result-head h3 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
}
.catalog-count { color: var(--muted); font-size: 12px; white-space: nowrap; }
.catalog-modules { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.catalog-module {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 19px;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.catalog-module:hover {
  background: var(--sage);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(28,34,28,.06);
}
.catalog-module h4 { margin: 0 0 7px; font-size: 16px; line-height: 1.3; }
.catalog-module > p { margin: 0; color: var(--muted); font-size: 13px; }
.catalog-facilitators {
  margin-top: 14px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
  color: var(--olive);
  font-size: 11px;
  line-height: 1.5;
}
.catalog-facilitators strong {
  color: var(--ink);
  font-weight: 700;
  margin-right: 5px;
}
.catalog-empty {
  grid-column: 1 / -1;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
}
.catalog-modules.show-all { display: block; }
.catalog-all-group { margin: 0 0 34px; }
.catalog-all-group:last-child { margin-bottom: 0; }
.catalog-all-group-title {
  margin: 0 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  font-weight: 400;
}
.catalog-all-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.facilitator-section { background: var(--bg); }
.facilitator-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.facilitator-copy > p { margin: 4px 0 24px; color: var(--muted); font-size: 18px; max-width: 660px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 28px; }
.filter-chip {
  appearance: none;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  color: var(--olive);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.filter-chip:hover,
.filter-chip:focus-visible { border-color: var(--olive); }
.filter-chip.is-active {
  border-color: var(--dark);
  background: var(--dark);
  color: white;
}

.offsite-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.offsite-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.offsite-card:hover {
  background: var(--sage);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(28, 34, 28, 0.08);
}
.card-label { font-size: 11px; letter-spacing: .12em; font-weight: 700; color: var(--olive); }
.offsite-card h3 { margin-top: 38px; font-family: "DM Serif Display", serif; font-size: 32px; }
.offsite-card p { color: var(--muted); margin-top: 13px; }
.compact-offsites .offsite-card { min-height: 230px; }
.section-cta { margin-top: 28px; }

.alternative-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.alternative-tags span {
  border: 1px solid rgba(255,255,255,.22);
  padding: 13px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: #e9ede8;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.alternative-tags span:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(0,0,0,.18);
}

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-grid article { padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); min-height: 220px; }
.process-no { font-family: "DM Serif Display", serif; color: var(--accent); font-size: 26px; }
.process-grid h3 { margin-top: 38px; font-family: "DM Serif Display", serif; font-size: 28px; }
.process-grid p { color: var(--muted); font-size: 14px; }

.locations-section { background: #ebe6db; }
.compact-locations { padding-top: 82px; padding-bottom: 82px; }
.location-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.location-card { background: var(--paper); border-radius: 24px; overflow: hidden; border: 1px solid #d6cfc2; box-shadow: 0 18px 42px rgba(38,35,30,.06); }
.location-visual { aspect-ratio: 1.55 / 1; display: flex; align-items: flex-end; padding: 20px; position: relative; overflow: hidden; background: #cfc9bc; }
.location-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.location-card:hover .location-visual img { transform: scale(1.025); }
.location-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.48), rgba(0,0,0,.02) 62%); }
.location-visual span { position: relative; z-index: 2; color: white; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.location-copy { padding: 20px 22px 22px; }
.location-place { margin: 0 0 4px; color: var(--olive); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.location-copy h3 { font-family: "DM Serif Display", serif; font-size: 28px; }

.academy-section { background: var(--sage); }
.academy-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.academy-grid p { font-size: 18px; color: #3d453e; margin-top: 0; }
.academy-grid .text-link { margin-top: 16px; }

.founders-section { background: var(--paper); }
.founders-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  column-gap: 86px;
  row-gap: 28px;
  align-items: start;
}
.founders-heading {
  grid-column: 1;
  grid-row: 1;
}
.founders-heading h2 { max-width: 650px; }
.founders-body {
  grid-column: 1;
  grid-row: 2;
}
.founders-body > p {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 17px;
}
.founders-body > p:last-child { margin-bottom: 0; }
.founder-profiles {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 14px;
  padding-top: 0;
}
.founder-profile {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg);
}
.founder-photo {
  width: 88px;
  height: 88px;
  border-radius: 14px;
  background-image: url("assets/images/facilitator-sprite-bw-hq.jpg");
  background-size: 400% 200%;
  background-repeat: no-repeat;
  background-color: #e4dfd5;
  filter: grayscale(100%);
}
.founder-photo--bas { background-position: 33.333% 0%; }
.founder-photo--marijke { background-position: 100% 0%; }
.founder-profile h3 {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  line-height: 1.05;
}
.founder-profile p {
  margin: 7px 0 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
.founder-link { font-size: 12px; }

.final-cta { background: var(--accent); }
.final-cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: end; }
.final-cta .eyebrow { color: #4c3b29; }
.final-cta p { max-width: 620px; }
.final-cta .btn { margin-top: 18px; }
.cta-mail { font-size: 11px; color: rgba(29,33,30,.62); margin: 10px 0 0; }

.site-footer { background: #151915; color: white; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: end; }
.footer-brand .brand-mark { border-color: white; }
.site-footer p { margin: 0 0 4px; color: #aeb4ae; font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; font-size: 12px; color: #aeb4ae; }
.footer-links a { color: white; text-decoration: none; }

@media (max-width: 1000px) {
  .hero-grid, .split-head, .facilitator-grid, .final-cta-grid, .founders-grid { grid-template-columns: 1fr; gap: 40px; }
  .founders-heading, .founders-body, .founder-profiles { grid-column: 1; grid-row: auto; }
  .offsite-grid, .location-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 18px; }
  .main-nav > a:not(.btn) { display: none; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 28px, 1180px); }
  .section-pad { padding: 70px 0; }
  .hero { padding-top: 68px; padding-bottom: 60px; }
  h1 { font-size: clamp(48px, 15vw, 70px); }
  h2 { font-size: clamp(37px, 11vw, 50px); }
  .hero-grid { gap: 40px; }
  .hero-panel { border-radius: 24px; }
  .hero-panel-link strong { font-size: 24px; }
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a:not(.btn) { display: block; padding: 8px 0; }
  .topic-grid, .offsite-grid, .location-grid, .process-grid { grid-template-columns: 1fr; }
  .catalog-question-grid, .catalog-modules, .catalog-all-grid { grid-template-columns: 1fr; }
  .catalog-result-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .catalog-show-all-row { justify-content: stretch; }
  .catalog-show-all-row .catalog-category-btn { width: 100%; text-align: left; }
  .topic-chip { min-height: 78px; }
  .facilitator-copy > p { font-size: 16px; }
  .founder-profile { grid-template-columns: 72px 1fr; padding: 14px; }
  .founder-photo { width: 72px; height: 72px; border-radius: 12px; }
  .footer-grid { grid-template-columns: 1fr; align-items: start; }
  .footer-links { align-items: flex-start; }
}
