@import url("https://fonts.googleapis.com/css2?family=Berkshire+Swash&family=Cormorant+Garamond:wght@400;500;600;700&family=Cormorant+SC:wght@500;600;700&display=swap");

:root {
  --cream: #f3efe6;
  --paper: #fbf8f2;
  --ink: #f6ead6;
  --ink-soft: rgba(246, 234, 214, 0.82);
  --ink-muted: rgba(246, 234, 214, 0.64);
  --accent: #c8662f;
  --accent-soft: rgba(244, 212, 170, 0.14);
  --line: rgba(246, 234, 214, 0.16);
  --line-strong: rgba(246, 234, 214, 0.28);
  --panel: rgba(17, 11, 8, 0.46);
  --panel-strong: rgba(15, 10, 7, 0.66);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  --display-font: "Cormorant Garamond", "Iowan Old Style", serif;
  --script-font: "Berkshire Swash", "Apple Chancery", cursive;
  --smallcaps-font: "Cormorant SC", "Palatino Linotype", serif;
  --body-font: "Cormorant Garamond", "Iowan Old Style", serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(226, 173, 112, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(83, 55, 33, 0.26), transparent 40%),
    #120c09;
  color: var(--ink);
  font-family: var(--body-font);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }
.issue-shell { position: relative; }
.scene {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  isolation: isolate;
  border-bottom: 1px solid rgba(246, 234, 214, 0.08);
}
.scene-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
}
.scene-inner-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100svh - 24px);
  gap: 0;
}
.hero-logo-banner {
  display: flex;
  position: relative;
  justify-content: center;
  width: 100%;
  margin-bottom: 8px;
}
.hero-logo-banner::after {
  content: '';
  position: absolute;
  inset: 18% 14% 8%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(248, 214, 166, 0.34), rgba(248, 214, 166, 0) 72%);
  filter: blur(34px);
  opacity: 0.72;
  pointer-events: none;
}
.scene-inner-wide {
  display: grid;
  gap: 28px;
  align-content: end;
}
.scene-inner-close {
  display: flex;
  align-items: end;
}
.scene-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.scene-backdrop-frame {
  position: absolute;
  inset: 0;
}
.scene-backdrop-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.58) saturate(0.82) contrast(0.95) brightness(0.68);
  transform: scale(1.04);
}
.scene-backdrop-frame.is-memory {
  inset: auto 5vw 7vh auto;
  width: min(28vw, 320px);
  height: min(38vw, 420px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(246, 234, 214, 0.14);
  box-shadow: var(--shadow);
  opacity: 0.52;
  transform: rotate(3deg);
}
.scene-backdrop-frame.is-memory img {
  filter: sepia(0.7) saturate(0.76) contrast(0.92) brightness(0.78);
  transform: none;
}
.scene-backdrop-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(10, 7, 5, 0.56);
  color: rgba(246, 234, 214, 0.84);
  font-size: 0.74rem;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.scene-wash {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, 0.16) 0%, rgba(10, 7, 5, 0.38) 22%, rgba(10, 7, 5, 0.72) 60%, rgba(10, 7, 5, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 7, 5, 0.82) 0%, rgba(10, 7, 5, 0.46) 48%, rgba(10, 7, 5, 0.7) 100%);
}
.scene-wash-light {
  background:
    linear-gradient(180deg, rgba(18, 12, 9, 0.18) 0%, rgba(18, 12, 9, 0.46) 32%, rgba(18, 12, 9, 0.84) 100%),
    linear-gradient(90deg, rgba(18, 12, 9, 0.72) 0%, rgba(18, 12, 9, 0.3) 52%, rgba(18, 12, 9, 0.82) 100%);
}
.hero-stack {
  width: min(900px, 100%);
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-logo {
  display: block;
  position: relative;
  z-index: 1;
  width: min(920px, 94vw);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  mix-blend-mode: normal;
  opacity: 1;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.34));
}
.masthead,
.section-label,
.portrait-kicker,
.note-kicker,
.issue-label,
.bundle-meta {
  font-family: var(--smallcaps-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.masthead,
.section-label,
.note-kicker {
  color: rgba(244, 212, 170, 0.94);
}
.issue-label {
  margin-top: 10px;
  color: rgba(246, 234, 214, 0.54);
}
h1,
h2,
h3 {
  font-family: var(--script-font);
  letter-spacing: 0;
  text-wrap: balance;
}
h1 {
  margin-top: 0;
  max-width: 13ch;
  font-size: clamp(4.2rem, 8vw, 7.8rem);
  line-height: 0.96;
  text-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}
.hero-blurb {
  display: grid;
  justify-items: center;
  text-align: center;
  max-width: 760px;
  margin-top: 2px;
}
.hero-meta-line {
  color: rgba(244, 212, 170, 0.94);
  font-family: var(--smallcaps-font);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero-blurb-title {
  margin-top: 22px;
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  line-height: 1.04;
  text-align: center;
}
.lede,
.hero-blurb-copy,
.story-paragraph,
.note-copy,
.media-copy,
.bundle-detail,
.bundle-items,
.portrait-reason,
.portrait-song,
.portrait-quote,
.story-aside {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}
.lede {
  max-width: 34ch;
  margin-top: 18px;
  font-size: clamp(1.18rem, 2.2vw, 1.45rem);
  line-height: 1.62;
  color: var(--ink);
}
.hero-blurb-copy {
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.18rem;
  line-height: 1.74;
}
.note-panel,
.bundle-slab,
.portrait-paper,
.media-module,
.hollis-sheet,
.close-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 11, 8, 0.56), rgba(17, 11, 8, 0.38));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.note-panel,
.close-panel {
  padding: 24px;
  border-radius: 28px;
}
.note-panel h2,
.section-intro h2,
.hollis-copy h2,
.close-panel h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 0.96;
}
.note-deck,
.media-tag,
.issue-meta {
  color: var(--ink-muted);
  font-size: 1.02rem;
  line-height: 1.6;
}
.note-deck,
.media-tag {
  margin-top: 10px;
}
.hero-blurb-deck {
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-blurb-copy + .hero-blurb-copy,
.note-copy + .note-copy,
.story-paragraph + .story-paragraph,
.media-copy + .media-copy {
  margin-top: 14px;
}
.issue-meta {
  margin-top: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
}
.anchor-row,
.section-links,
.bundle-actions,
.hollis-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.anchor-row {
  margin-top: 34px;
  justify-content: center;
}
.section-links {
  margin-top: 18px;
  justify-content: center;
}
.section-links a,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(246, 234, 214, 0.16);
  background: rgba(17, 11, 8, 0.28);
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--smallcaps-font);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.button-primary {
  background: linear-gradient(135deg, rgba(246, 234, 214, 0.96), rgba(231, 208, 172, 0.96));
  color: #18110d;
}
.button-secondary {
  background: rgba(17, 11, 8, 0.3);
  border-color: rgba(246, 234, 214, 0.2);
  color: var(--ink);
}
.section-intro {
  max-width: 760px;
}
.section-intro h2 {
  margin-top: 12px;
}
.story-aside {
  margin-top: 18px;
  max-width: 52ch;
  padding-left: 16px;
  border-left: 2px solid rgba(244, 212, 170, 0.4);
}
.bundle-rail,
.cast-rail,
.media-grid,
.playlist-grid,
.video-feature-layout {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}
.bundle-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cast-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.media-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
}
.playlist-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}
.video-feature-layout {
  grid-template-columns: minmax(0, 1fr);
}
.media-module-video { grid-area: video; }
.media-module-soundtrack { grid-area: soundtrack; }
.media-module-archive { grid-area: archive; }
.bundle-slab,
.portrait-paper,
.media-module {
  border-radius: 30px;
}
.media-module {
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 11, 8, 0.78), rgba(14, 10, 8, 0.84));
}
.media-module-video-feature {
  max-width: 920px;
}
.bundle-slab {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(17, 11, 8, 0.88), rgba(14, 10, 8, 0.94));
  backdrop-filter: none;
}
.bundle-copy {
  position: relative;
  padding: 20px 22px 22px;
}
.bundle-slab h3,
.portrait-paper h3,
.media-module h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  line-height: 1.02;
}
.bundle-slab-mystery {
  background: linear-gradient(180deg, rgba(32, 21, 15, 0.78), rgba(18, 12, 9, 0.62));
}
.bundle-visual {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(246, 234, 214, 0.12);
  background:
    radial-gradient(circle at top, rgba(244, 212, 170, 0.22), transparent 34%),
    rgba(10, 7, 5, 0.7);
}
.bundle-visual-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.34) saturate(0.92) contrast(0.94) brightness(0.68);
}
.bundle-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.18) 0%, rgba(12, 8, 6, 0.48) 42%, rgba(12, 8, 6, 0.9) 100%),
    linear-gradient(90deg, rgba(12, 8, 6, 0.52) 0%, rgba(12, 8, 6, 0.1) 56%, rgba(12, 8, 6, 0.46) 100%);
}
.bundle-visual-tone {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.92;
  mix-blend-mode: screen;
}
.bundle-visual-frost-pack .bundle-visual-tone {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 215, 156, 0.46), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(119, 162, 146, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(113, 177, 140, 0.22), rgba(255, 220, 180, 0.12) 45%, rgba(17, 11, 8, 0));
}
.bundle-visual-deep-frost .bundle-visual-tone {
  background:
    radial-gradient(circle at 20% 14%, rgba(196, 222, 236, 0.32), transparent 24%),
    radial-gradient(circle at 76% 28%, rgba(255, 213, 170, 0.28), transparent 26%),
    linear-gradient(145deg, rgba(116, 144, 182, 0.28), rgba(28, 20, 15, 0.1) 55%, rgba(255, 213, 170, 0.08));
}
.bundle-visual-permafrost .bundle-visual-tone {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 222, 176, 0.18), transparent 22%),
    radial-gradient(circle at 24% 72%, rgba(164, 188, 205, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(70, 84, 98, 0.22), rgba(255, 213, 170, 0.08) 48%, rgba(17, 11, 8, 0));
}
.bundle-visual-frost-box .bundle-visual-tone {
  background:
    radial-gradient(circle at 22% 26%, rgba(255, 216, 166, 0.22), transparent 24%),
    radial-gradient(circle at 74% 60%, rgba(184, 201, 212, 0.18), transparent 26%),
    linear-gradient(160deg, rgba(126, 145, 163, 0.2), rgba(255, 213, 170, 0.1) 52%, rgba(17, 11, 8, 0));
}
.bundle-visual-deep-freeze .bundle-visual-tone {
  background:
    radial-gradient(circle at 18% 18%, rgba(173, 200, 221, 0.24), transparent 22%),
    radial-gradient(circle at 82% 26%, rgba(255, 209, 156, 0.24), transparent 22%),
    linear-gradient(145deg, rgba(88, 113, 149, 0.3), rgba(42, 31, 24, 0.08) 50%, rgba(255, 213, 170, 0.08));
}
.bundle-visual-black-ice .bundle-visual-tone {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 226, 184, 0.16), transparent 20%),
    radial-gradient(circle at 18% 74%, rgba(87, 104, 124, 0.16), transparent 22%),
    linear-gradient(135deg, rgba(34, 44, 54, 0.28), rgba(17, 11, 8, 0.14) 50%, rgba(255, 213, 170, 0.06));
}
.bundle-brand-strip,
.bundle-brand-caption {
  position: relative;
  z-index: 2;
}
.bundle-brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: calc(100% - 32px);
}
.bundle-brand-mark,
.bundle-brand-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 18px;
  border: 1px solid rgba(246, 234, 214, 0.16);
  background: rgba(14, 10, 8, 0.46);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.bundle-brand-mark:nth-child(odd),
