/* ============================================================================
   tjtfw — v3 editorial monogram frame. Faithful to the provided HTML.
   50/50 split, faint serif monogram, duotone portrait bleeding over the divide.
   ========================================================================== */

:root {
  --bg-dark: #000000;
  --bg-light: #ffffff;
  --text-dark: #000000;
  --text-light: #ffffff;
  --accent-muted: rgba(0, 0, 0, 0.05);
  --pad: clamp(1.5rem, 6vw, 7rem);
}

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

html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
.serif { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }

.split-screen {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  position: relative;
}

/* centered wordmark in the header — splits at the divide: white over black, black over white */
.brandmark {
  justify-self: center;
  grid-column: 2;
  margin: 0;
  font-size: clamp(1.4rem, 1.2rem + 0.6vw, 1.8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
  user-select: none;
  /* room below the baseline so the j's descender isn't clipped by background-clip:text */
  padding-bottom: 0.16em;
  background-image: linear-gradient(to right, #ffffff 0 50%, #000000 50% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
/* high-contrast / forced-colors: gradient-clipped text would vanish — fall back to a solid system color */
@media (forced-colors: active) {
  .brandmark { background: none; color: CanvasText; -webkit-text-fill-color: CanvasText; }
}

/* ============================================================================
   Site header — band above the hero: quote | tjtfw | menu.
   Split background mirrors the hero, so the wordmark keeps its white|black split.
   ========================================================================== */
.hero-frame {
  height: 100vh; height: 100svh;
  display: flex;
  flex-direction: column;
}
.site-header {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 0.4rem clamp(1.25rem, 4vw, 3rem);
  background: linear-gradient(to right, var(--bg-dark) 0 50%, var(--bg-light) 50% 100%);
  border-style: solid;
  border-width: 0 0 1px 0;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.34) 0 50%, rgba(0, 0, 0, 0.2) 50% 100%) 1;
  position: relative;
  z-index: 40;
}
.site-header__quote {
  grid-column: 1;
  color: var(--text-light);
  max-width: 22rem;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.64rem, 0.58rem + 0.18vw, 0.78rem);
  line-height: 1.4;
  letter-spacing: 0.005em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}
.menu-toggle {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-dark);
}
.menu-toggle__bars { display: flex; flex-direction: column; gap: 5px; width: 24px; }
.menu-toggle__bars span { display: block; width: 100%; height: 1.5px; background: currentColor; }

/* slide-in drawer — a quarter of the screen, off-canvas until opened */
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 200; /* above the portrait (z-index 100) so the drawer/scrim are never bled over */
  pointer-events: none;
}
.site-menu.is-open { pointer-events: auto; }
.site-menu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  opacity: 0;
  transition: opacity 0.45s ease;
}
.site-menu.is-open .site-menu__scrim { opacity: 1; }
.site-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 25vw;
  min-width: 300px;
  max-width: 420px;
  background: var(--bg-dark);
  color: var(--text-light);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.5rem, 1.6vh, 1.1rem);
  padding: clamp(2rem, 6vh, 4rem) clamp(1.6rem, 2.5vw, 2.8rem);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.site-menu.is-open .site-menu__panel { transform: translateX(0); }
