/* ==========================================================================
   ELYVANT: design system
   Mobile first. Base styles target ~360px; enhancements arrive with min-width queries.
   Breakpoints: 40em (640) · 56.25em (900) · 68.75em (1100) · 90em (1440)
   No animation is used as part of the brand. Transitions are limited to
   functional states (hover, focus, menu) and are disabled for reduced motion.
   ========================================================================== */

/* -- Fonts: Poppins, self-hosted, Latin subset ---------------------------- */
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 300; font-display: swap; src: url("../fonts/poppins-light.woff") format("woff"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/poppins-regular.woff") format("woff"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/poppins-medium.woff") format("woff"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/poppins-bold.woff") format("woff"); }

/* -- Tokens ----------------------------------------------------------------- */
:root {
  /* Colour: palette */
  --ink: #0b0f12;          /* near black, primary anchor */
  --ink-2: #14191d;        /* raised dark surface */
  --ink-3: #1f252a;
  --white: #ffffff;
  --paper: #f3f3f3;        /* light grey, structure and balance */
  --paper-2: #e8e8e8;
  --lime: #c6ff00;         /* accent: a signal, never a background field */

  /* Colour: roles (light context by default; dark sections override) */
  --bg: var(--white);
  --text: var(--ink);
  --text-muted: #565b5f;   /* 6.6:1 on white, 5.9:1 on paper */
  --line: #d6d6d6;
  --line-strong: var(--ink);
  --focus: var(--ink);
  --btn-primary-border: var(--ink);
  --hover-bg: var(--ink);
  --hover-fg: var(--white);
  --field-border: #7f8385; /* 3.7:1 on white */
  --error: #a3200f;

  /* Type */
  --font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fs-label: 0.75rem;
  --fs-small: 0.875rem;
  --fs-body: 1rem;
  --fs-lead: 1.0625rem;
  --fs-h3: 1.25rem;
  --fs-h2: clamp(1.75rem, 1.15rem + 2.6vw, 3.25rem);
  --fs-h1: clamp(2.125rem, 1.4rem + 3.4vw, 4.25rem);
  --fs-display: clamp(2.5rem, 1.4rem + 5.4vw, 6rem);
  --lh-tight: 1.08;
  --lh-snug: 1.25;
  --lh-body: 1.65;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --gutter: clamp(1.25rem, 0.6rem + 3vw, 2.5rem);
  --section-y: clamp(4rem, 2.5rem + 6vw, 8.5rem);
  --header-h: 4rem;

  /* Radius: restrained */
  --radius-s: 2px;
  --radius-m: 4px;

  /* Layout */
  --max: 80rem;
  --measure: 38rem;
}

/* Dark context: any section/region that sits on ink */
.on-dark {
  --bg: var(--ink);
  --text: var(--white);
  --text-muted: #b8bcbf;   /* 9.4:1 on ink */
  --line: #333a3f;
  --line-strong: var(--white);
  --focus: var(--lime);
  --btn-primary-border: var(--lime);
  --hover-bg: var(--white);
  --hover-fg: var(--ink);
  --field-border: #8a8f93;
  background: var(--bg);
  color: var(--text);
}
.on-paper { --bg: var(--paper); --line: #d2d2d2; --text-muted: #525659; background: var(--bg); }
.on-white { --bg: var(--white); background: var(--bg); }

/* -- Base -------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  min-width: 320px;
}
body.is-locked { overflow: hidden; }
img, svg { max-width: 100%; }
svg { display: block; }
h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { font-weight: 500; line-height: var(--lh-tight); letter-spacing: -0.02em; text-wrap: balance; }
p, li, dd { text-wrap: pretty; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
strong { font-weight: 500; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 1px; }
::selection { background: var(--lime); color: var(--ink); }

.skip-link {
  position: absolute; left: var(--gutter); top: 0; z-index: 100;
  transform: translateY(-120%);
  background: var(--lime); color: var(--ink); font-weight: 500; text-decoration: none;
  padding: 0.75rem 1rem; border-radius: 0 0 var(--radius-m) var(--radius-m);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* -- Layout ------------------------------------------------------------------ */
.container { width: 100%; max-width: calc(var(--max) + 2 * var(--gutter)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: calc(var(--section-y) * 0.7); }
.grid { display: grid; gap: var(--s-6); }
.grid > * { min-width: 0; }
.flow > * + * { margin-top: var(--flow, 1rem); }
.measure { max-width: var(--measure); }
.measure-wide { max-width: 46rem; }

/* -- Type roles -------------------------------------------------------------- */
.t-display { font-size: var(--fs-display); line-height: 1.02; letter-spacing: -0.03em; }
.t-h1 { font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.03em; }
.t-h2 { font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.025em; }
.t-h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -0.01em; }
.t-lead { font-size: var(--fs-lead); line-height: 1.65; color: var(--text); }
.t-muted { color: var(--text-muted); }
.t-small { font-size: var(--fs-small); line-height: 1.6; }
.t-light { font-weight: 300; }
.label {
  display: inline-flex; align-items: center; gap: 0.625rem;
  font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; line-height: 1.3;
  color: var(--text-muted);
}
.label::before {
  content: ""; flex: none; width: 0.5rem; height: 0.5rem; background: var(--lime);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.on-dark .label::before { box-shadow: none; }
.label--plain::before { display: none; }
.hl { background: linear-gradient(transparent 58%, var(--lime) 58%, var(--lime) 92%, transparent 92%); padding-inline: 0.05em; -webkit-box-decoration-break: clone; box-decoration-break: clone; color: var(--ink); }
.on-dark .hl { background: none; color: var(--lime); }

/* Section heading component */
.sec-head { display: grid; gap: var(--s-4); margin-bottom: var(--s-7); }
.sec-head .label { margin-bottom: var(--s-1); }
.sec-head > p { max-width: var(--measure); font-size: var(--fs-lead); }

/* -- Buttons / links ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.625rem;
  min-height: 3.125rem; padding: 0.75rem 1.5rem;
  font-size: 0.9375rem; font-weight: 500; line-height: 1.2; text-align: center; text-decoration: none;
  border: 1px solid transparent; border-radius: var(--radius-m);
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--primary { background: var(--lime); color: var(--ink); border-color: var(--btn-primary-border); }
.btn--primary:hover { background: var(--hover-bg); color: var(--hover-fg); border-color: var(--hover-bg); }
.btn--secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn--secondary:hover { background: var(--hover-bg); color: var(--hover-fg); border-color: var(--hover-bg); }
.btn--sm { min-height: 2.75rem; padding: 0.5rem 1.125rem; font-size: 0.875rem; }
.btn-row { display: flex; flex-direction: column; gap: var(--s-3); }
.btn-row .btn { width: 100%; }
@media (min-width: 30em) { .btn-row { flex-direction: row; flex-wrap: wrap; } .btn-row .btn { width: auto; } }

.link { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 500; text-decoration: underline; text-decoration-color: currentColor; text-decoration-thickness: 1px; text-underline-offset: 0.3em; min-height: 2.75rem; }
.link:hover { text-decoration-thickness: 2px; }
.link .arrow { flex: none; width: 1em; height: 1em; }

/* -- Header / navigation -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--white);
  border-bottom: 1px solid #232a30;
  --focus: var(--lime);
}
.site-header__bar { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: var(--s-4); }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--white); min-height: 2.75rem; }
.brand__mark { height: 1.75rem; width: auto; aspect-ratio: 63.5 / 100; flex: none; }
.brand__word { font-weight: 700; font-size: 1rem; letter-spacing: 0.24em; line-height: 1; padding-top: 0.1em; }

.menu-btn {
  display: inline-flex; align-items: center; gap: 0.75rem; min-height: 2.75rem; padding: 0 0.25rem 0 0.75rem;
  background: none; border: 0; color: var(--white); font-weight: 500; font-size: 0.9375rem;
}
.menu-btn__icon { position: relative; width: 1.5rem; height: 1rem; }
.menu-btn__icon::before, .menu-btn__icon::after, .menu-btn__icon span { content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor; }
.menu-btn__icon::before { top: 0; }
.menu-btn__icon span { top: calc(50% - 1px); }
.menu-btn__icon::after { bottom: 0; }
.menu-btn[aria-expanded="true"] .menu-btn__icon::before { top: calc(50% - 1px); transform: rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__icon::after { bottom: calc(50% - 1px); transform: rotate(-45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__icon span { opacity: 0; }

.nav-desktop { display: none; }
.nav-drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 49; overflow-y: auto; overscroll-behavior: contain;
  background: var(--ink); padding: var(--s-4) var(--gutter) var(--s-7);
  display: flex; flex-direction: column;
  transition: opacity 0.15s ease, visibility 0s;
}
.js .nav-drawer[data-open="false"] { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.15s ease, visibility 0s 0.15s; }
.nav-drawer ul { border-top: 1px solid #232a30; }
.nav-drawer li { border-bottom: 1px solid #232a30; }
.nav-drawer a.nav-link {
  display: flex; align-items: center; justify-content: space-between; min-height: 3.75rem;
  font-size: 1.375rem; font-weight: 500; letter-spacing: -0.01em; text-decoration: none; color: var(--white);
}
.nav-drawer a.nav-link[aria-current="page"]::after { content: ""; width: 0.625rem; height: 0.625rem; background: var(--lime); flex: none; }
.nav-drawer a.nav-link:hover { color: var(--lime); }
.nav-drawer .btn { margin-top: var(--s-6); width: 100%; }
.nav-drawer__foot { margin-top: auto; padding-top: var(--s-7); color: #b8bcbf; font-size: var(--fs-small); }
/* No JS: the drawer simply renders as a list beneath the bar */
html:not(.js) .nav-drawer { position: static; padding-block: var(--s-4) var(--s-5); }
html:not(.js) .menu-btn { display: none; }

@media (min-width: 68.75em) {
  :root { --header-h: 4.5rem; }
  .menu-btn, .nav-drawer { display: none !important; }
  .nav-desktop { display: flex; align-items: center; gap: var(--s-6); }
  .nav-desktop ul { display: flex; gap: clamp(1rem, 0.4rem + 1.4vw, 1.75rem); }
  .nav-desktop a.nav-link {
    display: inline-flex; align-items: center; min-height: 2.75rem; font-size: 0.875rem; font-weight: 500; color: #d7dadc; text-decoration: none;
    border-bottom: 2px solid transparent; padding-top: 2px; transition: color 0.15s ease, border-color 0.15s ease;
  }
  .nav-desktop a.nav-link:hover { color: var(--white); }
  .nav-desktop a.nav-link[aria-current="page"] { color: var(--white); border-bottom-color: var(--lime); }
}

/* -- Footer ------------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: var(--white); border-top: 1px solid #232a30; padding-block: var(--s-8) var(--s-6); --focus: var(--lime); }
.site-footer__grid { display: grid; gap: var(--s-7); }
.site-footer .brand { margin-bottom: var(--s-4); }
.site-footer__belief { font-size: 1.125rem; line-height: 1.4; max-width: 20rem; color: var(--white); font-weight: 300; }
.footer-nav h2 { font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; color: #b8bcbf; font-weight: 500; margin-bottom: var(--s-3); }
.footer-nav a { display: inline-flex; align-items: center; min-height: 2.75rem; text-decoration: none; color: var(--white); font-size: 0.9375rem; }
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 0.3em; }
.site-footer__base { margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid #232a30; display: flex; flex-direction: column; gap: var(--s-2); color: #b8bcbf; font-size: var(--fs-small); }
@media (min-width: 40em) { .site-footer__base { flex-direction: row; justify-content: space-between; } }
@media (min-width: 56.25em) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; align-items: start; } }
.footer-nav ul { columns: 1; }

/* -- Hero (home) --------------------------------------------------------------------- */
.hero { padding-top: var(--s-7); overflow: hidden; }
.hero__grid { display: grid; gap: var(--s-7); }
.hero__grid > * { min-width: 0; }
.hero__title { font-size: clamp(2.25rem, 1.3rem + 3.9vw, 4.25rem); font-weight: 500; line-height: 1.02; letter-spacing: -0.035em; margin-top: var(--s-5); }
.hero__title span { display: block; text-wrap: balance; }
.hero__title span + span { margin-top: 0.35em; }
.hero__lead { margin-top: var(--s-5); font-size: var(--fs-lead); line-height: 1.7; color: #e0e3e5; max-width: 34rem; }
.hero .btn-row { margin-top: var(--s-6); }
.belief { margin-top: var(--s-7); padding-top: var(--s-5); border-top: 1px solid var(--line); display: grid; gap: var(--s-2); max-width: 34rem; }
.belief p { font-size: 1.125rem; font-weight: 300; line-height: 1.4; }
.hero__art { margin-inline: calc(var(--gutter) * -1); }
.hero__art { display: flex; flex-direction: column; align-items: flex-start; }
.hero__art .hero__mark { width: min(38%, 9rem); height: auto; margin-inline-start: var(--gutter); }
.hero__art .caption { padding-inline: var(--gutter); padding-block: var(--s-3) var(--s-6); }
@media (min-width: 56.25em) {
  .hero { padding-block: var(--s-9) var(--s-9); }
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); align-items: center; gap: var(--s-6); }
  .hero__art { margin-inline: 0; align-items: flex-end; }
  .hero__art .hero__mark { width: min(100%, 17rem); margin-inline-start: 0; }
  .hero__art .caption { padding: var(--s-4) 0 0; text-align: right; }
}
@media (min-width: 90em) { .hero__art .hero__mark { width: 20rem; } }
.caption { display: block; }

/* -- Page hero (inner pages) ---------------------------------------------------------- */
.page-hero { padding-block: var(--s-8) var(--s-8); }
.page-hero h1 { font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.03em; margin-top: var(--s-4); max-width: 20ch; }
.page-hero h1.wide { max-width: 26ch; }
.page-hero .t-lead { margin-top: var(--s-5); max-width: 36rem; }
.page-hero .btn-row { margin-top: var(--s-6); }
@media (min-width: 56.25em) { .page-hero { padding-block: var(--s-9) var(--s-9); } .page-hero__grid { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: var(--s-7); align-items: end; } }
.jump { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--s-6); }
.jump a { display: flex; flex-direction: column; justify-content: center; min-height: 3.5rem; padding: var(--s-3) var(--s-4); background: var(--white); text-decoration: none; font-weight: 500; }
.jump a small { font-weight: 400; font-size: var(--fs-small); color: var(--text-muted); }
.jump a:hover { background: var(--ink); color: var(--white); }
.jump a:hover small { color: #b8bcbf; }
@media (min-width: 56.25em) { .jump { grid-template-columns: repeat(4, 1fr); } }

/* Convergence rule: many lines, one direction (used as a divider) */
.rule { height: 1px; background: var(--line); position: relative; }
.rule::after { content: ""; position: absolute; left: 0; top: -3px; width: 2.5rem; height: 7px; background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
.on-dark .rule::after { box-shadow: none; }

/* -- Problem ---------------------------------------------------------------------------- */
.problem { padding-block: calc(var(--section-y) * 1.15); }
.problem__cols { display: grid; gap: var(--s-6); margin-top: var(--s-7); }
.problem h2 { font-size: var(--fs-display); line-height: 1.03; letter-spacing: -0.035em; margin-top: var(--s-4); }
.more-list { border-top: 1px solid var(--line-strong); }
.more-list li { display: flex; align-items: baseline; justify-content: space-between; gap: var(--s-4); padding-block: var(--s-3); border-bottom: 1px solid var(--line); font-size: clamp(1.375rem, 1rem + 1.8vw, 2.25rem); font-weight: 300; letter-spacing: -0.02em; line-height: 1.2; }
.more-list li span { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); }
.problem__statement { font-size: clamp(1.25rem, 1rem + 1.1vw, 1.75rem); line-height: 1.4; font-weight: 500; letter-spacing: -0.015em; max-width: 30rem; }
.problem .btn-row { margin-top: var(--s-6); }
@media (min-width: 56.25em) {
  .problem h2 { max-width: 15ch; }
  .problem__cols { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: var(--s-9); margin-top: var(--s-8); align-items: start; }
}

/* -- Idea / truths ---------------------------------------------------------------------- */
.understand-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--s-6); }
.understand-list li { background: var(--bg); padding: var(--s-4) var(--s-4); font-weight: 500; min-height: 3.5rem; display: flex; align-items: center; }
@media (min-width: 56.25em) { .understand-list { grid-template-columns: repeat(6, 1fr); } .understand-list li { padding: var(--s-5) var(--s-4); } }

