:root {
  --bg: #090909;
  --panel: #101010;
  --ink: #f4f0e8;
  --muted: #aaa39a;
  --red: #c93a32;
  --gold: #c49a67;
  --line: #292725;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
header {
  height: 88px;
  padding: 0 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: absolute;
  z-index: 5;
  width: 100%;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.12em;
}
.brand span {
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
}
.brand small {
  font-size: 9px;
  color: var(--gold);
  margin-left: 3px;
}
nav {
  display: flex;
  gap: 34px;
}
nav a {
  color: #d8d3cb;
  text-decoration: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  padding: 120px 8vw 70px;
  background:
    radial-gradient(circle at 30% 40%, #29211d 0, transparent 32%),
    linear-gradient(120deg, #0b0b0b, #111 65%, #080808);
}
.hero-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55%;
  height: 88%;
  overflow: hidden;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 48%,
      rgba(9, 9, 9, 0.4) 70%,
      #090909 100%
    ),
    linear-gradient(0deg, #090909 0, transparent 25%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.78) contrast(1.05);
}
.hero-copy {
  grid-column: 2;
  z-index: 2;
  padding-left: 5vw;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: bold;
}
.hero h1 {
  font-size: clamp(76px, 9vw, 150px);
  line-height: 0.72;
  margin: 28px 0 18px;
  letter-spacing: -0.07em;
}
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.years {
  letter-spacing: 0.35em;
  color: #d1c6b9;
}
.lead {
  max-width: 520px;
  font-family: Georgia, serif;
  font-size: 21px;
  line-height: 1.65;
  color: #d3cec6;
}
.button,
button {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid var(--gold);
  color: var(--ink);
  padding: 15px 22px;
  text-decoration: none;
  background: transparent;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.quote {
  position: absolute;
  bottom: 48px;
  right: 8vw;
  color: #8d867f;
  font-family: Georgia, serif;
  font-style: italic;
}
.story,
.video {
  padding: 110px 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  border-top: 1px solid var(--line);
}
h2 {
  font-family: Georgia, serif;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: normal;
  line-height: 1.03;
  margin: 15px 0;
}
.storytext {
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.75;
}
.muted {
  color: var(--muted);
  font-size: 15px;
}
.gallery {
  padding: 100px 6vw;
  background: #0d0d0d;
}
.sectionhead {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
.sectionhead span {
  color: var(--muted);
  font-size: 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}
.grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.8);
  transition: 0.3s;
}
.grid img:hover {
  filter: none;
}
.grid .wide {
  grid-column: span 2;
}
.textlink {
  display: inline-block;
  color: var(--gold);
  margin-top: 28px;
  text-decoration: none;
}
.video {
  background: #15120f;
}
.video-copy p:not(.eyebrow) {
  color: #bdb5ac;
  line-height: 1.7;
}
.video-card {
  height: 480px;
  position: relative;
  overflow: hidden;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.video-card span {
  position: absolute;
  left: 28px;
  bottom: 25px;
}
.play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border: 1px solid white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
}
.memory {
  text-align: center;
  padding: 130px 20px;
  max-width: 850px;
  margin: auto;
}
.memory p:not(.eyebrow) {
  color: #b7b0a8;
  font-family: Georgia, serif;
  font-size: 20px;
  line-height: 1.7;
}
footer {
  border-top: 1px solid var(--line);
  padding: 35px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777;
  font-size: 12px;
}
@media (max-width: 850px) {
  header nav {
    display: none;
  }
  .hero {
    display: block;
    padding-top: 440px;
    min-height: 900px;
  }
  .hero-photo {
    width: 100%;
    height: 500px;
    top: 0;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 82px;
  }
  .quote {
    display: none;
  }
  .story,
  .video {
    grid-template-columns: 1fr;
    padding: 75px 7vw;
  }
  .grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 210px;
  }
  .grid .wide {
    grid-column: span 2;
  }
  footer {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 25px;
  margin: 0;
  padding: 8px;
}
.gallery-item {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}
.gallery-item img {
  display: block;
}
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(1200px, 94vw);
  max-height: 82vh;
  object-fit: contain;
}
.lightbox p {
  color: #c7bfb6;
}
.lightbox-close,
.dialog-close {
  position: absolute;
  top: 20px;
  right: 24px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 38px;
  margin: 0;
  padding: 4px 12px;
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
.video-note {
  font-size: 13px !important;
  color: #827b74 !important;
}
.video-note code {
  color: #c49a67;
}
.notice {
  padding: 14px 18px;
  border: 1px solid #3a674b;
  background: #132319;
  margin: 20px auto;
  max-width: 650px;
}
.memory-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  text-align: left;
  margin-top: 60px;
}
.memory-list article {
  border: 1px solid var(--line);
  padding: 24px;
  background: #101010;
}
.memory-list article p {
  font-size: 17px !important;
  margin-top: 0;
}
.memory-list article span {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
dialog {
  width: min(620px, 92vw);
  background: #121212;
  color: #eee;
  border: 1px solid #39342f;
  padding: 40px;
  position: relative;
}
dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
}
dialog h3 {
  font:
    normal 38px Georgia,
    serif;
  margin: 8px 0 25px;
}
dialog label {
  display: block;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 16px 0;
  color: #b9b0a6;
}
dialog input,
dialog textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  background: #090909;
  border: 1px solid #38322d;
  color: #fff;
  padding: 13px;
  font: inherit;
}
dialog small {
  display: block;
  color: #777;
  margin-top: 14px;
}
.honeypot {
  position: absolute !important;
  left: -9999px !important;
}
.admin-link {
  color: #555;
  text-decoration: none;
}
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
  }
  header nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    padding: 24px 7vw;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }
  header nav.open {
    display: flex;
  }
  .memory-list {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .lightbox {
    padding: 18px;
  }
  .hero {
    padding-top: 470px;
  }
}

