@font-face {
  font-family: "Alfa Slab One";
  src: url("assets/alfa-slab-one-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --red: #d9091c;
  --red-dark: #b30716;
  --cream: #faf6e9;
  --yellow: #ffde32;
  --charcoal: #222320;
  --ink-soft: #4c4c46;
  --line: rgba(34, 35, 32, 0.24);
  --font-display: "Alfa Slab One", Rockwell, Georgia, serif;
  --font-body: Arial, Helvetica, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --page-pad: clamp(1.25rem, 4.5vw, 4.25rem);
  --max: 1440px;
}

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

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

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

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

.hero :focus-visible,
.counter-section :focus-visible,
.record :focus-visible,
.origin-copy :focus-visible {
  outline-color: var(--yellow);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--cream);
  background: var(--charcoal);
  transform: translateY(-160%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 86px;
  padding: 0.75rem var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(34, 35, 32, 0.12);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--red);
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-date,
.meta,
.eyebrow,
.counter-heading-row,
.specimen-label,
.origin-image p {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-date {
  margin-top: 0.35rem;
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 3.4vw, 3rem);
}

.site-header nav a,
.site-footer nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
}

.site-header nav a:hover,
.site-footer nav a:hover {
  text-decoration: underline;
}

.site-header .nav-contact {
  padding-inline: 1rem;
  color: var(--cream);
  background: var(--red);
  border-radius: 999px;
}

.hero {
  color: var(--cream);
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.08), transparent 24rem),
    var(--red);
  overflow: hidden;
}