.site-menu__close {
  position: absolute;
  top: clamp(1rem, 3vh, 1.7rem);
  right: clamp(1rem, 2vw, 1.7rem);
  width: 2.5rem; height: 2.5rem;
  background: none; border: 0;
  cursor: pointer;
  color: var(--text-light);
  font-size: 2rem; line-height: 1;
}
.site-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(0.45rem, 1.5vh, 1rem);
}
.site-menu__list a {
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text-light);
  opacity: 0;
  transition: padding-left 0.3s ease;
}
.site-menu__list a:hover { padding-left: 0.7rem; }
/* staggered entrance as the drawer slides in */
.site-menu.is-open .site-menu__list a {
  animation: menuReveal 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.site-menu.is-open .site-menu__list li:nth-child(1) a { animation-delay: 0.14s; }
.site-menu.is-open .site-menu__list li:nth-child(2) a { animation-delay: 0.2s; }
.site-menu.is-open .site-menu__list li:nth-child(3) a { animation-delay: 0.26s; }
.site-menu.is-open .site-menu__list li:nth-child(4) a { animation-delay: 0.32s; }
.site-menu.is-open .site-menu__list li:nth-child(5) a { animation-delay: 0.38s; }
@keyframes menuReveal {
  from { opacity: 0; transform: translateX(1.75rem); }
  to { opacity: 1; transform: none; }
}
.site-menu__email {
  margin-top: clamp(1rem, 3vh, 1.8rem);
  font-size: clamp(0.74rem, 0.68rem + 0.2vw, 0.88rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.site-menu.is-open .site-menu__email { opacity: 0.7; transition-delay: 0.44s; }

/* ============================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: clamp(3rem, 8vh, 6rem) var(--pad) clamp(1.5rem, 4vh, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.4rem 2.5rem;
  max-width: 1480px;
  margin-inline: auto;
}
.site-footer__mark {
  font-weight: 700;
  font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.8rem);
  letter-spacing: 0.04em;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-footer__nav a { opacity: 0.68; transition: opacity 0.3s ease; }
.site-footer__nav a:hover { opacity: 1; }
.site-footer__email {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  white-space: nowrap;
}
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 2rem;
  max-width: 1480px;
  margin: clamp(2rem, 5vh, 3.5rem) auto 0;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ----------------------------- left (dark) ----------------------------- */
.left-section {
  background-color: var(--bg-dark);
  padding: 2.25rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
}
/* artist paint splash on the black field (behind the text) */
.splash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("assets/splash.webp") left center / cover no-repeat;
  pointer-events: none;
}

.mission-statement {
  max-width: 20rem;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
  /* guarantees contrast where white text crosses bright areas of the paint splash */
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

.nav-keywords {
  font-size: 3.5rem;
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.nav-keywords span {
  display: block;
  width: max-content;
  font-style: normal;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.85);
}

/* ----------------------------- right (light) ----------------------------- */
.right-section {
  background-color: var(--bg-light);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* no overflow:hidden here — it clipped the portrait bleeding over the divide;
     horizontal overflow (the monogram) is clipped at the html/body level instead */
}

/* faint hairline-crack texture (replaces the TJ monogram) */
.cracks {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.06;
  pointer-events: none;
}

/* portrait — grayscale photo, centered on the page (x and y) */
.portrait-container {
  position: absolute;
  left: -28%; /* x-centers on the divide = page centre */
  top: 50%;
  transform: translateY(-50%); /* y-centers on the page */
  width: 56%;
  height: 72%;
  z-index: 100; /* top layer */
  background-image: url("assets/portrait.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.32);
  /* hairline that flips with the divide: white over the black half, black over the white half */
  border: 1px solid transparent;
  border-image: linear-gradient(to right, rgba(255, 255, 255, 0.72) 0 50%, rgba(0, 0, 0, 0.55) 50% 100%) 1;
}

/* epigraph — quiet menace in the empty top-right of the white field */
.epigraph {
  position: absolute;
  top: 2.25rem; right: 4rem;
  max-width: 17rem;
  text-align: right;
  color: var(--text-dark);
  z-index: 30;
}
.epigraph__text {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.005em;
}

/* live 2026 proof stats — open middle-right of the white field */
.stats {
  position: absolute;
  top: 50%; right: 4rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.6rem;
  text-align: right;
  color: var(--text-dark);
  z-index: 30;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.stat__label {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.stat__value {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}
.stat__value--sub {
  font-size: clamp(1.05rem, 0.85rem + 0.7vw, 1.45rem);
  opacity: 0.72;
}

.apply-btn {
  position: absolute;
  bottom: 3.5rem; right: 4rem;
  color: var(--text-dark);
  font-size: 2.5rem;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 30;
  transition: opacity 0.3s ease;
}
.apply-btn:hover { opacity: 0.6; }
.apply-btn__arrow { font-size: 1.875rem; }

:where(a, button, input, textarea):focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* ============================================================================
   Exhibits — the scrolling sections below the hero
   ========================================================================== */
.section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: clamp(2rem, 5vh, 4rem) var(--pad);
  position: relative;
  overflow-x: clip;
}
.section--dark { background: var(--bg-dark); color: var(--text-light); }
.section--light { background: var(--bg-light); color: var(--text-dark); }
.section__inner { flex: 1; width: 100%; max-width: 1480px; margin-inline: auto; }

.kicker {
  display: inline-block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.66rem, 0.62rem + 0.2vw, 0.76rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.7;
}

.prose { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-weight: 300; }
.prose > * + * { margin-top: 1.35em; }
.prose p { font-size: clamp(1rem, 0.95rem + 0.35vw, 1.17rem); line-height: 1.68; }
.prose .stanza { line-height: 1.5; }
.prose .ask { opacity: 0.82; }
.prose .em {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.95rem);
  line-height: 1.24;
}

/* prologue */
.prologue__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 1.4rem + 4.2vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin: clamp(1.1rem, 3vw, 2rem) 0 clamp(1.4rem, 3.5vw, 2.4rem);
}
.prologue .prose {
  max-width: 46ch;
  font-family: "Playfair Display", Georgia, serif; /* match the hero's serif body */
  font-weight: 400;
}
.prologue .prose p { line-height: 1.55; }

/* exhibits */
/* layout: copy left, full-height image right, label + title overlaid on the image's top-right */
.exhibit .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(2rem, 4.5vw, 5rem);
}
.exhibit__media {
  grid-column: 2; grid-row: 1 / 4;
  position: relative;
  min-height: 14rem;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.04);
}
.exhibit__media::after { /* scrim — keeps the white label/title legible over any image */
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, transparent 50%, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}
.exhibit__head {
  grid-column: 2; grid-row: 1; z-index: 2;
  justify-self: end; align-self: start;
  text-align: right; color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
  padding: clamp(0.9rem, 2vw, 1.5rem) clamp(0.9rem, 2vw, 1.5rem) 0 0;
}
.exhibit__title {
  grid-column: 2; grid-row: 2; z-index: 2;
  justify-self: end; align-self: start;
  text-align: right; color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
  padding-right: clamp(0.9rem, 2vw, 1.5rem);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}
.exhibit__body {
  grid-column: 1; grid-row: 1 / 4;
  align-self: center;
  max-width: 54ch;
}
.exhibit__close {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: 1.3rem;
}
/* per-section images */
#attention .exhibit__media { background-image: url("assets/attention.webp"); }
#desire .exhibit__media    { background-image: url("assets/desire.webp"); }
#intent .exhibit__media    { background-image: url("assets/intent.webp"); }
#action .exhibit__media    { background-image: url("assets/action.webp"); }

/* revenue — the live meter takes the place of the image */
#revenue .exhibit__media { display: none; }
#revenue .exhibit__head,
#revenue .exhibit__title { color: inherit; padding: 0; text-shadow: none; }
.section-meter {
  grid-column: 2; grid-row: 3;
  align-self: center; justify-self: end;
  display: flex; flex-direction: column; gap: clamp(1.4rem, 3vw, 2.2rem);
  text-align: right;
}
.section-meter .stat__value { font-size: clamp(1.9rem, 1.3rem + 1.8vw, 2.9rem); }
.section-meter .stat__value--sub { font-size: clamp(1.2rem, 0.95rem + 0.8vw, 1.7rem); }
.exhibit__body > * + * { margin-top: 0.82em; }
.exhibit__body p { font-size: clamp(0.92rem, 0.88rem + 0.25vw, 1.05rem); line-height: 1.5; }
.prose .exhibit__lead {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 1.1rem + 1.3vw, 2.1rem);
  line-height: 1.16;
  margin-bottom: 0.9em;
}
.exhibit__body .em { font-size: clamp(1.2rem, 1.05rem + 0.7vw, 1.55rem); }
.exhibit__list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
  gap: 0 1.6rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
  margin: 1em 0;
}
.exhibit__list li {
  padding: 0.4rem 0;
  border-top: 1px solid color-mix(in srgb, currentColor 28%, transparent);
}

