:root {
  --ink: #0c1c2d;
  --ink-soft: #18324b;
  --porcelain: #f7f4ee;
  --white: #ffffff;
  --gold: #c8a55f;
  --gold-light: #ead8aa;
  --aqua: #69c7d4;
  --wine: #7c2944;
  --mist: #dce8ec;
  --line: 1px solid rgba(12, 28, 45, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-180%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px clamp(20px, 4vw, 68px);
  color: var(--ink);
  background: rgba(247, 244, 238, 0.94);
  border-bottom: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(12, 28, 45, 0.25);
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand span {
  display: block;
}

.brand strong {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--wine);
}

.nav-links .nav-cta {
  padding: 10px 17px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}

.nav-links .nav-cta:hover {
  color: var(--ink);
  background: var(--gold-light);
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  font: 700 0.75rem var(--sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  min-height: calc(100vh - 82px);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero::after {
  width: 520px;
  height: 520px;
  left: 43%;
  top: 48%;
  border: 1px solid rgba(105, 199, 212, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px) clamp(28px, 7vw, 112px);
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px;
  background: currentColor;
}

.hero h1 {
  max-width: 880px;
  margin: 0;
  color: var(--porcelain);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.68;
}

.hero h1 > span {
  display: block;
  margin: 0 0 18px 5px;
  color: var(--aqua);
  font-family: var(--sans);
  font-size: 0.1em;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 580px;
  margin: 46px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.7vw, 3rem);
  line-height: 1.08;
}

.hero-actions,
.closing-actions,
.proposal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--ink);
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.button.ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
}

.hero-portrait {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 720px;
  padding: 70px 56px 80px 0;
}

.portrait-frame {
  position: relative;
  width: min(42vw, 620px);
  aspect-ratio: 0.77;
  padding: 16px;
  border: 1px solid rgba(234, 216, 170, 0.75);
  border-radius: 48% 48% 24px 24px;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: -26px 36px 36px -26px;
  border: 1px solid rgba(105, 199, 212, 0.42);
  border-radius: inherit;
  z-index: -1;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center 28%;
  filter: saturate(.88) contrast(1.02);
}

.portrait-note {
  position: absolute;
  right: 18px;
  bottom: 28px;
  margin: 0;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.portrait-note span {
  color: var(--aqua);
}

.hero-index {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 50px);
  top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.56);
  font-size: 0.66rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-index span:first-child {
  color: var(--aqua);
  font-family: var(--serif);
  font-size: 1.7rem;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--ink);
  background: var(--gold-light);
  border-bottom: var(--line);
}

.proof-strip > div {
  padding: 28px clamp(18px, 3.5vw, 52px);
  border-right: 1px solid rgba(12, 28, 45, 0.18);
}

.proof-strip > div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 6vw, 96px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(44px, 7vw, 92px);
  color: var(--wine);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  width: min(15vw, 150px);
  height: 1px;
  background: currentColor;
  opacity: .4;
}

.section-kicker > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1;
}

.section-kicker.light {
  color: var(--aqua);
}

.manifesto {
  background: var(--porcelain);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
}

.manifesto-title {
  position: relative;
}

.script {
  margin: 0 0 4px;
  color: var(--wine);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  font-style: italic;
  line-height: .9;
}

.manifesto h2,
.ecosystem h2,
.content-lab h2,
.paths h2,
.closing h2,
.kit-overview h2,
.kit-territories h2,
.language h2,
.formats h2,
.evidence h2,
.proposal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.3rem, 7vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: .84;
}

.manifesto-copy .lead,
.overview-copy .lead {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  line-height: 1.08;
}

.credential-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.credential-links a,
.eco-card a,
.text-link {
  color: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.credential-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}

.storyboard {
  display: grid;
  grid-template-columns: 1.05fr .7fr .95fr;
  grid-template-rows: 335px 335px;
  gap: 18px;
  margin-top: clamp(70px, 10vw, 140px);
}

.story-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-card:hover img {
  transform: scale(1.025);
}

.story-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(12, 28, 45, .9);
  font-size: .74rem;
}