/* Version 1.1 - archive articles */
.archive {
  padding: 100px 8vw;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}
.archive-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) 1.15fr;
  min-height: 470px;
  border: 1px solid var(--line);
  text-decoration: none;
  color: var(--ink);
  background: #10100f;
  overflow: hidden;
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.archive-card:hover {
  transform: translateY(-3px);
  border-color: #5b4a39;
}
.archive-image {
  overflow: hidden;
  background: #070707;
}
.archive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.72) contrast(1.06);
  transition: transform 0.5s;
}
.archive-card:hover .archive-image img {
  transform: scale(1.025);
}
.archive-copy {
  padding: 55px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.archive-copy h3 {
  font:
    normal clamp(32px, 3.4vw, 56px) / 1.08 Georgia,
    serif;
  margin: 12px 0 20px;
}
.archive-copy > p:not(.eyebrow) {
  color: #b5aea6;
  font:
    18px/1.7 Georgia,
    serif;
  max-width: 720px;
}
.archive-copy > span {
  margin-top: 20px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-page {
  background: #090909;
}
.article-header {
  position: relative;
  background: #090909;
}
.article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 670px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 20%, #241d18, transparent 35%), #0b0b0b;
}
.article-hero-copy {
  padding: 95px 7vw 85px;
}
.article-hero h1 {
  font:
    normal clamp(48px, 5.4vw, 86px) / 1.02 Georgia,
    serif;
  letter-spacing: -0.035em;
  margin: 20px 0 24px;
  max-width: 900px;
}
.backlink {
  display: inline-block;
  color: #8f8880;
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 50px;
}
.article-byline {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-intro {
  font:
    20px/1.7 Georgia,
    serif;
  color: #c7c0b8;
  max-width: 760px;
}
.article-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.article-cover {
  overflow: hidden;
  min-height: 600px;
}
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: saturate(0.7) brightness(0.82);
}
.article-context {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
  padding: 110px 8vw;
}
.article-context-copy {
  font:
    19px/1.8 Georgia,
    serif;
  color: #c6bfb7;
}
.article-context blockquote {
  border-left: 2px solid var(--red);
  margin: 45px 0 0;
  padding: 8px 0 8px 28px;
  font-size: 28px;
  color: #eee;
}
.article-context cite {
  display: block;
  color: var(--gold);
  font:
    11px Arial,
    sans-serif;
  letter-spacing: 0.08em;
  margin-top: 14px;
  text-transform: uppercase;
}
.article-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-facts article {
  padding: 45px 4vw;
  border-right: 1px solid var(--line);
}
.article-facts article:last-child {
  border-right: 0;
}
.article-facts span {
  display: block;
  color: var(--red);
  font:
    bold 38px Georgia,
    serif;
}
.article-facts p {
  color: #aaa39a;
  line-height: 1.6;
}
.pdf-section {
  padding: 100px 6vw;
  background: #0d0d0d;
}
.source-note {
  padding: 16px 20px;
  background: #151310;
  border: 1px solid #2f2a25;
  color: #aaa39a;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.pdf-frame {
  height: 82vh;
  min-height: 720px;
  border: 1px solid #342f2a;
  background: #181818;
}
.pdf-frame object {
  width: 100%;
  height: 100%;
}
.pdf-fallback {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}
.pdf-fallback .button {
  display: inline-block;
}
.article-page footer {
  background: #090909;
}
@media (max-width: 850px) {
  .archive {
    padding: 75px 7vw;
  }
  .archive-card {
    grid-template-columns: 1fr;
  }
  .archive-image {
    height: 330px;
  }
  .archive-copy {
    padding: 32px 28px;
  }
  .article-header nav {
    display: none;
  }
  .article-hero {
    grid-template-columns: 1fr;
  }
  .article-hero-copy {
    padding: 65px 7vw;
  }
  .article-cover {
    min-height: 420px;
  }
  .article-context {
    grid-template-columns: 1fr;
    padding: 75px 7vw;
  }
  .article-facts {
    grid-template-columns: 1fr 1fr;
  }
  .article-facts article:nth-child(2) {
    border-right: 0;
  }
  .article-facts article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .pdf-section {
    padding: 75px 4vw;
  }
  .pdf-frame {
    height: 72vh;
    min-height: 560px;
  }
}

/* Version 1.1.1 - refined archive reader + gallery navigation */
body.lightbox-open {
  overflow: hidden;
}
.lightbox-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: calc(100vw - 170px);
}
.lightbox-stage img {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}
.lightbox-stage p {
  margin: 16px 0 5px;
  min-height: 20px;
  text-align: center;
  max-width: 900px;
}
.lightbox-count {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: #7e766e;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.62);
  backdrop-filter: blur(8px);
  color: #fff;
  font:
    300 48px/1 Georgia,
    serif;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  z-index: 2;
  transition: 0.2s;
}
.lightbox-prev {
  left: 28px;
}
.lightbox-next {
  right: 28px;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--gold);
  background: #18130f;
  color: var(--gold);
}
.article-hero.refined {
  min-height: 720px;
  grid-template-columns: 1.08fr 0.92fr;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(196, 154, 103, 0.12),
      transparent 32%
    ),
    linear-gradient(135deg, #0d0c0b 0%, #080808 65%);
}
.source-pill {
  display: inline-flex;
  border: 1px solid #41372d;
  color: var(--gold);
  padding: 8px 11px;
  font-size: 10px;
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}
.refined-cover {
  position: relative;
  background: #120f0d;
}
.refined-cover:after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 30px 0 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.refined-cover img {
  object-position: center top;
  filter: saturate(0.66) brightness(0.68) contrast(1.06);
}
.cover-badge {
  position: absolute;
  left: 34px;
  bottom: 34px;
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(196, 154, 103, 0.32);
  padding: 18px 20px;
  z-index: 2;
}
.cover-badge span {
  display: block;
  color: #9d948a;
  font-size: 9px;
  letter-spacing: 0.18em;
  margin-bottom: 5px;
}
.cover-badge strong {
  font:
    normal 28px Georgia,
    serif;
  color: #fff;
}
.article-editorial {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 10vw;
  padding: 120px 10vw;
  background: #0b0b0b;
  border-bottom: 1px solid var(--line);
}
.article-editorial aside {
  position: sticky;
  top: 35px;
  align-self: start;
}
.article-editorial h2 {
  font-size: clamp(46px, 5vw, 74px);
}
.editorial-rule {
  width: 55px;
  height: 1px;
  background: var(--red);
  margin: 32px 0;
}
.editorial-source {
  color: #777069;
  line-height: 1.65;
  max-width: 300px;
  font-size: 13px;
}
.editorial-copy {
  max-width: 760px;
  color: #cfc8bf;
  font:
    21px/1.86 Georgia,
    serif;
}
.editorial-copy p {
  margin: 0 0 28px;
}
.dropcap:first-letter {
  float: left;
  font-size: 76px;
  line-height: 0.74;
  padding: 14px 12px 0 0;
  color: var(--gold);
}
.editorial-copy blockquote {
  font-size: 31px;
  line-height: 1.45;
  margin: 55px 0 0;
  padding: 30px 0 0;
  border-top: 1px solid #40372e;
  color: #f4f0e8;
}
.editorial-copy cite {
  display: block;
  font:
    10px Arial,
    sans-serif;
  letter-spacing: 0.13em;
  color: var(--gold);
  margin-top: 18px;
  text-transform: uppercase;
}
.article-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #12100e;
  border-bottom: 1px solid var(--line);
}
.article-timeline > div {
  padding: 48px 4vw;
  border-right: 1px solid #302a25;
}
.article-timeline > div:last-child {
  border-right: 0;
}
.article-timeline small {
  color: #777069;
  font-size: 9px;
  letter-spacing: 0.18em;
}
.article-timeline strong {
  display: block;
  color: #fff;
  font:
    normal 46px Georgia,
    serif;
  margin: 8px 0 10px;
}
.article-timeline p {
  color: #9e968d;
  line-height: 1.6;
  margin: 0;
  font-size: 13px;
}
.article-reader {
  padding: 120px 8vw 130px;
  background: #e9e3da;
  color: #171513;
}
.reader-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 65px;
}
.article-reader .eyebrow {
  color: #9b5d36;
}
.article-reader h2 {
  color: #171513;
  margin-bottom: 0;
}
.reader-note {
  border-left: 1px solid #bdb3a7;
  padding-left: 28px;
  color: #625d56;
  line-height: 1.7;
  max-width: 600px;
}
.reader-note p:last-child {
  font-size: 12px;
}
.page-stack {
  display: grid;
  gap: 42px;
}
.article-page-card {
  display: block;
  text-decoration: none;
  color: #171513;
  background: #f7f3ed;
  border: 1px solid #cfc6ba;
  padding: 17px 17px 24px;
  box-shadow: 0 20px 55px rgba(53, 44, 34, 0.13);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.article-page-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(53, 44, 34, 0.2);
}
.page-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3px 5px 15px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #71685f;
}
.page-meta b {
  color: #9b5d36;
  font-weight: normal;
}
.article-page-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}
.reader-footer {
  text-align: center;
  padding-top: 55px;
}
.article-reader .button {
  color: #171513;
  border-color: #9b5d36;
}
.article-reader .button:hover {
  background: #171513;
  color: #fff;
  border-color: #171513;
}
@media (max-width: 850px) {
  .lightbox-stage {
    max-width: 100%;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 46px;
    height: 46px;
    font-size: 36px;
    top: auto;
    bottom: 28px;
  }
  .lightbox-prev {
    left: 24px;
  }
  .lightbox-next {
    right: 24px;
  }
  .lightbox {
    padding: 18px 18px 88px;
  }
  .lightbox img {
    max-height: 72vh;
  }
  .article-hero.refined {
    min-height: auto;
  }
  .article-editorial {
    grid-template-columns: 1fr;
    padding: 80px 7vw;
    gap: 35px;
  }
  .article-editorial aside {
    position: static;
  }
  .editorial-copy {
    font-size: 18px;
  }
  .editorial-copy blockquote {
    font-size: 25px;
  }
  .article-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .article-timeline > div:nth-child(2) {
    border-right: 0;
  }
  .article-timeline > div:nth-child(-n + 2) {
    border-bottom: 1px solid #302a25;
  }
  .article-reader {
    padding: 80px 4vw;
  }
  .reader-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .article-page-card {
    padding: 8px 8px 15px;
  }
  .page-meta {
    font-size: 8px;
  }
  .cover-badge {
    left: 20px;
    bottom: 20px;
  }
}