.converge { position: relative; padding-left: 2.25rem; margin-top: var(--s-8); }
.truths { position: relative; }
.truths::before { content: ""; position: absolute; left: -1.75rem; top: 2rem; bottom: -3rem; width: 1px; background: var(--ink); }
.truth { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); padding: var(--s-5); }
.truth + .truth { margin-top: var(--s-4); }
.truth::before { content: ""; position: absolute; left: -1.75rem; top: 2rem; width: 1.75rem; height: 1px; background: var(--ink); }
.truth::after { content: ""; position: absolute; left: -2.0625rem; top: calc(2rem - 4px); width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.truth .label { color: var(--text-muted); }
.truth h3 { font-size: 1.5rem; margin-top: var(--s-2); }
.truth p { margin-top: var(--s-3); color: var(--text-muted); }
.truth--primary { border-color: var(--ink); border-width: 2px; }
.truth--primary::after { background: var(--lime); }
.truth--primary .label { display: inline-block; background: var(--lime); color: var(--ink); padding: 0.125rem 0.5rem; }
.opportunity { position: relative; margin-top: var(--s-4); background: var(--ink); color: var(--white); border-radius: var(--radius-s); padding: var(--s-5); border-left: 6px solid var(--lime); }
.opportunity::before { content: ""; position: absolute; left: -1.75rem; top: 2rem; width: 1.75rem; height: 1px; background: var(--ink); }
.opportunity::after { content: ""; position: absolute; left: -2.375rem; top: calc(2rem - 5px); width: 10px; height: 10px; background: var(--lime); box-shadow: 0 0 0 1px var(--ink); }
.opportunity .label { color: #b8bcbf; }
.opportunity .label::before { box-shadow: none; }
.opportunity p { margin-top: var(--s-3); font-size: 1.25rem; line-height: 1.35; font-weight: 500; letter-spacing: -0.01em; }
.converge__lines { display: none; }
@media (min-width: 56.25em) {
  .converge { padding-left: 0; margin-top: var(--s-8); }
  .truths::before { display: none; }
  .truths { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s-4); }
  .truth { padding: var(--s-6); }
  .truth + .truth { margin-top: 0; }
  .truth::before, .truth::after, .opportunity::before, .opportunity::after { display: none; }
  .truth h3 { font-size: 1.75rem; }
  .converge__lines { display: block; width: 100%; height: 6.5rem; }
  .converge__lines path { fill: none; stroke: var(--ink); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
  .converge__lines path.out { stroke: var(--ink); }
  .opportunity { max-width: 34rem; margin: 0 auto; text-align: center; border-left: 0; border-top: 6px solid var(--lime); padding: var(--s-6); margin-top: 0; }
  .opportunity .label { justify-content: center; }
  .opportunity p { font-size: 1.5rem; }
}

/* -- Method (cycle) ------------------------------------------------------------------------ */
.method__grid { display: grid; gap: var(--s-7); }
.stages { position: relative; counter-reset: stage; }
.stage { position: relative; padding: 0 0 var(--s-6) 3.5rem; }
.stage::before { content: ""; position: absolute; left: 1.125rem; top: 2.5rem; bottom: 0; width: 1px; background: var(--ink); }
.stage:last-child { padding-bottom: 0; }
.stage:last-child::before { display: none; }
.stage__num { position: absolute; left: 0; top: 0; width: 2.25rem; height: 2.25rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 0.75rem; font-weight: 500; background: var(--white); }
.stage:first-child .stage__num { background: var(--lime); }
.stage h3 { font-size: 1.375rem; padding-top: 0.25rem; }
.stage__tag { margin-top: var(--s-1); font-weight: 500; color: var(--text); }
.stage p.stage__more { margin-top: var(--s-2); color: var(--text-muted); }
.loop-back { margin-top: var(--s-5); margin-left: 3.5rem; padding: var(--s-4); border: 1px dashed var(--ink); border-radius: var(--radius-s); font-size: var(--fs-small); display: flex; gap: var(--s-3); align-items: flex-start; }
.loop-back svg { flex: none; width: 1.25rem; height: 1.25rem; margin-top: 0.15rem; }
.cycle-art { display: none; }
@media (min-width: 56.25em) {
  .method__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); align-items: start; gap: var(--s-8); }
  .cycle-art { display: block; position: sticky; top: calc(var(--header-h) + 3rem); padding-top: var(--s-7); }
  .cycle-art svg { width: 100%; height: auto; max-width: 34rem; margin-inline: auto; }
}

