@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-var-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 900;
  font-display: swap;
  src: url("/assets/fonts/fraunces-var-latin-italic.woff2") format("woff2");
}

@font-face {
  font-family: "Schibsted Grotesk";
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url("/assets/fonts/schibsted-grotesk-var-latin.woff2") format("woff2");
}

:root {
  --ink: #17191d;
  --ink-soft: #3f3a33;
  --muted: #655e54;
  --paper: #f6f1e8;
  --paper-deep: #e7e2d8;
  --paper-light: #fbfaf7;
  --on-accent: var(--paper-light);
  --line: rgba(23, 25, 29, 0.13);
  --line-strong: rgba(23, 25, 29, 0.2);
  --surface-sheen: rgba(246, 241, 232, 0.18);
  --teal: #166f69;
  --teal-hover: #125a55;
  --teal-bright: #6ed8ce;
  --blue: #285fcf;
  --blue-deep: #17325e;
  --blue-hover: #1f4dab;
  --rose: #9e4358;
  --rose-hover: #86394b;
  --orange: #a8561f;
  --orange-hover: #8d4819;
  --amber: #c46a2d;
  --shadow: 0 24px 60px -36px rgba(23, 25, 29, 0.55);
  --shadow-lift: 0 12px 28px -22px rgba(23, 25, 29, 0.7);
  --shadow-soft: 0 10px 24px -18px rgba(23, 25, 29, 0.6);
  --shadow-pill: 0 10px 22px -20px rgba(23, 25, 29, 0.7);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Schibsted Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  /* Ademlijn: de accentlijn met één opening op een derde. currentColor en
     --motif-gap worden pas op het element zelf opgelost, dus beide zijn per
     component overschrijfbaar. */
  --motif-thickness: 4px;
  --motif-gap: 14px;
  --flourish-night: #241612;
  --motif-line: linear-gradient(
    90deg,
    currentColor 0,
    currentColor calc(33% - var(--motif-gap) / 2),
    transparent calc(33% - var(--motif-gap) / 2),
    transparent calc(33% + var(--motif-gap) / 2),
    currentColor calc(33% + var(--motif-gap) / 2),
    currentColor 100%
  );
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
  transition: color 180ms var(--ease-out-quart);
}

a:hover {
  color: var(--teal);
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--orange), transparent 20%);
  outline-offset: 4px;
  transition: outline-offset 160ms var(--ease-out-quart);
}

.serif {
  font-family: var(--serif);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  border-radius: 6px;
  transition: transform 220ms var(--ease-out-quart);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper), transparent 8%);
  backdrop-filter: blur(12px);
  transition: border-color 220ms var(--ease-out-quart), background 220ms var(--ease-out-quart);
}

.nav-shell {
  width: min(1240px, calc(100% - 48px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-block;
  font-size: 1.6875rem;
  font-style: italic;
  text-decoration: none;
  transition: color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.brand:hover {
  transform: translateY(-1px);
}

.nav-links {
  position: fixed;
  top: 76px;
  right: max(24px, calc((100vw - 1240px) / 2));
  z-index: 60;
  display: none;
  width: min(380px, calc(100vw - 48px));
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 14px 20px 22px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 22px 22px;
  background: color-mix(in srgb, var(--paper), transparent 2%);
  box-shadow: var(--shadow);
  font-size: 0.9375rem;
  font-weight: 600;
}

.nav-links.is-open {
  display: flex;
  animation: menuDrop 220ms var(--ease-out-quart) both;
}

.nav-links a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink-soft);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-links a:not(.nav-contact)::after {
  position: absolute;
  right: auto;
  bottom: 10px;
  left: 0;
  width: 42px;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.25);
  transform-origin: center;
  transition: opacity 180ms var(--ease-out-quart), transform 220ms var(--ease-out-quart);
}

.nav-links a:not(.nav-contact):hover::after,
.nav-links a:not(.nav-contact):focus-visible::after,
.nav-links a[aria-current="page"]::after {
  opacity: 0.45;
  transform: scaleX(1);
}

.nav-links .nav-contact {
  justify-content: center;
  margin-top: 12px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border-bottom: 0;
  border-radius: 999px;
  transition: background 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart);
}

.nav-links .nav-contact:hover,
.nav-links .nav-contact:focus-visible {
  background: var(--teal);
  color: var(--paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-links .nav-contact:active {
  transform: translateY(0) scale(0.99);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  align-self: flex-start;
  margin: 14px 0 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper-light), transparent 12%);
}

.language-switcher a {
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.8125rem;
  text-decoration: none;
}

.language-switcher a::after {
  display: none;
}

.language-switcher a[aria-current="true"] {
  background: var(--ink);
  color: var(--paper);
}

.nav-toggle {
  display: block;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-light);
  padding: 10px;
  transition: border-color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart), background 180ms var(--ease-out-quart);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transform-origin: center;
  transition: opacity 160ms var(--ease-out-quart), transform 220ms var(--ease-out-quart);
}

.nav-toggle:hover {
  border-color: color-mix(in srgb, var(--ink), transparent 55%);
  transform: translateY(-1px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 92px 0 56px;
}

.hero-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.hero-sub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  margin-top: clamp(10px, 1.8vw, 24px);
}

.hero-sub .button-row {
  justify-content: space-between;
  margin-top: 0;
  width: 100%;
}

.hero-scroll-cue {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: clamp(28px, 4vw, 48px) auto -14px;
  color: color-mix(in srgb, var(--muted) 82%, transparent);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.hero-scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus-visible {
  color: var(--teal);
  transform: translateY(2px);
}

.hero-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow:not(.flush)::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin-bottom: 12px;
  --motif-gap: 6px;
  background-image: var(--motif-line);
  background-repeat: repeat-x;
  background-size: 100% 100%;
  opacity: 0.85;
}

.eyebrow.flush {
  margin: 0;
}

.eyebrow-nav a {
  color: inherit;
  text-decoration: none;
}

.eyebrow-nav a:hover,
.eyebrow-nav a:focus-visible {
  color: var(--teal);
}

.motif-rule {
  width: 100%;
  height: var(--motif-thickness);
  margin: 0;
  border: 0;
  background-image: var(--motif-line);
  background-repeat: repeat-x;
  background-size: 100% 100%;
}

.muted {
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.25rem, 8.5vw, 7rem);
  line-height: 0.97;
  font-weight: 480;
  text-wrap: balance;
  transform: translateY(clamp(-34px, -2.2vw, -24px));
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  line-height: 0.98;
  font-weight: 480;
  text-wrap: balance;
}

/* Fraunces display treatment: high optical size + a touch of softness and
   the WONK axis, so the largest headings carry the "living form" character. */
.hero h1,
.page-hero h1,
.article-hero h1 {
  font-variation-settings: "opsz" 144, "SOFT" 44, "WONK" 1;
  letter-spacing: -0.016em;
}

.hero h1 em,
.page-hero h1 em,
.story-grid em {
  color: var(--teal);
  font-style: italic;
}

.hero h1 em,
.page-hero h1 em,
.story-grid em,
.article-hero h1 em {
  font-variation-settings: "opsz" 120, "SOFT" 68, "WONK" 1;
}

