@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/bodoni-moda-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-600.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #0b2952;
  --cream: #fdf5e5;
  --coffee: #342625;
  --fuchsia: #822349;
  --green: #2e6643;
  --yellow: #eec24f;
  --white: #fffdf8;
  --line: color-mix(in srgb, currentColor 24%, transparent);
  --font-display: "Bodoni Moda", "Bodoni 72", Didot, Georgia, serif;
  --font-body: "Inter", "Avenir Next", Avenir, system-ui, sans-serif;
  --step--1: clamp(0.82rem, 0.78rem + 0.18vw, 0.92rem);
  --step-0: clamp(1rem, 0.95rem + 0.24vw, 1.12rem);
  --step-1: clamp(1.2rem, 1.04rem + 0.72vw, 1.62rem);
  --step-2: clamp(1.6rem, 1.28rem + 1.4vw, 2.5rem);
  --step-3: clamp(2.15rem, 1.5rem + 2.9vw, 4.4rem);
  --step-4: clamp(2.8rem, 1.75rem + 4.9vw, 6.9rem);
  --page: min(100% - 2rem, 78rem);
  --measure: 66ch;
  --section: clamp(4.5rem, 9vw, 9rem);
  color: var(--blue);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 100%;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-padding-top: 6rem; }

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--cream);
}

img, video { display: block; max-width: 100%; }

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

a { color: inherit; text-underline-offset: 0.25em; }

a:hover { text-decoration-thickness: 0.12em; }

:focus-visible {
  outline: 0.2rem solid var(--yellow);
  outline-offset: 0.25rem;
}

h1, h2, h3, p { margin-block-start: 0; }

h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); line-height: 1.2; }
p { max-width: var(--measure); }

.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;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 600;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 5.25rem;
  padding: 0.45rem max(1rem, calc((100vw - 78rem) / 2));
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--blue) 12%, transparent);
  backdrop-filter: blur(0.8rem);
}

.brand { display: inline-flex; width: 8.7rem; text-decoration: none; }
.brand img { width: 100%; height: auto; }

.main-nav { justify-self: end; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav a {
  display: inline-block;
  padding-block: 0.6rem;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { box-shadow: inset 0 -0.16rem var(--fuchsia); }

.menu-button { display: none; }

.wrap { width: var(--page); margin-inline: auto; }

.section { position: relative; padding-block: var(--section); }

.eyebrow {
  display: block;
  margin-bottom: 1.25rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.lead { font-size: var(--step-1); line-height: 1.45; }

.kicker {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.12;
  text-wrap: balance;
}

.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.2rem;
  border: 1px solid currentColor;
  border-radius: 100vmax;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-0.12rem); }
.button-primary { border-color: var(--yellow); background: var(--yellow); color: var(--blue); }
.button-primary:hover { background: var(--cream); border-color: var(--cream); }
.button-light { border-color: var(--cream); color: var(--cream); }
.button-light:hover { background: var(--cream); color: var(--blue); }
.button-dark { border-color: var(--blue); color: var(--blue); }
.button-dark:hover { background: var(--blue); color: var(--cream); }
.button-arrow::after { content: "→"; font-size: 1.1em; }

.hero-home {
  position: relative;
  min-height: calc(100svh - 5.25rem);
  display: grid;
  place-items: end start;
  overflow: hidden;
  isolation: isolate;
  color: var(--cream);
  background: var(--blue);
}

.hero-home .hero-poster {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-youtube {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  border: 0;
  transform: translate(-50%, -50%);
}

.hero-home::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 94%, transparent) 0%, color-mix(in srgb, var(--blue) 74%, transparent) 52%, color-mix(in srgb, var(--blue) 35%, transparent) 100%), linear-gradient(0deg, var(--blue) 0%, transparent 60%);
}

.hero-home-content {
  width: var(--page);
  margin-inline: auto;
  padding-block: clamp(5rem, 12vh, 9rem);
}

.hero-home h1 {
  max-width: 100%;
  margin-bottom: 1.7rem;
  font-size: clamp(2.9rem, 5.4vw, 5.2rem);
  line-height: 0.96;
}
.hero-home .lead { max-width: 50rem; }

.video-toggle {
  position: absolute;
  right: max(1rem, calc((100vw - 78rem) / 2));
  bottom: 1.25rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--cream);
  border-radius: 50%;
  color: var(--cream);
  background: color-mix(in srgb, var(--blue) 65%, transparent);
  cursor: pointer;
}