/* Larger stage list for How We Work */
.stage-long { display: grid; gap: var(--s-4); padding-block: var(--s-7); border-top: 1px solid var(--line-strong); }
.stage-long:last-child { border-bottom: 1px solid var(--line-strong); }
.stage-long__num { font-size: clamp(3.5rem, 2rem + 6vw, 7rem); font-weight: 300; line-height: 0.9; letter-spacing: -0.05em; }
.stage-long__name { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; }
.stage-long h3 { font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -0.025em; margin-top: var(--s-2); }
.stage-long__body { max-width: var(--measure); margin-top: var(--s-4); }
.checks { margin-top: var(--s-4); display: grid; gap: 0; border-top: 1px solid var(--line); }
.checks li { position: relative; padding: var(--s-3) 0 var(--s-3) 1.5rem; border-bottom: 1px solid var(--line); font-size: 0.9375rem; }
.checks li::before { content: ""; position: absolute; left: 0; top: 1.25rem; width: 0.5rem; height: 0.5rem; background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
.on-dark .checks li::before { box-shadow: none; }
.stage-long__gives { margin-top: var(--s-3); padding-left: var(--s-4); border-left: 3px solid var(--lime); font-size: 1.0625rem; font-weight: 500; line-height: 1.5; max-width: 26rem; }
.checks-title { margin-top: var(--s-5); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
@media (min-width: 56.25em) {
  .stage-long { grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) minmax(0, 4fr); gap: var(--s-7); align-items: start; padding-block: var(--s-8); }
  .stage-long .checks-title { margin-top: 0; }
}

/* -- Capability cards (home) ------------------------------------------------------------------ */
.cap-grid { display: grid; gap: var(--s-4); }
.cap-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); padding: var(--s-5); text-decoration: none; transition: border-color 0.15s ease; }
.cap-card:hover { border-color: var(--ink); }
.cap-card:hover .link { text-decoration-thickness: 2px; }
.cap-card__idx { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); }
.cap-card h3 { margin-top: var(--s-6); font-size: 2.25rem; letter-spacing: -0.03em; }
.cap-card__sub { margin-top: var(--s-1); font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.02em; }
.cap-card__need { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--line); font-weight: 500; font-size: 1.0625rem; line-height: 1.35; }
.cap-card__desc { margin-top: var(--s-3); color: var(--text-muted); font-size: 0.9375rem; flex: 1; }
.cap-card .link { margin-top: var(--s-4); min-height: 2.75rem; }
@media (min-width: 40em) { .cap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68.75em) { .cap-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } .cap-card { padding: var(--s-5) 1.25rem; } .cap-card h3 { font-size: 2rem; } .cap-card__sub { min-height: 3.25em; } .cap-card__need { min-height: 5.4rem; } }