/* closing / apply */
.closing__title {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 1.5rem + 3.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 20ch;
  margin: clamp(1rem, 2.5vw, 1.8rem) 0 clamp(1.4rem, 3vw, 2.4rem);
}
.closing__body { max-width: 46ch; }
/* closing — copy left, label + statement top-right, form filling the right */
.closing .section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto 1fr;
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
}
.closing .exhibit__head { grid-column: 2; grid-row: 1; text-align: right; }
.closing__title {
  grid-column: 2; grid-row: 2;
  text-align: right;
  margin: 0.4rem 0 0 auto;
  max-width: 18ch;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}
.closing__body { grid-column: 1; grid-row: 1 / 4; align-self: center; max-width: 44ch; }
.closing .form {
  grid-column: 2; grid-row: 3;
  align-self: center;
  justify-self: end;
  width: 100%;
  max-width: 30rem;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
}
.form { max-width: 34rem; margin-top: clamp(2.5rem, 6vw, 4rem); display: grid; gap: 1.3rem; }
.form__note {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.5;
}
.field { display: grid; gap: 0.5rem; }
.field label { font-family: "Inter", ui-sans-serif, system-ui, sans-serif; font-size: 0.78rem; letter-spacing: 0.04em; opacity: 0.75; }
.field input, .field textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid color-mix(in srgb, currentColor 35%, transparent);
  padding: 0.6rem 0; font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem; color: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: currentColor; opacity: 0.34; }