.intro-grid,
.inner-hero-grid,
.contact-grid,
.community-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(17rem, 0.75fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.intro-copy h2 { max-width: 16ch; }
.intro-copy p { margin-bottom: 1.2rem; }

.editorial-image {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  border-radius: 50% 50% 1.2rem 1.2rem / 18% 18% 1.2rem 1.2rem;
  background: var(--green);
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.statement {
  padding: clamp(3rem, 7vw, 6rem);
  color: var(--cream);
  background: var(--blue);
}

.statement blockquote {
  max-width: 24ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--step-3);
  line-height: 1.05;
}

.statement blockquote::before { content: "“"; color: var(--yellow); }
.statement blockquote::after { content: "”"; color: var(--yellow); }

.fronts { padding-block: var(--section); color: var(--cream); background: var(--coffee); }
.fronts-header { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.fronts-header h2 { max-width: 10ch; margin-bottom: 0; }
.front-grid {
  display: grid;
  width: min(100%, 68rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-inline: auto;
}

.front-card {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--cream) 28%, transparent);
  border-radius: 50% 50% 1rem 1rem / 12% 12% 1rem 1rem;
}

.front-card h3 { max-width: 9ch; font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.front-card .button-row { align-items: flex-start; flex-direction: column; }
.front-org { background: var(--blue); }
.front-you { background: var(--fuchsia); }
.front-inter { background: var(--green); }

.founders { background: var(--cream); }
.founders h2 { max-width: 16ch; }
.founder-intro { max-width: 50rem; margin-bottom: 3rem; font-size: var(--step-1); }
.founder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.25rem, 4vw, 3rem); }
.founder-card { display: grid; grid-template-columns: minmax(10rem, 0.85fr) minmax(0, 1.15fr); gap: 1.5rem; align-items: end; border-top: 1px solid var(--blue); padding-top: 1.5rem; }
.founder-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 48% 48% 0.75rem 0.75rem / 12% 12% 0.75rem 0.75rem; }
.founder-card h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.founder-card p { font-size: var(--step--1); }

.contact { color: var(--cream); background: var(--blue); }
.contact h2 { max-width: 10ch; }
.contact-options { display: grid; gap: 0.7rem; margin-block: 2rem; }
.contact-option { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: baseline; padding-top: 0.8rem; border-top: 1px solid color-mix(in srgb, var(--cream) 24%, transparent); }
.contact-option b { color: var(--yellow); font-size: 0.75rem; letter-spacing: 0.08em; }
.contact-card { padding: clamp(1.5rem, 4vw, 3rem); color: var(--blue); background: var(--cream); border-radius: 50% 50% 1rem 1rem / 8% 8% 1rem 1rem; }
.field { display: grid; gap: 0.4rem; margin-bottom: 1.1rem; }
.field label, .field legend { font-size: 0.82rem; font-weight: 600; }
.field label span, .field legend span { font-size: 0.72rem; font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: 0.82rem 0.9rem; border: 1px solid color-mix(in srgb, var(--blue) 34%, transparent); border-radius: 0.35rem; color: var(--blue); background: var(--white); }
.field textarea { min-height: 8rem; resize: vertical; }
.contact-preference { padding: 0; border: 0; }
.contact-preference > p { margin: 0; font-size: 0.75rem; }
.contact-choices { display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 0.35rem; }
.contact-choice { display: inline-flex; min-height: 2.75rem; align-items: center; gap: 0.6rem; padding: 0.55rem 0.9rem; border: 1px solid color-mix(in srgb, var(--blue) 34%, transparent); border-radius: 100vmax; background: var(--white); cursor: pointer; }
.contact-choice:has(input:checked) { border-color: var(--blue); background: color-mix(in srgb, var(--yellow) 34%, var(--white)); }
.contact-choice input { width: 1.1rem; height: 1.1rem; margin: 0; accent-color: var(--blue); }
.contact-choice span { font-size: 0.82rem; font-weight: 600; }
.conditional-field[hidden] { display: none; }
.field-error { min-height: 1.3em; color: var(--fuchsia); font-size: 0.75rem; font-weight: 600; }
.button:disabled { cursor: not-allowed; opacity: 0.58; transform: none; }
.form-note { font-size: 0.75rem; line-height: 1.5; }
.form-status { min-height: 1.7em; margin-block: 0.8rem; font-weight: 600; }
.channel-links { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; font-weight: 600; }

