:root {
  color-scheme: dark;
  --ink: #0d0f0e;
  --ink-soft: #151817;
  --ink-raised: #1c201e;
  --paper: #f1efe8;
  --paper-soft: #d7d3c8;
  --muted: #9b9d96;
  --line: rgba(241, 239, 232, 0.16);
  --line-strong: rgba(241, 239, 232, 0.32);
  --copper: #c98a4a;
  --copper-bright: #e1a15f;
  --cyan: #5ec4bc;
  --blue: #7c9fc1;
  --red: #e56b62;
  --green: #78bd8a;
  --max: 1240px;
  --pad: clamp(20px, 5vw, 72px);
  --section: clamp(72px, 10vw, 136px);
  --display: "Cormorant Garamond", Georgia, serif;
  --sans: "Syne", sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--paper-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.98;
}

h1 {
  max-width: 980px;
  font-size: clamp(58px, 13vw, 142px);
}

h2 {
  font-size: clamp(42px, 7.8vw, 88px);
}

h3 {
  font-size: clamp(30px, 4vw, 48px);
}

::selection {
  background: var(--copper);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border: 1px solid var(--paper);
  background: var(--ink);
  color: var(--paper);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(13, 15, 14, 0.92);
  backdrop-filter: blur(16px);
}

.wordmark {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

.wordmark span {
  color: var(--copper-bright);
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 92px var(--pad) 40px;
  opacity: 0;
  background: var(--ink);
  transition: opacity 180ms ease, visibility 180ms ease;
}

.mobile-nav.is-open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 34px;
}

.mobile-nav .nav-contact {
  margin-top: 20px;
  justify-content: center;
  border: 1px solid var(--copper);
  background: var(--copper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
}

.container {
  width: min(100%, calc(var(--max) + (2 * var(--pad))));
  margin-inline: auto;
  padding-inline: var(--pad);
}

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

.section-compact {
  padding-block: clamp(56px, 7vw, 92px);
}

.section-rule {
  border-top: 1px solid var(--line);
}

.section-paper {
  background: var(--paper);
  color: var(--ink);
}

.section-paper p {
  color: #4f5551;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--copper-bright);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-paper .eyebrow {
  color: #946132;
}

.lead {
  max-width: 720px;
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.body-copy {
  max-width: 650px;
  font-size: 16px;
  line-height: 1.75;
}

.muted {
  color: var(--muted);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--paper);
  transform: translateY(-2px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  border-color: var(--copper-bright);
  background: var(--copper-bright);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(880px, 92svh);
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 15, 14, 0.94) 0%, rgba(13, 15, 14, 0.56) 54%, rgba(13, 15, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(13, 15, 14, 0.98) 0%, transparent 48%);
  content: "";
}

.hero-media video,
.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 132px;
  padding-bottom: clamp(42px, 7vw, 76px);
}

.hero h1 {
  text-wrap: balance;
}

.hero-copy {
  display: grid;
  gap: 26px;
  margin-top: 32px;
}

.hero-copy p {
  max-width: 610px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-note {
  display: flex;
  max-width: 410px;
  align-items: flex-start;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
}

.hero-note .signal-dot {
  margin-top: 5px;
}

.motion-control {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  z-index: 3;
  display: none;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: rgba(13, 15, 14, 0.72);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.motion-control svg {
  width: 15px;
  height: 15px;
}

.proof-rail {
  display: grid;
  border-bottom: 1px solid var(--line);
}

.proof-rail > div {
  min-height: 112px;
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--line);
}

.proof-rail > div:last-child {
  border-bottom: 0;
}

.proof-rail strong {
  display: block;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.proof-rail span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.split-heading {
  display: grid;
  gap: 34px;
  margin-bottom: clamp(48px, 8vw, 82px);
}

.split-heading h2 {
  max-width: 780px;
}

.proof-layout {
  display: grid;
  gap: 26px;
}

.proof-copy {
  align-self: center;
}

.proof-copy h3 {
  margin-bottom: 22px;
}

.proof-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.proof-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 14px;
}

.proof-list strong {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
}

.evidence-stack {
  position: relative;
  min-height: 470px;
}

.evidence-frame {
  overflow: hidden;
  border: 1px solid rgba(13, 15, 14, 0.22);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(13, 15, 14, 0.18);
}

.evidence-frame img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
}

.evidence-frame-secondary {
  width: 88%;
  margin: -36px 0 0 auto;
}

.evidence-caption {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 0;
  color: #656b67;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.evidence-caption strong {
  color: #252927;
  font-weight: 500;
}