/* Ademlijn onder het kernwoord in de homepage-hero. */
.hero h1 em {
  padding-bottom: 0.1em;
  --motif-gap: 0.35em;
  background-image: var(--motif-line);
  background-repeat: repeat-x;
  background-size: 100% max(3px, 0.05em);
  background-position: 0 100%;
}

.hero-text {
  margin: 0;
  font-size: 1.375rem;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.large-copy {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--ease-out-quart), border-color 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart);
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lift);
}

.button:active {
  transform: translateY(0) scale(0.99);
}

.primary {
  background: var(--ink);
  color: var(--paper);
}

.primary:hover {
  background: var(--teal);
  color: var(--paper);
}

.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.secondary:hover {
  border-color: var(--teal);
}

.blue-button {
  background: var(--blue);
  color: var(--paper-light);
}

.blue-button:hover {
  background: var(--ink);
  color: var(--paper-light);
}

.portrait-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  background: var(--paper-deep);
  isolation: isolate;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out-expo), filter 700ms var(--ease-out-expo);
}

.portrait-frame picture,
.portrait-wide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--surface-sheen), transparent 42%);
  content: "";
  opacity: 0;
  transition: opacity 500ms var(--ease-out-quart);
  pointer-events: none;
}

.portrait-frame:hover img {
  transform: scale(1.025);
}

.portrait-frame:hover::after {
  opacity: 1;
}

.worlds {
  border-top: 1px solid var(--line);
  padding: 64px 0 0;
}

.section-intro {
  max-width: 720px;
}

.section-intro h2,
.split-copy h2 {
  margin: 0;
  font-size: 3.375rem;
  line-height: 1.08;
  font-weight: 500;
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 48px;
}

.world-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 40px 34px;
  color: var(--on-accent);
  text-decoration: none;
  transition: background 220ms var(--ease-out-quart);
  overflow: hidden;
  scroll-margin-top: 96px;
}

/* Ademlijn als toplijn op elke wereldkaart, met per wereld een eigen ritme. */
.world-card::before {
  content: "";
  width: 64px;
  height: var(--motif-thickness);
  margin-bottom: 20px;
  background-image: var(--motif-line);
  background-repeat: repeat-x;
  background-size: 100% 100%;
  opacity: 0.65;
}

.world-card.blue::before {
  height: calc(var(--motif-thickness) + 4px);
  background-image: var(--motif-line), var(--motif-line);
  background-size: 100% 3px, 100% 3px;
  background-position: 0 0, 22px 100%;
}

.world-card.rose::before {
  --motif-gap: 8px;
}

.world-card.orange::before {
  --motif-gap: 22px;
}

.world-card:hover {
  color: var(--on-accent);
}

.world-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 1;
}

.world-title {
  margin-top: 12px;
  font-size: 2.25rem;
  font-style: italic;
  line-height: 1.05;
}

.world-copy {
  margin-top: 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  opacity: 1;
}

.world-promise {
  margin-top: 14px;
  font-size: 1.0625rem;
  font-style: italic;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 320ms var(--ease-out-quart), transform 320ms var(--ease-out-quart);
}

.world-card:hover .world-promise,
.world-card:focus-visible .world-promise {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .world-promise {
    opacity: 1;
    transform: none;
  }
}

.world-link {
  margin-top: auto;
  padding-top: 28px;
  font-size: 0.8125rem;
  font-weight: 700;
}

.world-card[target="_blank"] .world-link::after,
.text-link[target="_blank"]::after {
  content: "↗";
  display: inline-block;
  margin-left: 0.35em;
  font-size: 0.9em;
  transform: translateY(-0.08em);
}

.teal {
  background: var(--teal);
}

.blue {
  background: var(--blue);
}

.rose {
  background: var(--rose);
}

.orange {
  background: var(--orange);
}

.world-card.teal:hover {
  background: var(--teal-hover);
}

.world-card.blue:hover {
  background: var(--blue-hover);
}

.world-card.rose:hover {
  background: var(--rose-hover);
}

.world-card.orange:hover {
  background: var(--orange-hover);
}

.digital-card {
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 17px,
    color-mix(in srgb, var(--paper-light), transparent 88%) 17px,
    color-mix(in srgb, var(--paper-light), transparent 88%) 18px
  );
}

.world-card.digital-card:hover {
  background-color: var(--rose-hover);
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 17px,
    color-mix(in srgb, var(--paper-light), transparent 86%) 17px,
    color-mix(in srgb, var(--paper-light), transparent 86%) 18px
  );
}

.digital-card .world-title {
  max-width: 9.5ch;
  font-size: clamp(1.875rem, 2.7vw, 2.25rem);
}

/* Flourish als gecontroleerde tegenstem: de gradient zakt onderin naar nacht. */
.flourish-card {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 18px, color-mix(in srgb, var(--paper-light), transparent 90%) 18px, color-mix(in srgb, var(--paper-light), transparent 90%) 19px),
    linear-gradient(160deg, var(--amber), var(--orange-hover) 55%, var(--flourish-night));
}

.flourish-card::after {
  position: absolute;
  right: 30px;
  bottom: 34px;
  width: 58px;
  height: 18px;
  border-top: 2px solid color-mix(in srgb, var(--paper-light), transparent 26%);
  border-bottom: 2px solid color-mix(in srgb, var(--paper-light), transparent 48%);
  content: "";
  opacity: 0.78;
  transform: skewX(-18deg);
}

.world-card.flourish-card:hover {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 18px, color-mix(in srgb, var(--paper-light), transparent 88%) 18px, color-mix(in srgb, var(--paper-light), transparent 88%) 19px),
    linear-gradient(160deg, var(--orange), var(--flourish-night) 82%);
}

.story-band {
  background: var(--ink);
  color: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0;
}

.story-grid .motif-rule {
  grid-column: 1 / -1;
  width: 96px;
  margin-bottom: -28px;
  color: var(--teal-bright);
}

.story-grid h2 {
  margin: 0;
  font-size: 3.125rem;
  line-height: 1.14;
  font-weight: 480;
  text-wrap: balance;
}

.story-grid em {
  color: var(--teal-bright);
}

.story-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--paper), transparent 22%);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.split-copy p,
.essay-copy p,
.values-grid p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.split-copy p {
  max-width: 620px;
  font-size: 1.125rem;
  text-wrap: pretty;
}

.split-section {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding: 96px 0;
}

.book-section {
  border-top: 1px solid var(--line);
}

.book-bridge {
  margin: 14px 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.book-bridge a {
  font-weight: 600;
}

.book-fragments {
  padding: 24px 0 104px;
}

.book-fragments .section-intro p.large-copy {
  margin: 18px 0 0;
}

.book-mark {
  min-height: 380px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  color: var(--paper-light);
}

.book-mark span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 2.5rem;
  font-style: italic;
}

.book-mark.large {
  min-height: 460px;
}

.book-mark.large span {
  font-size: 2.75rem;
}

