:root {
  --coal: #0a0b09;
  --coal-soft: #151613;
  --paper: #f1ede4;
  --paper-deep: #e8e0d2;
  --white: #fffdf7;
  --ink: #181a17;
  --muted: #686b64;
  --line: rgba(17, 19, 16, 0.16);
  --line-light: rgba(255, 253, 247, 0.23);
  --signal: #f05a1a;
  --signal-dark: #c83e18;
  --sand: #c69a57;
  --pine: #26342c;
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --header-height: 82px;
  --shell: 1440px;
  --reading: 760px;
  --section-space: clamp(5rem, 9vw, 9rem);
}

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

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

picture {
  display: block;
}

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

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

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

p,
h1,
h2,
h3,
h4,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.8rem, 6.6vw, 6.8rem);
}

h2 {
  font-size: clamp(2.15rem, 4.2vw, 4.6rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

::selection {
  background: var(--signal);
  color: var(--white);
}

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

.shell {
  width: min(calc(100% - 40px), var(--reading));
  margin-inline: auto;
}

.shell--wide {
  width: min(calc(100% - 64px), var(--shell));
}

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

.section--dark {
  background: var(--coal);
  color: var(--white);
}

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #6b6256;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--signal);
  content: "";
}

.eyebrow--light {
  color: rgba(255, 253, 247, 0.7);
}

.lead,
.prose-large {
  color: #474b45;
  font-size: clamp(1.06rem, 1.1vw, 1.25rem);
  line-height: 1.9;
}

.muted-light {
  color: rgba(255, 253, 247, 0.6);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button--signal {
  background: var(--signal);
  color: var(--white);
}

.button--signal:hover {
  background: var(--signal-dark);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(17, 19, 16, 0.16);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: var(--white);
  background: rgba(17, 19, 16, 0.48);
}

.button--dark {
  background: var(--coal);
  color: var(--white);
}

.button--dark:hover {
  background: var(--signal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.92rem;
  font-weight: 760;
}

.text-link span {
  color: var(--signal);
  font-size: 1.05em;
}

.text-link--small {
  font-size: 0.82rem;
}

.text-link--light {
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--white);
  color: var(--coal);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.media-fill,
.media-fill img {
  width: 100%;
  height: 100%;
}

.media-fill img {
  object-fit: cover;
}

/* Header */
.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line-light);
  background: rgba(10, 11, 9, 0.68);
  color: var(--white);
  transition: background-color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
  border-bottom-color: rgba(255, 253, 247, 0.12);
  background: rgba(17, 19, 16, 0.96);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1rem, 2.5vw, 2.75rem);
}

.site-identity {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.site-identity::before {
  width: 30px;
  height: 3px;
  flex: 0 0 30px;
  background: var(--signal);
  content: "";
}

.site-identity__words {
  display: grid;
  gap: 0.28rem;
}

.site-identity__words strong {
  font-size: 1.08rem;
  font-weight: 820;
  letter-spacing: 0.05em;
}

.site-identity__words small {
  color: rgba(255, 253, 247, 0.55);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.13em;
}

.primary-navigation {
  justify-self: end;
}

.primary-navigation .menu,
.footer-menu {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: clamp(0.85rem, 1.55vw, 1.7rem);
  list-style: none;
}

.primary-navigation .menu a {
  position: relative;
  display: block;
  padding-block: 0.75rem;
  font-size: 0.81rem;
  font-weight: 680;
}

.primary-navigation .menu a::after {
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 1px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation .menu a:hover::after,
.primary-navigation .current-menu-item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-action {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0.55rem 0.95rem;
  background: var(--signal);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
}

/* Hero */
.home-hero {
  position: relative;
  min-height: min(880px, 100svh);
  overflow: hidden;
  background: var(--coal);
  color: var(--white);
}

.home-hero__media,
.home-hero__veil {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  object-position: center 52%;
  scale: 1.005;
}

.home-hero__veil {
  background:
    linear-gradient(90deg, rgba(7, 9, 7, 0.88) 0%, rgba(7, 9, 7, 0.65) 38%, rgba(7, 9, 7, 0.06) 73%),
    linear-gradient(0deg, rgba(7, 9, 7, 0.76) 0%, transparent 42%);
}

.home-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: min(880px, 100svh);
  align-items: end;
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: clamp(5.5rem, 10vh, 8rem);
  grid-template-columns: minmax(0, 1fr) 275px;
  gap: clamp(3rem, 8vw, 8rem);
}

.home-hero__copy {
  max-width: 850px;
  min-width: 0;
}

.home-hero h1 {
  max-width: 9.4em;
  margin-top: 1.15rem;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.home-hero__intro {
  max-width: 625px;
  margin-top: 1.5rem;
  color: rgba(255, 253, 247, 0.8);
  font-size: clamp(1rem, 1.2vw, 1.23rem);
  line-height: 1.85;
}

.home-hero .button-row {
  margin-top: 2.1rem;
}

.home-hero__field-note {
  align-self: end;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 253, 247, 0.42);
}

.home-hero__field-note > span {
  color: rgba(255, 253, 247, 0.55);
  font-family: var(--font-mono);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

.home-hero__field-note strong {
  display: block;
  margin-top: 1rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.home-hero__field-note p {
  margin-top: 0.6rem;
  color: rgba(255, 253, 247, 0.66);
  font-size: 0.87rem;
  line-height: 1.7;
}

.home-hero__scroll {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 253, 247, 0.58);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  writing-mode: vertical-rl;
}

.home-hero__scroll i {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--signal) 0 35%, rgba(255,255,255,.35) 35%);
}