.product-index {
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  gap: 22px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.product-row:hover .product-arrow {
  transform: translate(3px, -3px);
}

.product-number {
  color: var(--copper-bright);
  font-family: var(--mono);
  font-size: 11px;
}

.product-row h3 {
  font-size: clamp(34px, 5vw, 58px);
}

.product-row p {
  max-width: 650px;
  font-size: 15px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.tag-live {
  border-color: rgba(94, 196, 188, 0.45);
  color: var(--cyan);
}

.product-arrow {
  align-self: start;
  justify-self: end;
  color: var(--paper);
  transition: transform 160ms ease;
}

.product-arrow svg {
  width: 24px;
  height: 24px;
}

.journey {
  position: relative;
  min-height: min(780px, 90svh);
  overflow: hidden;
  background: #080a09;
}

.journey video,
.journey img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.journey::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 9, 0.94), rgba(8, 10, 9, 0.4) 62%, rgba(8, 10, 9, 0.08));
  content: "";
}

.journey-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: min(780px, 90svh);
  align-items: center;
}

.journey .motion-control {
  position: absolute;
}

.journey-copy {
  max-width: 620px;
}

.journey-copy h2 {
  margin-bottom: 26px;
}

.journey-disclosure {
  display: flex;
  gap: 10px;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
}

.signal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(94, 196, 188, 0.14);
}

.steps {
  counter-reset: step;
  border-top: 1px solid rgba(13, 15, 14, 0.2);
}

.step {
  counter-increment: step;
  display: grid;
  gap: 16px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(13, 15, 14, 0.2);
}

.step::before {
  color: #946132;
  content: "0" counter(step);
  font-family: var(--mono);
  font-size: 11px;
}

.step h3 {
  font-size: 32px;
}

.step p {
  max-width: 650px;
  font-size: 15px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 116px);
  border-top: 1px solid var(--line);
}

.cta-band::before {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.cta-content {
  position: relative;
  display: grid;
  gap: 32px;
}

.cta-content h2 {
  max-width: 850px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img,
.page-hero-media video {
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 15, 14, 0.96), rgba(13, 15, 14, 0.42)), linear-gradient(0deg, rgba(13, 15, 14, 0.92), transparent 58%);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 150px 58px;
}

.page-hero h1 {
  font-size: clamp(52px, 10vw, 112px);
}

.page-hero p {
  max-width: 700px;
  margin-top: 26px;
  font-size: clamp(17px, 2vw, 22px);
}

.detail-grid {
  display: grid;
  gap: 44px;
}

.detail-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(40px, 6vw, 68px);
}

.detail-aside {
  border-top: 1px solid var(--line);
}

.detail-aside-row {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-aside-row dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.detail-aside-row dd {
  margin: 0;
  color: var(--paper);
  font-size: 14px;
}

.film-grid {
  display: grid;
  gap: 28px;
}

.film-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-soft);
}

.film-card video,
.film-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #090a09;
}

.film-card-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.film-card-copy h3 {
  font-size: 32px;
}

.film-card-copy p {
  font-size: 14px;
}

.film-label {
  color: var(--copper-bright);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.quote {
  max-width: 1020px;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
}

.principles {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.principle {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.principle h3 {
  margin-bottom: 12px;
  font-size: 31px;
}

.principle p {
  max-width: 620px;
  font-size: 14px;
}

.contact-grid {
  display: grid;
  gap: 52px;
}

.contact-direct {
  display: grid;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.contact-direct a {
  width: fit-content;
  border-bottom: 1px solid var(--copper);
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 48px);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--ink-soft);
}

.field-row {
  display: grid;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  outline: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 16px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(94, 196, 188, 0.12);
}

.contact-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 11px;
}

.article-grid {
  display: grid;
  gap: 54px 28px;
  margin-top: 56px;
}

.article-card {
  display: grid;
  align-content: start;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 2px;
  background: var(--ink-raised);
}

.article-card-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 239, 232, 0.12);
  content: "";
  pointer-events: none;
}

.article-card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.article-card-copy {
  display: grid;
  gap: 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
}

.article-meta span + span::before {
  margin-right: 18px;
  color: var(--copper);
  content: "/";
}

