:root {
  --cream: #f8f6f1;
  --paper: #fffdf8;
  --sand: #ebe3d5;
  --mist: #e3ebe5;
  --ink: #102f2a;
  --green: #073d34;
  --green-mid: #145449;
  --green-soft: #739087;
  --orange: #ea5b16;
  --orange-bright: #ff7b2c;
  --muted: #5f7069;
  --line: rgba(16, 47, 42, .18);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 28px 70px rgba(10, 44, 38, .12);
  --max: 1280px;
  --gutter: clamp(24px, 4.5vw, 72px);
  overflow-x: hidden;
}

* { box-sizing: border-box; }

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.58;
  overflow-x: clip;
}

main { overflow: clip; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: -90px;
  padding: 12px 18px;
  background: var(--orange);
  color: white;
}
.skip-link:focus { top: 0; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 80px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(22px, 3vw, 52px);
  padding: 0 var(--gutter);
  background: rgba(248, 246, 241, .96);
  border-bottom: 1px solid rgba(7, 61, 52, .09);
  backdrop-filter: blur(14px);
}

.wordmark {
  color: var(--green);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: 1;
  white-space: nowrap;
}
.wordmark-dot { color: var(--orange); }

.primary-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
}
.primary-nav a {
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  color: #29423d;
  font-size: 14px;
  font-weight: 700;
}
.primary-nav a:hover,
.primary-nav a.active {
  color: var(--orange);
  border-color: var(--orange);
}
.nav-caret { margin-left: 6px; }
.menu-toggle { display: none; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 21px;
  border: 1px solid var(--orange);
  border-radius: 3px;
  background: var(--orange);
  color: white;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  background: #ca4508;
  box-shadow: 0 12px 24px rgba(234, 91, 22, .2);
  transform: translateY(-2px);
}
.button-header { min-width: 188px; }
.button-small { min-height: 42px; padding: 10px 15px; font-size: 14px; }

.button:focus-visible,
.text-link:focus-visible,
.quiet-link:focus-visible,
.primary-nav a:focus-visible,
.wordmark:focus-visible,
.footer-cta:focus-visible,
.footer-bottom a:focus-visible,
summary:focus-visible,
.anatomy-item:focus-visible,
.outcome-card:focus-visible,
.scenario-list a:focus-visible,
.home-situation-grid a:focus-visible,
.knowledge-result:focus-visible,
.route-choice-grid a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #f3a26f;
  outline-offset: 4px;
}

.focus-header {
  grid-template-columns: 1fr auto;
  background: var(--paper);
}
.focus-actions { display: flex; align-items: center; gap: 28px; }
.focus-actions a { color: var(--muted); font-size: 14px; font-weight: 750; }
.focus-actions span { margin-left: 8px; color: var(--orange); font-size: 20px; }

/* Heroes: distinct art direction, never a generic rounded-card template. */
.route-hero {
  position: relative;
  width: min(100%, 1440px);
  min-height: 570px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 92px);
  padding: 62px var(--gutter) 72px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: start;
  padding-top: 18px;
}

.eyebrow,
.section-kicker {
  display: block;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .155em;
  line-height: 1.35;
  text-transform: uppercase;
}
.eyebrow { margin-top: 0; font-size: 13px; }

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 690px;
  margin-bottom: 25px;
  font-size: clamp(52px, 5.5vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
}
h1 span { display: block; }

.hero-intro {
  max-width: 570px;
  margin-bottom: 30px;
  color: #425952;
  font-size: 19px;
  line-height: 1.52;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.text-link,
.quiet-link {
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  color: var(--green);
  font-weight: 800;
}
.text-link:hover,
.quiet-link:hover { color: var(--orange); }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 23px;
  margin-top: 40px;
  color: #536a63;
  font-size: 13px;
}
.trust-row span::before { content: "•"; margin-right: 8px; color: var(--orange); }

.hero-media {
  position: relative;
  z-index: 2;
  min-height: 430px;
  align-self: stretch;
}
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.hero-mode-human .hero-image,
.hero-mode-human-document .hero-image,
.hero-mode-human-knowledge .hero-image,
.hero-mode-human-adviser .hero-image,
.hero-mode-human-team .hero-image,
.hero-mode-human-contractwacht .hero-image,
.hero-mode-human-adviser-portrait .hero-image {
  object-fit: cover;
  object-position: center;
  border-radius: 2px 2px 88px 2px;
  box-shadow: var(--shadow);
}
.hero-mode-human .hero-media::before,
.hero-mode-human-document .hero-media::before,
.hero-mode-human-knowledge .hero-media::before,
.hero-mode-human-adviser .hero-media::before,
.hero-mode-human-team .hero-media::before,
.hero-mode-human-contractwacht .hero-media::before,
.hero-mode-human-adviser-portrait .hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px -22px -22px 28px;
  background: var(--green);
  border-radius: 0 0 100px 0;
}
.hero-mode-human-team .hero-image { object-position: 64% center; }
.hero-mode-human-adviser-portrait .hero-image { object-position: 63% center; }

