@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --ink: #15221f;
  --muted: #65726d;
  --paper: #f4f4ee;
  --line: #d8ddd4;
  --accent: #dc6d4d;
  --dark: #10211e;
  --font: "Manrope", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
.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;
}
[hidden] {
  display: none !important;
}
.site-shell {
  overflow: hidden;
}
.site-header {
  height: 82px;
  max-width: 1512px;
  padding: 0 5%;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font: 800 27px/1 var(--font);
}
.brand-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.brand-name em {
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.14em;
  font-size: 11px;
  margin-left: 4px;
}
.site-header nav {
  display: flex;
  gap: 28px;
  margin-left: 58px;
}
.site-header nav a {
  font-size: 12px;
  font-weight: 700;
  color: #394842;
  transition: color 0.2s;
}
.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--accent);
}
.header-note {
  margin-left: auto;
  color: #98a19a;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.hero {
  max-width: 1512px;
  margin: 0 auto;
  min-height: 600px;
  display: grid;
  grid-template-columns: 49% 51%;
  padding: 50px 5% 64px;
  gap: 20px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-right: 50px;
  position: relative;
  z-index: 1;
}
.eyebrow,
.section-kicker,
.story-overline {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475e50;
}
.pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px #dc6d4d22;
}
.hero h1 {
  font-size: clamp(52px, 5.5vw, 88px);
  line-height: 1.06;
  letter-spacing: -0.092em;
  max-width: 700px;
  margin: 25px 0 24px;
  font-weight: 800;
}
.hero-copy p {
  max-width: 440px;
  font-size: 16px;
  line-height: 1.8;
  color: #66756d;
  margin: 0;
}
.hero-jump {
  margin-top: 43px;
  font-size: 11px;
  letter-spacing: 0.15em;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid #8b9b91;
  padding-bottom: 14px;
  min-width: 204px;
  display: flex;
  justify-content: space-between;
}
.hero-jump span {
  font-size: 19px;
  line-height: 10px;
  transition: transform 0.2s;
}
.hero-jump:hover span {
  transform: translate(4px, 4px);
}
.hero-visual {
  min-height: 495px;
  background: var(--dark);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 22%, #336953aa, transparent 34%),
    linear-gradient(135deg, #0b1818, #152d25);
  z-index: -2;
}
.hero-orbit {
  position: absolute;
  border: 1px solid #90b8a432;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.orbit-one {
  width: 670px;
  height: 670px;
  right: -210px;
  top: -120px;
}
.orbit-two {
  width: 460px;
  height: 460px;
  right: -100px;
  top: -18px;
}
.hero-index {
  position: absolute;
  right: 30px;
  bottom: 24px;
  color: #dce6d7bd;
  font-size: 9px;
  letter-spacing: 0.18em;
  font-weight: 700;
}
.hero-index span {
  color: var(--accent);
  margin: 0 5px;
}
.feature-card {
  width: min(65%, 390px);
  aspect-ratio: 4/5;
  background: #0c1715;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transform: rotate(-4deg);
  box-shadow: 20px 28px 45px #06120d80;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.feature-card:hover {
  transform: rotate(-2deg) translateY(-6px);
  box-shadow: 24px 32px 55px #06120da0;
}
.feature-card img,
.feature-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-shade {
  background: linear-gradient(transparent 32%, #081511e8 95%);
}
.feature-card > *:not(img):not(.feature-shade) {
  position: relative;
  z-index: 1;
  color: white;
}
.feature-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff85;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.feature-label span {
  font-size: 16px;
}
.feature-card strong {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}
.feature-date {
  font-size: 10px;
  color: #dce2d8 !important;
  margin-top: 17px;
}
.empty-feature {
  width: min(65%, 390px);
  aspect-ratio: 4/5;
  background: #244137;
  transform: rotate(-4deg);
  box-shadow: 20px 28px 45px #06120d80;
  color: #f2f5e9;
  padding: 32px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.empty-feature span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 10px;
}
.archive {
  max-width: 1512px;
  margin: auto;
  padding: 52px 5% 110px;
}
.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.section-kicker {
  color: var(--accent);
}
.section-top h2,
.references h2 {
  font-size: clamp(34px, 3.4vw, 51px);
  letter-spacing: -0.075em;
  line-height: 1.1;
  margin: 13px 0 0;
}
.dot {
  color: var(--accent);
}
.story-count {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #8a968c;
  margin-bottom: 6px;
}
.archive-tools {
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 85px;
}
.channel-filters {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.filter-chip {
  border: 1px solid #d1d9cf;
  padding: 9px 14px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.search-box {
  border-bottom: 1px solid #abb7ae;
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 195px;
}
.search-box > span:first-child {
  font-size: 21px;
}
.search-box input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
  padding: 8px 0;
  font-size: 12px;
  color: var(--ink);
}
.search-box input::placeholder {
  color: #87948a;
}
.video-grid {
  padding-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 55px 24px;
}
.video-card {
  min-width: 0;
}
.video-card a {
  display: block;
}
.card-image {
  position: relative;
  aspect-ratio: 16/10;
  background: #dce2d8;
  overflow: hidden;
  border-radius: 3px;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.video-card:hover .card-image img {
  transform: scale(1.055);
}
.card-number,
.card-arrow {
  position: absolute;
  top: 14px;
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-shadow: 0 1px 6px #0009;
}
.card-number {
  left: 16px;
  letter-spacing: 0.1em;
}
.card-arrow {
  right: 15px;
  font-size: 21px;
  line-height: 1;
}
.card-meta {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  color: #6e7d73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-top: 21px;
}
.card-meta span {
  color: var(--accent);
}
.video-card h3 {
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.35;
  letter-spacing: -0.055em;
  margin: 11px 0 10px;
}
.video-card p {
  color: #6b7870;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  color: #273b2e;
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid #97aa98;
  padding-bottom: 7px;
}
.card-link span {
  font-size: 17px;
}
.empty-list {
  color: #69786f;
  padding: 35px 0;
}
.about-strip {
  background: var(--dark);
  color: #f6f6ed;
  padding: 72px max(5%, calc((100vw - 1360px) / 2));
  display: grid;
  grid-template-columns: 65px 1fr 1fr;
  align-items: center;
  gap: 30px;
}
.about-asterisk {
  font-size: 50px;
  color: var(--accent);
  align-self: start;
}
.about-strip h2 {
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.07em;
  margin: 14px 0 0;
}
.about-strip h2 em {
  font-style: normal;
  color: #95b8a4;
}
.about-strip p {
  color: #b0c3b5;
  font-size: 14px;
  line-height: 1.8;
  max-width: 390px;
  margin-left: auto;
}
.site-footer {
  max-width: 1512px;
  margin: auto;
  padding: 58px 5% 70px;
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  align-items: start;
  gap: 30px;
}
.footer-brand {
  font-weight: 800;
  letter-spacing: -0.07em;
}
.footer-brand span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-left: 5px;
}
.site-footer p {
  margin: 0;
  color: #7a887e;
  font-size: 12px;
  line-height: 1.6;
}
.site-footer a {
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid #9aac9e;
  padding-bottom: 6px;
}
.story-page {
  max-width: 1300px;
  margin: auto;
  padding: 48px 5% 110px;
}
.back-link {
  font-size: 11px;
  font-weight: 800;
  color: #5e7163;
}
.back-link:hover {
  color: var(--accent);
}
.story-heading {
  margin: 65px 0 45px;
  max-width: 910px;
}
.story-overline {
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.story-heading h1 {
  font-size: clamp(43px, 6vw, 83px);
  line-height: 1.12;
  letter-spacing: -0.085em;
  margin: 24px 0;
}
.story-heading p {
  color: #6b786f;
  line-height: 1.75;
  font-size: 16px;
  max-width: 720px;
}
.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 35px;
}
.player-frame {
  aspect-ratio: 16/9;
  background: #09110f;
}
.player-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.watch-link {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.watch-link span {
  font-size: 18px;
}
.story-aside {
  background: #e8ede5;
  padding: 30px;
  align-self: start;
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.story-aside p {
  font-size: 13px;
  line-height: 1.7;
  color: #67776b;
  margin: 0 0 25px;
}
.aside-rule {
  border-bottom: 1px solid #c6d0c5;
  margin: 0 0 16px;
}
.aside-small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #87968a;
  margin-top: 12px;
}
.story-aside strong {
  font-size: 13px;
  margin-top: 5px;
}
.references {
  margin-top: 95px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.references h2 {
  margin-bottom: 32px;
}
.reference-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.2s;
}
.reference-link:last-child {
  border-bottom: 1px solid var(--line);
}
.reference-link:hover {
  padding-left: 8px;
}
.reference-link strong {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}
.reference-link small {
  display: block;
  color: #7d8d81;
  font-size: 10px;
  margin-top: 5px;
  word-break: break-all;
}
.reference-arrow {
  font-size: 22px;
  color: var(--accent);
}
.no-links {
  font-size: 13px;
  color: #738176;
}
@media (max-width: 1000px) {
  .site-header nav {
    margin-left: 20px;
  }
  .header-note {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
  }
  .hero h1 {
    font-size: clamp(45px, 6vw, 72px);
  }
  .hero-copy {
    padding-right: 10px;
  }
  .hero-visual {
    min-height: 400px;
  }
  .feature-card {
    width: 72%;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-strip {
    grid-template-columns: 50px 1fr;
  }
  .about-strip p {
    grid-column: 2;
    margin: 0;
  }
  .story-layout {
    grid-template-columns: 1fr;
  }
  .story-aside {
    min-height: 0;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 70px;
    padding: 0 6%;
    gap: 12px;
  }
  .site-header nav {
    margin-left: auto;
    gap: 16px;
  }
  .site-header nav a {
    font-size: 10px;
  }
  .brand-name {
    font-size: 13px;
  }
  .brand-name em {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    padding: 53px 6% 30px;
    gap: 35px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: clamp(47px, 11vw, 72px);
    margin: 22px 0;
  }
  .hero-copy p {
    font-size: 14px;
  }
  .hero-jump {
    margin-top: 27px;
  }
  .hero-visual {
    min-height: 390px;
  }
  .feature-card,
  .empty-feature {
    width: 58%;
    min-width: 220px;
  }
  .archive {
    padding: 70px 6% 75px;
  }
  .section-top h2 {
    font-size: 38px;
  }
  .story-count {
    font-size: 9px;
  }
  .archive-tools {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding-bottom: 15px;
  }
  .channel-filters {
    overflow: auto;
    flex-wrap: nowrap;
    width: 100%;
    padding: 18px 0;
  }
  .search-box {
    width: 100%;
  }
  .video-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .video-card h3 {
    font-size: 23px;
  }
  .about-strip {
    padding: 55px 6%;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .about-asterisk {
    font-size: 40px;
  }
  .about-strip p {
    grid-column: 1;
  }
  .site-footer {
    padding: 44px 6% 60px;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .story-page {
    padding: 35px 6% 80px;
  }
  .story-heading {
    margin: 48px 0 35px;
  }
  .story-heading h1 {
    font-size: clamp(40px, 10vw, 66px);
  }
  .story-heading p {
    font-size: 14px;
  }
  .references {
    grid-template-columns: 1fr;
    gap: 55px;
    margin-top: 72px;
  }
  .player-frame {
    aspect-ratio: 9/12;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
