:root {
  --ink: #0d1718;
  --forest: #173f3b;
  --forest-2: #245f58;
  --snow: #f3f0e8;
  --paper: #fbfaf6;
  --gold: #d49a43;
  --gold-dark: #a96e1e;
  --mist: #d9e2df;
  --muted: #66716f;
  --line: rgba(13, 23, 24, .14);
  --shadow: 0 18px 50px rgba(13, 23, 24, .12);
  --radius: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: white;
  padding: .75rem 1rem;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 250, 246, .9);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--forest);
  display: grid;
  place-items: center;
  color: white;
  overflow: hidden;
}
.brand-mark svg { width: 30px; height: 30px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  font-weight: 650;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-dark); }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.16), transparent 28%),
    linear-gradient(145deg, #0f2f2d 0%, #194a45 48%, #0c2524 100%);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% 0 -10%;
  height: 58%;
  background: url('assets/mountain-hero.svg') center bottom / cover no-repeat;
  opacity: .95;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 88px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .72fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  font-weight: 800;
  color: #f0bd6d;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  letter-spacing: -.055em;
  max-width: 820px;
  margin-bottom: 20px;
}
.hero-subtitle {
  margin: 0 0 28px;
  max-width: 710px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.88);
}
.hero-actions, .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #17201e;
  background: #f0b45d;
  box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.button-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
}
.button-dark {
  color: white;
  background: var(--forest);
}
.button-outline {
  border: 1px solid var(--line);
  background: white;
}

.book-cover-wrap { justify-self: end; width: min(100%, 390px); }
.book-cover-figure {
  margin: 0;
  position: relative;
  transform: rotate(2deg);
}
.book-cover-figure::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  border-radius: 7px 0 0 7px;
  background: rgba(0,0,0,.18);
  pointer-events: none;
}
.book-cover {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 7px 16px 16px 7px;
  overflow: hidden;
  background: #21544f;
  box-shadow: 0 34px 80px rgba(0,0,0,.38), -14px 0 26px rgba(0,0,0,.12) inset;
}
.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 88px 0;
}
.section-tight { padding-top: 60px; padding-bottom: 60px; }
.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}
.section-heading h2 { font-size: clamp(2.35rem, 5vw, 4rem); margin-bottom: 16px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; margin: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow);
}
.stat { padding: 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span { color: var(--muted); font-size: .95rem; }

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 90px);
  align-items: center;
}
.prose h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.prose p { color: #35423f; }
.kicker { font-weight: 800; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; }

.book-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.fact-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.fact-card b { display: block; margin-bottom: 3px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fact-card span { font-family: Georgia, "Times New Roman", serif; font-size: 1.2rem; }

.dark-band { background: var(--ink); color: white; }
.dark-band .section-heading p, .dark-band .prose p { color: rgba(255,255,255,.72); }
.media-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(140deg, rgba(255,255,255,.09), rgba(255,255,255,.025));
  padding: clamp(28px, 5vw, 52px);
}
.media-card h3 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 14px; }
.media-card p { color: rgba(255,255,255,.74); max-width: 720px; }

.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child { border-bottom: 1px solid var(--line); }
.timeline-year { font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; color: var(--forest); font-weight: 700; }
.timeline-item h3 { margin-bottom: 8px; font-size: 1.35rem; }
.timeline-item p { margin: 0; color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(13,23,24,.05);
}
.card h3 { font-size: 1.7rem; margin-bottom: 10px; }
.card p { color: var(--muted); margin-top: 0; }
.card a { margin-top: auto; font-weight: 800; color: var(--forest-2); text-decoration-thickness: 2px; text-underline-offset: 4px; }

.page-hero {
  background: linear-gradient(145deg, #123632, #1d514b);
  color: white;
}
.page-hero .section { padding-top: 70px; padding-bottom: 72px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.9rem); margin-bottom: 14px; }
.page-hero p { max-width: 780px; color: rgba(255,255,255,.82); font-size: 1.15rem; }

.credit-group {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
}
.credit-group h2 { font-size: 1.35rem; margin: 0; }
.credit-list { columns: 2; column-gap: 34px; }
.credit-list p { margin: 0 0 10px; break-inside: avoid; }
.credit-list b { color: var(--forest); }

.notice {
  background: #f3eadb;
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  border-radius: 0 12px 12px 0;
  color: #49391f;
}