.hero-inner {
  width: min(100%, 1520px);
  min-height: 650px;
  margin-inline: auto;
  padding: 2rem var(--page-pad) 2.5rem;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(440px, 1.28fr);
  gap: clamp(0.5rem, 2vw, 2rem);
  align-items: center;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow.dark {
  color: var(--ink-soft);
}

.hero h1,
.section h2,
.origin h2,
.record h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(5.6rem, 10.8vw, 10.5rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero-deck {
  max-width: 24ch;
  margin: clamp(1.8rem, 3vw, 2.8rem) 0 1.75rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.12;
}

.button {
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 2px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-yellow {
  color: var(--charcoal);
  background: var(--yellow);
  box-shadow: 0 8px 0 rgba(34, 35, 32, 0.16);
}

.button-outline {
  border-color: var(--charcoal);
}

.button-outline:hover {
  color: var(--cream);
  background: var(--charcoal);
}

.button-dark {
  color: var(--cream);
  background: var(--charcoal);
}

.specimen {
  position: relative;
  min-width: 0;
  min-height: 600px;
  margin: 0 calc(var(--page-pad) * -1) 0 0;
  align-self: stretch;
  display: grid;
  place-items: center;
}

.specimen-disc {
  position: absolute;
  left: 50%;
  width: min(45vw, 640px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: inset 0 0 0 1px rgba(34, 35, 32, 0.08);
  transform: translateX(-50%);
}

.specimen-photo {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: -2.5rem;
  width: min(60vw, 820px);
  aspect-ratio: 862 / 665;
  overflow: hidden;
  clip-path: polygon(
    0 1.5%,
    4% 2.5%,
    8% 3.5%,
    10% 7%,
    12% 13%,
    18% 14.5%,
    25% 14%,
    34% 14.5%,
    44% 15%,
    54% 15%,
    63% 16%,
    69% 17%,
    75% 13%,
    79% 8.5%,
    84% 9%,
    88% 13%,
    91% 20%,
    96% 28%,
    100% 35%,
    97% 45%,
    99% 55%,
    96% 66%,
    99% 78%,
    96% 89%,
    100% 100%,
    0 100%,
    3% 92%,
    5% 82%,
    3% 72%,
    6% 61%,
    4% 50%,
    8% 40%,
    4% 30%,
    6% 20%,
    2% 10%
  );
  filter: drop-shadow(-1rem 0.8rem 1rem rgba(73, 0, 8, 0.24));
}

.specimen-image {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center bottom;
}

.specimen-label {
  position: absolute;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 700;
}

.specimen-label-one {
  top: 7%;
  left: -1%;
}

.specimen-label-one::after {
  content: "";
  width: 5.5rem;
  height: 1px;
  display: block;
  margin-top: 0.5rem;
  background: currentColor;
  transform: rotate(28deg);
  transform-origin: left;
}

.specimen-label-two {
  top: 8%;
  right: 34%;
  color: var(--charcoal);
}

.specimen-sticker {
  position: absolute;
  z-index: 4;
  right: 3%;
  top: 2%;
  min-width: 11.5rem;
  padding: 0.85rem 1.15rem 0.8rem;
  display: flex;
  flex-direction: column;
  color: var(--charcoal);
  background: var(--cream);
  border: 2px solid var(--charcoal);
  box-shadow: 0.4rem 0.45rem 0 rgba(34, 35, 32, 0.22);
  transform: rotate(-6deg);
  text-align: center;
  text-transform: uppercase;
}

.specimen-sticker span {
  font: 800 0.78rem/1 var(--font-body);
  letter-spacing: 0.1em;
}

.specimen-sticker strong {
  margin-top: 0.3rem;
  font: 400 1.55rem/1 var(--font-display);
}

.counter-section {
  padding: 1.1rem var(--page-pad) 1rem;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025), transparent 45%),
    var(--charcoal);
}

.counter-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.72rem;
}

.counter-heading-row p {
  margin: 0;
}

.counter {
  max-width: var(--max);
  margin: 1rem auto 0.55rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.counter-unit {
  min-width: 0;
  padding: 0.55rem clamp(0.3rem, 2vw, 1.75rem);
  text-align: center;
  border-left: 1px solid rgba(250, 246, 233, 0.42);
}

.counter-unit:first-child {
  border-left: 0;
}

.counter-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.35rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  line-height: 1;
}

.counter-unit span {
  font: 700 clamp(0.65rem, 1.2vw, 0.9rem)/1 var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.counter-foot {
  display: flex;
  align-items: start;
  justify-content: flex-end;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.counter-foot > p {
  margin: 0;
  text-transform: uppercase;
}

.counter-foot details {
  max-width: 37rem;
  text-align: right;
}

.counter-foot summary,
.origin summary {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
}

.counter-foot details p {
  margin: 0.5rem 0 0;
  color: rgba(250, 246, 233, 0.78);
  line-height: 1.55;
}

.counter-noscript {
  margin: 0.5rem 0 0;
  font: 0.72rem/1.5 var(--font-mono);
}

.bulletin {
  min-height: 58px;
  padding: 0.45rem var(--page-pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  color: var(--charcoal);
  background: var(--yellow);
  border-bottom: 1px solid rgba(34, 35, 32, 0.15);
}

.bulletin-title {
  font-family: var(--font-display);
  color: var(--red);
  text-transform: uppercase;
  white-space: nowrap;
}

.bulletin-title span {
  margin-right: 0.55rem;
  color: var(--charcoal);
  font-size: 0.65em;
}

.bulletin-item {
  margin: 0;
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-family: var(--font-mono);
  text-decoration-thickness: 1px;
  transition: opacity 180ms ease, transform 180ms ease;
}

.bulletin-item.is-changing {
  opacity: 0;
  transform: translateY(0.25rem);
}

.bulletin-toggle {
  min-width: 66px;
  min-height: 44px;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--charcoal);
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: 700 0.75rem/1 var(--font-body);
  cursor: pointer;
}

.section {
  max-width: var(--max);
  margin-inline: auto;
  padding: clamp(3.15rem, 4.5vw, 4rem) var(--page-pad);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.section-heading.compact {
  margin-bottom: 1.7rem;
}

.section h2,
.origin h2,
.record h2 {
  font-size: clamp(3rem, 4.5vw, 4rem);
  line-height: 0.95;
}

.section h2 span,
.origin h2 span,
.record h2 span {
  color: var(--red);
}

.section-intro {
  max-width: 31ch;
  margin: 0 0 0.4rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.65rem, 1.2vw, 1rem);
}

.media-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
  transition: border-color 180ms ease, transform 180ms ease;
}

.media-card:hover {
  border-color: var(--charcoal);
  transform: translateY(-2px);
}

.media-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.media-card-link:focus-visible {
  outline-offset: -4px;
}

.media-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: var(--charcoal);
}

.media-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.media-card-project .media-visual img {
  object-position: center 44%;
}

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

.play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(2.3rem, 3.5vw, 3rem);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding-left: 0.15rem;
  border-radius: 50%;
  color: var(--charcoal);
  background: var(--cream);
  box-shadow: 0 0.3rem 1rem rgba(34, 35, 32, 0.3);
  font-size: 0.78rem;
  transform: translate(-50%, -50%);
}