.field input:focus, .field textarea:focus { border-bottom-color: currentColor; }
.field textarea { resize: vertical; }
.form__btn {
  justify-self: start; margin-top: 0.5rem;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--bg-light); color: var(--bg-dark); border: 1px solid var(--bg-light);
  padding: 1em 2.6em; cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.form__btn:hover { background: transparent; color: var(--bg-light); }

/* scroll reveal (progressive enhancement) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ============================================================================
   Section — "Stimuli and action" (human-nature manifesto)
   ========================================================================== */
.manifesto {
  color: var(--text-light);
  padding: clamp(3.25rem, 8vh, 5.5rem) var(--pad);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background-color: #000;
  background-image:
    linear-gradient(to right, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.14) 28%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.62) 100%),
    url("assets/human-nature.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.manifesto__inner {
  /* statue keeps the left; copy sits in the dark centre-right */
  max-width: 42rem;
  margin-left: auto;
  margin-right: clamp(1.5rem, 6vw, 6rem);
  /* keeps the copy legible wherever it crosses the statue or lighter splatter */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 2px 18px rgba(0, 0, 0, 0.72);
}
.manifesto__head { margin-bottom: clamp(1.8rem, 4.5vh, 3.2rem); }
.manifesto__head .kicker { display: block; margin-bottom: clamp(0.9rem, 2.5vw, 1.5rem); }
.manifesto__title {
  font-weight: 700;
  font-size: clamp(2.6rem, 1.5rem + 5vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
.manifesto__body { max-width: 50rem; }
.manifesto__body .manifesto__lead {
  font-weight: 400;
  font-size: clamp(1.45rem, 1.15rem + 1.2vw, 2.05rem);
  line-height: 1.22;
  letter-spacing: -0.015em;
}
.manifesto__body .manifesto__escalation {
  font-weight: 700;
  font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: clamp(2rem, 5vh, 3.4rem);
}

/* utility: visually hidden, still read by assistive tech */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap;
}

/* interior-page header: solid instead of split (no hero behind it) */
.site-header--solid {
  background: var(--bg-dark);
  border-image: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.site-header--solid .brandmark { background: none; color: var(--text-light); -webkit-text-fill-color: var(--text-light); }
.site-header--solid .menu-toggle { color: var(--text-light); }

/* shared section heads */
.sect-kicker {
  display: block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(0.66rem, 0.62rem + 0.2vw, 0.76rem);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: clamp(0.8rem, 2vw, 1.3rem);
}

/* ============================================================================
   Services (home section)
   ========================================================================== */
.services {
  background-color: var(--bg-light);
  color: var(--text-dark);
  padding: clamp(3.5rem, 9vh, 7rem) var(--pad);
}
.services__inner { max-width: 1180px; margin-inline: auto; }
.services__head { margin-bottom: clamp(2.2rem, 5vh, 3.6rem); max-width: 60rem; }
.services__title {
  font-weight: 700;
  font-size: clamp(2.4rem, 1.6rem + 4vw, 4.6rem);
  line-height: 0.98; letter-spacing: -0.03em;
}
.services__lead {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 1rem + 1vw, 1.75rem);
  line-height: 1.25; letter-spacing: -0.01em;
  margin-top: clamp(0.7rem, 2vh, 1.3rem);
}
.services__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(1.4rem, 2.4vw, 2.6rem);
  margin-top: clamp(2.4rem, 6vh, 4.5rem);
}
@media (max-width: 980px) { .services__list { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; } }
.service {
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.22);
  padding-top: 1.3rem;
  transition: border-color 0.35s ease;
}
.service:hover { border-top-color: #000; }
.service__name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 1.1rem + 1.1vw, 2.1rem);
  letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 0.8rem;
  padding-right: 1.8rem;
}
.service__name a { color: inherit; text-decoration: none; }
.service__name a::after { content: ""; position: absolute; inset: 0; } /* whole card clickable */
.service__arrow {
  position: absolute; top: 1.3rem; right: 0;
  font-size: 1.05rem; line-height: 1; opacity: 0.32;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.service:hover .service__arrow { opacity: 0.95; transform: translate(2px, -3px); }
.service--wide { grid-column: 1 / -1; }
.service--wide .service__desc { max-width: 70ch; }

/* mobile-only: expandable service categories */
.services__accordion { display: none; }
.svc-group, .svc-link { border-top: 1px solid rgba(0, 0, 0, 0.18); }
.services__accordion > :last-child { border-bottom: 1px solid rgba(0, 0, 0, 0.18); }
.svc-group__summary, .svc-link {
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0.1rem;
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700; font-size: clamp(1.6rem, 7vw, 2.1rem);
  letter-spacing: -0.02em; line-height: 1.05; text-align: left;
  color: var(--text-dark); background: none; border: 0; cursor: pointer;
}
.svc-group__summary::after {
  content: "+";
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300; font-size: 1.5rem; line-height: 1; opacity: 0.55;
  transition: transform 0.3s ease;
}
.svc-group.is-open .svc-group__summary::after { transform: rotate(45deg); }
.svc-link::after {
  content: "\2197";
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300; font-size: 1.3rem; line-height: 1; opacity: 0.5;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.svc-link:hover::after { transform: translate(2px, -2px); opacity: 0.85; }
/* smooth height expand */
.svc-group__content {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.svc-group.is-open .svc-group__content { grid-template-rows: 1fr; }
.svc-group__content > .svc-group__links {
  overflow: hidden; min-height: 0;
  display: flex; flex-direction: column; padding: 0 0.1rem;
}
.svc-group__links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.05rem; letter-spacing: 0.01em;
  color: var(--text-dark); opacity: 0.82;
}
.svc-group__links a:last-child { padding-bottom: 1.1rem; }
.svc-group__links a::after { content: "\2197"; opacity: 0.45; }
.service__desc {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.08rem);
  line-height: 1.6;
}
.services__foot {
  margin-top: clamp(2.2rem, 5vh, 3.6rem);
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 0.92rem + 0.4vw, 1.25rem);
  line-height: 1.55; max-width: 56ch;
}