.story-card figcaption span {
  margin-right: 10px;
  color: var(--aqua);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.story-large {
  grid-row: 1 / 3;
}

.story-tall {
  grid-row: 1 / 3;
}

.story-wide {
  grid-column: 3;
  grid-row: 1;
}

.story-extra {
  grid-column: 3;
  grid-row: 2;
}

.story-large img {
  object-position: center top;
}

.story-tall img {
  object-position: center center;
}

.ecosystem {
  color: var(--white);
  background: var(--ink);
}

.ecosystem-heading,
.content-heading,
.language-heading,
.formats-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 50px;
  align-items: end;
}

.ecosystem-heading h2 {
  max-width: 980px;
}

.ecosystem-heading p,
.content-heading p,
.language-heading p,
.formats-heading p {
  margin: 0;
  font-size: 1.05rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  margin-top: 70px;
}

.eco-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 3.5vw, 46px);
  border: 1px solid rgba(255,255,255,.24);
  overflow: hidden;
}

.eco-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -100px;
  top: -100px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .22;
}

.eco-clinic {
  grid-column: span 5;
  color: var(--ink);
  background: var(--gold-light);
}

.eco-education {
  grid-column: span 4;
  color: var(--white);
  background: var(--wine);
}

.eco-tech {
  grid-column: span 3;
  color: var(--ink);
  background: var(--aqua);
}

.eco-number {
  position: absolute;
  left: 28px;
  top: 18px;
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1;
  opacity: .18;
}

.eco-label {
  margin: 0 0 10px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eco-card h3 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .88;
}

.eco-links {
  display: flex;
  gap: 18px;
}

.content-lab {
  background: var(--mist);
}

.content-heading h2 {
  max-width: 900px;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 18px;
  margin-top: 64px;
}

.channel-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--white);
  background: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(12,28,45,.2);
  transition: transform 180ms ease;
}

.channel-card:hover {
  transform: translateY(-5px);
}

.channel-card > img,
.channel-mark,
.channel-symbol {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.channel-feature > img {
  object-position: center;
}

.channel-mark,
.channel-symbol {
  display: grid;
  place-items: center;
  background: var(--white);
}

.channel-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}

.channel-symbol {
  color: var(--ink);
  background: var(--gold-light);
  font-family: var(--serif);
  font-size: 7rem;
  font-style: italic;
}

.channel-card > div:last-child {
  padding: 28px;
}

.channel-card small {
  color: var(--aqua);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.channel-card h3 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .95;
}

.channel-card p {
  color: rgba(255,255,255,.72);
}

.channel-card strong {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.paths {
  background: var(--porcelain);
}

.paths > h2 {
  max-width: 850px;
}

.paths-grid {
  margin-top: 60px;
  border-top: var(--line);
}

.paths-grid a {
  display: grid;
  grid-template-columns: .4fr 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 112px;
  padding: 20px 10px;
  border-bottom: var(--line);
  text-decoration: none;
}

.paths-grid a:hover {
  color: var(--wine);
}

.paths-grid span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.paths-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.2vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1;
}

.paths-grid i {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: normal;
}

.closing {
  display: grid;
  grid-template-columns: minmax(0, 1fr) .45fr;
  min-height: 680px;
  color: var(--white);
  background: var(--wine);
}

.closing > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 108px);
}

.closing h2 {
  max-width: 1000px;
}

.closing p:not(.eyebrow) {
  max-width: 680px;
  font-size: 1.08rem;
}

.closing-monogram {
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(7rem, 16vw, 18rem);
  font-style: italic;
  letter-spacing: -.12em;
  overflow: hidden;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--white);
  background: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 1.25rem;
}

.footer-brand span,
.footer-year {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
}

.site-footer nav {
  display: flex;
  gap: 20px;
}

.site-footer nav a {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

/* Media kit */

.kit-body {
  background: var(--porcelain);
}

.kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
  min-height: calc(100vh - 82px);
  color: var(--white);
  background: var(--ink);
}

.kit-intro-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 9vw, 150px) clamp(28px, 7vw, 112px);
}

.kit-intro-copy::before {
  content: "MEDIA\A KIT";
  white-space: pre;
  position: absolute;
  right: 30px;
  top: 30px;
  color: rgba(255,255,255,.05);
  font-family: var(--serif);
  font-size: clamp(5rem, 10vw, 11rem);
  line-height: .7;
}

.kit-hero h1 {
  position: relative;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.2rem, 11vw, 12rem);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .66;
}

.kit-hero h1 em {
  color: var(--gold-light);
  font-weight: 500;
}