.inner-hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 5vw, 5rem); }
.inner-hero h1 {
  max-width: 14.5ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.6rem, 4.7vw, 4rem);
}
.inner-hero-copy { position: relative; z-index: 1; }
.hero-context { max-width: 36rem; margin-bottom: 1.5rem; font-size: var(--step-0); line-height: 1.5; }
.inner-hero-media { min-height: 36rem; overflow: hidden; border-radius: 50% 50% 1rem 1rem / 10% 10% 1rem 1rem; }
.inner-hero-media img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.hero-org { color: var(--cream); background: var(--blue); }
.hero-you { color: var(--cream); background: var(--fuchsia); }
.hero-you h1 { max-width: 18ch; font-size: clamp(2.35rem, 4.2vw, 3.45rem); }
.hero-inter { color: var(--cream); background: var(--green); }

.evidence { color: var(--blue); background: var(--cream); }
.evidence h2 { max-width: 14ch; }
.evidence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.evidence-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.evidence-card { min-height: 22rem; display: flex; flex-direction: column; justify-content: space-between; padding: clamp(1.4rem, 3vw, 2.2rem); border: 1px solid var(--blue); border-radius: 50% 50% 0.8rem 0.8rem / 12% 12% 0.8rem 0.8rem; }
.evidence-card .number { display: block; font-family: var(--font-display); font-size: var(--step-4); line-height: 0.9; }
.evidence-card .number-compact { font-size: clamp(2.5rem, 1.5rem + 3.8vw, 5.4rem); white-space: nowrap; }
.evidence-card h3 { margin: 0 0 1.5rem; text-align: center; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.1em; }
.evidence-card p { font-size: var(--step--1); }
.source-link { font-size: 0.72rem; font-weight: 600; }

.services { color: var(--cream); background: var(--coffee); }
.services h2 { max-width: 15ch; }
.service-groups { display: grid; gap: 0.8rem; margin-top: 3rem; }
.service-group { border-top: 1px solid color-mix(in srgb, var(--cream) 35%, transparent); }
.service-group:last-child { border-bottom: 1px solid color-mix(in srgb, var(--cream) 35%, transparent); }
.service-group summary { position: relative; padding: 1.5rem 3rem 1.5rem 0; cursor: pointer; font-family: var(--font-display); font-size: var(--step-2); list-style: none; }
.service-group summary::-webkit-details-marker { display: none; }
.service-group summary::after { content: "+"; position: absolute; right: 0; font-family: var(--font-body); font-weight: 400; }
.service-group[open] summary::after { content: "−"; }
.service-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 3rem; padding: 0 0 2.5rem; }
.service-item { padding-top: 1rem; border-top: 1px solid color-mix(in srgb, var(--cream) 18%, transparent); }
.service-item h3 { margin-bottom: 0.55rem; }
.service-item p { font-size: var(--step--1); }

.method { background: var(--cream); }
.method h2 { max-width: 16ch; }
.lens-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-block: 3rem 5rem; }
.lens-card { min-height: 19rem; padding: 2rem; border: 1px solid var(--blue); }
.lens-card:nth-child(1) { border-radius: 50% 50% 0 0 / 18% 18% 0 0; }
.lens-card:nth-child(2) { color: var(--cream); background: var(--blue); border-radius: 50% / 18%; }
.lens-card:nth-child(3) { border-radius: 0 0 50% 50% / 0 0 18% 18%; }
.lens-card .index { color: var(--fuchsia); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; }
.lens-card h3 { margin-top: 2rem; font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.process-list { counter-reset: process; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 3rem 0; padding: 0; list-style: none; }
.process-list li { counter-increment: process; min-height: 17rem; padding: 1.5rem; border-top: 1px solid var(--blue); border-right: 1px solid var(--blue); border-bottom: 1px solid var(--blue); }
.process-list li:first-child { border-left: 1px solid var(--blue); }
.process-list li::before { content: "0" counter(process); display: block; margin-bottom: 2.5rem; color: var(--fuchsia); font-family: var(--font-display); font-size: var(--step-2); }
.process-list h3 { font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }
.process-list p { font-size: var(--step--1); }

.thesis { color: var(--cream); background: var(--blue); }
.thesis-grid { display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr); gap: clamp(2rem, 7vw, 7rem); }
.thesis h2 { max-width: 10ch; }
.thesis-copy { font-size: var(--step-1); }
.thesis-copy p:last-child { color: var(--yellow); font-family: var(--font-display); font-size: var(--step-2); line-height: 1.15; }