.bundle-brand-chip:nth-child(odd) {
  transform: translateY(-3px);
}
.bundle-brand-mark:nth-child(even),
.bundle-brand-chip:nth-child(even) {
  transform: translateY(10px);
}
.bundle-brand-logo {
  display: block;
  max-width: 108px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bundle-brand-caption {
  margin-top: auto;
  color: rgba(246, 234, 214, 0.72);
  font-family: var(--smallcaps-font);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bundle-mood {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.7;
}
.bundle-detail {
  margin-top: 12px;
}
.bundle-item-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.bundle-item {
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.bundle-item::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(244, 212, 170, 0.92);
}
.portrait-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(246, 234, 214, 0.14);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}
.portrait-copy {
  margin-top: 16px;
}
.portrait-song,
.portrait-quote {
  margin-top: 12px;
}
.media-embed {
  margin: 16px 0 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(246, 234, 214, 0.14);
  background: rgba(10, 7, 5, 0.36);
}
.media-embed iframe {
  display: block;
  width: 100%;
  border: 0;
}
.media-embed-audio iframe {
  min-height: 152px;
}
.media-embed-video iframe {
  min-height: 320px;
}
.media-preview {
  position: relative;
  display: block;
  margin: 16px 0;
  min-height: 250px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(246, 234, 214, 0.14);
  background:
    radial-gradient(circle at top, rgba(244, 212, 170, 0.16), transparent 42%),
    rgba(10, 7, 5, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 54px rgba(0, 0, 0, 0.26);
}
.media-preview-video {
  aspect-ratio: 16 / 9;
  min-height: 0;
}
.media-preview-image {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: sepia(0.18) saturate(0.92) contrast(0.98) brightness(0.72);
}
.media-preview-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 6, 0.04) 0%, rgba(12, 8, 6, 0.2) 30%, rgba(12, 8, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(12, 8, 6, 0.38) 0%, rgba(12, 8, 6, 0.08) 55%, rgba(12, 8, 6, 0.4) 100%);
}
.media-preview-kicker,
.media-preview-play,
.media-preview-title {
  position: absolute;
  left: 18px;
  right: 18px;
  z-index: 1;
}
.media-preview-play {
  top: 50%;
  left: 50%;
  right: auto;
  width: 78px;
  height: 78px;
  margin: -39px 0 0 -39px;
  border-radius: 999px;
  background: rgba(12, 8, 6, 0.58);
  border: 1px solid rgba(246, 234, 214, 0.18);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}