.kit-intro-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 50px 0 0;
  color: rgba(255,255,255,.72);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1.1;
}

.text-link {
  align-self: flex-start;
  margin-top: 34px;
  padding-bottom: 5px;
  color: var(--aqua);
  border-bottom: 1px solid currentColor;
}

.kit-intro-image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--gold-light);
}

.kit-intro-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

.kit-seal {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--ink);
  background: rgba(234,216,170,.94);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.45;
  text-align: center;
  text-transform: uppercase;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr .78fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
}

.overview-grid .script {
  margin-top: 20px;
}

.source-note {
  margin-top: 28px;
  color: rgba(12,28,45,.58);
  font-size: .78rem;
}

.kit-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 72px;
  border: var(--line);
}

.kit-metrics > div {
  padding: 28px;
  border-right: var(--line);
}

.kit-metrics > div:last-child {
  border-right: 0;
}

.kit-metrics strong,
.kit-metrics span {
  display: block;
}

.kit-metrics strong {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .9;
}

.kit-metrics span {
  margin-top: 10px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kit-territories {
  color: var(--white);
  background: var(--wine);
}

.kit-territories > h2 {
  max-width: 980px;
}

.territory-list {
  margin-top: 70px;
  border-top: 1px solid rgba(255,255,255,.28);
}

.territory-list article {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.territory-list article > span {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.territory-list h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  line-height: .95;
}

.territory-list p {
  max-width: 680px;
  margin: 0;
  color: rgba(255,255,255,.76);
}

.language {
  background: var(--mist);
}

.language-heading h2,
.formats-heading h2 {
  max-width: 950px;
}

.kit-gallery {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 320px 320px;
  gap: 18px;
  margin-top: 70px;
}

.kit-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.kit-gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-large {
  grid-row: 1 / 3;
}

.gallery-large img {
  object-position: center center;
}

.kit-gallery figure:not(.gallery-large) img {
  object-position: center 38%;
}

.kit-gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 16px;
  color: var(--white);
  background: rgba(12,28,45,.9);
}

.kit-gallery figcaption small,
.kit-gallery figcaption strong {
  display: block;
}

.kit-gallery figcaption small {
  color: var(--aqua);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.kit-gallery figcaption strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
}

.gallery-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  color: var(--ink);
  background: var(--gold-light);
}

.gallery-quote p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-style: italic;
  line-height: .95;
}

.gallery-quote span {
  margin-top: 20px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.formats {
  color: var(--white);
  background: var(--ink);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.2);
}

.formats-grid article {
  min-height: 320px;
  padding: 32px;
  background: var(--ink);
}

.formats-grid article > span {
  color: var(--aqua);
  font-family: var(--serif);
  font-size: 2rem;
}

.formats-grid h3 {
  margin: 60px 0 14px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: .95;
}

.formats-grid p {
  color: rgba(255,255,255,.68);
}

.evidence {
  background: var(--porcelain);
}

.evidence > h2 {
  max-width: 850px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}

.evidence-grid a {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: var(--line);
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.evidence-grid a:hover {
  color: var(--white);
  background: var(--wine);
}

.evidence-grid small {
  color: var(--wine);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.evidence-grid a:hover small {
  color: var(--gold-light);
}

.evidence-grid h3 {
  margin: 10px 0 14px;
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  line-height: .95;
}

.evidence-grid strong {
  margin-top: 20px;
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.proposal {
  display: grid;
  grid-template-columns: 1fr minmax(320px, .42fr);
  color: var(--white);
  background: var(--wine);
}

.proposal-copy {
  padding: clamp(70px, 10vw, 150px) clamp(24px, 7vw, 108px);
}

.proposal-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 30px 0 0;
}

.proposal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  color: var(--ink);
  background: var(--gold-light);
}

.proposal-card > span {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.proposal-card ul {
  margin: 26px 0 34px;
  padding: 0;
  list-style: none;
}

.proposal-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(12,28,45,.2);
}

.proposal-card a {
  align-self: flex-start;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  text-decoration: none;
}

.print-bar {
  display: flex;
  justify-content: center;
  padding: 24px;
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.2);
}

.print-button {
  color: var(--ink);
  background: var(--aqua);
}

.redirect {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.redirect h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 500;
  letter-spacing: -.07em;
  line-height: .8;
}