/* -- Challenge the brief ------------------------------------------------------------------------ */
.challenge h2 { font-size: var(--fs-display); line-height: 1.03; letter-spacing: -0.035em; margin-top: var(--s-4); }
.challenge__grid { display: grid; gap: var(--s-7); margin-top: var(--s-7); }
.challenge__q { font-size: clamp(1.5rem, 1.1rem + 2vw, 2.5rem); font-weight: 500; line-height: 1.15; letter-spacing: -0.025em; margin-block: var(--s-4); }
.sometimes { margin-top: var(--s-5); border-top: 1px solid var(--line); }
.sometimes li { padding-block: var(--s-3); border-bottom: 1px solid var(--line); font-size: 1.0625rem; }
.sometimes li em { font-style: normal; color: var(--text-muted); }
.convo { display: grid; gap: var(--s-4); }
.convo__panel { border: 1px solid var(--line); border-radius: var(--radius-s); padding: var(--s-5); }
.convo__panel--elyvant { border-color: var(--lime); border-left-width: 6px; background: var(--ink-2); }
.convo__title { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.convo__panel--elyvant .convo__title { color: var(--lime); }
.convo__line { margin-top: var(--s-4); display: grid; grid-template-columns: 4.5rem 1fr; gap: var(--s-3); align-items: baseline; }
.convo__who { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.convo__say { font-size: 1.125rem; line-height: 1.35; }
.convo__say + .convo__say { margin-top: var(--s-2); }
.convo__panel--elyvant .convo__say { font-weight: 500; }
.principle { margin-top: var(--s-8); padding-top: var(--s-6); border-top: 1px solid var(--line); font-size: clamp(1.75rem, 1.1rem + 3vw, 3.5rem); font-weight: 500; letter-spacing: -0.03em; line-height: 1.1; max-width: 22ch; }
@media (min-width: 56.25em) {
  .challenge__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--s-8); align-items: start; }
  .convo__line { grid-template-columns: 6rem 1fr; }
}