.book-mark.manuscript-mark {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 28%, color-mix(in srgb, var(--blue), transparent 76%) 28% calc(28% + 1px), transparent calc(28% + 1px)),
    repeating-linear-gradient(180deg, transparent 0 33px, color-mix(in srgb, var(--ink), transparent 90%) 34px 35px),
    var(--paper-light);
  color: var(--ink);
  box-shadow: none;
}

.book-mark.manuscript-mark::after {
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in srgb, var(--ink), transparent 88%);
  border-radius: 6px;
  content: "";
  pointer-events: none;
}

.signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
  margin-top: 24px;
}

.signup-form input {
  min-width: 220px;
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--paper-light);
  color: var(--ink);
  padding: 12px 20px;
  transition: border-color 180ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.signup-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--blue), transparent 86%);
  transform: translateY(-1px);
}

.form-note {
  flex-basis: 100%;
  margin: 2px 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.form-note.is-error {
  color: var(--rose);
}

.signup-form.has-error input {
  border-color: color-mix(in srgb, var(--rose), transparent 18%);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--rose), transparent 88%);
}

.signup-form input[aria-invalid="true"] {
  border-color: color-mix(in srgb, var(--rose), transparent 18%);
}

.manuscript-form {
  max-width: 680px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.manuscript-form .inline-fields {
  margin-top: 12px;
}

.manuscript-form .blue-button {
  background: var(--ink);
}

.manuscript-form .blue-button:hover,
.manuscript-form .blue-button:focus-visible {
  background: var(--teal);
}

.latest-section {
  border-top: 1px solid var(--line);
  padding: 72px 0 104px;
}

.latest-section .entry-row {
  margin-top: 28px;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--teal);
  font-weight: 700;
  transition: color 180ms var(--ease-out-quart), text-decoration-color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  transform: translateX(2px);
}

.text-link:active {
  transform: translateX(0);
}

.entry-rows {
  border-top: 1px solid var(--line);
  padding: 0 0 104px;
}

.entry-row {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 4px solid var(--orange);
}

.entry-row.with-meta {
  grid-template-columns: 180px minmax(0, 1fr) 260px;
}

.entry-row.teal-accent {
  border-top-color: var(--teal);
}

.entry-row.blue-accent {
  border-top-color: var(--blue);
}

.entry-row.rose-accent {
  border-top-color: var(--rose);
}

.entry-row.orange-accent {
  border-top-color: var(--orange);
}

.entry-row[hidden] {
  display: none;
}

.entry-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}

.entry-label.status {
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.entry-row h2,
.entry-row h3 {
  margin: 0;
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1.12;
}

.entry-row.with-meta h2 {
  font-style: italic;
}

.entry-row h2 a,
.entry-row h3 a {
  text-decoration: none;
}

.entry-body p {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.entry-body .motif-rule {
  width: 72px;
  margin: 16px 0 4px;
}

.entry-body .entry-why {
  margin: 14px 0 0;
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
}

.entry-body .entry-note {
  margin: 16px 0 0;
  font-size: 0.9375rem;
  color: var(--muted);
}

.entry-body .entry-note a {
  font-weight: 600;
}

.product-suite {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.product-suite li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 11px;
  row-gap: 2px;
  min-width: 148px;
  padding: 10px 14px 15px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--paper-light), transparent 18%);
  transition: border-color 180ms var(--ease-out-quart), box-shadow 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.product-suite li:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}

.product-mark {
  grid-row: 1 / span 2;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  border-radius: 9px;
}

.product-suite span,
.product-suite small {
  display: block;
}

.product-suite span {
  color: var(--ink);
  font-weight: 800;
}

.product-suite small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.3;
}

/* ============================================================
   Digital page
   ============================================================ */
.digital-page {
  --digital-ink: #172236;
  --digital-blue: #315c83;
  --digital-mist: #dbe8df;
  color: var(--digital-ink);
  background:
    radial-gradient(80% 65% at 8% 0%, rgba(49, 92, 131, 0.12), transparent 52%),
    linear-gradient(180deg, #f4efe4 0%, var(--paper) 44%, #ece7da 100%);
}

.digital-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0 clamp(62px, 8vw, 104px);
}

.digital-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--digital-blue), transparent 88%) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--digital-blue), transparent 90%) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(110deg, #000 0%, transparent 66%);
  opacity: 0.55;
}

.digital-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 430px);
  gap: clamp(40px, 8vw, 104px);
  align-items: center;
}

.digital-eyebrow {
  color: var(--digital-blue);
}

.digital-hero-copy h1 {
  max-width: 11.5ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.2rem, 7.6vw, 7.25rem);
  font-weight: 520;
  letter-spacing: -0.048em;
  line-height: 0.94;
  text-wrap: balance;
}

.digital-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: clamp(24px, 4vw, 42px) 0 0;
  color: color-mix(in srgb, var(--digital-ink), transparent 18%);
  font-size: clamp(1.125rem, 1.7vw, 1.45rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.digital-map {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.digital-map span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid color-mix(in srgb, var(--digital-blue), transparent 70%);
  border-radius: 999px;
  color: color-mix(in srgb, var(--digital-ink), transparent 22%);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.digital-map span::before {
  content: none;
}

.digital-principles {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid color-mix(in srgb, var(--digital-blue), transparent 72%);
  border-radius: 28px;
  background: color-mix(in srgb, var(--paper-light), transparent 6%);
  box-shadow: 0 24px 58px -48px rgba(23, 34, 54, 0.58);
}

.digital-principles p {
  margin: 0 0 22px;
  color: var(--digital-blue);
  font-weight: 800;
}

.digital-principles ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: digital-principles;
}

.digital-principles li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: baseline;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.45;
  counter-increment: digital-principles;
}

.digital-principles li::before {
  content: counter(digital-principles, decimal-leading-zero);
  color: color-mix(in srgb, var(--digital-blue), transparent 24%);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.digital-statement {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(28px, 6vw, 86px);
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(64px, 9vw, 118px);
  border-top: 1px solid color-mix(in srgb, var(--digital-blue), transparent 78%);
}

.digital-kicker,
.digital-project-meta {
  margin: 0;
  color: var(--digital-blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.digital-statement h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.5rem, 5.4vw, 5.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.96;
}

.digital-statement p:not(.digital-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.72;
}

.digital-expertise {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding-bottom: clamp(54px, 8vw, 96px);
}

.digital-expertise article {
  padding: clamp(26px, 4.2vw, 50px);
  border: 1px solid color-mix(in srgb, var(--digital-blue), transparent 76%);
  background: color-mix(in srgb, var(--paper-light), transparent 28%);
}

.digital-expertise article:first-child {
  border-radius: 28px 0 0 28px;
}

.digital-expertise article:last-child {
  border-radius: 0 28px 28px 0;
  background: color-mix(in srgb, var(--digital-mist), transparent 38%);
}

.digital-expertise h2 {
  max-width: 12ch;
  margin: 16px 0 0;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1;
}

.digital-expertise p:not(.digital-project-meta) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}

.digital-projects {
  padding: clamp(46px, 7vw, 84px) 0 clamp(72px, 10vw, 124px);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper), transparent 0%) 0%, #ede8dc 100%);
  color: var(--ink);
  border-top: 1px solid color-mix(in srgb, var(--digital-blue), transparent 80%);
}

