.article-page {
  background:
    radial-gradient(circle at 78% 8%, rgba(120, 143, 97, 0.09), transparent 28%),
    var(--bg);
}

.story-article {
  overflow: hidden;
}

.story-hero {
  min-height: 100vh;
  padding: 150px var(--page-pad) 110px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
  position: relative;
}

.story-hero::before {
  content: "01";
  position: absolute;
  right: clamp(-20px, 1vw, 24px);
  bottom: 20px;
  color: rgba(232, 224, 214, 0.045);
  font-family: var(--serif);
  font-size: clamp(12rem, 26vw, 30rem);
  line-height: 0.7;
  pointer-events: none;
}

.story-hero-copy,
.story-hero-visual {
  margin: 100px;
  position: relative;
  z-index: 1;
}

.story-back-link {
  display: inline-flex;
  margin-bottom: clamp(44px, 7vw, 86px);
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.story-back-link:hover,
.story-back-link:focus-visible {
  color: var(--accent-olieve);
}

.story-meta {
  display: flex;
  gap: 18px 28px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.story-category {
  margin: 0;
  color: var(--accent-olieve);
  text-transform: uppercase;
}

.story-hero h1 {
  max-width: 8ch;
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.story-lead {
  max-width: 600px;
  margin: 38px 0 0;
  color: var(--text-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  line-height: 2.05;
}

.story-hero-visual {
  width: min(100%, 650px);
  margin: 0;
  justify-self: center;
}

.story-hero-visual picture {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 5px;
  background: var(--surface);
}

.story-hero-visual img {
  filter: saturate(0.55) contrast(0.9) brightness(0.68) sepia(0.08);
}

.story-hero-visual figcaption,
.story-wide-image figcaption,
.story-gallery figcaption {
  margin-top: 12px;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.story-layout {
  padding: 140px var(--page-pad) 170px;
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 140px);
  background: #24201d;
  position: relative;
}

.story-layout::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("./images/noise-180.webp");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

.story-layout > * {
  position: relative;
  z-index: 1;
}

.story-aside {
  align-self: start;
  position: sticky;
  top: 120px;
  padding-top: 8px;
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.story-aside p {
  margin: 0 0 6px;
}

.story-aside-label {
  margin-bottom: 28px !important;
  color: var(--accent-olieve);
  font-size: 2.4rem;
}

.story-body {
  width: min(100%, 930px);
}

.story-section {
  width: min(100%, 720px);
  margin-inline: auto;
}

.story-section + .story-section {
  margin-top: 110px;
}

.story-section p {
  margin: 0 0 2em;
  color: rgba(232, 224, 214, 0.84);
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 2.18;
}

.story-section h2,
.story-gallery-heading h2 {
  margin: 0 0 38px;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
}

.drop-cap::first-letter {
  float: left;
  margin: 0.16em 0.14em 0 0;
  color: var(--accent-olieve);
  font-family: var(--serif);
  font-size: 5.4rem;
  line-height: 0.72;
}

.story-quote {
  width: min(100%, 900px);
  margin: 130px auto;
  padding: 72px clamp(24px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.story-quote p {
  margin: 0;
  color: var(--accent-beige);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.6vw, 5.3rem);
  font-weight: 400;
  line-height: 1.24;
}

.story-wide-image {
  width: min(100%, 930px);
  margin: 130px auto;
}

.story-wide-image picture {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 4px;
}

.story-wide-image img,
.story-gallery img {
  filter: saturate(0.58) contrast(0.9) brightness(0.72) sepia(0.06);
}

.story-gallery {
  margin-top: 140px;
  padding-top: 80px;
  border-top: 1px solid var(--line);
}

.story-gallery-heading {
  margin-bottom: 46px;
}

.story-gallery-heading .eyebrow {
  margin-bottom: 14px;
  color: var(--accent-olieve);
}

.story-gallery-heading h2 {
  margin-bottom: 0;
}

.story-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
}

.story-gallery-grid figure {
  margin: 0;
}

.story-gallery-grid figure:nth-child(2) {
  margin-top: 90px;
}

.story-gallery-grid picture {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}

.story-footer {
  padding: 120px var(--page-pad) 150px;
  background: var(--bg-soft);
}

.story-index-link {
  width: min(100%, 980px);
  margin: 0 auto 90px;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-index-link span,
.story-pagination span {
  color: var(--text-soft);
  font-family: var(--serif);
  font-size: 0.84rem;
  letter-spacing: 0.09em;
}

.story-index-link strong,
.story-pagination strong {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  font-weight: 400;
}

.story-index-link:hover strong,
.story-index-link:focus-visible strong,
.story-pagination a:not(.is-disabled):hover strong,
.story-pagination a:not(.is-disabled):focus-visible strong {
  color: var(--accent-olieve);
}

.story-pagination {
  width: min(100%, 980px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.story-pagination a {
  min-height: 150px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
}

.story-pagination a:last-child {
  text-align: right;
}

.story-pagination .is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 980px) {
  .story-hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
  }

  .story-hero-copy {
    max-width: 720px;
  }

  .story-hero-visual {
    width: min(78vw, 650px);
    justify-self: end;
  }

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

  .story-aside {
    position: static;
    display: flex;
    gap: 16px 28px;
    flex-wrap: wrap;
    align-items: baseline;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--line);
  }

  .story-aside-label {
    width: 100%;
    margin-bottom: 2px !important;
  }
}

@media (max-width: 640px) {
  .story-hero {
    min-height: auto;
    padding: 118px var(--page-pad) 86px;
    gap: 56px;
  }

  .story-back-link {
    margin-bottom: 42px;
  }

  .story-hero h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .story-lead {
    margin-top: 28px;
  }

  .story-hero-visual {
    width: 100%;
  }

  .story-layout {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .story-aside {
    font-size: 0.78rem;
  }

  .story-section + .story-section {
    margin-top: 80px;
  }

  .story-quote {
    margin: 90px auto;
    padding-block: 54px;
  }

  .story-wide-image {
    margin: 90px auto;
  }

  .story-gallery {
    margin-top: 100px;
    padding-top: 60px;
  }

  .story-gallery-grid {
    grid-template-columns: 1fr;
  }

  .story-gallery-grid figure:nth-child(2) {
    margin-top: 0;
  }

  .story-gallery-grid picture {
    aspect-ratio: 4 / 3;
  }

  .story-footer {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .story-index-link {
    align-items: start;
    flex-direction: column;
    margin-bottom: 60px;
  }

  .story-pagination {
    grid-template-columns: 1fr;
  }

  .story-pagination a:last-child {
    text-align: left;
  }
}