.article-card h2 {
  max-width: 740px;
  font-size: clamp(34px, 5vw, 56px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--paper-soft);
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.text-link svg {
  width: 15px;
  height: 15px;
  color: var(--copper-bright);
  transition: transform 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(2px, -2px);
}

.article-hero {
  padding: clamp(138px, 17vw, 210px) var(--pad) clamp(54px, 8vw, 96px);
  background: var(--ink-soft);
}

.article-hero-inner {
  display: grid;
  gap: 28px;
}

.article-hero h1 {
  max-width: 1120px;
  font-size: clamp(50px, 9vw, 108px);
}

.article-back {
  margin-bottom: 16px;
}

.article-back:hover svg,
.article-back:focus-visible svg {
  transform: translate(-2px, 0);
}

.article-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin-top: clamp(-28px, -3vw, -48px);
  border: 1px solid var(--line);
  background: var(--ink-raised);
}

.article-image img {
  height: 100%;
  object-fit: cover;
}

.article-layout {
  display: grid;
  gap: 48px;
  padding-top: clamp(64px, 9vw, 116px);
  padding-bottom: clamp(82px, 11vw, 144px);
}

.article-aside {
  display: grid;
  align-content: start;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.article-aside p {
  font-size: 13px;
}

.article-body {
  max-width: 760px;
}

.article-body p,
.article-body li {
  color: var(--paper-soft);
  font-family: Georgia, serif;
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.75;
}

.article-body p + p,
.article-body p + ul,
.article-body p + ol,
.article-body ul + p,
.article-body ol + p {
  margin-top: 24px;
}

.article-body h2,
.article-body h3 {
  margin-top: 64px;
  margin-bottom: 22px;
  line-height: 1.06;
}

.article-body h2 {
  font-size: clamp(38px, 5vw, 56px);
}

.article-body h3 {
  font-size: clamp(30px, 4vw, 42px);
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 14px;
  margin-bottom: 0;
  padding-left: 24px;
}

.article-body strong {
  color: var(--paper);
  font-weight: 600;
}

.policy-layout {
  display: grid;
  gap: 48px;
}

.policy-copy {
  max-width: 760px;
}

.policy-copy h3 {
  margin-top: 42px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 42px);
}

.policy-copy h3:first-child {
  margin-top: 0;
}

.policy-copy p {
  color: #4f5551;
  font-family: Georgia, serif;
  font-size: 18px;
  line-height: 1.7;
}

.policy-copy a {
  color: #276d68;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 52px var(--pad) 26px;
  border-top: 1px solid var(--line);
  background: #090a09;
}

.footer-grid {
  display: grid;
  gap: 40px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-copy {
  max-width: 400px;
  margin-top: 14px;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.footer-links a {
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  width: min(100%, var(--max));
  margin: 42px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #737871;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

@media (min-width: 700px) {
  .hero-copy {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
    align-items: end;
  }

  .proof-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-rail > div {
    padding-inline: 26px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

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

  .product-row {
    grid-template-columns: 48px minmax(220px, 0.72fr) minmax(280px, 1fr) auto;
    align-items: center;
    gap: 26px;
  }

  .step {
    grid-template-columns: 48px minmax(180px, 0.55fr) minmax(280px, 1fr);
    align-items: start;
    gap: 26px;
  }

  .film-grid,
  .principles,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
    align-items: end;
  }

  .article-card-featured .article-card-copy {
    padding-bottom: 12px;
  }

  .principle:nth-child(odd) {
    padding-right: 30px;
    border-right: 1px solid var(--line);
  }

  .principle:nth-child(even) {
    padding-left: 30px;
  }

  .field-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (min-width: 960px) {
  .site-header {
    min-height: 76px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .desktop-nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: var(--muted);
    font-size: 12px;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 7px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--copper);
    content: "";
    transition: transform 160ms ease;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible,
  .desktop-nav a.is-active {
    color: var(--paper);
  }

  .desktop-nav a:hover::after,
  .desktop-nav a:focus-visible::after,
  .desktop-nav a.is-active::after {
    transform: scaleX(1);
  }

  .desktop-nav .nav-contact {
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid var(--copper);
    background: var(--copper);
    color: var(--ink);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
  }

  .desktop-nav .nav-contact::after {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .motion-control {
    display: inline-flex;
  }

  .split-heading {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    align-items: end;
  }

  .proof-layout {
    grid-template-columns: minmax(320px, 0.7fr) minmax(520px, 1.3fr);
    gap: clamp(58px, 8vw, 108px);
  }

  .detail-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    gap: clamp(70px, 10vw, 128px);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
    align-items: start;
    gap: clamp(70px, 9vw, 120px);
  }

  .article-layout,
  .policy-layout {
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
    gap: clamp(58px, 8vw, 110px);
  }

  .article-aside {
    position: sticky;
    top: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