.digital-projects .section-intro {
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-intro.compact h2 {
  max-width: 12ch;
}

.digital-project-list {
  display: grid;
  gap: 0;
  border-top: 1px solid color-mix(in srgb, var(--digital-blue), transparent 76%);
}

.digital-project {
  --project-accent: var(--digital-blue);
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) minmax(180px, 240px);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
  position: relative;
  padding: clamp(34px, 4.6vw, 56px) 0 clamp(26px, 4vw, 46px);
  border-bottom: 1px solid color-mix(in srgb, var(--digital-blue), transparent 80%);
  transition: background-color 220ms var(--ease-out-quart), border-color 220ms var(--ease-out-quart);
}

.digital-project::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(20px, 3vw, 30px);
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--project-accent);
  opacity: 0.42;
  transform-origin: left center;
  transition: opacity 220ms var(--ease-out-quart), transform 220ms var(--ease-out-quart);
}

.digital-project:hover {
  background: color-mix(in srgb, var(--project-accent), transparent 96%);
  border-bottom-color: color-mix(in srgb, var(--project-accent), transparent 66%);
}

.digital-project:hover::before {
  opacity: 0.82;
  transform: scaleX(1.9);
}

.mentor-project {
  --project-accent: var(--teal);
}

.syfers-project {
  --project-accent: var(--digital-blue);
}

.bridge-project {
  --project-accent: #8a7b45;
}

.digital-project.featured {
  background: transparent;
}

.digital-project h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3.5vw, 3.8rem);
  font-weight: 500;
  line-height: 0.98;
  transition: color 220ms var(--ease-out-quart), transform 220ms var(--ease-out-quart);
}

.digital-project:hover h3 {
  color: color-mix(in srgb, var(--ink), var(--project-accent) 18%);
  transform: translateY(-2px);
}

.digital-project > p:not(.digital-project-meta) {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.digital-project .text-link {
  align-self: end;
  justify-self: end;
  color: var(--project-accent);
  transition: color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.digital-project .text-link:hover {
  color: var(--ink);
  transform: translateX(3px);
}

.digital-project .product-suite {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(5, minmax(96px, 1fr));
  gap: 0;
  margin-top: 26px;
  border: 1px solid color-mix(in srgb, var(--project-accent), transparent 80%);
  border-radius: 18px;
  overflow: hidden;
}

.digital-project .product-suite li {
  position: relative;
  min-width: 0;
  border: 0;
  border-right: 1px solid color-mix(in srgb, var(--project-accent), transparent 84%);
  border-radius: 0;
  background: color-mix(in srgb, var(--paper-light), transparent 42%);
  box-shadow: none;
  transition: background-color 180ms var(--ease-out-quart);
}

.digital-project .product-suite li:last-child {
  border-right: 0;
}

.digital-project .product-suite li::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  z-index: 1;
  width: 9px;
  height: 9px;
  border-top: 1px solid color-mix(in srgb, var(--project-accent), transparent 54%);
  border-right: 1px solid color-mix(in srgb, var(--project-accent), transparent 54%);
  background: color-mix(in srgb, var(--paper-light), transparent 42%);
  transform: translateY(-50%) rotate(45deg);
}

.digital-project .product-suite li:last-child::after {
  content: none;
}

.digital-project .product-suite li:hover {
  background: color-mix(in srgb, var(--project-accent), transparent 93%);
  transform: none;
}

.digital-project .product-suite span {
  color: var(--digital-ink);
}

.digital-project .product-suite small {
  color: color-mix(in srgb, var(--digital-ink), transparent 42%);
}

.digital-project .product-mark {
  filter: grayscale(1) saturate(0) contrast(0.9);
  opacity: 0.7;
  mix-blend-mode: multiply;
  transition: opacity 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.digital-project .product-suite li:hover .product-mark {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ============================================================
   Mentor page
   ============================================================ */
.mentor-page {
  --mentor-teal: #11786f;
  --mentor-mist: #dfeee9;
  color: var(--ink);
  background:
    radial-gradient(85% 70% at 88% 2%, rgba(17, 120, 111, 0.12), transparent 48%),
    linear-gradient(180deg, #f7f1e7 0%, var(--paper) 52%, #edf2ea 100%);
}

.mentor-hero {
  padding: clamp(72px, 10vw, 138px) 0 clamp(58px, 8vw, 104px);
}

.mentor-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 440px);
  gap: clamp(42px, 8vw, 118px);
  align-items: end;
}

.mentor-eyebrow {
  color: var(--mentor-teal);
}

.mentor-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 6.4vw, 6.15rem);
  font-weight: 500;
  letter-spacing: -0.044em;
  line-height: 0.96;
  text-wrap: balance;
}

.mentor-lead {
  margin: 0;
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid var(--mentor-teal);
  color: color-mix(in srgb, var(--ink), transparent 18%);
  background: color-mix(in srgb, var(--paper-light), transparent 18%);
  font-size: clamp(1.12rem, 1.6vw, 1.36rem);
  line-height: 1.66;
  text-wrap: pretty;
}

.mentor-listening {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px);
  gap: clamp(28px, 6vw, 86px);
  padding-top: clamp(58px, 8vw, 98px);
  padding-bottom: clamp(66px, 9vw, 118px);
  border-top: 1px solid color-mix(in srgb, var(--mentor-teal), transparent 80%);
}

.mentor-side-label {
  margin: 0;
  color: var(--mentor-teal);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.mentor-listening h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.25rem, 4.35vw, 4.75rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.mentor-listening p:not(.mentor-side-label) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
  line-height: 1.74;
}

.mentor-listening-copy p:first-of-type {
  margin-top: 28px;
}

.mentor-qualities {
  padding: clamp(66px, 9vw, 112px) 0;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--mentor-mist), var(--paper) 58%) 0%, var(--paper) 100%);
}

.mentor-qualities-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.mentor-qualities h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 3.8vw, 4.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
  position: sticky;
  top: 112px;
}

.mentor-qualities article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid color-mix(in srgb, var(--mentor-teal), transparent 78%);
}

.mentor-qualities article:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--mentor-teal), transparent 78%);
}

.mentor-qualities span {
  display: inline-flex;
  margin-top: 0.2em;
  margin-bottom: 0;
  color: var(--mentor-teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.mentor-qualities h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.18;
}

.mentor-qualities p {
  grid-column: 2;
  max-width: 620px;
  margin: -10px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.mentor-perspective {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 560px);
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
  padding-top: clamp(68px, 10vw, 122px);
}

.mentor-perspective figure {
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 28px 70px -52px rgba(23, 34, 54, 0.7);
}

.mentor-perspective img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 48% 50%;
  filter: saturate(0.88) contrast(0.96);
}

.mentor-perspective h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.8vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.mentor-perspective p:not(.eyebrow) {
  max-width: 540px;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.mentor-platform {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 640px);
  gap: clamp(34px, 7vw, 98px);
  align-items: start;
  padding-top: clamp(72px, 10vw, 124px);
  padding-bottom: clamp(80px, 11vw, 136px);
}

