:root {
  --aubergine: #21152d;
  --sky: #9ad7ff;
  --lacquer: #e63b4d;
  --silver: #d8dce8;
  --white: #f8fafd;
  --ink: #111019;
  --muted: #5b5663;
  --line: #8c8793;
  --display: Didot, "Bodoni 72", Georgia, serif;
  --body: Arial, system-ui, sans-serif;
  --utility: "Courier New", ui-monospace, monospace;
  --step--1: clamp(.8rem, .76rem + .16vw, .9rem);
  --step-0: clamp(1rem, .95rem + .22vw, 1.12rem);
  --step-1: clamp(1.3rem, 1.12rem + .65vw, 1.7rem);
  --step-2: clamp(1.8rem, 1.42rem + 1.4vw, 2.7rem);
  --step-3: clamp(2.55rem, 1.78rem + 3vw, 5.2rem);
  --step-4: clamp(3.45rem, 2.2rem + 4.9vw, 7.6rem);
  --space-1: .5rem;
  --space-2: .85rem;
  --space-3: 1.35rem;
  --space-4: 2.1rem;
  --space-5: 3.4rem;
  --space-6: 5.5rem;
  color-scheme: light;
}
* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  font-size: var(--step-0);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: .09em; text-underline-offset: .18em; }
a:hover { text-decoration-color: var(--lacquer); }
p, h1, h2, h3, ul, ol { margin-top: 0; }
p { max-width: 68ch; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: .98; letter-spacing: -.025em; }
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.12; }
.skip-link {
  position: fixed;
  inset: .5rem auto auto .5rem;
  z-index: 100;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--aubergine);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--lacquer); outline-offset: 4px; }
.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--white) 94%, transparent);
}
.header-inner {
  width: min(100% - 2rem, 1440px);
  min-height: 5.2rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; min-height: 44px; text-decoration: none; }