/* -- Communication -------------------------------------------------------------------------------- */
.equation { display: grid; gap: 0; margin-top: var(--s-7); }
.eq { padding-block: var(--s-5); border-top: 2px solid var(--ink); }
.eq h3 { font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem); letter-spacing: -0.03em; line-height: 1; }
.eq p { margin-top: var(--s-3); color: var(--text-muted); font-size: 1.0625rem; max-width: 22rem; }
.eq-plus { display: none; }
@media (min-width: 56.25em) {
  .equation { grid-template-columns: 1fr auto 1fr auto 1fr; gap: var(--s-5); align-items: start; }
  .eq { padding-block: var(--s-5) 0; }
  .eq-plus { display: block; font-size: 2.5rem; font-weight: 300; line-height: 1; padding-top: var(--s-5); color: var(--ink); }
}

/* -- Results ---------------------------------------------------------------------------------------- */
.results__grid { display: grid; gap: var(--s-7); }
.measure-table { width: 100%; border-collapse: collapse; }
.measure-table caption { text-align: left; }
.measure-table th, .measure-table td { text-align: left; padding: var(--s-4) var(--s-3) var(--s-4) 0; border-bottom: 1px solid var(--line); vertical-align: top; }
.measure-table thead th { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--line-strong); padding-top: 0; }
.measure-table tbody th { font-weight: 500; font-size: 1.125rem; width: 42%; }
.measure-table tbody td { font-size: 1.0625rem; }
.result-quote { border-left: 6px solid var(--lime); padding-left: var(--s-5); font-size: clamp(1.375rem, 1rem + 1.6vw, 2.125rem); line-height: 1.25; font-weight: 500; letter-spacing: -0.02em; }
.result-quote span { display: block; color: var(--text-muted); font-weight: 300; }
@media (min-width: 56.25em) { .results__grid { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--s-8); align-items: start; } .results__quote { margin-top: var(--s-8); grid-column: 1 / -1; max-width: 52rem; } }