.site-footer {
  background: #091110;
  color: rgba(255,255,255,.76);
}
.footer-grid {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.4fr .6fr .6fr .9fr;
  gap: 34px;
}
.footer-grid h2 { color: white; font-size: 1.5rem; }
.footer-grid h3 { color: white; font: 700 .82rem/1.2 Inter, sans-serif; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid a { display: block; color: rgba(255,255,255,.8); text-decoration: none; margin: 8px 0; }
.footer-grid a:hover { color: white; }
.footer-bottom {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 22px 0 34px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .86rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px 24px;
    background: rgba(251, 250, 246, .98);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 64px; }
  .book-cover-wrap { justify-self: center; width: min(78vw, 360px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .two-col { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .credit-group { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .nav-wrap { min-height: 68px; }
  .nav-links { top: 68px; }
  .brand { font-size: .92rem; }
  .hero-grid { padding: 48px 0 72px; }
  h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .section { padding: 68px 0; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .book-facts { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 4px; }
  .credit-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}


.hero-grid-shared { grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr); }
.shared-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: end;
  width: 100%;
}
.cover-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
  text-decoration: none;
  min-width: 0;
}
.cover-feature:hover .cover-art-figure { transform: translateY(-6px); }
.cover-label {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.cover-art-figure {
  margin: 0;
  transition: transform .22s ease;
  filter: drop-shadow(0 28px 42px rgba(0,0,0,.34));
}
.paired-cover-art {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 6px 13px 13px 6px;
  background: #183f3b;
}
.cover-feature-film { transform: rotate(-1.2deg) translateY(18px); }
.cover-feature-book { transform: rotate(1.2deg) translateY(-6px); }
.cover-feature-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 4px;
}
.cover-feature-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.1;
}
.cover-feature-copy small { color: rgba(255,255,255,.74); font-weight: 700; }
.shared-heading { max-width: 850px; }
.pillar-grid { display:grid; grid-template-columns:1fr 1fr; gap:22px; }
.pillar-card { border-radius:var(--radius); padding:clamp(30px,5vw,52px); min-height:420px; display:flex; flex-direction:column; box-shadow:var(--shadow); }
.pillar-card h3 { font-size:clamp(2rem,4vw,3.3rem); margin-bottom:18px; }
.pillar-card p { max-width:620px; }
.pillar-film { background:linear-gradient(145deg,#0d1a1a,#183f3b); color:white; }
.pillar-film p { color:rgba(255,255,255,.78); }
.pillar-book { background:#fff; border:1px solid var(--line); }
.pillar-book p { color:#475451; }
.pillar-meta { margin-top:auto; padding-top:28px; font-size:.9rem; font-weight:700; opacity:.85; }
.release-banner { display:flex; align-items:center; justify-content:space-between; gap:36px; padding:36px 40px; border-radius:var(--radius); background:#f3eadb; border:1px solid rgba(169,110,30,.18); }
.release-banner > div { max-width:800px; }
.release-banner h2 { font-size:clamp(2rem,4vw,3.25rem); margin-bottom:10px; }
.release-banner p:last-child { margin-bottom:0; color:#554936; }

@media (max-width: 860px) {
  .hero-grid-shared { grid-template-columns:1fr; }
  .shared-media { width:min(100%,650px); margin:12px auto 0; }
  .pillar-grid { grid-template-columns:1fr; }
  .release-banner { flex-direction:column; align-items:flex-start; }
}
@media (max-width: 560px) {
  .shared-media { gap:12px; }
  .cover-feature-film { transform: rotate(-.7deg) translateY(8px); }
  .cover-feature-book { transform: rotate(.7deg) translateY(-2px); }
  .cover-feature-copy strong { font-size:1rem; }
  .cover-feature-copy small { font-size:.72rem; }
  .cover-label { font-size:.65rem; padding:5px 8px; }
  .release-banner { padding:28px; }
}

.watch-hero-grid,
.credits-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(220px, .46fr);
  gap: clamp(42px, 7vw, 90px);
  align-items: center;
}
.watch-hero-grid h1,
.credits-hero-grid h1 { max-width: 850px; }
.watch-art-frame,
.credits-art-frame,
.dvd-detail-art {
  margin: 0;
  justify-self: end;
  width: min(100%, 310px);
}
.watch-art-frame img,
.credits-art-frame img,
.dvd-detail-art img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 8px 16px 16px 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,.28);
}
.watch-art-frame { transform: rotate(1.4deg); }
.credits-art-frame { transform: rotate(-1deg); }
.platform-panel {
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.platform-status {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.status-dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(212,154,67,.13);
}
.platform-status strong { display:block; font-family: Georgia, "Times New Roman", serif; font-size: 1.5rem; margin-bottom: 3px; }
.platform-status span { color: var(--muted); }
.platform-options-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.platform-option { padding:22px; border-radius:14px; background:var(--snow); border:1px solid var(--line); }
.platform-option b { display:block; margin-bottom:5px; color:var(--forest); }
.platform-option span { color:var(--muted); font-size:.9rem; }
.watch-summary-grid { align-items:start; }
.watch-facts { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.watch-facts > div { padding:24px; border-radius:14px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.06); }
.watch-facts b { display:block; color:#f0bd6d; text-transform:uppercase; letter-spacing:.08em; font-size:.76rem; margin-bottom:5px; }
.watch-facts span { font-family:Georgia,"Times New Roman",serif; font-size:1.25rem; }
.dvd-edition-grid { align-items:center; }
.dvd-detail-art { justify-self:center; width:min(100%,330px); transform:rotate(-1.25deg); }
.edition-details { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:26px 0; }
.edition-details > div { padding:17px 18px; border:1px solid var(--line); border-radius:12px; background:white; }
.edition-details span { display:block; color:var(--muted); text-transform:uppercase; font-size:.72rem; letter-spacing:.08em; font-weight:800; }
.edition-details strong { display:block; margin-top:3px; font-family:Georgia,"Times New Roman",serif; }
.availability-note { font-size:.9rem; color:var(--muted)!important; }
.credit-lead { max-width:850px; }
.credit-lead h2 { font-size:clamp(2.25rem,5vw,4rem); margin-bottom:14px; }
.credit-lead p:last-child { color:var(--muted); font-size:1.08rem; }
.credits-section { padding-top:0; }
.credit-feature { font-size:1.08rem; line-height:1.75; }

@media (max-width: 860px) {
  .watch-hero-grid,
  .credits-hero-grid { grid-template-columns:1fr; }
  .watch-art-frame,
  .credits-art-frame { justify-self:center; width:min(62vw,300px); }
  .platform-options-grid { grid-template-columns:1fr; }
}
@media (max-width: 560px) {
  .watch-art-frame,
  .credits-art-frame { width:min(72vw,280px); }
  .watch-facts,
  .edition-details { grid-template-columns:1fr; }
}