.journeys { background: var(--cream); }
.journeys h2 { max-width: 14ch; }
.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; margin-top: 3rem; }
.journey-card { min-height: 30rem; display: flex; flex-direction: column; justify-content: space-between; padding: 2rem; color: var(--cream); }
.journey-card:nth-child(1) { background: var(--green); border-radius: 50% 50% 0.8rem 0.8rem / 12% 12% 0.8rem 0.8rem; }
.journey-card:nth-child(2) { background: var(--fuchsia); border-radius: 50% / 12%; }
.journey-card:nth-child(3) { background: var(--blue); border-radius: 0.8rem 0.8rem 50% 50% / 0.8rem 0.8rem 12% 12%; }
.journey-card h3 { font-family: var(--font-display); font-size: var(--step-2); font-weight: 400; }
.journey-card .short { color: var(--yellow); font-weight: 600; }

.inter-concept { background: var(--cream); }
.inter-concept h2 { max-width: 13ch; }
.concept-copy { columns: 2 20rem; column-gap: clamp(2rem, 6vw, 6rem); margin-top: 3rem; }
.concept-copy p { break-inside: avoid; }
.concept-quote { margin-top: 4rem; padding: 2rem 0; border-block: 1px solid var(--fuchsia); color: var(--fuchsia); font-family: var(--font-display); font-size: var(--step-2); line-height: 1.15; }

.intersection-flow { color: var(--cream); background: var(--coffee); }
.intersection-flow h2 { max-width: 13ch; }
.flow-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); margin: 3rem 0 0; padding: 0; list-style: none; }
.flow-list li { position: relative; min-height: 18rem; padding: 1.4rem; border-top: 1px solid var(--cream); }
.flow-list li::after { content: "→"; position: absolute; right: -0.45rem; top: 1.1rem; color: var(--yellow); }
.flow-list li:last-child::after { display: none; }
.flow-list .flow-word { display: block; margin: 3rem 0 1rem; color: var(--yellow); font-family: var(--font-display); font-size: var(--step-2); }

.community { color: var(--cream); background: var(--green); }
.community-image { min-height: 34rem; overflow: hidden; border-radius: 50% 50% 1rem 1rem / 10% 10% 1rem 1rem; }
.community-image img { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.community-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2rem; padding: 0; list-style: none; }
.community-tags li { padding: 0.4rem 0.75rem; border: 1px solid currentColor; border-radius: 100vmax; font-size: var(--step--1); }

.active-groups { background: var(--cream); }
.active-card { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); overflow: hidden; margin-top: 3rem; color: var(--cream); background: var(--fuchsia); }
.active-card img { width: 100%; height: 100%; min-height: 34rem; object-fit: cover; }
.active-copy { align-self: center; padding: clamp(2rem, 6vw, 5rem); }
.active-copy h3 { font-family: var(--font-display); font-size: var(--step-3); font-weight: 400; }
.event-facts { display: grid; gap: 0.65rem; margin-block: 1.5rem; padding: 0; list-style: none; }
.event-facts strong { color: var(--yellow); }

.cta-final { padding-block: clamp(4rem, 8vw, 7rem); color: var(--cream); background: var(--blue); text-align: center; }
.cta-final .wrap { display: grid; justify-items: center; }
.cta-final h2 { max-width: 18ch; }
.cta-final p { font-size: var(--step-1); }

.privacy { min-height: 65vh; }
.privacy h1 { max-width: 12ch; }
.privacy-content { display: grid; grid-template-columns: 0.65fr 1.35fr; gap: clamp(2rem, 7vw, 7rem); }
.privacy-copy h2 { margin-top: 2.5rem; font-family: var(--font-body); font-size: var(--step-1); font-weight: 600; letter-spacing: 0; line-height: 1.2; }

.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; }
.not-found .number { margin: 0; color: var(--fuchsia); font-family: var(--font-display); font-size: clamp(7rem, 22vw, 18rem); line-height: 0.75; }
.not-found h1 { font-size: var(--step-3); }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.65fr;
  gap: 2rem;
  padding: 4rem max(1rem, calc((100vw - 78rem) / 2)) 2rem;
  color: var(--cream);
  background: var(--coffee);
}

