.news-spread {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  grid-template-areas:
    "column telegram quote"
    "clipping clipping index";
  gap: 26px;
  margin-top: 28px;
}

.news-note--column { grid-area: column; }
.news-note--telegram { grid-area: telegram; }
.news-note--quote { grid-area: quote; }
.news-note--clipping {
  grid-area: clipping;
  display: grid;
  grid-template-columns: minmax(200px, 0.85fr) minmax(220px, 1fr);
  column-gap: 24px;
}
.news-note--clipping figure { grid-row: 1 / span 2; }
.news-index { grid-area: index; }

.photo-story {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.75fr);
  grid-template-areas:
    "hero narrative"
    "contact contact";
  gap: 28px;
  margin-top: 26px;
}

.photo-story__hero {
  grid-area: hero;
  margin: 0;
  padding: 10px;
  background: var(--paper-light);
  box-shadow: var(--shadow-small);
}

.photo-story__hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-story__narrative {
  grid-area: narrative;
  padding: 18px 0 18px 24px;
  border-left: 1px solid var(--ink);
}

.photo-story__narrative h3 {
  font-size: 2.5rem;
}

.photo-story__narrative blockquote {
  margin: 26px 0;
  padding: 18px 0;
  border-top: 4px solid var(--accent);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-sheet {
  grid-area: contact;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 12px;
  padding: 12px;
  background: #262c29;
}

.almanac-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, 0.75fr);
  gap: 38px;
  margin-top: 30px;
}

.source-note {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 42px;
  margin-top: 34px;
}

.source-note__lead {
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.45;
}

.source-details {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid var(--ink);
}

.source-details article {
  padding: 18px;
  background: var(--paper-light);
  border: 1px solid var(--rule);
}

.fold-review {
  padding-top: 38px;
}

.fold-review__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.fold-review__header h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.fold-stage {
  position: relative;
  width: min(940px, 100%);
  min-height: 560px;
  margin: 0 auto;
  overflow: hidden;
  background: #cfc6b5;
  box-shadow: var(--shadow-paper);
  perspective: 1600px;
}

.fold-rail {
  position: absolute;
  z-index: 8;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 44px;
  padding: 10px 18px;
  color: var(--white);
  background: var(--ink);
  font-size: 0.76rem;
}

.fold-sheet {
  position: absolute;
  inset: 44px 0 0;
  padding: 32px 38px;
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(36, 46, 39, 0.02) 0 1px, transparent 1px 4px),
    var(--paper);
  backface-visibility: hidden;
  transform-origin: left center;
}

.fold-sheet__edition {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.fold-sheet h3 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.fold-sheet--front {
  z-index: 4;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.fold-sheet--front figure {
  float: right;
  width: 52%;
  margin: 0 0 14px 24px;
  padding: 8px;
  background: var(--paper-light);
  box-shadow: var(--shadow-small);
}

.fold-sheet--front p:last-child {
  max-width: 42ch;
}

.fold-sheet--inside {
  z-index: 2;
}

.fold-inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 18px;
}

.fold-inside-grid article {
  padding: 16px;
  border-top: 5px solid var(--accent);
  background: var(--paper-light);
}

.fold-inside-grid span {
  display: block;
  color: var(--accent-dark);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
}

.fold-inside-grid strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
}

.fold-stage.is-folding .fold-sheet--front {
  animation: page-fold-out var(--fold-duration) cubic-bezier(0.58, 0.01, 0.22, 1) forwards;
}

.fold-stage.is-complete .fold-sheet--front {
  opacity: 0;
  transform: translateX(-70%) rotateY(-72deg);
  clip-path: polygon(0 0, 9% 4%, 5% 96%, 0 100%);
  pointer-events: none;
}

.fold-review__note {
  margin: 18px auto 0;
  max-width: 940px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

@keyframes page-fold-out {
  0% {
    opacity: 1;
    transform: translateX(0) rotateY(0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
  }
  45% {
    opacity: 1;
    transform: translateX(-18%) rotateY(-24deg);
    clip-path: polygon(0 0, 70% 2%, 58% 98%, 0 100%);
    filter: drop-shadow(18px 10px 18px rgba(25, 31, 27, 0.22));
  }
  100% {
    opacity: 0;
    transform: translateX(-70%) rotateY(-72deg);
    clip-path: polygon(0 0, 9% 4%, 5% 96%, 0 100%);
    filter: drop-shadow(25px 14px 22px rgba(25, 31, 27, 0.08));
  }
}

@media (max-width: 900px) {
  .news-spread {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "column telegram"
      "quote quote"
      "clipping clipping"
      "index index";
  }

  .photo-story,
  .almanac-grid,
  .source-note {
    grid-template-columns: 1fr;
  }

  .photo-story {
    grid-template-areas:
      "hero"
      "narrative"
      "contact";
  }

  .photo-story__narrative {
    padding-left: 0;
    border-left: 0;
  }

  .source-details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .news-spread {
    display: block;
    margin-top: 18px;
  }

  .news-note,
  .news-index {
    margin-bottom: 18px;
  }

  .news-note--clipping {
    display: block;
  }

  .contact-sheet {
    grid-template-columns: 1fr;
  }

  .almanac-grid {
    gap: 20px;
  }

  .source-note {
    gap: 24px;
  }

  .source-note__lead {
    font-size: 1.35rem;
  }

  .fold-review__header {
    display: block;
  }

  .fold-replay {
    margin-top: 14px;
  }

  .fold-stage {
    min-height: 520px;
  }

  .fold-sheet {
    padding: 24px 18px;
  }

  .fold-sheet--front figure {
    float: none;
    width: 100%;
    margin: 0 0 16px;
  }

  .fold-inside-grid {
    grid-template-columns: 1fr;
  }

  .fold-inside-grid figure {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fold-stage.is-folding .fold-sheet--front,
  .fold-stage.is-complete .fold-sheet--front {
    animation: none;
    opacity: 0;
    transform: none;
    clip-path: none;
  }
}