.media-preview-play-triangle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -13px;
  margin-left: -5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid rgba(246, 234, 214, 0.96);
}
.media-preview-kicker {
  top: 18px;
  color: rgba(244, 212, 170, 0.96);
  font-family: var(--smallcaps-font);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.media-preview-title {
  bottom: 18px;
  color: var(--ink);
  font-family: var(--script-font);
  font-size: clamp(1.4rem, 2.2vw, 2.1rem);
  line-height: 1.02;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.34);
}
.media-footnote {
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.hollis-sheet {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.72fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 32px;
}
.hollis-actions {
  margin-top: 20px;
}
.close-panel {
  max-width: 720px;
}
@media (max-width: 980px) {
  .cast-rail,
  .media-grid,
  .playlist-grid,
  .hollis-sheet {
    grid-template-columns: 1fr;
  }
  .scene-backdrop-frame.is-memory {
    width: min(40vw, 260px);
    height: min(54vw, 320px);
    right: 16px;
    bottom: 16px;
  }
  .bundle-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .scene-inner {
    width: min(100vw - 24px, 100%);
    padding: 72px 0 56px;
  }
  h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }
  .section-intro h2,
  .note-panel h2,
  .hollis-copy h2,
  .close-panel h2 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
  .scene-backdrop-frame.is-memory {
    opacity: 0.34;
  }
  .bundle-rail,
  .cast-rail {
    grid-template-columns: 1fr;
  }
  .button,
  .section-links a,
  .status-pill {
    width: 100%;
    justify-content: center;
  }
  .media-preview {
    min-height: 220px;
  }
  .bundle-visual {
    min-height: 200px;
  }
  .media-embed-video iframe {
    min-height: 220px;
  }
}