.footer-mark img { width: 9rem; height: auto; }
.footer-mark p { font-family: var(--font-display); font-size: var(--step-1); }
.site-footer nav, .footer-social { display: grid; align-content: start; gap: 0.7rem; }
.site-footer a { font-size: var(--step--1); }
.footer-legal { grid-column: 1 / -1; margin: 2rem 0 0; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--cream) 22%, transparent); font-size: 0.72rem; }

.js [data-reveal] { transition: opacity 600ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.js [data-reveal]:not(.is-visible) { opacity: 0; transform: translateY(1.5rem); }

@media (max-width: 64rem) {
  .menu-button {
    display: grid;
    justify-self: end;
    gap: 0.4rem;
    width: 3rem;
    height: 3rem;
    place-content: center;
    border: 0;
    color: var(--blue);
    background: transparent;
  }

  .menu-button span[aria-hidden] { display: block; width: 1.5rem; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span[aria-hidden]:first-of-type { transform: translateY(0.25rem) rotate(45deg); }
  .menu-button[aria-expanded="true"] span[aria-hidden]:last-of-type { transform: translateY(-0.25rem) rotate(-45deg); }
  .main-nav { position: absolute; inset: 100% 0 auto; display: none; padding: 1rem; background: var(--cream); border-bottom: 1px solid var(--blue); }
  .main-nav.is-open { display: block; }
  .main-nav ul { align-items: stretch; flex-direction: column; gap: 0; }
  .main-nav a { display: block; padding: 0.9rem; }
  .front-grid, .journey-grid { grid-template-columns: 1fr; }
  .front-grid { width: min(100%, 32rem); }
  .front-card { min-height: 20rem; border-radius: 8rem 8rem 1rem 1rem / 3rem 3rem 1rem 1rem; }
  .front-card .button-row { max-width: 26rem; }
  .founder-card { grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 1.3fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-card { min-height: 18rem; }
  .flow-list { grid-template-columns: 1fr; }
  .flow-list li { min-height: auto; display: grid; grid-template-columns: minmax(9rem, 0.45fr) 1fr; gap: 1rem; }
  .flow-list li::after { top: auto; right: 1rem; bottom: -1rem; transform: rotate(90deg); }
  .flow-list .flow-word { margin-top: 1rem; }
}

@media (max-width: 48rem) {
  :root { --page: min(100% - 1.5rem, 78rem); }
  .site-header { min-height: 4.6rem; padding-inline: 0.75rem; }
  .brand { width: 7.6rem; }
  .hero-home { min-height: calc(100svh - 4.6rem); }
  .hero-home::after { background: linear-gradient(90deg, color-mix(in srgb, var(--blue) 92%, transparent), color-mix(in srgb, var(--blue) 52%, transparent)), linear-gradient(0deg, var(--blue), transparent 72%); }
  .hero-home-content { padding-bottom: 7rem; }
  .video-toggle { right: 0.75rem; bottom: 1rem; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .intro-grid, .inner-hero-grid, .contact-grid, .community-grid, .thesis-grid, .privacy-content, .active-card { grid-template-columns: 1fr; }
  .inner-hero-copy { padding-bottom: 1rem; }
  .inner-hero-media, .community-image { min-height: 28rem; }
  .editorial-image { min-height: 25rem; }
  .fronts-header { align-items: start; flex-direction: column; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-card img { max-height: 34rem; object-position: center 25%; }
  .evidence-grid.two, .service-items, .lens-grid, .process-list, .journey-grid { grid-template-columns: 1fr; }
  .lens-card { min-height: auto; }
  .process-list li { min-height: auto; border-left: 1px solid var(--blue); border-bottom: 0; }
  .process-list li:last-child { border-bottom: 1px solid var(--blue); }
  .journey-card { min-height: 24rem; }
  .active-card img { min-height: 27rem; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 1rem; }
  .footer-legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal]:not(.is-visible) { opacity: 1; transform: none; }
  .hero-youtube, .video-toggle { display: none; }
}

@media print {
  .site-header, .site-footer, .video-toggle { display: none; }
  body, .section, .inner-hero, .services, .contact, .cta-final { color: #000; background: #fff; }
  a { text-decoration: underline; }
}