.media-stats {
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  background: var(--red);
  text-align: center;
}

.media-stats strong {
  font: 400 clamp(2.35rem, 5vw, 4.6rem)/0.82 var(--font-display);
}

.media-stats > span {
  margin-top: 0.25rem;
  font: 700 0.64rem/1 var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-stats small {
  margin-top: 0.55rem;
  font-size: clamp(0.6875rem, 0.75vw, 0.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.media-copy {
  min-height: 10.5rem;
  padding: clamp(0.8rem, 1.4vw, 1.15rem);
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.meta {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
}

.media-copy > strong {
  margin: 0.7rem 0 1rem;
  font: 400 clamp(1.2rem, 1.8vw, 1.65rem)/1.05 var(--font-display);
}

.media-snapshot {
  margin: -0.45rem 0 0.4rem;
  color: var(--ink-soft);
  font: 700 0.6875rem/1.2 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-action {
  min-height: 44px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.media-reference-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.media-reference-strip > a {
  min-height: 64px;
  padding: 0.7rem 0.75rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-content: center;
  gap: 0.2rem 1rem;
  text-decoration: none;
}

.media-reference-strip > a:first-child {
  border-right: 1px solid var(--line);
}

.media-reference-strip .meta {
  grid-column: 1 / -1;
}

.media-reference-strip strong {
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.2;
}

.media-reference-strip > a > span:last-child {
  align-self: end;
  font-size: 0.8rem;
  font-weight: 800;
}

.media-reference-strip > a:hover strong {
  text-decoration: underline;
}

.media-archive {
  margin-top: 1rem;
  border-block: 1px solid var(--line);
  border-bottom-width: 5px;
  border-bottom-color: var(--red);
}

.media-archive summary {
  min-height: 56px;
  padding: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.media-archive summary::-webkit-details-marker {
  display: none;
}

.media-archive summary span {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.media-archive[open] summary span {
  transform: rotate(45deg);
}

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

.media-archive-list a {
  min-height: 52px;
  padding: 0.55rem 0.35rem;
  display: grid;
  grid-template-columns: minmax(11rem, 0.55fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.media-archive-list a:last-child {
  border-bottom: 0;
}

.media-archive-list a:hover strong {
  text-decoration: underline;
}

.media-archive-list a > span:first-child {
  font: 700 0.68rem/1.25 var(--font-mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.media-archive-list a > strong {
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.05;
}

.outlived {
  --rail-pad: max(var(--page-pad), calc((100vw - var(--max)) / 2 + var(--page-pad)));
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(34, 35, 32, 0.035) 79px 80px),
    #eee5d2;
  border-block: 1px solid rgba(34, 35, 32, 0.18);
  overflow: hidden;
}

.outlived-header {
  max-width: var(--max);
  margin: 0 auto clamp(2rem, 4vw, 3.4rem);
  padding-inline: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.5fr);
  align-items: end;
  gap: clamp(2rem, 7vw, 8rem);
}

.outlived .eyebrow {
  color: var(--red);
}

.outlived h2 {
  margin: 0;
  max-width: 12ch;
  font: 400 clamp(3.4rem, 6.3vw, 6.5rem)/0.88 var(--font-display);
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.outlived h2 span {
  color: var(--red);
}

.outlived-intro {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--charcoal);
}

.outlived-intro > p:first-child {
  max-width: 34ch;
  margin: 0 0 1.3rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.still-note {
  margin: 0 0 0.9rem;
  color: var(--red);
  font: 700 0.76rem/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.still-note span {
  margin-right: 0.45rem;
  font-size: 0.72em;
}

.outlived-stage {
  position: relative;
}

.outlived-rail {
  width: 100%;
  padding: 0 var(--rail-pad) 1.35rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(20.5rem, 28vw, 25rem);
  gap: clamp(0.9rem, 1.4vw, 1.25rem);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: var(--rail-pad);
  scrollbar-color: var(--red) rgba(34, 35, 32, 0.13);
  scrollbar-width: thin;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.outlived-rail.is-looping {
  scrollbar-width: none;
  cursor: grab;
}

.outlived-rail.is-looping::-webkit-scrollbar {
  display: none;
}

.outlived-rail.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.outlived-rail::-webkit-scrollbar {
  height: 8px;
}

.outlived-rail::-webkit-scrollbar-track {
  margin-inline: var(--rail-pad);
  background: rgba(34, 35, 32, 0.13);
}

.outlived-rail::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 99px;
}

.outlived-rail:focus-visible {
  outline-color: var(--red);
  outline-offset: -5px;
}

.outlived-card {
  min-width: 0;
  min-height: 505px;
  color: var(--charcoal);
  background: var(--cream);
  border: 2px solid var(--charcoal);
  box-shadow: 8px 8px 0 var(--charcoal);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.outlived-card:hover,
.outlived-card:focus-within {
  box-shadow: 12px 12px 0 var(--charcoal);
  transform: translate(-3px, -3px);
}

.outlived-card > a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.outlived-card > a:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: -6px;
}

.outlived-art {
  position: relative;
  height: 220px;
  flex: 0 0 220px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-bottom: 2px solid var(--charcoal);
  overflow: hidden;
}

.outlived-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 45%, transparent 0 43%, rgba(34, 35, 32, 0.08) 100%);
  mix-blend-mode: multiply;
}

.outlived-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 300ms ease;
}

.outlived-card:hover .outlived-art img,
.outlived-card:focus-within .outlived-art img {
  transform: scale(1.045) rotate(-0.5deg);
}

.outlived-card-copy {
  min-height: 283px;
  padding: 1.2rem 1.35rem 1.3rem;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  align-content: start;
}

.outlived-scope,
.outlived-dates,
.outlived-source,
.outlived-verdict {
  font-family: var(--font-mono);
}

.outlived-scope {
  margin: 0 0 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.outlived-scope span {
  min-width: 2.15rem;
  padding: 0.2rem 0.35rem;
  color: var(--cream);
  background: var(--charcoal);
  text-align: center;
}

.outlived-card h3 {
  margin: 0;
  font: 400 clamp(1.75rem, 2.5vw, 2.25rem)/0.96 var(--font-display);
  letter-spacing: -0.025em;
}

.outlived-dates {
  margin: 0.55rem 0 0.75rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.outlived-line {
  margin: 0;
  max-width: 31ch;
  font-size: 0.97rem;
  font-weight: 700;
  line-height: 1.35;
}

.outlived-verdict {
  margin: 1rem 0 0.25rem;
  color: var(--ink-soft);
  font-size: 0.69rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.outlived-verdict strong {
  color: var(--red);
}

.outlived-source {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: underline;
  text-transform: uppercase;
}

.outlived-card-charcoal {
  color: var(--cream);
  background: var(--charcoal);
}

.outlived-card-charcoal .outlived-art {
  border-color: var(--cream);
}

.outlived-card-charcoal .outlived-scope,
.outlived-card-charcoal .outlived-verdict {
  color: rgba(250, 246, 233, 0.72);
}

.outlived-card-charcoal .outlived-scope span {
  color: var(--charcoal);
  background: var(--yellow);
}

.outlived-card-charcoal .outlived-dates,
.outlived-card-charcoal .outlived-verdict strong {
  color: var(--yellow);
}

.record {
  position: relative;
  max-width: calc(var(--max) - (var(--page-pad) * 2));
  padding: clamp(2rem, 3.2vw, 3rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  color: var(--cream);
  background: var(--charcoal);
  border-radius: 0.75rem;
  overflow: hidden;
}

.record-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 790px;
}

.record h2 {
  margin: 1rem 0 1.5rem;
}

.record-card > p:not(.meta) {
  max-width: 67ch;
  margin-bottom: 1.8rem;
  color: rgba(250, 246, 233, 0.8);
}

.record .button-outline {
  border-color: var(--cream);
}

.record .button-outline:hover {
  color: var(--charcoal);
  background: var(--cream);
}

.record-mark {
  width: clamp(135px, 14vw, 190px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  transform: rotate(7deg);
}

.record-mark span {
  font: 400 clamp(3rem, 5vw, 4.8rem)/0.9 var(--font-display);
}

.record-mark small {
  font: 700 0.75rem/1 var(--font-mono);
  text-transform: uppercase;
}

.origin {
  max-width: var(--max);
  margin: clamp(3rem, 4.5vw, 4rem) auto 0;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: start;
}

.origin-image {
  position: relative;
  min-height: 0;
}

.origin-image img {
  width: 100%;
  height: auto;
}

.origin-image p {
  position: static;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
}

.origin-copy {
  padding: clamp(2rem, 3.6vw, 3.5rem);
  color: var(--cream);
  background: var(--red);
}

.origin-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
}

.origin-copy > p:not(.eyebrow) {
  max-width: 54ch;
  margin-block: 0.9rem;
  font-size: 1.05rem;
}

.origin-copy > p a {
  color: inherit;
  font-weight: 800;
}

.site-footer {
  padding: 1.5rem var(--page-pad);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem 2rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  font-weight: 800;
  text-decoration: none;
}

.site-footer .footer-actions {
  justify-self: end;
  gap: 1.5rem;
}

.footer-actions > a {
  gap: 0.4rem;
}

.site-footer .media-kit-download {
  min-width: 0;
  min-height: 64px;
  padding: 0.65rem 1rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.15rem;
  color: var(--charcoal);
  background: var(--yellow);
  border-radius: 0.35rem;
}

.media-kit-download small {
  font: 700 0.62rem/1.4 var(--font-mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-credit {
  grid-column: 1 / -1;
  margin: 0;
  max-width: 46rem;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1.22fr);
  }

  .specimen {
    min-height: 520px;
  }

  .hero h1 {
    font-size: clamp(5.1rem, 10vw, 8.2rem);
  }

  .specimen-label-two {
    display: none;
  }

}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 8rem;
  }

  .site-header {
    min-height: 154px;
    padding-block: 0.8rem 0.6rem;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
  }

  .site-header nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.15rem 0.5rem;
    font-size: 0.78rem;
  }

  .site-header nav a {
    min-height: 44px;
    justify-content: center;
  }

  .site-header .nav-contact {
    margin-inline: 0.25rem;
  }

  .hero-inner {
    min-height: 0;
    padding-top: 1.6rem;
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .hero h1 {
    font-size: clamp(5rem, 24vw, 8.5rem);
  }

  .hero-copy > .eyebrow {
    display: none;
  }

  .hero-deck {
    font-size: 1.35rem;
    margin: 1.15rem 0;
  }

  .specimen {
    min-height: min(75vw, 470px);
    height: min(75vw, 470px);
    margin-inline: calc(var(--page-pad) * -1);
  }

  .specimen-disc {
    width: min(66vw, 480px);
  }

  .specimen-photo {
    bottom: -2.5rem;
    right: auto;
    left: 50%;
    width: min(86vw, 660px);
    transform: translateX(-50%);
  }

  .specimen-label-one {
    left: 8vw;
    top: 11%;
  }

  .specimen-label-two { display: none; }

  .specimen-sticker {
    right: 8vw;
    top: 0;
    min-width: 9.4rem;
    padding: 0.7rem 0.8rem 0.65rem;
  }

  .specimen-sticker strong {
    font-size: 1.2rem;
  }

  .counter-section {
    padding-top: 1rem;
  }

  .counter-heading-row {
    align-items: start;
    flex-direction: column;
    gap: 0.2rem;
  }

  .counter {
    grid-template-columns: repeat(6, 1fr);
    row-gap: 1rem;
  }

  .counter-unit {
    grid-column: span 2;
    border-left: 1px solid rgba(250, 246, 233, 0.42);
  }

  .counter-unit:nth-child(3) {
    border-left: 0;
  }

  .counter-primary {
    grid-column: span 3;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(250, 246, 233, 0.22);
  }

  .counter-primary:first-child {
    border-left: 0;
  }

  .counter-unit strong {
    font-size: clamp(2.45rem, 14vw, 4.8rem);
  }

  .counter-foot {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }

  .counter-foot details {
    max-width: 100%;
    text-align: left;
  }

  .bulletin {
    grid-template-columns: 1fr auto;
    gap: 0.1rem 0.8rem;
    padding-block: 0.7rem;
  }

  .bulletin-title {
    grid-column: 1;
  }

  .bulletin-item {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 44px;
    font-size: 0.84rem;
  }

  .bulletin-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .section-heading,
  .section-heading.compact {
    align-items: start;
    flex-direction: column;
    gap: 1rem;
  }

  .section h2,
  .origin h2,
  .record h2 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }

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

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

  .media-copy {
    min-height: 9.5rem;
  }

  .media-copy > strong {
    font-size: clamp(1.15rem, 3.4vw, 1.55rem);
  }

  .media-archive-list a {
    grid-template-columns: minmax(9.5rem, 0.55fr) minmax(0, 1fr) auto;
    gap: 0.7rem;
  }

  .outlived-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .outlived-intro {
    max-width: 34rem;
  }

  .outlived-rail {
    grid-auto-columns: clamp(19rem, 72vw, 23rem);
  }

  .record {
    margin-inline: var(--page-pad);
    min-width: 0;
    padding: clamp(1.5rem, 6vw, 2rem);
    grid-template-columns: minmax(0, 1fr);
  }

  .record h2 {
    font-size: clamp(2.15rem, 10.7vw, 2.8rem);
  }

  .record-mark {
    position: absolute;
    right: -2.4rem;
    bottom: -2.8rem;
    opacity: 0.16;
  }

  .origin {
    padding: 0;
  }

  .origin-image {
    min-height: 0;
  }

}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6.5rem;
  }

  .site-header {
    min-height: 96px;
    padding-block: 0.65rem;
    gap: 0;
  }

  .site-header nav {
    display: none;
  }

  .media-reference-strip {
    grid-template-columns: 1fr;
  }

  .media-reference-strip > a:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-name {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .brand-date {
    margin-top: 0.25rem;
    font-size: 0.6rem;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .site-footer .footer-actions {
    width: 100%;
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem 1rem;
  }

  .footer-actions .media-kit-download {
    grid-column: 1 / -1;
  }

}

@media (max-width: 370px) {
  :root {
    --page-pad: 1rem;
  }

  .site-header nav {
    font-size: 0.7rem;
  }

  .hero h1 {
    font-size: 4.65rem;
  }

  .specimen-label-two {
    display: none;
  }

  .counter-unit span {
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .bulletin-title {
    font-size: 0.9rem;
  }

  .media-grid {
    gap: 0.5rem;
  }

  .media-copy {
    min-height: 9rem;
    padding: 0.72rem;
  }

  .media-copy .meta {
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .media-copy > strong {
    margin-top: 0.55rem;
    font-size: 1.03rem;
  }

  .media-action {
    font-size: 0.75rem;
  }

  .media-stats small {
    max-width: 14ch;
    margin-top: 0.125rem;
  }

  .media-stats {
    padding: 0.25rem;
  }

  .media-stats strong {
    font-size: 1.75rem;
  }

  .media-stats > span {
    margin-top: 0.125rem;
  }

  .media-archive-list a {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.2rem 0.75rem;
  }

  .media-archive-list a > span:first-child {
    grid-column: 1 / -1;
  }

  .outlived {
    --rail-pad: 1rem;
  }

  .outlived h2 {
    font-size: 3.15rem;
  }

  .outlived-rail {
    grid-auto-columns: calc(100vw - 3.5rem);
  }

  .outlived-card-copy {
    padding-inline: 1.1rem;
  }

}

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

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