.reveal {
  opacity: 1;
}

/* Brand definition */
.manifesto {
  background: var(--paper);
}

.manifesto__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.manifesto h2 {
  max-width: 12em;
  margin-top: 1.4rem;
}

.manifesto__copy {
  padding-top: 2.2rem;
}

.manifesto__copy p + p {
  margin-top: 1.4rem;
}

/* Journey */
.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading--split {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 7vw, 7rem);
}

.section-heading h2 {
  margin-top: 1.35rem;
}

.section-heading--split > p {
  padding-bottom: 0.35rem;
  color: rgba(255, 253, 247, 0.62);
  line-height: 1.85;
}

.section-heading--dark > p {
  color: var(--muted);
}

.route-grid {
  display: grid;
  min-height: 505px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 0.83fr 1.34fr 0.83fr;
}

.route-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  overflow: hidden;
  border-right: 1px solid var(--line-light);
}

.route-card:last-child {
  border-right: 0;
}

.route-card__number {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  color: rgba(255, 253, 247, 0.32);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.route-card h3 {
  max-width: 9em;
  margin-top: 0.9rem;
}

.route-card > p:last-child {
  margin-top: 1rem;
  color: rgba(255, 253, 247, 0.58);
  font-size: 0.9rem;
  line-height: 1.75;
}

.route-card--image {
  padding: 0;
}

.route-card--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 10, 8, 0.88), transparent 70%);
  content: "";
}

.route-card--image img {
  transition: scale 700ms cubic-bezier(.22,.75,.25,1);
}

.route-card--image:hover img {
  scale: 1.025;
}

.route-card__overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(1.6rem, 3vw, 2.5rem);
}

/* Current camp */
.camp-feature__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.camp-feature__media {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background: var(--paper-deep);
}

.camp-feature__media img {
  object-position: center;
}

.frame-number::after {
  position: absolute;
  right: 1.2rem;
  bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  content: attr(data-number);
  font-family: var(--font-mono);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 25px rgba(0,0,0,.2);
}

.camp-feature__copy {
  align-self: center;
}

.camp-feature__copy h2 {
  margin-top: 1.3rem;
}

.camp-feature__copy .lead {
  margin-top: 1.4rem;
}