.hero-mode-object .hero-media,
.hero-mode-object-portrait .hero-media,
.hero-mode-object-dark-object .hero-media,
.hero-mode-route-object .hero-media {
  display: grid;
  place-items: center;
  padding: 26px;
}
.hero-mode-object .hero-media::before,
.hero-mode-object-portrait .hero-media::before,
.hero-mode-route-object .hero-media::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% 2% 4% 5%;
  border-radius: 52% 48% 44% 56% / 38% 42% 58% 62%;
  background: var(--sand);
}
.hero-mode-object-portrait .hero-image { max-width: 76%; }
.hero-mode-object-dark-object .hero-media { background: var(--green); }

.hero-stamp {
  position: absolute;
  z-index: 4;
  right: -18px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(10, 44, 38, .14);
  color: var(--green);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .09em;
  line-height: 1.25;
  text-transform: uppercase;
}
.stamp-dot { width: 10px; height: 10px; flex: none; border-radius: 50%; background: var(--orange); }

.hero-mode-home {
  width: 100%;
  max-width: none;
  min-height: 650px;
  grid-template-columns: minmax(420px, .85fr) minmax(520px, 1.15fr);
  padding-top: 58px;
  padding-bottom: 80px;
}
.hero-mode-home::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0 43% 0 0;
  border-radius: 0 44% 52% 0 / 0 21% 34% 0;
  background: var(--green);
}
.hero-mode-home .hero-copy { color: white; padding-left: max(0px, calc((100vw - 1440px) / 2)); }
.hero-mode-home .eyebrow { color: #ff985d; }
.hero-mode-home .hero-intro { max-width: 520px; color: #d5e0db; }
.hero-mode-home .text-link { color: white; }
.hero-mode-home .trust-row { color: #c5d5ce; }
.hero-mode-home .hero-media { margin: 14px 0 0 -22px; }
.hero-mode-home .hero-image {
  object-fit: cover;
  object-position: center;
  border-radius: 46% 0 0 44% / 50% 0 0 50%;
  box-shadow: var(--shadow);
}
.hero-adviser {
  position: absolute;
  z-index: 4;
  left: -110px;
  bottom: -28px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.adviser-image {
  width: 154px;
  height: 154px;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  border: 8px solid var(--cream);
  border-radius: 50%;
  background: var(--cream);
}
.hero-adviser span {
  margin-bottom: 15px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.route-hero-compact {
  min-height: 410px;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .75fr);
  padding-top: 45px;
  padding-bottom: 50px;
}
.route-hero-compact h1 { font-size: clamp(48px, 5vw, 70px); }
.route-hero-compact .hero-media,
.route-hero-compact .hero-image { min-height: 300px; }

/* Concept families */
body[data-route-kind="situation"] .route-hero,
body[data-route-kind="open-detail"] .route-hero,
body[data-route-kind="article"] .route-hero {
  grid-template-columns: minmax(0, 1fr) minmax(410px, .9fr);
}

body[data-route-kind="knowledge-index"] .route-hero { background: var(--paper); }
body[data-route-kind="process"] .route-hero,
body[data-route-kind="about"] .route-hero { padding-bottom: 92px; }

body[data-route-kind="reclame"] main {
  background: #06251f;
  color: #f9f4ea;
}
body[data-route-kind="reclame"] .route-hero {
  width: 100%;
  max-width: none;
  background: #06251f;
}
body[data-route-kind="reclame"] .route-hero::after {
  content: "";
  position: absolute;
  inset: 18% 0 auto 0;
  height: 3px;
  background: var(--orange);
  transform: rotate(-4deg);
  transform-origin: center;
}
body[data-route-kind="reclame"] .hero-copy { color: white; }
body[data-route-kind="reclame"] .hero-intro,
body[data-route-kind="reclame"] .text-link { color: #c6d3cd; }
body[data-route-kind="reclame"] .hero-media::before { background: #0a332b; }
body[data-route-kind="reclame"] .hero-stamp { background: #0e3a31; color: white; }
body[data-route-kind="reclame"] .content-section { color: #f9f4ea; }
body[data-route-kind="reclame"] .section-heading p,
body[data-route-kind="reclame"] .accordion-answer,
body[data-route-kind="reclame"] .process-line p { color: #b9cbc3; }
body[data-route-kind="reclame"] .content-section:nth-of-type(even) { background: #0b332b; }
body[data-route-kind="reclame"] .accordion details { border-color: rgba(255,255,255,.18); }
body[data-route-kind="reclame"] .goal-grid > div { background: #0d392f; border-color: rgba(255,255,255,.15); }

body[data-route-kind="intake"] .route-hero {
  min-height: 440px;
  padding-top: 46px;
  padding-bottom: 44px;
  background: var(--paper);
}
body[data-route-kind="intake"] .hero-mode-human-adviser-portrait .hero-image { border-radius: 50%; object-position: 64% center; }
body[data-route-kind="intake"] .hero-mode-human-adviser-portrait .hero-media::before { display: none; }
body[data-route-kind="confirmation"] .route-hero { min-height: 490px; }

/* Editorial section system. */
.content-section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px var(--gutter);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, .88fr) minmax(320px, 1.12fr);
  column-gap: clamp(58px, 8vw, 118px);
  align-items: start;
  margin-bottom: 54px;
}
.section-heading .section-kicker { grid-column: 1 / -1; margin-bottom: 16px; }
h2 {
  max-width: 660px;
  margin-bottom: 0;
  font-size: clamp(40px, 4.2vw, 60px);
  line-height: 1.03;
  letter-spacing: -.05em;
}
.section-heading p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}
.section-content { min-width: 0; }

.signature-section,
.openkaart-layers,
.outcomes-section,
.status-section,
.verification {
  max-width: none;
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--green);
  color: var(--paper);
}
.signature-section .section-heading p,
.openkaart-layers .section-heading p,
.outcomes-section .section-heading p,
.status-section .section-heading p,
.verification .section-heading p { color: #c2d1ca; }
.signature-section .section-kicker,
.openkaart-layers .section-kicker,
.outcomes-section .section-kicker,
.status-section .section-kicker,
.verification .section-kicker { color: #ff9b62; }

.media-block {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px var(--gutter) 88px;
}
.media-frame { position: relative; min-height: 440px; }
.media-single .media-frame { display: grid; place-items: center; background: var(--sand); }
.media-single img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: contain;
}
.media-pair .media-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  align-items: end;
  gap: 18px;
}
.media-pair .route-media {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--sand);
}
.media-pair .route-media-0 { height: 480px; }
.media-pair .route-media-1 { height: 370px; margin-bottom: -32px; }
.media-block figcaption {
  margin-top: 12px;
  color: #74837d;
  font-size: 12px;
}

/* Reusable content patterns remain structural, while family CSS supplies composition. */
.tab-panel { max-width: 1100px; }
.tab-list {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 1px solid rgba(255,255,255,.25);
  scrollbar-width: none;
}
.tab-list::-webkit-scrollbar { display: none; }
.tab-list button,
.file-tabs > button {
  flex: none;
  padding: 15px 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: inherit;
  font-weight: 800;
  text-align: left;
}
.tab-list button[aria-selected="true"],
.file-tabs > button.active { border-color: var(--orange-bright); color: white; }
.tab-content {
  display: none;
  grid-template-columns: 75px 1fr;
  gap: 22px;
  padding: 30px 0 8px;
}
.tab-content.is-active { display: grid; }
.layer-index { color: #ff9b62; font-size: 23px; font-weight: 850; }
.tab-content h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.tab-content p { max-width: 650px; color: #c6d5ce; }
.tab-content a { color: #ffb084; font-weight: 800; }

.home-situation-grid,
.knowledge-links,
.route-links,
.product-band,
.callout-grid,
.perspective-grid,
.principle-grid,
.goal-grid,
.step-cards,
.route-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.home-situation-grid a,
.knowledge-links a,
.route-links a,
.route-choice-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform .2s ease, border-color .2s ease;
}
.home-situation-grid a:nth-child(2n) { transform: translateY(30px); }
.home-situation-grid a:hover,
.knowledge-links a:hover,
.route-links a:hover,
.route-choice-grid a:hover { border-color: var(--orange); transform: translateY(-4px); }
.home-situation-grid span,
.knowledge-links span,
.route-choice-grid span { color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.home-situation-grid strong,
.knowledge-links strong,
.route-choice-grid strong { font-family: Georgia, serif; font-size: 24px; font-weight: 500; line-height: 1.18; }
.home-situation-grid em,
.knowledge-links em,
.route-choice-grid em,
.route-links a { margin-top: auto; color: #5e7068; font-size: 13px; font-style: normal; font-weight: 750; }

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-line::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: var(--orange);
}
.process-line li { position: relative; z-index: 1; padding-right: 26px; }
.process-number {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  font-weight: 850;
}
.process-line strong { display: block; max-width: 230px; font-size: 18px; line-height: 1.28; }
.process-line p { max-width: 230px; margin-top: 9px; color: var(--muted); font-size: 14px; }

.outcome-rail { max-width: 1160px; }
.outcome-rail-track { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 10px; }
.outcome-card {
  min-height: 232px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--paper);
  color: var(--ink);
  transition: transform .2s ease, border-color .2s ease;
}
.outcome-card:hover,
.outcome-card:focus { border-color: var(--orange); transform: translateY(-5px); }
.outcome-number { color: var(--orange); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.outcome-card h3 { margin: 42px 0 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.outcome-card p { color: #5e6f68; font-size: 13px; line-height: 1.45; }
.rail-dots { display: none; }

.product-band a {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 32px;
  background-color: var(--green);
  background-image: linear-gradient(90deg, rgba(7,61,52,.98) 0 54%, rgba(7,61,52,.18)), url('/assets/raster-shared/11-contractwacht-contractkluis.png');
  background-position: center, right center;
  background-size: cover, 58% auto;
  background-repeat: no-repeat;
  color: white;
}
.product-band a::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 2px solid var(--orange);
  border-radius: 50%;
}
.product-band a:nth-child(2) {
  background-color: #0a2924;
  background-image: linear-gradient(90deg, rgba(6,37,31,.98) 0 54%, rgba(6,37,31,.2)), url('/assets/raster-shared/14-reclamevrij-homepage-product.png');
}
.product-band span { color: #ff9b62; font-size: 11px; font-weight: 850; letter-spacing: .14em; }
.product-band h3 { margin: 48px 0 10px; font-family: Georgia, serif; font-size: 34px; font-weight: 500; }
.product-band p { max-width: 380px; color: #c8d5cf; }
.product-band em { position: absolute; left: 32px; bottom: 28px; font-style: normal; font-weight: 800; }

.knowledge-links a { min-height: 210px; }
.accordion { max-width: 930px; }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  list-style: none;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--orange); font-size: 27px; font-weight: 400; transition: transform .2s ease; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion-answer { max-width: 740px; padding: 0 45px 23px 0; color: var(--muted); }

.final-cta {
  position: relative;
  max-width: none;
  overflow: hidden;
  padding: 112px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  background: var(--orange);
  color: white;
}
.final-cta::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: -70%;
  width: 52vw;
  height: 170%;
  border: 2px solid rgba(255,255,255,.38);
  border-radius: 50%;
}
.final-cta .section-kicker { color: #ffd8c1; }
.final-cta h2 { position: relative; z-index: 1; max-width: 800px; }
.final-cta p { position: relative; z-index: 1; max-width: 500px; margin: 21px 0 28px; color: #fff1e8; font-size: 18px; }
.final-cta .button { position: relative; z-index: 1; border-color: var(--green); background: var(--green); }

.anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.anatomy-item {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.anatomy-item:hover { background: var(--mist); }
.anatomy-index { color: var(--orange); font-size: 11px; font-weight: 850; }
.anatomy-item span:nth-child(2) { font-weight: 800; }
.anatomy-item span:last-child { margin-left: auto; color: var(--orange); }
.anatomy-note { display: flex; align-items: baseline; gap: 20px; padding: 20px; background: var(--mist); }
.anatomy-note span { color: var(--muted); }

.checklist { max-width: 800px; margin: 0; padding: 0; list-style: none; }
.checklist li + li { border-top: 1px solid var(--line); }
.checklist button {
  width: 100%;
  min-height: 60px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.checklist button span { color: var(--orange); font-weight: 850; }
.checklist button b { color: var(--orange); opacity: .2; }
.checklist li.checked button { color: #789087; text-decoration: line-through; }
.checklist li.checked button b { opacity: 1; }

.scenario-list { max-width: 1040px; border-top: 1px solid var(--line); }
.scenario-list a {
  display: grid;
  grid-template-columns: 64px 1fr 1.2fr 28px;
  gap: 17px;
  align-items: center;
  padding: 20px 10px;
  border-bottom: 1px solid var(--line);
}
.scenario-list a:hover { background: var(--mist); }
.scenario-node { color: var(--orange); font-size: 12px; font-weight: 850; }
.scenario-list strong { font-family: Georgia, serif; font-size: 21px; font-weight: 500; }
.scenario-list em { color: var(--muted); font-style: normal; }
.scenario-list b { color: var(--orange); }

.bridge-card,
.scale-card,
.disclosure,
.phone-lock,
.status-card,
.confirmation-card {
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 29px;
  background: var(--mist);
}
.bridge-line { display: flex; flex: 1; align-items: center; gap: 20px; font-weight: 800; }
.bridge-line b { color: var(--orange); }
.situation-intro-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: start; }
.statement-card { padding: 32px; background: var(--green); color: white; }
.statement-card p { color: #c7d6cf; }

.perspective-grid,
.principle-grid,
.callout-grid,
.goal-grid,
.step-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.perspective-grid > div,
.principle-grid > div,
.callout-grid > div,
.goal-grid > div,
.step-cards > div {
  min-height: 190px;
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--paper);
}
.perspective-grid > div:nth-child(2),
.principle-grid > div:nth-child(2),
.step-cards > div:nth-child(2) { transform: translateY(24px); }
.perspective-grid span,
.principle-grid span,
.goal-grid span,
.step-cards span { color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.perspective-grid h3,
.principle-grid h3,
.goal-grid h3,
.step-cards h3 { margin: 32px 0 8px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.perspective-grid p,
.principle-grid p,
.callout-grid span,
.goal-grid p,
.step-cards p { color: var(--muted); }
.callout-grid strong { display: block; margin-bottom: 18px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.callout-grid span { display: block; }

.market-band { padding: 40px; background: var(--green); color: white; }
.band-scale { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 18px; align-items: center; font-weight: 800; }
.band-scale i { position: relative; height: 12px; border-radius: 50%; background: linear-gradient(90deg, var(--orange), #efbf94, var(--orange)); }
.band-scale i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; border-radius: 50%; background: white; transform: translate(-50%,-50%); }
.market-band p { max-width: 680px; margin: 30px 0 0; color: #c5d5ce; }
.context-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.context-grid div { min-height: 120px; display: flex; flex-direction: column; gap: 8px; padding: 22px; background: var(--mist); }
.context-grid span { color: var(--muted); }

.article-lead { display: grid; grid-template-columns: 1.2fr .8fr; gap: 54px; align-items: start; }
.article-lead > p { max-width: 670px; font-family: Georgia, serif; font-size: 26px; line-height: 1.4; }
.article-toc { display: flex; flex-direction: column; gap: 8px; padding-left: 23px; border-left: 2px solid var(--orange); }
.article-toc span { margin-bottom: 5px; color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.article-toc a { color: #547068; font-weight: 700; }
.article-points { max-width: 900px; }
.article-points article { display: grid; grid-template-columns: 64px 1fr; gap: 22px; padding: 27px 0; border-top: 1px solid var(--line); scroll-margin-top: 105px; }
.article-points article > span { color: var(--orange); font-weight: 850; }
.article-points h3 { margin-bottom: 7px; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.article-points p { max-width: 680px; color: var(--muted); }
.scale-card { align-items: flex-start; background: var(--green); color: white; }
.scale-card p { color: #cbd9d3; }
.scale-figure { width: 62px; height: 62px; flex: none; display: grid; place-items: center; border: 1px solid var(--orange); border-radius: 50%; color: var(--orange-bright); font-size: 26px; }

.phone-lock { max-width: 790px; background: #efdfd0; }
.phone-glyph { width: 62px; height: 62px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 33px; }
.relationship-line,
.value-flow { max-width: 1040px; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 19px; align-items: center; }
.relationship-line > div,
.value-flow > div { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 22px; border: 1px solid var(--line); background: var(--paper); }
.relationship-line strong,
.value-flow strong { font-family: Georgia, serif; font-size: 22px; font-weight: 500; }
.relationship-line span,
.value-flow span { margin-top: 8px; color: var(--muted); }
.relationship-line b,
.value-flow b { color: var(--orange); font-size: 26px; }
.disclosure { align-items: flex-start; border-left: 5px solid var(--orange); background: #fff0e4; }
.disclosure span { color: var(--orange); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.disclosure p { max-width: 790px; margin: 0; font-size: 18px; }

.verification-list { max-width: 930px; margin: 0; padding: 0; list-style: none; }
.verification-list li { display: grid; grid-template-columns: 60px 1fr; gap: 22px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.22); }
.verification-list li > span { color: #ff9b62; font-weight: 850; }
.verification-list h3 { margin-bottom: 6px; font-family: Georgia, serif; font-size: 25px; font-weight: 500; }
.verification-list p { color: #c6d5ce; }

.preference-section { padding-bottom: 0; }
.contact-preference {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  margin-top: 20px;
  padding: 36px;
  background: #fff0e4;
  color: var(--ink);
}
.contact-preference h2 { font-size: 36px; }
.contact-preference p { color: var(--muted); }
.contact-preference form { align-self: center; }
.contact-preference label,
.form-card label,
.knowledge-search label,
.faq-search label,
.intake-panel label { display: flex; flex-direction: column; gap: 8px; color: var(--ink); font-weight: 800; }
.inline-form { display: flex; gap: 10px; }
input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b9c6bf;
  border-radius: 0;
  outline: none;
  background: var(--paper);
  color: var(--ink);
}
.quiet-link { margin-top: 18px; font-size: 13px; }
.form-error { margin: 12px 0; padding: 10px 12px; background: #ffe2dc; color: #a12d18; }
.form-success { margin: 12px 0; padding: 10px 12px; background: #dceee4; color: #145c42; }

.knowledge-search { max-width: 940px; padding: 32px; background: var(--mist); }
.search-row { display: flex; gap: 10px; margin-top: 8px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.filter { min-height: 42px; padding: 8px 14px; border: 1px solid #bdcac3; border-radius: 999px; background: transparent; color: var(--green); font-weight: 800; }
.filter.active,
.filter:hover { border-color: var(--green); background: var(--green); color: white; }
.knowledge-results { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.knowledge-result { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 18px; border: 1px solid transparent; background: var(--paper); }
.knowledge-result:hover { border-color: var(--orange); }
.knowledge-result span { grid-column: 1 / -1; color: var(--orange); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.knowledge-result strong { line-height: 1.25; }
.knowledge-result em { color: var(--orange); font-style: normal; }
.empty-state { color: var(--muted); }

.fact-card { max-width: 930px; display: flex; gap: 28px; padding: 33px; background: var(--green); color: white; }
.fact-mark { width: 66px; height: 66px; flex: none; display: grid; place-items: center; border: 2px solid var(--orange); border-radius: 50%; color: var(--orange); font-size: 30px; font-weight: 800; }
.fact-card h3 { font-family: Georgia, serif; font-size: 31px; font-weight: 500; }
.fact-card p { max-width: 680px; color: #cbd9d3; }
.fact-card a { color: #ffad7f; font-weight: 800; }

.form-card { max-width: 930px; padding: 32px; background: var(--mist); }
.form-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 18px; }
.form-grid label:first-child { grid-column: 1 / -1; }
.form-consent,
.consent-label { display: flex !important; flex-direction: row !important; align-items: flex-start; gap: 10px; margin: 20px 0; color: #53665e !important; font-size: 13px; }
.form-consent input,
.consent-label input { width: auto; margin-top: 4px; }
.form-card textarea { resize: vertical; }

.intake-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 1.15fr); column-gap: 74px; }
.intake-section .section-heading { display: block; }
.intake-section .section-content { grid-column: 2; grid-row: 1; }
.intake-stepper { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 4px; margin-bottom: 24px; }
.intake-stepper span { padding: 11px; border-top: 3px solid #cdd7d1; color: #6f7e78; font-size: 12px; font-weight: 800; }
.intake-stepper span.active { border-color: var(--orange); color: var(--orange); }
.intake-form { max-width: 780px; padding: 29px; border: 1px solid var(--line); background: var(--paper); }
.intake-panel { display: flex; flex-direction: column; gap: 16px; }
.intake-panel[hidden] { display: none; }
.intake-panel h3 { font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.intake-panel label:not(.consent-label) { display: flex; flex-direction: row; align-items: center; gap: 10px; font-weight: 700; }
.intake-panel label:has(input[type="text"]),
.intake-panel label:has(input[type="email"]),
.intake-panel label:has(input[type="tel"]) { flex-direction: column; align-items: stretch; }
.intake-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 8px; }
.intake-controls .text-link { min-height: 44px; border: 0; background: transparent; color: var(--green); font: inherit; font-weight: 800; cursor: pointer; }
.intake-controls .button { margin-left: auto; }
.intake-stepper span.complete { border-color: var(--green); color: var(--green); }
.review-list { display: grid; gap: 8px; padding: 18px; background: var(--mist); color: #53665e; }

.confirmation-card { max-width: 850px; align-items: flex-start; background: var(--green); color: white; }
.confirmation-card p { color: #c8d8d0; }
.confirmation-mark { width: 64px; height: 64px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-size: 29px; }

.legal-layout { max-width: 1040px; display: grid; grid-template-columns: 240px 1fr; gap: 64px; }
.legal-toc { position: sticky; top: 110px; align-self: start; display: flex; flex-direction: column; gap: 8px; padding-left: 18px; border-left: 2px solid var(--orange); }
.legal-toc a { color: #566e65; font-weight: 750; }
.legal-copy article { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.legal-copy h3 { margin-bottom: 8px; font-family: Georgia, serif; font-size: 27px; font-weight: 500; }
.legal-copy p { color: var(--muted); }

.cookie-preferences { max-width: 830px; display: grid; gap: 11px; }
.cookie-preferences label { display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center; padding: 18px; border: 1px solid var(--line); background: var(--mist); }
.cookie-preferences input { width: 20px; height: 20px; }
.cookie-preferences label span { display: flex; flex-direction: column; }
.cookie-preferences label em { color: var(--muted); font-size: 14px; font-style: normal; }
.cookie-preferences label b { color: var(--orange); font-size: 12px; }
.a11y-demo { max-width: 930px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 13px; }
.a11y-demo > div { min-height: 170px; display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 22px; border: 1px solid var(--line); }
.focus-demo:focus { outline: 4px solid var(--orange); outline-offset: 5px; }
.contrast-demo { background: var(--green); color: white; }
.contrast-demo span,
.zoom-demo span { color: var(--muted); }

.signal-field { position: relative; min-height: 240px; overflow: hidden; display: grid; place-items: center; background: #061d19; }
.signal-field {
  background-image: linear-gradient(90deg, rgba(6,29,25,.76), rgba(6,29,25,.25)), url('/assets/raster-shared/16-reclamevrij-pressure-to-calm.png');
  background-position: center;
  background-size: cover;
}
.signal-field > span { position: absolute; width: 170px; height: 170px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.signal-field > span:nth-child(1) { left: 8%; top: 20%; }
.signal-field > span:nth-child(2) { left: 31%; top: 28%; transform: scale(.64); }
.signal-field > span:nth-child(3) { right: 18%; top: 12%; transform: scale(1.5); }
.signal-field > span:nth-child(4) { right: 5%; bottom: -30%; }
.signal-line { position: absolute; left: 5%; right: 5%; top: 51%; height: 3px; background: var(--orange); transform: rotate(-7deg); }
.signal-field strong { position: relative; color: white; font-family: Georgia, serif; font-size: 30px; font-weight: 500; }
.timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 13px; }
.timeline > div { padding: 18px; border-left: 3px solid var(--orange); background: rgba(255,255,255,.08); }
.timeline span { color: #ff9b62; font-size: 11px; font-weight: 850; }
.timeline strong { display: block; margin: 28px 0 8px; }
.timeline p { color: #c8d7d0; font-size: 13px; }
.file-tabs { max-width: 840px; display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.file-tabs {
  max-width: 1080px;
  padding-right: min(46%, 490px);
  background-image: linear-gradient(90deg, var(--cream) 0 53%, transparent 70%), url('/assets/raster-shared/11-contractwacht-contractkluis.png');
  background-position: center, right center;
  background-size: cover, 48% auto;
  background-repeat: no-repeat;
}
.file-tabs > button { color: var(--ink); }
.file-tabs > button.active { color: var(--green); }
.file-tab-content { flex-basis: 100%; padding: 24px; background: var(--mist); }
.file-tab-content p { color: var(--muted); }

/* Footer authority: dark field, four semantic groups, restrained utility row. */
.site-footer {
  padding: 76px var(--gutter) 24px;
  background: #052f28;
  color: #f6f1e7;
}
.site-footer .wordmark { color: white; }
.footer-top { max-width: var(--max); display: grid; grid-template-columns: .8fr 1.8fr; gap: 74px; margin: 0 auto; padding-bottom: 62px; }
.footer-brand p { max-width: 250px; color: #afc2ba; }
.footer-cta { display: inline-block; margin-top: 22px; color: #ff9a60; font-weight: 800; }
.footer-groups { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 26px; }
.footer-groups details { color: white; }
.footer-groups summary { margin-bottom: 14px; color: white; font-weight: 850; list-style: none; }
.footer-groups summary::-webkit-details-marker { display: none; }
.footer-groups details a { display: block; margin: 9px 0; color: #afc2ba; font-size: 13px; }
.footer-groups details a:hover { color: #ff9a60; }
.footer-bottom { max-width: var(--max); display: flex; flex-wrap: wrap; gap: 16px 26px; margin: 0 auto; padding: 21px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); color: #a8bcb4; font-size: 12px; }
.footer-bottom a:last-child { color: #ff9a60; font-weight: 800; }
.footer-note { max-width: var(--max); margin: 18px auto 0; color: #7f9a90; font-size: 11px; }

[data-reveal] { opacity: 1; }
.revealed { animation: rise .58s ease both; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  :root { --gutter: 40px; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .menu-toggle { display: inline-flex; align-items: center; gap: 8px; border: 0; background: transparent; color: var(--green); font-weight: 800; }
  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 20px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { min-height: 48px; border-bottom: 1px solid var(--line); }
  .button-header { display: none; }
  .route-hero {
    min-height: 530px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
    gap: 42px;
    padding-top: 54px;
    padding-bottom: 66px;
  }
  .hero-mode-home { grid-template-columns: minmax(370px, .9fr) minmax(420px, 1.1fr); }
  .hero-mode-home::before { right: 41%; }
  .hero-mode-home .hero-media { margin-left: 0; }
  .hero-adviser { left: -68px; }
  .adviser-image { width: 128px; height: 128px; }
  .section-heading { column-gap: 58px; }
  .media-pair .route-media-0 { height: 420px; }
  .media-pair .route-media-1 { height: 330px; }
  .intake-section { grid-template-columns: .8fr 1.2fr; column-gap: 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 42px; }
  .footer-groups { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-groups details { border-top: 1px solid rgba(255,255,255,.18); padding-top: 15px; }
  .footer-groups summary::after { content: "+"; float: right; color: var(--orange-bright); }
  .footer-groups details[open] summary::after { content: "−"; }
}

@media (max-width: 800px) {
  :root { --gutter: 24px; }
  .route-hero,
  body[data-route-kind="situation"] .route-hero,
  body[data-route-kind="open-detail"] .route-hero,
  body[data-route-kind="article"] .route-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 44px;
    padding-bottom: 52px;
  }
  .hero-copy { padding-top: 0; }
  h1 { font-size: clamp(46px, 9vw, 64px); }
  .hero-intro { font-size: 18px; }
  .hero-media,
  .hero-image { min-height: 330px; }
  .hero-mode-human .hero-media,
  .hero-mode-human-document .hero-media,
  .hero-mode-human-knowledge .hero-media,
  .hero-mode-human-adviser .hero-media,
  .hero-mode-human-team .hero-media,
  .hero-mode-human-contractwacht .hero-media,
  .hero-mode-human-adviser-portrait .hero-media { margin: 0 16px 0 0; }
  .hero-mode-home {
    grid-template-columns: 1fr;
    padding-top: 44px;
    background: var(--cream);
  }
  .hero-mode-home::before { display: none; }
  .hero-mode-home .hero-copy { color: var(--ink); padding-left: 0; }
  .hero-mode-home .hero-intro { color: #425952; }
  .hero-mode-home .text-link { color: var(--green); }
  .hero-mode-home .trust-row { color: #536a63; }
  .hero-mode-home .hero-media { margin: 0; }
  .hero-mode-home .hero-image { border-radius: 0 0 76px 0; }
  .hero-adviser { left: 18px; bottom: -38px; align-items: center; }
  .adviser-image { width: 118px; height: 118px; border-width: 6px; }
  .hero-adviser span { margin-bottom: 0; padding: 9px 11px; background: var(--paper); }
  .hero-stamp { display: none; }
  .route-hero-compact { grid-template-columns: 1fr; }
  body[data-route-kind="knowledge-index"] .hero-media { display: none; }
  body[data-route-path="/energiekennis/loyaliteitskorting-of-blijf-slapen-korting"] .hero-media { display: none; }
  body[data-route-kind="knowledge-index"] .route-hero { padding-bottom: 42px; }
  body[data-route-kind="situation"] .route-hero,
  body[data-route-kind="process"] .route-hero,
  body[data-route-kind="about"] .route-hero {
    background: var(--green);
    color: white;
  }
  body[data-route-kind="situation"] .hero-intro,
  body[data-route-kind="process"] .hero-intro,
  body[data-route-kind="about"] .hero-intro,
  body[data-route-kind="situation"] .text-link,
  body[data-route-kind="process"] .text-link,
  body[data-route-kind="about"] .text-link { color: #c8d8d0; }
  body[data-route-kind="situation"] .hero-media::before { background: #154d43; }
  .content-section { padding-top: 68px; padding-bottom: 68px; }
  .section-heading { display: block; margin-bottom: 36px; }
  .section-heading h2 { margin-bottom: 18px; }
  .section-heading p { font-size: 16px; }
  .media-block { padding-top: 0; padding-bottom: 58px; }
  .media-frame { min-height: 0; }
  .media-single img { height: 370px; }
  .media-pair .media-frame { grid-template-columns: 1.1fr .9fr; gap: 10px; }
  .media-pair .route-media-0 { height: 330px; }
  .media-pair .route-media-1 { height: 250px; margin-bottom: -20px; }
  .process-line { grid-template-columns: 1fr; }
  .process-line::before { top: 26px; bottom: 26px; left: 25px; right: auto; width: 2px; height: auto; }
  .process-line li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 0 0 28px; }
  .process-number { margin: 0; }
  .process-line strong { padding-top: 13px; }
  .outcome-rail-track { display: flex; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .outcome-rail-track::-webkit-scrollbar { display: none; }
  .outcome-card { min-width: 44%; scroll-snap-align: start; }
  .rail-dots { display: flex; justify-content: center; gap: 6px; padding-top: 14px; }
  .rail-dots span { width: 7px; height: 7px; border-radius: 50%; background: #aab9b2; }
  .rail-dots span.active { width: 18px; border-radius: 6px; background: var(--orange); }
  .home-situation-grid,
  .knowledge-links,
  .route-links,
  .product-band,
  .callout-grid,
  .perspective-grid,
  .principle-grid,
  .goal-grid,
  .step-cards,
  .a11y-demo,
  .context-grid { grid-template-columns: 1fr; }
  .home-situation-grid a:nth-child(2n),
  .perspective-grid > div:nth-child(2),
  .principle-grid > div:nth-child(2),
  .step-cards > div:nth-child(2) { transform: none; }
  .anatomy-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .anatomy-note { flex-direction: column; gap: 5px; }
  .scenario-list a { grid-template-columns: 46px 1fr 24px; }
  .scenario-list em { grid-column: 2; grid-row: 2; }
  .scenario-list b { grid-column: 3; grid-row: 1 / span 2; }
  .situation-intro-grid,
  .article-lead,
  .contact-preference,
  .legal-layout { grid-template-columns: 1fr; gap: 26px; }
  .article-toc { padding: 18px 0 0; border-top: 2px solid var(--orange); border-left: 0; }
  .bridge-line { flex-wrap: wrap; }
  .relationship-line,
  .value-flow { grid-template-columns: 1fr; }
  .relationship-line b,
  .value-flow b { justify-self: center; transform: rotate(90deg); }
  .inline-form { flex-direction: column; }
  .knowledge-results { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label:first-child { grid-column: auto; }
  .intake-section { display: block; }
  .intake-stepper { grid-template-columns: repeat(4, minmax(120px, 1fr)); overflow-x: auto; }
  .timeline { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .file-tabs { padding-right: 0; padding-top: 310px; background-position: center, center top; background-size: cover, auto 290px; }
  .legal-toc { position: static; }
  .footer-groups { grid-template-columns: 1fr; gap: 0; }
  .footer-groups details { padding: 16px 0; }
  .footer-groups details:not([open]) a { display: none; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }
  .site-header { height: 64px; }
  .primary-nav { top: 64px; }
  .wordmark { font-size: 23px; }
  .focus-actions { gap: 14px; }
  .focus-actions a:first-child { display: none; }
  .route-hero,
  body[data-route-kind="situation"] .route-hero,
  body[data-route-kind="open-detail"] .route-hero,
  body[data-route-kind="article"] .route-hero { padding-top: 38px; padding-bottom: 46px; }
  .eyebrow { margin-bottom: 15px; font-size: 11px; }
  h1 { font-size: clamp(40px, 12.5vw, 54px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; gap: 15px; }
  .hero-actions .button { width: 100%; }
  .hero-media,
  .hero-image { min-height: 275px; }
  .hero-mode-object .hero-media,
  .hero-mode-object-portrait .hero-media,
  .hero-mode-object-dark-object .hero-media,
  .hero-mode-route-object .hero-media { min-height: 245px; padding: 10px; }
  .hero-mode-object-portrait .hero-image { max-width: 90%; }
  .hero-mode-home .hero-media,
  .hero-mode-home .hero-image { min-height: 300px; }
  .hero-adviser { left: 8px; }
  .adviser-image { width: 104px; height: 104px; }
  .trust-row { display: grid; gap: 7px; margin-top: 30px; }
  .content-section { padding-top: 56px; padding-bottom: 56px; }
  h2 { font-size: clamp(35px, 10.5vw, 46px); }
  .media-block { padding-bottom: 48px; }
  .media-pair .media-frame { grid-template-columns: 1fr; }
  .media-pair .route-media-0,
  .media-pair .route-media-1 { height: 250px; margin: 0; }
  .media-pair .route-media-1 { width: 82%; margin: -34px 0 0 auto; border: 10px solid var(--cream); }
  .media-single img { height: 270px; }
  .outcome-card { min-width: 78%; }
  .product-band a { min-height: 270px; }
  .anatomy-item { min-height: 124px; padding: 14px; }
  .tab-list { margin-right: calc(var(--gutter) * -1); padding-right: var(--gutter); }
  .tab-content { grid-template-columns: 42px 1fr; }
  .fact-card { flex-direction: column; padding: 23px; }
  .form-card,
  .intake-form,
  .contact-preference { padding: 21px; }
  .intake-stepper { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; overflow: visible; }
  .intake-stepper span { padding: 9px 4px; font-size: 9px; line-height: 1.25; }
  .timeline { grid-template-columns: 1fr; }
  .band-scale { grid-template-columns: 1fr; gap: 8px; }
  .band-scale i { height: 8px; }
  .cookie-preferences label { grid-template-columns: auto 1fr; }
  .cookie-preferences label b { grid-column: 2; }
  .final-cta { padding-top: 76px; padding-bottom: 76px; }
  .final-cta .button { width: 100%; }
  .site-footer { padding-top: 58px; }
  .footer-bottom { gap: 12px 17px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .menu-toggle,
  .button,
  .footer-cta { display: none !important; }
  .content-section { padding: 28px 0; }
  .media-block { padding: 0 0 28px; }
  .site-footer { padding: 20px; }
}