@media (max-width: 1050px) {
  .hero,
  .kit-hero {
    grid-template-columns: 1fr .82fr;
  }

  .portrait-frame {
    width: min(43vw, 520px);
  }

  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }

  .eco-clinic,
  .eco-education,
  .eco-tech {
    grid-column: auto;
  }

  .eco-tech {
    grid-column: 1 / 3;
  }

  .channel-grid {
    grid-template-columns: 1fr 1fr;
  }

  .channel-feature {
    grid-column: 1 / 3;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 72px);
    padding: 20px;
    background: var(--porcelain);
    border-bottom: var(--line);
    overflow: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 18px 8px;
    border-bottom: var(--line);
  }

  .nav-links .nav-cta {
    margin-top: 12px;
    text-align: center;
  }

  .hero,
  .kit-hero,
  .manifesto-grid,
  .ecosystem-heading,
  .content-heading,
  .closing,
  .overview-grid,
  .language-heading,
  .formats-heading,
  .proposal {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 58px;
  }

  .hero-copy {
    padding-bottom: 44px;
  }

  .hero-portrait {
    min-height: 700px;
    padding: 20px 46px 50px;
  }

  .portrait-frame {
    width: min(78vw, 580px);
  }

  .portrait-note {
    right: 14px;
  }

  .hero-index {
    display: none;
  }

  .proof-strip,
  .kit-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip > div:nth-child(2),
  .kit-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip > div:nth-child(-n+2),
  .kit-metrics > div:nth-child(-n+2) {
    border-bottom: var(--line);
  }

  .storyboard {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 520px 420px 420px;
  }

  .story-large {
    grid-row: 1;
  }

  .story-tall {
    grid-row: 1;
  }

  .story-wide {
    grid-column: 1 / 3;
    grid-row: 2;
  }

  .story-extra {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .channel-grid {
    grid-template-columns: 1fr;
  }

  .channel-feature {
    grid-column: auto;
  }

  .paths-grid a {
    grid-template-columns: 1fr auto;
  }

  .paths-grid span {
    grid-column: 1 / 3;
  }

  .closing-monogram {
    min-height: 360px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-year {
    display: none;
  }

  .kit-intro-image {
    min-height: 720px;
  }

  .kit-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 560px 320px;
  }

  .gallery-large {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .formats-grid,
  .evidence-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proposal-card {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .hero h1,
  .kit-hero h1 {
    font-size: clamp(4.2rem, 21vw, 6.2rem);
  }

  .hero-lead {
    margin-top: 34px;
  }

  .hero-actions,
  .closing-actions,
  .proposal-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-portrait {
    min-height: 570px;
    padding: 12px 30px 40px;
  }

  .portrait-frame {
    width: min(86vw, 480px);
    padding: 10px;
  }

  .proof-strip,
  .kit-metrics {
    grid-template-columns: 1fr;
  }

  .proof-strip > div,
  .kit-metrics > div {
    border-right: 0;
    border-bottom: var(--line);
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .manifesto h2,
  .ecosystem h2,
  .content-lab h2,
  .paths h2,
  .closing h2,
  .kit-overview h2,
  .kit-territories h2,
  .language h2,
  .formats h2,
  .evidence h2,
  .proposal h2 {
    font-size: clamp(3rem, 15vw, 5.2rem);
  }

  .storyboard {
    display: block;
  }

  .story-card {
    min-height: 520px;
    margin-bottom: 14px;
  }

  .ecosystem-grid,
  .formats-grid,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .eco-tech {
    grid-column: auto;
  }

  .eco-card {
    min-height: 420px;
  }

  .paths-grid strong {
    font-size: 1.6rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .kit-intro-image {
    min-height: 610px;
  }

  .kit-gallery {
    display: block;
  }

  .kit-gallery figure,
  .gallery-quote {
    min-height: 480px;
    margin-bottom: 14px;
  }

  .gallery-quote {
    min-height: 300px;
  }

  .territory-list article {
    grid-template-columns: 62px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

@media print {
  @page {
    margin: 12mm;
  }

  .site-header,
  .site-footer,
  .print-bar,
  .menu-button {
    display: none !important;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 10pt;
  }

  .kit-hero,
  .kit-territories,
  .formats,
  .proposal {
    break-inside: avoid;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }

  .section {
    padding: 34px 18px;
  }

  .formats-grid article,
  .evidence-grid a {
    min-height: auto;
  }
}