/* ============================================================================
   Results (home section)
   ========================================================================== */
.results {
  background-color: var(--bg-light);
  background-image: url("assets/pattern-results.webp");
  background-size: cover;
  background-position: center;
  color: var(--text-dark);
  padding: clamp(3.5rem, 9vh, 7rem) var(--pad);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.results__inner { max-width: 1180px; margin-inline: auto; }
.results__head { margin-bottom: clamp(2rem, 5vh, 3.4rem); }
.results__title {
  font-weight: 700;
  font-size: clamp(2.2rem, 1.5rem + 3.6vw, 4.4rem);
  line-height: 1; letter-spacing: -0.03em; max-width: 16ch;
}
.results__body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.22rem);
  line-height: 1.6; max-width: 52ch; margin-top: clamp(1rem, 2.5vh, 1.6rem);
}
.results__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  margin-top: clamp(2.4rem, 6vh, 4.5rem);
}
.result-stat { border-top: 1px solid rgba(0, 0, 0, 0.2); padding-top: 1.2rem; }
.result-stat__label {
  display: block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.72rem, 0.68rem + 0.2vw, 0.85rem);
  letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.55;
  margin-bottom: 0.6rem; line-height: 1.4;
}
.result-stat__num {
  display: block;
  font-weight: 700;
  font-size: clamp(1.9rem, 1.3rem + 2.4vw, 3rem);
  line-height: 0.95; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.results__note { margin-top: clamp(1.6rem, 4vh, 2.6rem); font-size: 0.78rem; letter-spacing: 0.02em; opacity: 0.45; max-width: 50ch; }

/* ============================================================================
   Case Studies (page)
   ========================================================================== */
.cases {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: clamp(4rem, 10vh, 8rem) var(--pad) clamp(3rem, 8vh, 6rem);
}
.cases__inner { max-width: 62rem; margin-inline: auto; }
.cases__head { margin-bottom: clamp(2.4rem, 6vh, 4.5rem); }
.cases__title {
  font-weight: 700;
  font-size: clamp(2.6rem, 1.6rem + 5vw, 5.5rem);
  line-height: 0.98; letter-spacing: -0.03em;
}
.cases__lead {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.9rem);
  line-height: 1.25; letter-spacing: -0.01em;
  max-width: 34ch; margin-top: clamp(0.8rem, 2vh, 1.4rem);
}
.case {
  display: grid;
  grid-template-columns: minmax(0, 13rem) 1fr;
  gap: clamp(1.2rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: clamp(2rem, 5vh, 3.4rem) 0;
}
.case__num {
  font-weight: 700;
  font-size: clamp(2.6rem, 1.8rem + 4vw, 4.6rem);
  line-height: 0.9; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.case__tag {
  display: block;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.6; margin-top: 0.8rem;
}
.case__name {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 0.9rem;
}
.case__body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.1rem);
  line-height: 1.62;
}
.case__body > * + * { margin-top: 0.8em; }
.cases__note { margin-top: clamp(2rem, 5vh, 3rem); font-size: 0.78rem; opacity: 0.45; max-width: 54ch; }