.site-meta {
  margin-top: 12px;
  font-size: 0.85rem;
  opacity: 0.65;
  text-align: center;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

/* Version 1.2.0 – Sidney's story feature */
.feature-story {
  background: #050505;
  border-top: 1px solid var(--line);
  scroll-margin-top: 0;
}
.feature-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #2b2022;
  background:
    radial-gradient(
      circle at 72% 40%,
      rgba(201, 58, 50, 0.13),
      transparent 32%
    ),
    #050505;
}
.feature-copy {
  padding: 105px 7vw 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.feature-copy h2 {
  font-size: clamp(70px, 8vw, 138px);
  line-height: 0.78;
  letter-spacing: -0.06em;
  margin: 18px 0 28px;
  font-weight: 700;
}
.feature-copy h2 em {
  font-style: normal;
  color: var(--red);
}
.feature-lead {
  max-width: 620px;
  color: #c6c0b9;
  font:
    19px/1.65 Georgia,
    serif;
}
.feature-copy blockquote {
  margin: 34px 0 8px;
  color: #dd6b72;
  font:
    italic clamp(24px, 2.2vw, 37px) / 1.35 Georgia,
    serif;
}
.feature-copy blockquote cite {
  display: block;
  color: #b5ada5;
  font:
    12px Arial,
    sans-serif;
  font-style: normal;
  margin-top: 12px;
  letter-spacing: 0.05em;
}
.feature-photo {
  position: relative;
  min-height: 650px;
}
.feature-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050505 0, transparent 24%),
    linear-gradient(0deg, #050505 0, transparent 22%);
}
.feature-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.85) contrast(1.06) brightness(0.82);
}
.chapters {
  padding: 85px 3vw 72px;
}
.chapters-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 36px;
}
.chapters-head h3 {
  font:
    normal clamp(30px, 3vw, 46px) / 1.1 Georgia,
    serif;
  letter-spacing: 0.06em;
  margin: 9px 0 8px;
}
.chapters-head p {
  color: #9f9992;
  line-height: 1.6;
}
.chapter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.chapter-grid article {
  position: relative;
  border: 1px solid #34282a;
  background: #0b0b0b;
  overflow: hidden;
  min-width: 0;
}
.chapter-grid article img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.75) brightness(0.78);
  display: block;
}
.chapter-grid article span {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  border: 1px solid #e15e73;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e15e73;
  font:
    700 19px Georgia,
    serif;
  background: rgba(0, 0, 0, 0.62);
}
.chapter-grid article h4 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 18px 16px 10px;
}
.chapter-grid article p {
  color: #b8b1aa;
  font-size: 13px;
  line-height: 1.6;
  margin: 0 16px 24px;
}
.feature-quote {
  max-width: 1100px;
  margin: 28px auto 14px;
  border: 1px solid #32282a;
  padding: 18px 28px;
  text-align: center;
  color: #d8d0c8;
  font:
    italic 22px Georgia,
    serif;
}
.feature-source {
  text-align: center;
  color: #777;
  font-size: 11px;
  line-height: 1.6;
  margin: 12px auto 0;
  max-width: 900px;
}
.site-footer {
  border-top: 1px solid #3b2025 !important;
  padding: 24px 4vw !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr !important;
  align-items: center !important;
  color: #89837e !important;
  font-size: 12px !important;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f0ece7;
  letter-spacing: 0.1em;
}
.footer-brand span {
  font-size: 28px;
  font-weight: 900;
  color: #d85367;
}
.footer-center {
  text-align: center;
  color: #aaa39d;
}
.footer-updated {
  text-align: right;
}
@media (max-width: 1100px) {
  .chapter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 850px) {
  .feature-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .feature-copy {
    padding: 80px 7vw 50px;
  }
  .feature-photo {
    min-height: 480px;
    order: -1;
  }
  .feature-photo:after {
    background: linear-gradient(0deg, #050505 0, transparent 35%);
  }
  .feature-copy h2 {
    font-size: 72px;
  }
  .chapter-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 14px !important;
  }
  .footer-brand {
    justify-content: center;
  }
  .footer-updated {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .chapter-grid {
    grid-template-columns: 1fr;
  }
  .chapter-grid article img {
    height: 270px;
  }
}

/* Version 1.2.1 – expandable story chapters */
.chapter-grid {
  align-items: start;
}
.chapter-card {
  border: 1px solid #34282a;
  background: #0b0b0b;
  overflow: hidden;
}
.chapter-card summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  display: block;
}
.chapter-card summary::-webkit-details-marker {
  display: none;
}
.chapter-card summary img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.76) brightness(0.78);
  display: block;
}
.chapter-no {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 48px;
  height: 48px;
  border: 1px solid #e15e73;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #e15e73;
  font:
    700 19px Georgia,
    serif;
  background: rgba(0, 0, 0, 0.68);
}
.chapter-summary {
  padding: 18px 16px 20px;
}
.chapter-summary h4 {
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.chapter-summary p {
  color: #b8b1aa;
  font-size: 13px;
  line-height: 1.55;
  margin: 0 0 15px;
}
.chapter-summary b {
  font-size: 11px;
  color: #e15e73;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.chapter-card[open] .chapter-summary b {
  font-size: 0;
}
.chapter-card[open] .chapter-summary b:after {
  content: "Luk −";
  font-size: 11px;
}
.chapter-body {
  border-top: 1px solid #302426;
  padding: 18px 16px 24px;
  background: #111;
}
.chapter-body p {
  color: #c6beb7;
  font:
    15px/1.7 Georgia,
    serif;
  margin: 0 0 14px;
}
.chapter-body p:last-child {
  margin-bottom: 0;
}
.chapter-card[open] {
  border-color: #694048;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
@media (max-width: 1100px) {
  .chapter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .chapter-grid {
    grid-template-columns: 1fr;
  }
  .chapter-card summary img {
    height: 260px;
  }
}
/* universal memory modal */
.memory-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.memory-modal.open {
  display: flex;
}
.memory-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.memory-modal-panel {
  position: relative;
  z-index: 1;
  width: min(620px, 94vw);
  max-height: calc(100vh - 40px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background: #121212;
  color: #eee;
  border: 1px solid #39342f;
  padding: 40px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}
.memory-modal-panel h3 {
  font:
    normal 38px Georgia,
    serif;
  margin: 8px 0 25px;
}
.memory-modal-panel label {
  display: block;
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 16px 0;
  color: #b9b0a6;
}
.memory-modal-panel input,
.memory-modal-panel textarea {
  -webkit-appearance: none;
  appearance: none;
  display: block;
  width: 100%;
  margin-top: 7px;
  background: #090909;
  border: 1px solid #38322d;
  border-radius: 0;
  color: #fff;
  padding: 13px;
  font-size: 16px;
  font-family: inherit;
}
.memory-modal-panel textarea {
  resize: vertical;
}
.memory-modal-panel small {
  display: block;
  color: #777;
  margin-top: 14px;
}
.memory-modal-open {
  overflow: hidden;
}
.memory-modal .dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
}
@media (max-width: 620px) {
  .memory-modal {
    padding: 0;
    align-items: flex-end;
  }
  .memory-modal-panel {
    width: 100%;
    max-height: 90vh;
    padding: 34px 22px calc(28px + env(safe-area-inset-bottom));
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .memory-modal-panel h3 {
    font-size: 32px;
  }
}

/* Version 1.3.0 – podcast */
.podcast-section {
  padding: 100px 6vw;
  background: #0a0a0a;
  border-top: 1px solid var(--line);
}
.podcast-intro {
  color: #aaa39a;
  max-width: 700px;
  margin: -20px 0 35px;
  font:
    18px/1.6 Georgia,
    serif;
}
.podcast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.podcast-card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid #34282a;
  background: #101010;
  padding: 26px;
}
.podcast-number {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #d85367;
  display: grid;
  place-items: center;
  color: #d85367;
  font:
    700 24px Georgia,
    serif;
}
.podcast-card h3 {
  margin: 6px 0 16px;
  font:
    normal 28px Georgia,
    serif;
}
.podcast-card audio {
  width: 100%;
  filter: invert(0.92) hue-rotate(180deg);
}
.footer-mail {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-mail:hover {
  color: #d85367;
  border-color: #d85367;
}
@media (max-width: 850px) {
  .podcast-grid {
    grid-template-columns: 1fr;
  }
  .podcast-card {
    grid-template-columns: 70px 1fr;
    padding: 20px;
  }
  .podcast-number {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

/* Version 1.4.1 – story cards */
.chapter-no {
  display: none !important;
}
@media (min-width: 1101px) {
  .chapter-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
  }
  .chapter-card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .chapter-card summary {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .chapter-card summary img {
    height: 232px;
    flex: 0 0 232px;
  }
  .chapter-summary {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .chapter-summary h4 {
    min-height: 42px;
  }
  .chapter-summary p {
    flex: 1;
  }
  .chapter-summary b {
    margin-top: auto;
  }
}