.fact-list {
  padding: 0;
  margin: 2.2rem 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.fact-list li {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 650;
}

.fact-list span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

/* Double Eleven */
.campaign {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.campaign__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.campaign__index {
  position: relative;
  min-height: 410px;
  padding: 2rem;
  overflow: hidden;
  background: var(--signal);
  color: var(--white);
}

.campaign__index .eyebrow {
  color: rgba(255,255,255,.75);
}

.campaign__index .eyebrow::before {
  background: var(--white);
}

.campaign__index > strong {
  position: absolute;
  right: -0.04em;
  bottom: -0.12em;
  display: grid;
  font-family: var(--font-mono);
  font-size: clamp(5.5rem, 13vw, 12rem);
  letter-spacing: -0.11em;
  line-height: 0.72;
}

.campaign__index > strong span {
  margin-left: 0.25em;
  color: var(--coal);
}

.campaign__content {
  align-self: center;
}

.campaign__content h2 {
  max-width: 11em;
  margin-top: 1.2rem;
}

.campaign__content .lead {
  max-width: 740px;
  margin-top: 1.25rem;
}

.campaign__content .button {
  margin-top: 2rem;
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  padding: 0.32rem 0.65rem;
  background: var(--signal);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.status-pill--outline {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.status-pill--ended {
  background: #5b5d57;
}

.campaign__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.campaign__facts span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  font-size: 0.78rem;
}

.campaign__facts strong {
  margin-left: 0.35rem;
}

/* Method */
.method {
  background: var(--paper);
}

.method-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.method-grid article {
  min-height: 300px;
  padding: clamp(1.4rem, 2.4vw, 2.2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.method-grid article > span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.method-grid h3 {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.method-grid p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Field quote */
.field-quote {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.field-quote__media,
.field-quote__veil {
  position: absolute;
  inset: 0;
}

.field-quote__veil {
  background: linear-gradient(90deg, rgba(6,8,7,.86), rgba(6,8,7,.18)), linear-gradient(0deg, rgba(6,8,7,.65), transparent 60%);
}

.field-quote__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 510px;
  flex-direction: column;
  justify-content: flex-end;
}

.field-quote blockquote {
  max-width: 960px;
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4.3vw, 4.4rem);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.25;
}

/* Coach */
.coach__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.coach__portrait-placeholder {
  position: relative;
  min-height: 555px;
  padding: 1.4rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, transparent 49.7%, rgba(255,255,255,.12) 50%, transparent 50.3%),
    var(--pine);
  color: var(--white);
}

.coach__portrait-placeholder::before {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.26);
  content: "";
}

.coach__portrait-placeholder span {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.coach__portrait-placeholder strong {
  position: absolute;
  right: -0.05em;
  bottom: -0.08em;
  color: var(--sand);
  font-family: var(--font-mono);
  font-size: clamp(7rem, 17vw, 16rem);
  letter-spacing: -0.13em;
  line-height: 0.78;
}

.coach__copy {
  align-self: center;
}

.coach__copy h2 {
  margin-top: 1.3rem;
}

.coach__copy .lead {
  max-width: 650px;
  margin-top: 1.4rem;
}

.coach__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.7rem 0 2rem;
}

.coach__topics span {
  padding: 0.42rem 0.75rem;
  border: 1px solid var(--line);
  color: #4d514b;
  font-size: 0.75rem;
}

.verification-note {
  max-width: 560px;
  margin-top: 1.4rem;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.65;
}

/* Insights */
.section-heading--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.post-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  min-width: 0;
  background: var(--white);
}

.post-card__media {
  display: block;
  height: 230px;
  overflow: hidden;
  background: var(--paper-deep);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 500ms ease;
}

.post-card:hover .post-card__media img {
  scale: 1.025;
}

.post-card__placeholder {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  overflow: hidden;
  background: var(--coal-soft);
  color: var(--white);
}

.post-card__placeholder::after {
  position: absolute;
  width: 170px;
  height: 170px;
  right: -50px;
  bottom: -65px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255,255,255,.035), 0 0 0 56px rgba(255,255,255,.025);
  content: "";
}

.post-card__placeholder b {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 3rem;
  line-height: 1;
}

.post-card__placeholder small {
  color: rgba(255,255,255,.48);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.13em;
}

.post-card__body {
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

.post-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #73766f;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
}

.post-card__meta span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-card h3 {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
}

.post-card h3 a:hover {
  color: var(--signal-dark);
}

.post-card__body > p {
  display: -webkit-box;
  min-height: 4.6em;
  margin-top: 0.9rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.83rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card .text-link {
  margin-top: 1.35rem;
}

.post-grid--archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Closing CTA */
.closing-cta {
  background: var(--sand);
}

.closing-cta__inner {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.45fr);
  column-gap: 4rem;
}

.closing-cta__inner .eyebrow {
  grid-column: 1 / -1;
}

.closing-cta h2 {
  max-width: 12em;
  margin-top: 1.2rem;
}

.closing-cta p:not(.eyebrow) {
  color: rgba(17,19,16,.68);
}

.closing-cta .button {
  width: fit-content;
  margin-top: 1.6rem;
  grid-column: 2;
}

/* Footer */
.site-footer {
  padding: clamp(4.5rem, 8vw, 7.5rem) 0 1.5rem;
  background: var(--coal);
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr 0.55fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.site-identity--footer {
  margin-bottom: 1.2rem;
}

.site-footer__brand > p,
.site-footer__statement > p:not(.eyebrow) {
  color: rgba(255,253,247,.55);
  font-size: 0.83rem;
}

.site-footer__statement h2 {
  max-width: 10em;
  margin: 1.2rem 0 1.4rem;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.site-footer__nav .eyebrow {
  margin-bottom: 1.1rem;
}

.footer-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-menu a {
  color: rgba(255,253,247,.72);
  font-size: 0.82rem;
}

.footer-menu a:hover {
  color: var(--white);
}

.footer-menu--utility {
  margin-top: 0.45rem;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  margin-top: 5rem;
  border-top: 1px solid var(--line-light);
  gap: 1rem;
  color: rgba(255,253,247,.42);
  font-size: 0.75rem;
  line-height: 1.65;
}

.site-footer__identity {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  margin: 0;
}

.site-footer__beian {
  display: inline-flex;
  color: rgba(255,253,247,.58);
  white-space: nowrap;
  text-underline-offset: 0.22em;
}

.site-footer__history-note {
  max-width: 38rem;
  margin: 0;
  text-align: right;
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  color: var(--white);
}

/* Inner page mastheads */
.page-masthead,
.article-hero,
.campaign-hero {
  padding: calc(var(--header-height) + clamp(4.5rem, 10vw, 8rem)) 0 clamp(4rem, 7vw, 6.5rem);
  background: var(--coal);
  color: var(--white);
}

.page-masthead h1,
.article-hero h1 {
  margin-top: 1.2rem;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
}

.page-masthead--archive h1 {
  max-width: 12em;
}

.page-masthead--archive .shell > p:last-child,
.page-masthead__description {
  max-width: 680px;
  margin-top: 1.4rem;
  color: rgba(255,253,247,.62);
  font-size: 1rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: rgba(255,253,247,.5);
  font-size: 0.72rem;
}

.breadcrumb a:hover {
  color: var(--white);
}

.article-hero__inner {
  width: min(calc(100% - 40px), 980px);
}

.article-hero .eyebrow {
  display: block;
}

.article-hero .eyebrow::before {
  display: none;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  margin-top: 1.8rem;
  color: rgba(255,253,247,.55);
  font-family: var(--font-mono);
  font-size: 0.67rem;
}

.article-featured {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.article-featured img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
}

.article-layout {
  display: grid;
  padding-block: clamp(3.5rem, 7vw, 7rem);
  grid-template-columns: 160px minmax(0, var(--reading));
  justify-content: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.article-rail {
  position: sticky;
  top: 1.5rem;
  align-self: start;
  padding-top: 0.3rem;
}

.article-rail > span {
  display: block;
  margin-top: 1rem;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 2.3rem;
  font-weight: 750;
}

.article-rail > a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.historical-notice {
  padding: 1.15rem 1.25rem;
  margin-bottom: 2.3rem;
  border-left: 4px solid var(--signal);
  background: #ebe3d6;
}

.historical-notice strong {
  font-size: 0.88rem;
}

.historical-notice p {
  margin-top: 0.35rem;
  color: #555951;
  font-size: 0.78rem;
  line-height: 1.7;
}

.historical-notice__links,
.article-topic-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}

.historical-notice__links a,
.article-topic-links a {
  border-bottom: 1px solid var(--signal);
  font-weight: 700;
}

.entry-content {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.9;
  overflow-wrap: anywhere;
}

.entry-content > * + * {
  margin-top: 1.4em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  margin-top: 1.8em;
}

.entry-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.entry-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.entry-content a {
  border-bottom: 1px solid var(--signal);
}

.entry-content a:hover {
  color: var(--signal-dark);
}

.entry-content img,
.entry-content video,
.entry-content iframe {
  max-width: 100%;
}

.entry-content iframe {
  width: 100%;
}

.entry-content figure,
.entry-content .wp-caption {
  max-width: 100% !important;
}

.entry-content figcaption,
.entry-content .wp-caption-text {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.entry-content blockquote {
  padding: 0.4rem 0 0.4rem 1.4rem;
  border-left: 3px solid var(--signal);
  color: #444740;
  font-size: 1.15em;
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.entry-content th,
.entry-content td {
  padding: 0.7rem;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.entry-content th {
  background: var(--paper-deep);
}

.entry-content pre {
  padding: 1rem;
  overflow-x: auto;
  background: var(--coal);
  color: var(--white);
  font-size: 0.82rem;
}

.entry-content code {
  font-family: var(--font-mono);
}

.page-content {
  padding-block: clamp(3.5rem, 7vw, 7rem);
}

.article-footer {
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

.article-topic-links {
  margin-top: 1.2rem;
  font-size: 0.78rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.72rem;
}

.tag-list > span {
  margin-right: 0.5rem;
  color: var(--muted);
  font-family: var(--font-mono);
}

.tag-list a {
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--line);
}

.post-navigation {
  display: grid;
  padding-block: 2rem 5rem;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.post-navigation a {
  font-weight: 680;
}

.pagination {
  margin-top: 3rem;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.78rem;
}

.pagination .current,
.pagination a:hover {
  background: var(--coal);
  color: var(--white);
}

.search-form {
  display: flex;
  max-width: 620px;
  margin-top: 1.5rem;
}

.search-form label {
  flex: 1;
}

.search-form input {
  width: 100%;
  min-height: 50px;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.search-form button {
  min-width: 88px;
  border: 0;
  background: var(--signal);
  color: var(--white);
  font-weight: 700;
}

.empty-state {
  max-width: 620px;
  padding-block: 3rem;
}

.empty-state p {
  margin-top: 0.75rem;
  color: var(--muted);
}

/* Campaign detail */
.campaign-hero__grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(210px, 0.65fr);
  gap: 3rem;
}

.campaign-hero h1 {
  max-width: 10em;
  margin-top: 1.3rem;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
}

.campaign-hero .status-pill {
  margin-top: 1.5rem;
}

.campaign-hero__grid > div:first-child > p:last-child {
  max-width: 680px;
  margin-top: 1.4rem;
  color: rgba(255,253,247,.62);
}

.campaign-hero__number {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
  font-family: var(--font-mono);
}

.campaign-hero__number span {
  display: block;
  color: rgba(255,253,247,.55);
  font-size: 1rem;
}

.campaign-hero__number strong {
  display: block;
  color: var(--signal);
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: -0.1em;
  line-height: 1;
}

.campaign-detail__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.campaign-card-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.campaign-card {
  display: grid;
  background: var(--white);
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
}

.campaign-card__year {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  overflow: hidden;
  background: var(--signal);
  color: var(--white);
  font-family: var(--font-mono);
}

.campaign-card__year span {
  font-size: 0.82rem;
}

.campaign-card__year strong {
  margin: 0 -0.06em -0.12em 0;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  letter-spacing: -0.11em;
  line-height: 0.82;
}

.campaign-card__body {
  align-self: center;
  padding: clamp(1.7rem, 4vw, 3.5rem);
}

.campaign-card h2 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.campaign-card__body > p {
  max-width: 680px;
  margin-top: 1rem;
  color: var(--muted);
}

.campaign-card__price {
  display: block;
  margin-top: 1.4rem;
  color: var(--signal-dark);
  font-family: var(--font-mono);
  font-size: 1.6rem;
}

.campaign-card .text-link {
  margin-top: 1.5rem;
}

.campaign-summary {
  position: sticky;
  top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.campaign-summary h2 {
  font-size: 1.5rem;
}

.campaign-summary dl {
  margin-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.campaign-summary dl > div {
  display: grid;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 6em 1fr;
  gap: 1rem;
  font-size: 0.78rem;
}

.campaign-summary dt {
  color: var(--muted);
}

.campaign-summary dd {
  font-weight: 700;
}

.campaign-summary .button {
  width: 100%;
  margin-top: 1.2rem;
}

/* 404 and comments */
.not-found {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 5rem);
}

.not-found__inner {
  position: relative;
}

.not-found__inner > strong {
  display: block;
  margin-top: 1rem;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: clamp(7rem, 22vw, 18rem);
  letter-spacing: -0.12em;
  line-height: 0.85;
}

.not-found h1 {
  margin-top: 1.5rem;
  font-size: clamp(2rem, 4vw, 4rem);
}

.not-found__inner > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 1rem;
  color: rgba(255,253,247,.62);
}

.not-found .button {
  margin-top: 1.5rem;
}

.comments-area {
  padding-block: 2rem 5rem;
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-list .comment-body {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: auto 1fr;
  }

  .header-action {
    display: none;
  }

  .primary-navigation .menu {
    gap: 1rem;
  }

  .method-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .shell--wide {
    width: min(calc(100% - 40px), var(--shell));
  }

  .js .menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 102;
    align-items: center;
    justify-self: end;
    gap: 0.65rem;
    min-height: 50px;
    padding: 0.75rem 0;
    touch-action: manipulation;
  }

  .menu-toggle span {
    font-size: 0.76rem;
    font-weight: 700;
  }

  .menu-toggle i,
  .menu-toggle i::before {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-toggle i::before {
    transform: translateY(6px);
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i::before {
    transform: rotate(90deg);
  }

  .primary-navigation {
    grid-column: 1 / -1;
    justify-self: stretch;
  }

  .js .primary-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: none;
    padding: calc(var(--header-height) + 3rem) 20px 3rem;
    background: var(--coal);
  }

  .js .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation .menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .primary-navigation .menu a {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(1.4rem, 5vw, 2.2rem);
    font-weight: 680;
  }

  .primary-navigation .menu a::after {
    display: none;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
  }

  .home-hero__field-note {
    display: none;
  }

  .home-hero__veil {
    background: linear-gradient(90deg, rgba(7,9,7,.82), rgba(7,9,7,.12)), linear-gradient(0deg, rgba(7,9,7,.86), transparent 65%);
  }

  .manifesto__grid,
  .section-heading--split,
  .camp-feature__grid,
  .campaign__grid,
  .coach__grid,
  .campaign-detail__grid {
    grid-template-columns: 1fr;
  }

  .manifesto__copy {
    padding-top: 0;
  }

  .route-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .route-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .route-card:last-child {
    border-bottom: 0;
  }

  .route-card--image {
    min-height: 480px;
  }

  .camp-feature__media {
    min-height: min(65vw, 520px);
  }

  .campaign__index {
    min-height: 250px;
  }

  .coach__portrait-placeholder {
    min-height: min(105vw, 540px);
  }

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

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

  .site-footer__nav {
    grid-column: 1 / -1;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-rail {
    display: none;
  }

  .campaign-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell,
  .shell--wide {
    width: min(calc(100% - 32px), var(--shell));
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .site-identity__words small {
    display: none;
  }

  .site-identity::before {
    width: 24px;
    flex-basis: 24px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero__content {
    min-height: 760px;
    padding-bottom: 5.5rem;
  }

  .home-hero__media img {
    object-position: 61% center;
  }

  .home-hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .home-hero__intro {
    font-size: 0.94rem;
  }

  .home-hero__scroll {
    display: none;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .section-heading--inline,
  .closing-cta__inner,
  .site-footer__legal {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
  }

  .method-grid,
  .post-grid,
  .post-grid--archive,
  .site-footer__grid,
  .post-navigation,
  .campaign-hero__grid {
    grid-template-columns: 1fr;
  }

  .method-grid article {
    min-height: 240px;
  }

  .method-grid h3 {
    margin-top: 3rem;
  }

  .field-quote {
    min-height: 620px;
  }

  .field-quote__media img {
    object-position: 63% center;
  }

  .post-card__media {
    height: 215px;
  }

  .closing-cta .button {
    width: 100%;
    grid-column: auto;
  }

  .site-footer__legal {
    align-items: flex-start;
  }

  .site-footer__history-note {
    text-align: left;
  }

  .article-featured {
    width: 100%;
    margin-top: 0;
  }

  .page-masthead,
  .article-hero,
  .campaign-hero {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .campaign-hero__number {
    padding: 1.5rem 0 0;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .campaign-summary dl > div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }

  .campaign-card {
    grid-template-columns: 1fr;
  }

  .campaign-card__year {
    min-height: 210px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-form button {
    min-height: 48px;
  }
}

/* Product-culture homepage v2 */
:root {
  --font-editorial: "Source Han Serif SC", "Noto Serif CJK SC", "Songti SC", STSong, SimSun, serif;
}

.home-hero--v2 {
  min-height: min(860px, 100svh);
}

.home-hero--v2 .home-hero__media img {
  object-position: 56% 52%;
}

.home-hero--v2 .home-hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 7, 6, 0.94) 0%, rgba(5, 7, 6, 0.69) 38%, rgba(5, 7, 6, 0.05) 72%),
    linear-gradient(0deg, rgba(5, 7, 6, 0.7) 0%, transparent 44%);
}

.home-hero__content--v2 {
  min-height: min(860px, 100svh);
  align-items: center;
  padding-top: calc(var(--header-height) + 5rem);
  padding-bottom: 4rem;
  grid-template-columns: minmax(0, 920px);
}

.home-hero--v2 h1 {
  max-width: 8.5em;
  margin-top: 0;
  font-family: var(--font-editorial);
  font-size: clamp(3.6rem, 6.6vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.home-hero--v2 h1 span {
  display: block;
  word-break: keep-all;
  overflow-wrap: normal;
}

.home-hero--v2 .home-hero__copy > .eyebrow {
  margin-bottom: 1.4rem;
}

.home-hero--v2 .home-hero__intro {
  max-width: 590px;
  margin-top: 1.8rem;
}

.section-index {
  display: block;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
}

.section-index--light {
  color: var(--signal);
}

.brand-definition {
  border-top: 1px solid var(--line);
}

.brand-definition__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 72px minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.brand-definition h2,
.culture-path h2 {
  font-family: var(--font-editorial);
  font-weight: 700;
}

.brand-definition__copy {
  display: grid;
  gap: 1.4rem;
}

.brand-definition__copy .text-link {
  width: fit-content;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
}

.product-system {
  overflow: hidden;
}

.product-system__heading {
  display: grid;
  align-items: end;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.product-system__heading .section-index {
  margin-bottom: 1.5rem;
}

.product-system__heading h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.product-system__heading > p {
  color: rgba(255, 253, 247, 0.68);
  font-size: 1rem;
  line-height: 1.9;
}

.product-system__grid {
  display: grid;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
}

.product-panel {
  position: relative;
  min-width: 0;
  padding: 1.1rem 1.1rem 0;
  border-left: 1px solid var(--line-light);
}

.product-panel:last-child {
  border-right: 1px solid var(--line-light);
}

.product-panel__number {
  position: absolute;
  z-index: 2;
  top: 1.8rem;
  left: 1.8rem;
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 4.4rem);
  font-weight: 850;
  line-height: 1;
}

.product-panel__media {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: var(--coal-soft);
}

.product-panel--winter .product-panel__media {
  min-height: 390px;
}

.product-panel__media img {
  filter: saturate(0.72) contrast(1.04);
  object-position: center;
  transition: filter 260ms ease, scale 600ms cubic-bezier(.2,.65,.25,1);
}

.product-panel__media:hover img {
  filter: saturate(0.92) contrast(1.03);
  scale: 1.025;
}

.product-panel__media--pending {
  display: flex;
  align-items: flex-end;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 253, 247, 0.12);
  background: #151613;
}

.product-panel__media--pending > span {
  display: grid;
  width: 100%;
  gap: 0.35rem;
}

.product-panel__media--pending small,
.product-panel__media--pending em {
  color: rgba(255, 253, 247, 0.48);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-style: normal;
  letter-spacing: 0.1em;
}

.product-panel__media--pending strong {
  color: rgba(255, 253, 247, 0.11);
  font-size: clamp(3.6rem, 5vw, 5.5rem);
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.product-panel__body {
  padding: clamp(1.5rem, 3vw, 2.6rem) 0 0;
}

.product-panel__body h3 {
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.product-panel__body > p {
  max-width: 640px;
  margin-top: 0.7rem;
  color: rgba(255, 253, 247, 0.68);
}

.product-panel__body > .product-state {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  margin-top: 1.2rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  gap: 1rem;
}

.product-state span {
  color: var(--signal);
  font-weight: 780;
}

.product-state small {
  color: rgba(255, 253, 247, 0.48);
  font-family: var(--font-mono);
  font-size: 0.62rem;
}

.product-panel__body > .text-link {
  margin-top: 1.2rem;
}

.product-facts {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-facts div {
  min-width: 0;
  padding: 0.9rem 0.8rem 1rem 0;
  border-right: 1px solid var(--line-light);
}

.product-facts div + div {
  padding-left: 0.8rem;
}

.product-facts div:last-child {
  border-right: 0;
}

.product-facts dt {
  color: rgba(255, 253, 247, 0.45);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.product-facts dd {
  margin-top: 0.35rem;
  color: rgba(255, 253, 247, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
}

.special-program {
  display: grid;
  min-height: 150px;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 80px 1fr auto;
  gap: 1.5rem;
}

.special-program__number {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 850;
}

.special-program > span:nth-child(2) {
  display: grid;
  gap: 0.35rem;
}

.special-program small,
.special-program em {
  color: rgba(255, 253, 247, 0.5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-style: normal;
  letter-spacing: 0.09em;
}

.special-program strong {
  font-size: clamp(1.8rem, 3vw, 3.6rem);
}

.special-program b {
  color: var(--signal);
  font-size: 2rem;
  font-weight: 500;
}

.culture-path__heading {
  display: grid;
  align-items: end;
  grid-template-columns: 72px minmax(0, 1.2fr) minmax(300px, 0.6fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.culture-path__heading > p {
  color: var(--muted);
  line-height: 1.9;
}

.culture-rail {
  display: grid;
  margin-top: clamp(3rem, 6vw, 6rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.culture-rail article {
  min-width: 0;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.culture-rail article:first-child {
  padding-left: 0;
}

.culture-rail article:last-child {
  padding-right: 0;
  border-right: 0;
}

.culture-rail article > span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.culture-rail h3 {
  margin-top: 0.4rem;
  font-family: var(--font-editorial);
  font-size: 1.8rem;
}

.culture-rail__media {
  position: relative;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  margin-top: 1rem;
  overflow: hidden;
  background: var(--paper-deep);
}

.current-program-placeholder {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--coal-soft);
  color: var(--white);
  text-align: center;
}

.current-program-placeholder small,
.current-program-placeholder span {
  color: rgba(255, 253, 247, 0.5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.current-program-placeholder strong {
  margin: 1.2rem 0;
  color: var(--signal);
  font-family: var(--font-editorial);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 1;
}

.culture-rail__media img {
  /* Documentary photography stays in natural color by default. */
  filter: saturate(1.04) contrast(1.01);
  object-position: center;
}

.culture-rail article > p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.standards__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.standards__heading {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.standards__heading h2 {
  margin-top: 1.5rem;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
}

.standards__heading p {
  margin-top: 1.5rem;
  color: var(--muted);
  line-height: 1.9;
}

.standards-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.standards-list li {
  display: grid;
  align-items: baseline;
  padding: 1.55rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px minmax(150px, 0.5fr) minmax(0, 1fr);
  gap: 1rem;
}

.standards-list li > span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.standards-list li > strong {
  font-size: 1.2rem;
}

.standards-list li > p {
  color: var(--muted);
  font-size: 0.88rem;
}

.person-feature {
  overflow: hidden;
}

.person-feature__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.person-feature__portrait {
  position: relative;
  display: flex;
  min-height: 610px;
  align-items: flex-end;
  justify-content: space-between;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--line-light);
  background: #181a17;
}

.person-feature__portrait::before {
  position: absolute;
  inset: 14% 24% 0;
  border-radius: 48% 48% 8% 8%;
  border: 1px solid rgba(255, 253, 247, 0.08);
  background: #0b0c0a;
  content: "";
  filter: blur(2px);
}

.person-feature__portrait--image {
  margin: 0;
  padding: 0;
  background: #0b0c0a;
}

.person-feature__portrait--image::before {
  display: none;
}

.person-feature__portrait--image::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(5, 6, 5, 0.76) 100%);
  content: "";
  pointer-events: none;
}

.person-feature__portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.person-feature__portrait--home .person-feature__portrait-image {
  transform: scale(1.04);
  transform-origin: left center;
}

.person-feature__portrait-caption {
  position: relative;
  z-index: 2;
  color: rgba(255, 253, 247, 0.82);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.person-feature__portrait span,
.person-feature__portrait strong {
  position: relative;
  z-index: 1;
}

.person-feature__portrait span {
  color: rgba(255, 253, 247, 0.5);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.person-feature__portrait strong {
  color: rgba(255, 253, 247, 0.08);
  font-size: clamp(7rem, 15vw, 13rem);
  line-height: 0.72;
}

.person-feature__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.person-feature__copy h2 {
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
}

.person-feature__statement {
  margin-top: 1rem;
  color: var(--white);
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
}

.person-feature__copy > p:not(.person-feature__statement) {
  max-width: 620px;
  margin-top: 1.5rem;
  color: rgba(255, 253, 247, 0.66);
}

.person-feature__copy .text-link {
  margin-top: 2rem;
}

.person-feature__copy .verification-note {
  margin-top: 1.6rem;
}

.home-faq {
  background: var(--paper);
}

.home-faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.home-faq__grid h2 {
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
}

.home-faq__grid > div:first-child > p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.faq-item summary i::after {
  rotate: 90deg;
  transition: rotate 180ms ease;
}

.faq-item[open] summary i::after {
  rotate: 0deg;
}

.faq-item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-item[open] > div {
  grid-template-rows: 1fr;
}

.faq-item > div > p {
  max-width: 720px;
  overflow: hidden;
  color: var(--muted);
}

.faq-item[open] > div > p {
  padding-bottom: 1.5rem;
}

/* Stable core landing pages */
.program-hero,
.person-landing__hero,
.brand-page__hero {
  padding-top: calc(var(--header-height) + clamp(3.5rem, 7vw, 7rem));
  padding-bottom: clamp(4rem, 7vw, 7rem);
}

.program-hero__grid {
  display: grid;
  min-height: 600px;
  align-items: stretch;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.program-hero__copy {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.program-hero__copy h1,
.person-landing__hero h1,
.brand-page__hero h1 {
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.program-hero__copy > p:not(.eyebrow) {
  max-width: 600px;
  margin-top: 1.5rem;
  color: rgba(255, 253, 247, 0.7);
  font-size: 1.05rem;
  line-height: 1.9;
}

.program-hero__copy .button-row {
  margin-top: 2rem;
}

.program-hero__media {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: var(--coal-soft);
}

.program-hero__media img {
  filter: saturate(0.76) contrast(1.04);
  object-position: center;
}

.program-media-placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  border: 1px solid var(--line-light);
  background: #151613;
  color: var(--white);
  text-align: center;
}

.program-media-placeholder small {
  color: rgba(255, 253, 247, 0.45);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.program-media-placeholder strong {
  margin-top: 1rem;
  color: rgba(255, 253, 247, 0.16);
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 6vw, 6.5rem);
}

.media-disclaimer {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.65rem 0.8rem;
  background: rgba(10, 11, 9, 0.78);
  color: rgba(255, 253, 247, 0.76);
  font-size: 0.66rem;
}

.program-fact-band,
.person-fact-band {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.program-fact-band__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-fact-band__grid > div {
  min-width: 0;
  padding: 1.3rem 1.2rem 1.3rem 0;
  border-right: 1px solid var(--line);
}

.program-fact-band__grid > div + div {
  padding-left: 1.2rem;
}

.program-fact-band__grid > div:last-child {
  border-right: 0;
}

.program-fact-band__grid span,
.landing-verification__grid span {
  display: block;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.09em;
}

.program-fact-band__grid strong,
.landing-verification__grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.86rem;
  line-height: 1.5;
}

.program-definition__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.program-definition h2 {
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
  font-size: clamp(2.6rem, 4.5vw, 5rem);
}

.program-definition .prose-large {
  display: grid;
  gap: 1.5rem;
}

.program-method__grid {
  display: grid;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-method__grid > div {
  min-width: 0;
  min-height: 260px;
  padding: 1.5rem;
  border-right: 1px solid currentColor;
}

.program-method__grid > div:first-child {
  padding-left: 0;
}

.program-method__grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.program-method__grid span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.program-method__grid h2 {
  margin-top: 4rem;
  font-family: var(--font-editorial);
  font-size: 2rem;
}

.program-method__grid p {
  margin-top: 1rem;
  color: currentColor;
  opacity: 0.68;
}

.landing-verification__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 170px 170px minmax(0, 1fr) auto;
  gap: 2rem;
}

.landing-verification__grid > p {
  color: var(--muted);
  font-size: 0.84rem;
}

.landing-verification__sources {
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.source-list {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  font-size: 0.78rem;
}

.source-list > strong {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.09em;
}

.source-list ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0.55rem 1rem;
  list-style: none;
}

.source-list a {
  border-bottom: 1px solid var(--signal);
}

.source-list li {
  display: inline-flex;
  gap: 0.45rem;
  align-items: baseline;
}

.source-list time {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.source-list--pending span {
  color: var(--muted);
}

.person-landing__hero .person-feature__grid {
  min-height: 640px;
}

.person-landing__hero .person-feature__copy h1 {
  margin-top: 1.5rem;
}

.person-profile__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.person-profile__grid > aside {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
}

.person-profile__grid > aside h2 {
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.person-profile__grid > aside p {
  margin-top: 1.5rem;
  color: var(--muted);
}

.brand-page__hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.6fr);
  gap: clamp(4rem, 10vw, 10rem);
}

.brand-page__hero-grid > p {
  color: rgba(255, 253, 247, 0.7);
  font-size: 1.05rem;
  line-height: 1.9;
}

.brand-links h2 {
  max-width: 12em;
  margin-top: 1.5rem;
  font-family: var(--font-editorial);
}

.brand-links__grid {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.brand-links__grid a {
  display: grid;
  min-height: 92px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
}

.brand-links__grid span {
  color: var(--signal);
  font-family: var(--font-mono);
  font-size: 0.68rem;
}

.brand-links__grid strong {
  font-size: clamp(1.25rem, 2.5vw, 2.2rem);
}

.brand-links__grid i {
  color: var(--signal);
  font-size: 1.3rem;
  font-style: normal;
}

@media (max-width: 900px) {
  .home-hero__content--v2,
  .brand-definition__grid,
  .product-system__heading,
  .culture-path__heading,
  .standards__grid,
  .person-feature__grid,
  .home-faq__grid {
    grid-template-columns: 1fr;
  }

  .program-hero__grid,
  .program-definition__grid,
  .person-profile__grid,
  .brand-page__hero-grid,
  .landing-verification__grid {
    grid-template-columns: 1fr;
  }

  .program-hero__media {
    min-height: 520px;
  }

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

  .program-method__grid > div:nth-child(2) {
    border-right: 0;
  }

  .program-method__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid currentColor;
  }

  .program-method__grid > div:first-child,
  .program-method__grid > div:last-child {
    padding: 1.5rem;
  }

  .person-profile__grid > aside {
    position: static;
  }

  .home-hero--v2 h1 {
    max-width: 9em;
    font-size: clamp(3.2rem, 10vw, 5.8rem);
  }

  .brand-definition__grid .section-index,
  .culture-path__heading .section-index {
    margin-bottom: -0.5rem;
  }

  .product-system__heading {
    align-items: start;
    gap: 1.5rem;
  }

  .product-system__grid {
    grid-template-columns: 1fr;
  }

  .product-panel,
  .product-panel:last-child {
    border-right: 1px solid var(--line-light);
  }

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

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

  .culture-rail article:nth-child(2) {
    border-right: 0;
  }

  .culture-rail article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .culture-rail article:first-child,
  .culture-rail article:last-child {
    padding: 1.2rem;
  }

  .standards__heading {
    position: static;
  }

  .person-feature__portrait {
    min-height: 520px;
  }
}

@media (max-width: 640px) {
  .home-hero--v2 {
    min-height: 760px;
  }

  .home-hero__content--v2 {
    min-height: 760px;
    align-items: end;
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 4.5rem;
  }

  .home-hero--v2 .home-hero__media img {
    object-position: 60% center;
  }

  .home-hero--v2 h1 {
    max-width: none;
    font-size: clamp(2.62rem, 11.2vw, 3.7rem);
    line-height: 1.05;
  }

  .brand-definition__grid,
  .culture-path__heading {
    gap: 1.5rem;
  }

  .product-system__heading h2 {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  .product-panel__media,
  .product-panel--winter .product-panel__media {
    min-height: 280px;
  }

  .product-panel__number {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 2.2rem;
  }

  .product-panel__body h3 {
    font-size: 2.15rem;
  }

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

  .product-facts div:nth-child(2) {
    border-right: 0;
  }

  .product-facts div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-light);
  }

  .special-program {
    grid-template-columns: 48px 1fr;
  }

  .special-program b {
    display: none;
  }

  .culture-rail {
    grid-template-columns: 1fr;
  }

  .culture-rail article,
  .culture-rail article:first-child,
  .culture-rail article:last-child,
  .culture-rail article:nth-child(2) {
    padding: 1.2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .culture-rail article:last-child {
    border-bottom: 0;
  }

  .culture-rail__media {
    min-height: 330px;
  }

  .standards-list li {
    grid-template-columns: 40px 1fr;
  }

  .standards-list li > p {
    grid-column: 2;
  }

  .person-feature__portrait {
    min-height: 430px;
  }

  .person-feature__portrait strong {
    font-size: 7rem;
  }

  .program-hero,
  .person-landing__hero,
  .brand-page__hero {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .program-hero__copy h1,
  .person-landing__hero h1,
  .brand-page__hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .program-hero__media {
    min-height: 390px;
  }

  .program-fact-band__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-fact-band__grid > div:nth-child(2) {
    border-right: 0;
  }

  .program-fact-band__grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .program-method__grid {
    grid-template-columns: 1fr;
  }

  .program-method__grid > div,
  .program-method__grid > div:first-child,
  .program-method__grid > div:last-child,
  .program-method__grid > div:nth-child(2) {
    min-height: 220px;
    padding: 1.3rem 0;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .program-method__grid > div:last-child {
    border-bottom: 0;
  }

  .program-method__grid h2 {
    margin-top: 3rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .button,
  .home-hero__scroll,
  .article-rail,
  .post-navigation {
    display: none !important;
  }

  body,
  .section--dark,
  .article-hero,
  .page-masthead {
    background: #fff !important;
    color: #000 !important;
  }

  .article-hero,
  .page-masthead {
    padding: 1rem 0;
  }
}