/* ============================================================================
   Apply — embedded form modal (opens in-page; no external mail app)
   ========================================================================== */
.apply-modal { position: fixed; inset: 0; z-index: 240; pointer-events: none; }
.apply-modal.is-open { pointer-events: auto; }
.apply-modal__scrim {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0; transition: opacity 0.4s ease;
}
.apply-modal.is-open .apply-modal__scrim { opacity: 1; }
.apply-modal__panel {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  width: min(92vw, 33rem); max-height: 88vh; overflow-y: auto;
  background: var(--bg-dark); color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: clamp(1.9rem, 5vw, 3rem);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.apply-modal.is-open .apply-modal__panel { opacity: 1; transform: translate(-50%, -50%); }
.apply-modal__close {
  position: absolute; top: 0.6rem; right: 1rem;
  background: none; border: 0; color: var(--text-light);
  font-size: 2rem; line-height: 1; cursor: pointer; opacity: 0.65;
  transition: opacity 0.25s ease;
}
.apply-modal__close:hover { opacity: 1; }
.apply-modal__title { font-weight: 700; font-size: clamp(2rem, 5vw, 2.7rem); letter-spacing: -0.02em; line-height: 1; margin: 0; }
.apply-modal__intro {
  font-family: inherit; font-weight: 300; font-size: 0.95rem; line-height: 1.55;
  opacity: 0.78; margin: 0.7rem 0 1.7rem; max-width: 40ch;
}
.apply-form { display: grid; gap: 1.05rem; }
.apply-form .field { display: grid; gap: 0.4rem; }
.apply-form label {
  font-family: inherit; font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; opacity: 0.6;
}
.apply-form input, .apply-form textarea {
  background: transparent; border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--text-light); font-family: inherit; font-size: 1rem;
  padding: 0.5rem 0; transition: border-color 0.25s ease;
}
.apply-form input:focus, .apply-form textarea:focus { outline: none; border-bottom-color: #fff; }
.apply-form textarea { resize: vertical; min-height: 3.4rem; }
.apply-form__btn {
  justify-self: start; margin-top: 0.5rem;
  background: var(--bg-light); color: var(--bg-dark);
  border: 1px solid var(--bg-light);
  font-family: inherit; font-size: 0.74rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.95em 2.4em; cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.apply-form__btn:hover { background: transparent; color: var(--text-light); }
.apply-form__btn:focus-visible { outline-color: var(--text-light); }
.apply-form__btn:disabled { opacity: 0.45; cursor: default; }
.apply-form__status { font-family: inherit; font-size: 0.85rem; min-height: 1.2em; margin: 0.2rem 0 0; opacity: 0.85; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  .site-menu__panel, .site-menu__scrim { transition: none; }
  .svc-group__content { transition: none; }
  .site-menu__list a { animation: none; opacity: 1; }
  .site-menu__email { opacity: 0.7; transition: none; }
  .apply-modal__scrim, .apply-modal__panel { transition: none; }
}

/* ----------------------------- responsive fallback ----------------------------- */
@media (max-width: 760px) {
  body { overflow-y: auto; }
  .split-screen { grid-template-columns: 1fr; }
  .site-header { background: var(--bg-light); border-image: none; border-bottom: 1px solid rgba(0, 0, 0, 0.16); padding: 0.4rem 1.25rem; }
  .site-menu__panel { width: 80vw; min-width: 0; max-width: 340px; }
  .site-header__quote { display: none; }
  .menu-toggle { color: var(--text-dark); }
  .site-footer__top { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .site-footer__base { flex-direction: column; gap: 0.4rem; }
  .brandmark { background-image: none; color: #000; -webkit-text-fill-color: #000; font-size: 1.4rem; }
  .manifesto {
    background-image: linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.62)), url("assets/human-nature.webp");
    background-position: 32% center;
  }
  .manifesto__inner { max-width: 100%; margin: 0; }
  .services__list { display: none; }
  .services__accordion { display: block; margin-top: clamp(1.6rem, 5vh, 2.4rem); }
  .results__stats { grid-template-columns: 1fr; gap: 1.8rem; }
  .case { grid-template-columns: 1fr; gap: 0.7rem; }
  .case__num { font-size: clamp(2.6rem, 14vw, 3.6rem); }
  .left-section { display: none; } /* mobile: drop the black panel, keep only the portrait side */
  .nav-keywords { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .right-section {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    gap: 1.3rem;
    padding: 1.75rem 1.5rem 2rem;
  }
  .portrait-container { position: relative; left: 0; top: auto; transform: none; width: 56%; aspect-ratio: 0.74; height: auto; }
  .epigraph { position: static; max-width: 30rem; text-align: center; }
  .stats { position: static; transform: none; align-items: center; text-align: center; }
  .stat { align-items: center; }
  .apply-btn { position: static; align-self: center; bottom: auto; right: auto; }
  .section { min-height: 100svh; justify-content: center; padding-block: clamp(0.9rem, 3vh, 2.4rem); }
  .section__inner { flex: none; }
  .exhibit .section__inner, .closing .section__inner { display: block; }
  .exhibit__head, .exhibit__title, .closing__title { text-align: left; color: inherit; padding: 0; text-shadow: none; }
  .exhibit__title { margin: 0.4rem 0 0; font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .closing__title { margin: 0.4rem 0 0; max-width: none; }
  .exhibit__media { min-height: 0; aspect-ratio: 3 / 4; width: 40%; margin: 0.7rem auto 0; }
  .exhibit__media::after { display: none; }
  .exhibit__body { max-width: 100%; margin: 0.8rem 0 0; }
  .exhibit__body p { font-size: 0.82rem; line-height: 1.38; }
  .exhibit__body > * + * { margin-top: 0.5em; }
  .prose .exhibit__lead { font-size: clamp(1.2rem, 4.6vw, 1.55rem); margin-bottom: 0.55em; }
  .exhibit__body .em { font-size: clamp(1.05rem, 4.2vw, 1.4rem); }
  .exhibit__list { margin: 0.6em 0; font-size: 0.92rem; gap: 0 1rem; }
  .exhibit__list li { padding: 0.22rem 0; }
  .exhibit__close { margin-top: 0.8rem; max-width: none; white-space: normal; font-size: clamp(1.5rem, 6.5vw, 2.2rem); }
  .section-meter { align-self: stretch; justify-self: stretch; text-align: left; margin: 1.6rem 0 0; }
  .closing__body p { font-size: 0.84rem; line-height: 1.4; }
  .closing__body .em { font-size: 1.15rem; }
  .closing .form { gap: 0.75rem; margin-top: 1rem; max-width: 100%; }
  .closing .field { gap: 0.3rem; }
  .closing .field input, .closing .field textarea { padding: 0.45rem 0; }
  .closing .form__btn { padding: 0.85em 2.2em; }
}