.mentor-platform h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.05rem, 3.7vw, 4.05rem);
  font-weight: 500;
  letter-spacing: -0.034em;
  line-height: 1;
}

.mentor-platform p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.72;
}

.mentor-platform .button {
  margin-top: 18px;
}

.entry-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 0.875rem;
}

.entry-facts {
  display: grid;
  gap: 14px;
  margin: 0;
}

.entry-facts div {
  display: grid;
  gap: 3px;
}

.entry-facts dt {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.entry-facts dd {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.entry-media {
  display: block;
  max-width: 680px;
  aspect-ratio: 16 / 10;
  margin: 0 0 22px;
  overflow: hidden;
  border-radius: 8px;
  background: color-mix(in srgb, var(--teal), var(--paper-light) 88%);
}

.entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms var(--ease-out-quart);
}

.entry-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.entry-media:hover img {
  transform: scale(1.025);
}

.article-hero {
  padding: 92px 0 56px;
  border-bottom: 1px solid var(--line);
}

.article-hero-copy {
  max-width: 980px;
}

.article-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
  font-weight: 480;
  text-wrap: balance;
}

.article-dek {
  max-width: 690px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.375rem;
  line-height: 1.55;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 760px);
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
  padding-top: 48px;
}

.article-rail {
  position: sticky;
  top: 108px;
  padding-top: 18px;
  border-top: 4px solid var(--orange);
}

.article-rail-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-rail dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.article-rail dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-rail dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 700;
}

.article-rail-actions {
  display: grid;
  gap: 4px;
  margin-top: 30px;
}

.article-rail-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  color: var(--teal);
  font-size: 0.875rem;
  font-weight: 700;
}

.article-cover {
  max-width: 980px;
  margin-top: 6px;
  margin-bottom: 32px;
}

.article-cover img,
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--paper-light);
}

.article-cover picture,
.article-figure picture {
  display: block;
}

.article-cover img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-figure img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.article-body {
  max-width: 760px;
  padding: 0 0 96px;
}

.article-body > p:first-of-type {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.5625rem;
  line-height: 1.55;
}

.article-body h2,
.article-body h3 {
  margin: 56px 0 14px;
  line-height: 1.18;
  font-weight: 500;
}

.article-body h2 {
  font-size: 2.375rem;
}

.article-body h3 {
  font-size: 1.5625rem;
}

.article-body p,
.article-body li {
  color: var(--ink-soft);
  font-size: 1.1875rem;
  line-height: 1.78;
}

.article-body blockquote {
  margin: 42px 0 42px -28px;
  padding: 10px 0 10px 24px;
  border-left: 4px solid var(--teal);
  color: var(--ink);
}

.article-body blockquote p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.625rem;
  line-height: 1.35;
  color: var(--ink);
}

.article-body hr {
  width: 100%;
  height: 1px;
  margin: 42px 0;
  border: 0;
  background: var(--line);
}

.article-body pre {
  overflow-x: auto;
  margin: 32px 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper-light);
}

.article-body code {
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 0.92em;
}

.article-body pre code {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.article-figure {
  margin: 42px 0;
}

.article-cover figcaption,
.article-figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

.article-back {
  margin-top: 46px;
}

.thread-band {
  margin-top: 56px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--blue), var(--paper-light) 94%);
}

.thread-band .motif-rule {
  width: 56px;
  margin-bottom: 14px;
}

.thread-band p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.thread-band a {
  font-weight: 600;
}

.article-end {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-end p {
  margin: 0;
}

.article-end p + p {
  margin-top: 8px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.article-end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.page-hero {
  padding: 92px 0 64px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}

.about-band {
  border-top: 1px solid var(--line);
}

.about-flow {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 80px 0;
}

.portrait-wide {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.portrait-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.essay-copy {
  max-width: 700px;
}

.essay-copy h2 {
  margin: 0 0 16px;
  font-size: 2.75rem;
  font-weight: 500;
  line-height: 1.1;
}

.essay-copy p {
  font-size: 1.125rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.about-reflection {
  border-top: 1px solid var(--line);
}

.about-reflection .section-shell {
  padding: clamp(64px, 8vw, 104px) 0;
}

.reflection-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-reflection h2 {
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.1;
}

.about-reflection p {
  margin: 0 auto 18px;
  max-width: 56ch;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.reflection-close {
  margin-top: 28px;
  margin-inline: auto;
  max-width: 34ch;
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  line-height: 1.35;
  color: var(--ink);
}

.reflection-close em {
  color: var(--teal);
  font-style: italic;
}

.values-band {
  background: var(--ink);
  color: var(--paper);
}

.values-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  gap: 32px;
  padding: 88px 0;
}

.values-grid h2 {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 500;
}

.values-grid article {
  padding-top: 20px;
  border-top: 4px solid var(--teal);
}

.values-grid article:nth-of-type(2) {
  border-top-color: var(--blue);
}

.values-grid article:nth-of-type(3) {
  border-top-color: var(--orange);
}

.values-grid h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 700;
}

.values-grid p {
  margin: 0;
  color: color-mix(in srgb, var(--paper), transparent 25%);
  font-size: 0.9375rem;
}

.filter-shell {
  padding-bottom: 22px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  border-bottom: 1px solid var(--line);
}

.filter-button {
  min-height: 44px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  padding: 9px 0 12px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 180ms var(--ease-out-quart), color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.filter-button.is-active {
  color: var(--ink);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.filter-button:hover,
.filter-button:focus-visible {
  border-color: color-mix(in srgb, var(--orange), transparent 44%);
  color: var(--ink);
  transform: translateY(-1px);
}

.filter-button.is-active:hover,
.filter-button.is-active:focus-visible {
  color: var(--ink);
}

.filter-button:active {
  transform: translateY(0) scale(0.98);
}

.book-band {
  border-top: 1px solid var(--line);
}

.book-page-grid {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: 80px 0 104px;
}

.signup-form.stacked {
  display: block;
}

.signup-form.stacked label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.inline-fields {
  display: flex;
  gap: 10px;
}

.teal-text {
  color: var(--teal);
}

.blue-text {
  color: var(--blue);
}

.rose-text {
  color: var(--rose);
}

.orange-text {
  color: var(--orange);
}

.dark-text {
  color: var(--ink);
}

.flourish-page {
  color: var(--paper);
  background: #18120f;
}

.flourish-page .site-header {
  border-color: rgba(251, 250, 247, 0.14);
  background: rgba(24, 18, 15, 0.86);
}

.flourish-page .nav-links {
  border-color: rgba(251, 250, 247, 0.14);
  background: var(--flourish-night);
}

.flourish-page .nav-links a,
.flourish-page .brand {
  color: color-mix(in srgb, var(--paper-light), transparent 12%);
}

.flourish-page .nav-links a:hover,
.flourish-page .nav-links a:focus-visible,
.flourish-page .brand:hover {
  color: #edb06d;
}

.flourish-page .language-switcher {
  border-color: rgba(251, 250, 247, 0.16);
  background: rgba(251, 250, 247, 0.06);
}

.flourish-page .language-switcher a[aria-current="true"] {
  background: var(--paper-light);
  color: var(--flourish-night);
}

.flourish-page .nav-links .nav-contact {
  background: var(--paper-light);
  color: var(--flourish-night);
}

.flourish-hero {
  display: grid;
  width: 100%;
  min-height: min(760px, calc(100vh - 76px));
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.flourish-hero-copy {
  position: relative;
  z-index: 2;
  grid-area: 1 / 1;
  align-self: end;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(92px, 13vw, 180px) 0 clamp(42px, 7vw, 88px);
}

.flourish-hero h1 {
  max-width: 11.8ch;
  margin: 0;
  color: var(--paper-light);
  font-size: clamp(3.4rem, 8.2vw, 8.25rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.032em;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.46);
}

.flourish-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: color-mix(in srgb, var(--paper-light), transparent 12%);
  font-size: clamp(1.125rem, 1.55vw, 1.375rem);
  line-height: 1.6;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.46);
}

.flourish-hero .button-row {
  margin-top: 34px;
}

.flourish-button {
  border-color: #edb06d;
  background: #edb06d;
  color: #17100d;
}

.flourish-button:hover,
.flourish-button:focus-visible {
  border-color: #f8ca92;
  background: #f8ca92;
  color: #17100d;
}

.ghost-on-dark {
  border-color: rgba(251, 250, 247, 0.2);
  color: var(--paper-light);
  background: rgba(251, 250, 247, 0.04);
}

.ghost-on-dark:hover,
.ghost-on-dark:focus-visible {
  border-color: rgba(251, 250, 247, 0.42);
  color: var(--paper-light);
  background: rgba(251, 250, 247, 0.09);
}

.flourish-photo {
  position: relative;
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #08070b;
}

.flourish-photo::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 7, 11, 0.74), rgba(8, 7, 11, 0.3) 48%, rgba(8, 7, 11, 0.1)),
    linear-gradient(180deg, rgba(8, 7, 11, 0.1), rgba(8, 7, 11, 0.64));
}

.flourish-photo img {
  width: 100%;
  height: 100%;
  min-height: min(760px, calc(100vh - 76px));
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.flourish-manifest {
  padding: clamp(72px, 10vw, 124px) 0 clamp(48px, 7vw, 84px);
}

.flourish-manifest p {
  width: min(760px, 100%);
  margin: 0 auto;
  color: #f4eadc;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2.55rem);
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.012em;
  line-height: 1.36;
  text-align: center;
  text-wrap: balance;
  hanging-punctuation: first last;
}

.flourish-manifest p::before {
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 auto 30px;
  background: #edb06d;
  content: "";
}

.flourish-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding: 0 0 clamp(72px, 10vw, 124px);
}

.flourish-notes article {
  padding-top: 24px;
  border-top: 1px solid rgba(244, 234, 220, 0.22);
}

.flourish-notes span {
  display: block;
  margin-bottom: 28px;
  color: #edb06d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.flourish-notes h2 {
  margin: 0 0 18px;
  color: #f4eadc;
  font-size: clamp(1.8rem, 2.7vw, 2.75rem);
  font-style: italic;
  font-weight: 480;
  letter-spacing: -0.04em;
  line-height: 1;
}

.flourish-notes p {
  margin: 0;
  color: color-mix(in srgb, var(--paper-light), transparent 26%);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.flourish-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 76px);
  margin-bottom: clamp(64px, 8vw, 108px);
  padding: clamp(34px, 5vw, 56px) 0 0;
  border-top: 1px solid rgba(244, 234, 220, 0.2);
}