/* -- CTA block ------------------------------------------------------------------------------------------ */
.cta-block { overflow: hidden; }
.cta-block__inner { position: relative; z-index: 1; }
.cta-block h2 { font-size: var(--fs-h1); line-height: 1.05; letter-spacing: -0.03em; }
.cta-block h2 span { display: block; }
.cta-block p.t-lead { margin-top: var(--s-5); max-width: 30rem; color: #e0e3e5; }
.cta-block .btn-row { margin-top: var(--s-6); }
.cta-block__art { display: none; }
@media (min-width: 56.25em) {
  .cta-block__art { display: block; position: absolute; right: calc(var(--gutter) * -1 - 4rem); top: 50%; transform: translateY(-50%); width: auto; height: 130%; z-index: 0; }
}
.cta-block--compact h2 { font-size: var(--fs-h2); max-width: 22ch; }

/* -- Cards: case study / insight ------------------------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--s-4); }
@media (min-width: 40em) { .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 68.75em) { .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .card-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.case-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); text-decoration: none; overflow: hidden; }
.case-card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; gap: var(--s-3); }
.case-card__meta { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-3); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.case-card h3 { font-size: 1.375rem; letter-spacing: -0.02em; }
.case-card p { color: var(--text-muted); font-size: 0.9375rem; }
a.case-card:hover { border-color: var(--ink); }
.case-card .link { margin-top: auto; }
.case-card--placeholder { border-style: dashed; border-color: #a7abae; background: transparent; }
.status-chip { display: inline-block; padding: 0.2rem 0.6rem; border: 1px solid var(--ink); border-radius: 999px; font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); background: var(--white); }
.shape { margin-top: var(--s-2); border-top: 1px solid var(--line); }
.shape li { display: grid; gap: 0.125rem; padding-block: 0.75rem; border-bottom: 1px solid var(--line); font-size: var(--fs-small); }
@media (min-width: 30em) { .shape li { grid-template-columns: 8.5rem 1fr; gap: var(--s-3); } }
.shape li span:first-child { font-weight: 500; }
.shape li span:last-child { color: var(--text-muted); }
.empty-state { border: 1px dashed #a7abae; border-radius: var(--radius-s); padding: var(--s-6) var(--s-5); display: grid; gap: var(--s-4); }
.tags { display: flex; flex-wrap: wrap; gap: var(--s-2); }
.tags li { padding: 0.375rem 0.875rem; border: 1px solid var(--line-strong); border-radius: 999px; font-size: var(--fs-small); font-weight: 500; background: var(--white); }

/* Case study detail */
.case-detail__block { padding-block: var(--s-6); border-top: 1px solid var(--line); display: grid; gap: var(--s-3); }
.case-detail__block h2 { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.case-detail__block p { font-size: 1.125rem; max-width: var(--measure); }
@media (min-width: 56.25em) { .case-detail__block { grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: var(--s-7); } }
.prose > * + * { margin-top: var(--s-4); }
.prose h2 { font-size: var(--fs-h3); margin-top: var(--s-6); }

/* -- What We Do: capability sections ------------------------------------------------------------------------------- */
.capability { display: grid; gap: var(--s-6); }
.capability__head .idx { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); }
.capability__head { container-type: inline-size; min-width: 0; }
.capability__head h2 { font-size: clamp(2.5rem, 1.6rem + 6vw, 6.5rem); font-size: clamp(2.5rem, 22cqi, 6.5rem); letter-spacing: -0.045em; line-height: 0.95; margin-top: var(--s-3); overflow-wrap: anywhere; }
.capability__head .sub { margin-top: var(--s-3); font-weight: 500; font-size: 1.0625rem; }
.cap-block { padding-block: var(--s-5); border-top: 1px solid var(--line); display: grid; gap: var(--s-3); }
.cap-block:first-child { border-top: 1px solid var(--line-strong); }
.cap-block h3 { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.cap-block p { font-size: 1.0625rem; max-width: 40rem; }
.cap-block p.strong { font-size: clamp(1.25rem, 1rem + 1vw, 1.625rem); font-weight: 500; line-height: 1.3; letter-spacing: -0.015em; }
.outputs { columns: 1; column-gap: var(--s-6); }
.outputs li { break-inside: avoid; padding: 0.5rem 0 0.5rem 1.5rem; position: relative; border-bottom: 1px solid var(--line); }
.outputs li::before { content: ""; position: absolute; left: 0; top: 1rem; width: 0.5rem; height: 0.5rem; background: var(--lime); box-shadow: inset 0 0 0 1px var(--ink); }
@media (min-width: 40em) { .outputs { columns: 2; } }
@media (min-width: 56.25em) {
  .capability { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: var(--s-8); align-items: start; }
  .capability__head { position: sticky; top: calc(var(--header-h) + 2rem); }
  .cap-block { grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: var(--s-6); padding-block: var(--s-6); }
}

/* -- Frameworks ----------------------------------------------------------------------------------------------------- */
.chain { counter-reset: chain; position: relative; margin-top: var(--s-6); }
.chain li { counter-increment: chain; position: relative; padding: 0 0 var(--s-5) 2.5rem; }
.chain li::before { content: ""; position: absolute; left: 0.3125rem; top: 0.5rem; bottom: -0.5rem; width: 1px; background: var(--ink); }
.chain li:last-child::before { display: none; }
.chain li::after { content: ""; position: absolute; left: 0; top: 0.4rem; width: 0.625rem; height: 0.625rem; background: var(--white); border: 1px solid var(--ink); }
.chain li:first-child::after, .chain li:last-child::after { background: var(--lime); }
.chain h3 { font-size: 1.125rem; }
.chain--compact li { padding-bottom: var(--s-4); }
.chain p { color: var(--text-muted); font-size: 0.9375rem; margin-top: 0.125rem; }
@media (min-width: 56.25em) {
  .chain { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-7) var(--s-5); }
  .chain li { padding: var(--s-5) 0 0 0; border-top: 1px solid var(--ink); }
  .chain li::before { display: none; }
  .chain li::after { left: 0; top: -0.3125rem; }
  .chain li:last-child::before { display: none; }
  .chain h3 { font-size: 1.25rem; }
}

/* -- Questions list -------------------------------------------------------------------------------------------------- */
.q-list { border-top: 1px solid var(--line-strong); counter-reset: q; }
.q-list li { counter-increment: q; display: grid; grid-template-columns: 2.5rem 1fr; gap: var(--s-3); padding-block: var(--s-4); border-bottom: 1px solid var(--line); font-size: clamp(1.25rem, 1rem + 1.2vw, 1.875rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.q-list li::before { content: "0" counter(q); font-size: var(--fs-label); letter-spacing: 0.14em; color: var(--text-muted); padding-top: 0.6em; font-weight: 500; }

/* -- Accordion ------------------------------------------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--line-strong); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); min-height: 3.75rem; padding-block: var(--s-3); font-size: 1.0625rem; font-weight: 500; cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: ""; flex: none; width: 0.875rem; height: 0.875rem; background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat, linear-gradient(currentColor, currentColor) center / 2px 100% no-repeat; }
.accordion details[open] summary::after { background: linear-gradient(currentColor, currentColor) center / 100% 2px no-repeat; }
.accordion details > div { padding-bottom: var(--s-5); max-width: var(--measure); color: var(--text-muted); }

/* -- About ------------------------------------------------------------------------------------------------------------------ */
.belief-big { font-size: var(--fs-display); line-height: 1.03; letter-spacing: -0.035em; font-weight: 500; max-width: 16ch; }
.two-col { display: grid; gap: var(--s-6); }
@media (min-width: 56.25em) { .two-col { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: var(--s-8); align-items: start; } .two-col--even { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
.values { display: grid; border-top: 1px solid var(--line-strong); counter-reset: v; }
.values li { counter-increment: v; padding-block: var(--s-4); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 2.5rem 1fr; gap: var(--s-3); }
.values li::before { content: "0" counter(v); font-size: var(--fs-label); letter-spacing: 0.14em; font-weight: 500; color: var(--text-muted); padding-top: 0.5em; }
.values h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
.values p { color: var(--text-muted); font-size: 0.9375rem; margin-top: 0.125rem; }
@media (min-width: 56.25em) { .values { grid-template-columns: 1fr 1fr; column-gap: var(--s-7); } }
.compare { width: 100%; border-collapse: collapse; }
.compare th, .compare td { text-align: left; vertical-align: top; padding: var(--s-4) var(--s-3) var(--s-4) 0; border-bottom: 1px solid var(--line); }
.compare thead th { font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); border-bottom: 1px solid var(--line-strong); padding-top: 0; }
.compare thead th:last-child { color: var(--text); }
.compare tbody th { font-weight: 400; color: var(--text-muted); font-size: var(--fs-small); width: 26%; }
.compare td:nth-child(2) { color: var(--text-muted); }
.compare td:nth-child(3) { font-weight: 500; }
@media (max-width: 39.99em) {
  .compare thead { position: absolute; left: -9999px; }
  .compare, .compare tbody, .compare tr, .compare th, .compare td { display: block; width: 100%; }
  .compare tr { border-bottom: 1px solid var(--line); padding-block: var(--s-4); }
  .compare th, .compare td { border: 0; padding: 0; }
  .compare tbody th { margin-bottom: var(--s-2); width: auto; font-size: var(--fs-label); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
  .compare td { margin-top: var(--s-2); }
  .compare td::before { display: block; font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; color: var(--text-muted); }
  .compare td:nth-child(2)::before { content: "A conventional agency"; }
  .compare td:nth-child(3)::before { content: "Elyvant"; color: var(--text); }
}

/* -- Forms ------------------------------------------------------------------------------------------------------------------------- */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-s); padding: var(--s-5); }
.form { display: grid; gap: var(--s-5); }
.field { display: grid; gap: var(--s-2); }
.field label, .field .field__label { font-weight: 500; font-size: 0.9375rem; line-height: 1.35; }
.field .opt { font-weight: 400; color: var(--text-muted); }
.field .hint { font-size: var(--fs-small); color: var(--text-muted); line-height: 1.5; }
.input, .select, .textarea {
  width: 100%; min-height: 3.25rem; padding: 0.75rem 0.875rem; background: var(--white); color: var(--ink);
  border: 1px solid var(--field-border); border-radius: var(--radius-m); font-size: 1rem; line-height: 1.4;
  transition: border-color 0.15s ease;
}
.textarea { min-height: 7.5rem; resize: vertical; }
.select { appearance: none; -webkit-appearance: none; padding-right: 2.75rem; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%230b0f12' stroke-width='2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink); }
.input:focus-visible, .select:focus-visible, .textarea:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-color: var(--ink); }
.field[data-invalid="true"] .input, .field[data-invalid="true"] .select, .field[data-invalid="true"] .textarea { border-color: var(--error); border-width: 2px; }
.field .error { display: none; color: var(--error); font-size: var(--fs-small); font-weight: 500; }
.field[data-invalid="true"] .error { display: block; }
.field .error::before { content: "Error: "; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { padding: var(--s-4); border: 1px solid var(--ink); border-left-width: 6px; border-left-color: var(--lime); border-radius: var(--radius-s); background: var(--white); }
.form-status[hidden] { display: none; }
.form-status h2, .form-status h3 { font-size: 1.25rem; }
.form-status p { margin-top: var(--s-2); color: var(--text-muted); }
.form .btn { width: 100%; }
.form-note { font-size: var(--fs-small); color: var(--text-muted); }
.form-row { display: grid; gap: var(--s-5); }
@media (min-width: 40em) { .form-card { padding: var(--s-6); } .form .btn { width: auto; justify-self: start; } .form-row { grid-template-columns: 1fr 1fr; } }
.contact__grid { display: grid; gap: var(--s-7); }
.next-steps { counter-reset: n; border-top: 1px solid var(--line-strong); }
.next-steps li { counter-increment: n; display: grid; grid-template-columns: 2.5rem 1fr; gap: var(--s-3); padding-block: var(--s-4); border-bottom: 1px solid var(--line); }
.next-steps li::before { content: "0" counter(n); font-size: var(--fs-label); font-weight: 500; letter-spacing: 0.14em; color: var(--text-muted); padding-top: 0.35em; }
@media (min-width: 56.25em) { .contact__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s-8); align-items: start; } .contact__aside { position: sticky; top: calc(var(--header-h) + 2rem); } }

/* -- Utilities -------------------------------------------------------------------------------------------------------------------------- */
.mt-2 { margin-top: var(--s-2); } .mt-4 { margin-top: var(--s-4); } .mt-5 { margin-top: var(--s-5); } .mt-6 { margin-top: var(--s-6); } .mt-7 { margin-top: var(--s-7); } .mt-8 { margin-top: var(--s-8); }
.center { text-align: center; }

/* -- Reduced motion: the site is calm by design, and this removes even the functional transitions --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0s !important; animation: none !important; scroll-behavior: auto !important; }
}
/* -- Print ------------------------------------------------------------------------------------------------------------------------------------ */
@media print { .site-header, .nav-drawer, .cta-block__art { display: none !important; } body { color: #000; } }