.brand img { width: 42px; height: 42px; }
.brand-name { font-family: var(--display); font-size: 1.35rem; font-weight: 700; letter-spacing: -.02em; }
.site-nav ul { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: .1rem .35rem; margin: 0; padding: 0; list-style: none; }
.site-nav a { display: inline-flex; align-items: center; min-height: 44px; padding: .45rem .65rem; font-size: var(--step--1); font-weight: 700; text-decoration: none; }
.site-nav a[aria-current="page"] { box-shadow: inset 0 -3px var(--lacquer); }
.eyebrow, .panel-label, .meta, .breadcrumb, .field-help, .source-note, .receipt-label {
  font-family: var(--utility);
  font-size: var(--step--1);
  letter-spacing: .055em;
}
.eyebrow { margin-bottom: 1rem; font-weight: 700; text-transform: uppercase; }
.container { width: min(100% - 2rem, 1280px); margin-inline: auto; }
.narrow { width: min(100% - 2rem, 820px); margin-inline: auto; }
.section { padding-block: var(--space-6); }
.section-rule { border-top: 1px solid var(--line); }
.hero {
  min-height: min(860px, calc(100svh - 5.2rem));
  display: grid;
  align-items: stretch;
  background: var(--silver);
}
.hero-grid {
  width: min(100%, 1600px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
}
.hero-copy {
  padding: clamp(3rem, 7vw, 7.5rem) clamp(1rem, 6vw, 7rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.hero-copy h1 { max-width: 8.8ch; margin-bottom: 1.5rem; }
.hero-copy .lede { max-width: 46ch; font-size: var(--step-1); line-height: 1.42; }
.action-row { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem; margin-top: var(--space-4); }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.05rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}
.button.primary { background: var(--lacquer); color: #fff; }
.button.secondary { background: var(--sky); }
.button:hover { transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.button:active { transform: translate(5px, 5px); box-shadow: none; }
.button:disabled { cursor: not-allowed; opacity: .6; box-shadow: none; }
.mirror-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  grid-template-columns: .9fr 1.2fr .9fr;
  overflow: hidden;
  border-left: 1px solid var(--ink);
  background: var(--aubergine);
}
.mirror-panel {
  position: relative;
  min-width: 0;
  padding: clamp(1rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0;
  border-right: 1px solid var(--ink);
  color: var(--ink);
  background: var(--silver);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
}
.mirror-panel { padding-bottom: clamp(8.5rem, 12vw, 11rem); }
.mirror-panel:nth-child(2) { background: var(--sky); }
.mirror-panel:nth-child(3) { background: #fff; }
.mirror-panel::after {
  content: "";
  position: absolute;
  inset: 21% -35% auto;
  height: 2px;
  background: currentColor;
  transform: rotate(-34deg);
  transform-origin: center;
  opacity: .4;
}
.mirror-panel[aria-pressed="true"] { box-shadow: inset 0 -12px var(--lacquer); }
.mirror-panel strong { position: relative; z-index: 1; max-width: 100%; font-family: var(--display); font-size: clamp(2.1rem, 3.2vw, 3.6rem); line-height: .9; }
.mirror-panel:nth-child(3) strong { font-size: clamp(1.75rem, 2.2vw, 2.5rem); }
.mirror-panel small { position: relative; z-index: 1; font-family: var(--utility); font-weight: 700; }
.mirror-seam { position: absolute; inset: 0 auto 0 50%; width: 7px; background: var(--lacquer); transform: translateX(-50%); pointer-events: none; }
.mirror-caption {
  position: absolute;
  inset: auto 1.2rem 1.2rem;
  z-index: 2;
  padding: 1rem;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 700;
}
.three-lenses { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.lens { min-height: 360px; padding: var(--space-4); border-right: 1px solid var(--ink); display: flex; flex-direction: column; justify-content: space-between; }
.lens:last-child { border-right: 0; }
.lens:nth-child(1) { background: var(--sky); }
.lens:nth-child(2) { background: var(--white); }
.lens:nth-child(3) { background: var(--silver); }
.lens-number { font-family: var(--display); font-size: var(--step-3); line-height: 1; }
.lens h3 { font-size: var(--step-2); }
.split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.statement { font-family: var(--display); font-size: var(--step-2); line-height: 1.08; max-width: 18ch; }
.steps { counter-reset: calm-step; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.steps li { counter-increment: calm-step; display: grid; grid-template-columns: 4rem 1fr; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--ink); }
.steps li::before { content: "0" counter(calm-step); font-family: var(--utility); font-weight: 700; color: var(--lacquer); }
.steps h3 { margin-bottom: .5rem; }
.steps p { margin-bottom: 0; }
.quiet-band { color: #fff; background: var(--aubergine); }
.quiet-band a { color: #fff; }
.request-teaser { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .75fr); gap: var(--space-5); align-items: end; }
.request-teaser h2 { max-width: 9ch; margin-bottom: 0; }
.request-teaser .panel { padding: var(--space-4); color: var(--ink); background: var(--sky); border: 1px solid #fff; }
.page-hero { padding-block: clamp(3.5rem, 9vw, 8rem); border-bottom: 1px solid var(--ink); background: var(--silver); }
.page-hero .breadcrumb { margin-bottom: var(--space-4); }
.page-hero h1 { max-width: 12ch; margin-bottom: var(--space-3); }
.page-hero .lede { max-width: 58ch; font-size: var(--step-1); line-height: 1.45; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .35rem .6rem; margin: 0; padding: 0; list-style: none; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: .6rem; color: var(--lacquer); }
.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; border: 1px solid var(--ink); background: var(--ink); }
.guide-block { min-height: 340px; padding: clamp(1.5rem, 4vw, 3.5rem); background: var(--white); }
.guide-block.accent { background: var(--sky); }
.guide-block.silver { background: var(--silver); }
.guide-block .panel-label { display: block; margin-bottom: var(--space-4); }
.principles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 3rem; }
.principle { padding-top: 1rem; border-top: 4px solid var(--ink); }
.principle:nth-child(2n) { border-color: var(--lacquer); }
.disclosure { margin-top: var(--space-3); }
.disclosure button { width: 100%; justify-content: space-between; text-align: left; }
.disclosure-panel { padding: var(--space-3); border: 2px solid var(--ink); border-top: 0; background: var(--white); }
.disclosure-panel[hidden] { display: none; }
.form-layout { display: grid; grid-template-columns: minmax(0, .62fr) minmax(0, 1.38fr); gap: clamp(2rem, 7vw, 7rem); align-items: start; }
.form-note { position: sticky; top: 1rem; padding: var(--space-4); border: 1px solid var(--ink); background: var(--sky); box-shadow: 8px 8px 0 var(--aubergine); }
.request-form { padding: clamp(1.2rem, 4vw, 3.2rem); border: 1px solid var(--ink); background: #fff; }
.request-form fieldset { margin: 0; padding: 0; border: 0; }
.request-form legend { margin-bottom: .8rem; font-family: var(--display); font-size: var(--step-2); font-weight: 700; }
.field { margin-top: 1.35rem; }
.field label { display: block; margin-bottom: .45rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: .8rem;
  border: 2px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--white);
}
.field textarea { min-height: 190px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { background: #fff; }
.check-field { display: grid; grid-template-columns: 28px 1fr; gap: .75rem; align-items: start; }
.check-field input { width: 24px; height: 24px; margin-top: .15rem; accent-color: var(--lacquer); }
.field-help { margin: .35rem 0 0; color: var(--muted); }
.honeypot { position: absolute; inline-size: 1px; block-size: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.form-status { min-height: 1.8rem; margin-top: 1rem; font-weight: 700; }
.form-status.error, .form-error { color: #9f1626; }
.form-error { min-height: 1.6rem; font-weight: 800; }
.receipt { margin-top: 1.5rem; padding: var(--space-3); border: 2px solid var(--ink); background: var(--sky); }
.receipt code { overflow-wrap: anywhere; font-family: var(--utility); }
.legal { padding-block: var(--space-5); }
.legal h2 { margin-top: var(--space-5); font-size: var(--step-2); }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin-top: var(--space-4); }
.legal ul { padding-left: 1.25rem; }
.legal .source-box { margin-top: var(--space-5); padding: var(--space-3); border: 1px solid var(--ink); background: var(--silver); }
.site-footer { padding-block: var(--space-5) var(--space-4); color: #fff; background: var(--aubergine); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: var(--space-4); }
.footer-title { font-family: var(--display); font-size: var(--step-2); line-height: 1; }
.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list a, .cookie-settings { min-height: 44px; display: inline-flex; align-items: center; color: #fff; }
.cookie-settings { padding: 0; border: 0; background: transparent; text-decoration: underline; text-underline-offset: .18em; cursor: pointer; }
.footer-bottom { margin-top: var(--space-4); padding-top: var(--space-3); border-top: 1px solid rgba(255,255,255,.45); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.cookie-notice {
  position: relative;
  z-index: 20;
  padding: 1rem;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: var(--sky);
}
.cookie-notice[hidden] { display: none; }
.cookie-inner { width: min(100%, 1280px); margin-inline: auto; display: grid; grid-template-columns: 1fr auto; gap: 1rem 2rem; align-items: center; }
.cookie-inner p { margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: .7rem; }
.cookie-status { min-height: 1.5rem; grid-column: 1 / -1; font-weight: 700; }
@media (max-width: 980px) {
  .header-inner { padding-block: .8rem; align-items: flex-start; flex-direction: column; gap: .4rem; }
  .site-nav { width: 100%; }
  .site-nav ul { justify-content: flex-start; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; }
  .mirror-stage { min-height: 520px; border-left: 0; border-top: 1px solid var(--ink); }
  .split, .form-layout { grid-template-columns: 1fr; }
  .form-note { position: static; }
  .request-teaser { grid-template-columns: 1fr; }
  .three-lenses { grid-template-columns: 1fr; }
  .lens { min-height: auto; border-right: 0; border-bottom: 1px solid var(--ink); }
  .lens:last-child { border-bottom: 0; }
}
@media (max-width: 680px) {
  .container, .narrow, .header-inner { width: min(100% - 1.25rem, 1280px); }
  .section { padding-block: var(--space-5); }
  .site-nav a { padding-inline: .5rem; }
  .hero-copy { min-height: 500px; padding: 3.4rem .8rem; }
  .mirror-stage { min-height: 0; grid-template-columns: 1fr; padding-bottom: 150px; }
  .mirror-panel { min-height: 150px; padding: 1rem; border-right: 0; border-bottom: 1px solid var(--ink); }
  .mirror-panel strong, .mirror-panel:nth-child(3) strong { font-size: 2.7rem; max-width: none; }
  .mirror-panel::after { inset: 50% -20% auto; }
  .mirror-seam { inset: 0 auto 0 1.3rem; width: 5px; }
  .mirror-caption { inset: auto .7rem .7rem 2.2rem; }
  .guide-grid, .principles { grid-template-columns: 1fr; }
  .guide-block { min-height: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-status { grid-column: auto; }
  .cookie-actions .button { width: 100%; }
}
@media (min-width: 1800px) {
  .hero-grid { min-height: 900px; }
  .container { width: min(100% - 6rem, 1500px); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