.flourish-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #f4eadc;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-style: italic;
  font-weight: 480;
  letter-spacing: -0.05em;
  line-height: 1;
}

.flourish-page .site-footer {
  border-top: 1px solid rgba(251, 250, 247, 0.12);
  background: #08070b;
}

/* ============================================================
   Syntrociety page (mockup)
   ============================================================ */
.syntrociety-page {
  --syn-bone: #f4eee2;
  --syn-rust: #a24a1f;
  color: var(--ink);
  background: var(--paper);
}

/* Hero: deep-blue editorial band */
.syn-hero {
  color: var(--paper-light);
  background:
    radial-gradient(120% 130% at 82% 0%, rgba(110, 216, 206, 0.14), transparent 46%),
    linear-gradient(158deg, var(--blue) 0%, var(--blue-deep) 62%, #101f3a 100%);
}

.syn-hero-inner {
  padding-top: clamp(76px, 11vw, 148px);
  padding-bottom: clamp(58px, 8vw, 104px);
}

.syn-eyebrow {
  color: #b9cdf2;
}

.syn-eyebrow::before {
  background: #6ed8ce;
}

.syn-hero h1 {
  max-width: 15ch;
  margin: 0;
  color: var(--paper-light);
  font-size: clamp(2.9rem, 6.6vw, 6.5rem);
  font-weight: 480;
  letter-spacing: -0.022em;
  line-height: 0.98;
  text-wrap: balance;
}

.syn-hero h1 em {
  color: #6ed8ce;
  font-style: italic;
}

.syn-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: color-mix(in srgb, var(--paper-light), transparent 14%);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.62;
}

.syn-hero .button-row {
  margin-top: 34px;
}

.syn-button {
  border-color: #6ed8ce;
  background: #6ed8ce;
  color: #0f2038;
}

.syn-button:hover,
.syn-button:focus-visible {
  border-color: #93e6de;
  background: #93e6de;
  color: #0f2038;
}

/* Manifest pull-quote */
.syn-manifest {
  padding: clamp(72px, 10vw, 120px) 0 clamp(20px, 4vw, 44px);
}

.syn-manifest p {
  width: min(780px, 100%);
  margin: 0 auto;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.3vw, 2.5rem);
  font-style: italic;
  font-weight: 420;
  letter-spacing: -0.012em;
  line-height: 1.34;
  text-align: center;
  text-wrap: balance;
  hanging-punctuation: first last;
}

.syn-manifest p::before {
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 auto 30px;
  background: var(--blue);
  content: "";
}

/* Essence / rode draad */
.syn-essence {
  padding-top: clamp(56px, 7vw, 92px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.syn-essence h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.syn-essence-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  margin-top: clamp(30px, 4vw, 48px);
}

.syn-essence-copy p {
  margin: 0 0 18px;
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.syn-essence-copy p:last-child {
  margin-bottom: 0;
}

.syn-essence-aside {
  margin: 0;
  padding-top: 22px;
  border-top: 4px solid var(--blue);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  line-height: 1.4;
  color: var(--ink);
}

@media (max-width: 860px) {
  .syn-essence-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* The question band (dark, focused) */
.syn-question {
  color: var(--paper-light);
  background: var(--blue-deep);
}

.syn-question-inner {
  padding-top: clamp(84px, 11vw, 148px);
  padding-bottom: clamp(84px, 11vw, 148px);
  text-align: center;
}

.syn-question .eyebrow {
  display: inline-flex;
}

.syn-question h2 {
  max-width: 20ch;
  margin: 0 auto;
  color: var(--paper-light);
  font-size: clamp(2.1rem, 4.4vw, 4.4rem);
  font-style: italic;
  font-weight: 460;
  letter-spacing: -0.028em;
  line-height: 1.08;
  text-wrap: balance;
}

.syn-question-note {
  max-width: 44ch;
  margin: 30px auto 0;
  color: color-mix(in srgb, var(--paper-light), transparent 30%);
  font-size: 1.0625rem;
  line-height: 1.6;
}

/* Cell & membrane */
.syn-cell {
  align-items: center;
  padding-top: clamp(64px, 8vw, 104px);
  padding-bottom: clamp(64px, 8vw, 104px);
}

.syn-cell-visual {
  display: grid;
  place-items: center;
}

.syn-cell-visual svg {
  width: min(340px, 100%);
  height: auto;
}

.syn-cell-copy p {
  margin: 0 0 18px;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.syn-cell-copy .syn-personal {
  margin-bottom: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}

/* Pillars band */
.syn-pillars {
  color: var(--paper-light);
  background: var(--ink);
}

.syn-pillars > .section-shell {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.syn-eyebrow-light {
  color: color-mix(in srgb, var(--paper-light), transparent 42%);
}

.syn-pillars h2,
.syn-architecture h2 {
  margin: 0;
  color: var(--paper-light);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.syn-pillars-intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: color-mix(in srgb, var(--paper-light), transparent 26%);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.syn-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.syn-pillar {
  padding: 22px 22px 26px;
  border-top: 4px solid var(--p);
  background: color-mix(in srgb, var(--p), transparent 88%);
  border-radius: 0 0 10px 10px;
}

.syn-pillar-name {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 480;
  color: var(--paper-light);
}

.syn-pillar-note {
  display: block;
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--paper-light), transparent 32%);
}

/* Instruments */
.syn-instruments {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.syn-instruments h2 {
  margin: 0;
}

.syn-instruments-intro {
  max-width: 640px;
  margin: 18px 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
}

.syn-instrument-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(24px, 3vw, 40px);
  margin: clamp(36px, 5vw, 56px) 0 0;
  padding: 0;
  list-style: none;
}

.syn-instrument {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.syn-instrument img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
}

.syn-instrument h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 480;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.syn-instrument p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* Architecture (dark) */
.syn-architecture {
  color: var(--paper-light);
  background: var(--blue-deep);
}

.syn-architecture > .section-shell {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.syn-architecture .eyebrow::before {
  background: #6ed8ce;
}

.syn-charter-intro {
  max-width: 620px;
  margin: 20px 0 0;
  color: color-mix(in srgb, var(--paper-light), transparent 26%);
  font-size: 1.0625rem;
  line-height: 1.65;
}

.syn-charter-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3.5vw, 52px) clamp(40px, 6vw, 96px);
  margin: clamp(40px, 5vw, 60px) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.syn-principle {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 22px;
  border-top: 1px solid rgba(246, 241, 232, 0.24);
}

.syn-principle-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 480;
  line-height: 1;
  color: #6ed8ce;
}

.syn-principle h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 480;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--paper-light);
}

.syn-principle p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--paper-light), transparent 22%);
}

.syn-charter-link {
  display: inline-flex;
  margin-top: clamp(36px, 4vw, 52px);
  color: #6ed8ce;
}

@media (max-width: 860px) {
  .syn-charter-list {
    grid-template-columns: 1fr;
  }
}

/* CTA */
.syn-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 5vw, 72px);
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(64px, 8vw, 108px);
}

.syn-cta h2 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.04;
}

.syn-cta-note {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.syn-cta .syn-button {
  flex: none;
}

@media (max-width: 860px) {
  .syn-pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .syn-instrument-grid,
  .syn-doc-list {
    grid-template-columns: 1fr;
  }
  .syn-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .syn-pillar-grid {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  background: var(--ink);
  color: var(--paper);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 68px 0;
}

.footer-grid > div:first-child::before {
  content: "";
  display: block;
  width: 64px;
  height: var(--motif-thickness);
  margin-bottom: 22px;
  color: var(--teal-bright);
  background-image: var(--motif-line);
  background-repeat: repeat-x;
  background-size: 100% 100%;
}

.footer-grid h2 {
  margin: 0;
  font-size: 2.875rem;
  font-style: italic;
  font-weight: 500;
}

.footer-grid p {
  color: color-mix(in srgb, var(--paper), transparent 28%);
  font-size: 1.0625rem;
}

.footer-signature {
  max-width: 520px;
  margin-top: 14px;
  color: color-mix(in srgb, var(--paper), transparent 42%);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: right;
}

.footer-worlds {
  display: grid;
  gap: 10px;
  margin-bottom: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--paper), transparent 84%);
}

.footer-worlds-label {
  margin: 0;
  color: color-mix(in srgb, var(--paper), transparent 48%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-worlds-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 4px 14px;
}

.footer-links .footer-worlds-row a {
  min-height: 30px;
  color: color-mix(in srgb, var(--paper), transparent 18%);
  font-size: 0.95rem;
}

.footer-links .footer-worlds-row a[target="_blank"]::after {
  content: "↗";
  margin-left: 0.32em;
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-0.06em);
}

.footer-links .footer-worlds-row a:hover {
  color: var(--paper);
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 44px;
  color: var(--teal-bright);
  font-weight: 700;
  transition: color 180ms var(--ease-out-quart), transform 180ms var(--ease-out-quart);
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-links span {
  color: color-mix(in srgb, var(--paper), transparent 55%);
  font-size: 0.8125rem;
}

.site-footer.light {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.site-footer.light .footer-grid p {
  color: var(--ink-soft);
}

.site-footer.light .footer-signature {
  color: var(--muted);
}

.site-footer.light .footer-links a {
  color: var(--teal);
}

.site-footer.light .footer-worlds {
  border-bottom-color: var(--line);
}

.site-footer.light .footer-worlds-label {
  color: var(--muted);
}

.site-footer.light .footer-links .footer-worlds-row a {
  color: var(--ink-soft);
}

.site-footer.light .footer-links .footer-worlds-row a:hover {
  color: var(--ink);
}

.site-footer.light .footer-links a:hover {
  color: var(--ink);
}

.site-footer.light .footer-links span {
  color: var(--muted);
}

.site-footer.light .footer-grid > div:first-child::before {
  color: var(--teal);
}

.not-found {
  min-height: 64vh;
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 84px 0;
}

.not-found h1 {
  margin: 0;
  font-size: 3.625rem;
  line-height: 1;
}

.not-found p {
  max-width: 560px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

@media (prefers-reduced-motion: no-preference) {
  @keyframes riseIn {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes imageSettle {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes filterIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes menuDrop {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fieldNudge {
    0%,
    100% {
      transform: translateX(0);
    }
    35% {
      transform: translateX(-4px);
    }
    70% {
      transform: translateX(3px);
    }
  }

  /* De opening in de ademlijn drijft langzaam heen en weer. */
  @keyframes motifDrift {
    from {
      background-position-x: 0;
    }
    to {
      background-position-x: 56px;
    }
  }

  .hero h1 em {
    animation: motifDrift 9s ease-in-out infinite alternate;
  }

  .story-band .motif-rule {
    animation: motifDrift 12s ease-in-out infinite alternate;
  }

  /* Ritme: de dubbellijn op de Flourish-kaart pulseert alleen bij aandacht. */
  @keyframes flourishPulse {
    0%,
    100% {
      transform: skewX(-18deg) translateX(0);
      opacity: 0.78;
    }
    50% {
      transform: skewX(-18deg) translateX(-7px);
      opacity: 1;
    }
  }

  .world-card.flourish-card:hover::after,
  .world-card.flourish-card:focus-visible::after {
    animation: flourishPulse 1.6s ease-in-out infinite;
  }

  .hero > *,
  .page-hero > *,
  .article-hero-copy,
  .section-intro,
  .essay-copy {
    animation: riseIn 520ms var(--ease-out-quint) both;
  }

  .portrait-frame,
  .portrait-wide,
  .book-mark,
  .article-cover,
  .article-figure {
    animation: imageSettle 640ms var(--ease-out-expo) 80ms both;
  }

  .button-row {
    animation: riseIn 520ms var(--ease-out-quint) 120ms both;
  }

  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(0.875rem);
    transition: opacity 500ms var(--ease-out-quint), transform 500ms var(--ease-out-quint);
  }

  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .entry-row.is-filter-hit {
    animation: filterIn 240ms var(--ease-out-quart) both;
  }

  .signup-form.has-error input {
    animation: fieldNudge 180ms var(--ease-out-quart);
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .world-promise {
    opacity: 1;
    transform: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .section-shell,
  .nav-shell {
    width: min(100% - 36px, 760px);
  }

  .nav-links {
    inset: 76px 0 auto 0;
    width: auto;
    padding: 12px 18px 22px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    padding: 14px 0;
  }

  .nav-links .nav-contact {
    text-align: center;
  }

  .language-switcher {
    margin: 12px 0 2px;
  }

  .hero-lead,
  .hero-sub,
  .flourish-hero,
  .two-column,
  .article-layout,
  .story-grid,
  .split-section,
  .about-flow,
  .book-page-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-lead {
    gap: 32px;
  }

  .hero h1 {
    transform: none;
  }

  .hero-sub {
    gap: 24px;
    margin-top: 32px;
  }

  .hero-lead .portrait-frame {
    max-width: 430px;
  }

  .story-grid,
  .split-section {
    gap: 40px;
    padding: 64px 0;
  }

  .flourish-hero {
    min-height: auto;
    padding: 58px 0 46px;
  }

  .flourish-hero h1 {
    max-width: 11.5ch;
  }

  .digital-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  }

  .flourish-photo {
    max-width: none;
    transform: none;
  }

  .flourish-notes {
    grid-template-columns: 1fr;
  }

  .flourish-notes article {
    min-height: auto;
  }

  .flourish-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding: 58px 0 38px;
  }

  .article-layout {
    gap: 30px;
    padding-top: 30px;
  }

  .article-rail {
    position: static;
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 20px;
  }

  .article-rail dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .article-rail-actions {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 0;
  }

  .article-body blockquote {
    margin-left: 0;
  }

  .world-grid,
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid h2 {
    grid-column: 1 / -1;
  }

  .world-card {
    min-height: 280px;
  }

  .entry-row,
  .entry-row.with-meta {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .entry-meta {
    grid-column: 2;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }

  .digital-project .product-suite {
    grid-template-columns: repeat(3, minmax(96px, 1fr));
  }

  .digital-project .product-suite li:nth-child(3n) {
    border-right: 0;
  }

  .digital-project .product-suite li::after {
    content: none;
  }

  .book-mark {
    min-height: 160px;
  }

  .book-mark.large {
    min-height: 220px;
  }

  .book-mark span,
  .book-mark.large span {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2.125rem;
  }
}

@media (max-width: 680px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 28px, 520px);
  }

  .nav-shell {
    min-height: 66px;
  }

  .nav-links {
    inset: 66px 0 auto 0;
  }

  .flourish-page .nav-links {
    background: var(--flourish-night);
  }

  .hero {
    padding: 38px 0 42px;
  }

  .hero h1,
  .page-hero h1,
  .article-hero h1,
  .flourish-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
    line-height: 0.98;
  }

  .hero-text,
  .large-copy {
    font-size: 1.125rem;
  }

  .button-row,
  .inline-fields {
    flex-direction: column;
  }

  .button,
  .signup-form input {
    width: 100%;
  }

  .world-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .entry-row,
  .entry-row.with-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .digital-hero-grid,
  .mentor-hero-grid,
  .digital-statement,
  .mentor-listening,
  .mentor-perspective,
  .mentor-platform,
  .digital-expertise,
  .digital-project {
    grid-template-columns: 1fr;
  }

  .digital-hero {
    padding-top: 58px;
  }

  .digital-hero-copy h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .digital-principles {
    border-radius: 22px;
  }

  .digital-statement h2 {
    max-width: 12ch;
  }

  .mentor-qualities-grid {
    grid-template-columns: 1fr;
  }

  .mentor-qualities h2 {
    position: static;
  }

  .mentor-qualities article {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .mentor-qualities p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .digital-expertise article:first-child,
  .digital-expertise article:last-child {
    border-radius: 24px;
  }

  .digital-project .text-link {
    justify-self: start;
  }

  .digital-project .product-suite {
    grid-column: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .digital-project .product-suite li:nth-child(2n) {
    border-right: 0;
  }

  .digital-project .product-suite li::after {
    content: none;
  }

  .entry-meta {
    grid-column: auto;
  }

  .flourish-hero-copy > p:not(.eyebrow) {
    font-size: 1.125rem;
  }

  .flourish-photo {
    border-radius: 0;
  }

  .flourish-photo img {
    min-height: 560px;
  }

  .flourish-manifest p {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
    line-height: 1.34;
  }

  .flourish-cta h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
    line-height: 1;
  }

  .flourish-notes article,
  .flourish-cta {
    padding-top: 24px;
  }

  .entry-row h2,
  .entry-row h3 {
    font-size: 2rem;
  }

  .world-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .section-intro h2,
  .split-copy h2,
  .story-grid h2,
  .essay-copy h2,
  .values-grid h2,
  .footer-grid h2 {
    font-size: 2rem;
  }

  .section-heading-row,
  .footer-grid,
  .entry-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }

  .footer-links a {
    justify-content: flex-start;
  }

  .footer-worlds-row {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 48px 0 36px;
  }

  .article-hero {
    padding: 48px 0 24px;
  }

  .article-dek {
    font-size: 1.1875rem;
  }

  .article-rail,
  .article-rail dl,
  .article-end {
    grid-template-columns: 1fr;
  }

  .article-rail-actions {
    grid-column: auto;
  }

  .article-body > p:first-of-type {
    font-size: 1.375rem;
  }

  .article-body h2 {
    font-size: 2rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1.125rem;
  }

  .article-body blockquote p {
    font-size: 1.4375rem;
  }

  .article-end-actions {
    justify-content: flex-start;
    flex-direction: column;
  }

  .split-section,
  .story-grid,
  .about-flow,
  .book-page-grid {
    padding: 46px 0;
  }
}
