:root {
  --forest-950: #10211c;
  --forest-900: #172b25;
  --forest-800: #203a32;
  --forest-700: #2f4b42;
  --forest-600: #435f55;
  --cream-50: #fbf8f1;
  --cream-100: #f5eee2;
  --cream-200: #eadbc4;
  --brass-300: #d1b27c;
  --brass-500: #b68b4e;
  --brass-700: #806037;
  --rust-500: #a25d3d;
  --leather-600: #84472f;
  --ink: #1d2c27;
  --muted: #6f756f;
  --line: rgba(32, 58, 50, .18);
  --shadow-sm: 0 10px 35px rgba(18, 34, 29, .12);
  --shadow-lg: 0 28px 80px rgba(11, 21, 18, .24);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  background: var(--cream-50);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

::selection { background: var(--brass-300); color: var(--forest-950); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 14px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--cream-50);
  color: var(--forest-950);
  font-weight: 700;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--cream-50);
  background: linear-gradient(to bottom, rgba(12, 27, 22, .88), rgba(12, 27, 22, .58));
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(16, 33, 28, .96);
  box-shadow: 0 8px 30px rgba(5, 14, 11, .22);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  min-width: 0;
}
.site-brand img {
  width: 48px;
  height: 48px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .22);
}
.site-brand span { display: grid; line-height: 1.05; }
.site-brand strong {
  font-family: var(--serif);
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: 1.06rem;
}
.site-brand small {
  margin-top: 5px;
  color: rgba(251, 248, 241, .72);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  color: rgba(251, 248, 241, .82);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 1px;
  background: var(--brass-300);
  transition: right .22s ease;
}
.site-nav a:hover,
.site-nav a:focus-visible { color: var(--cream-50); }
.site-nav a:hover::after,
.site-nav a:focus-visible::after { right: 0; }
.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(209, 178, 124, .7);
  border-radius: 999px;
}
.nav-cta:hover { background: var(--brass-500); color: var(--forest-950) !important; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  color: var(--cream-50);
  background: url("assets/photos/set-02.webp") center 52% / cover no-repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 44%, rgba(182, 139, 78, .16), transparent 30%),
    linear-gradient(90deg, rgba(10, 24, 20, .94) 0%, rgba(10, 24, 20, .78) 41%, rgba(10, 24, 20, .28) 72%, rgba(10, 24, 20, .18) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .15;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.07) 3px 4px),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(255,255,255,.045) 3px 4px);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(10, 22, 18, .84));
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: clamp(44px, 6vw, 96px);
  padding-block: 150px 110px;
}
.hero-copy { max-width: 650px; }
.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--rust-500);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--brass-300); }
h1, h2, h3 { margin: 0; font-family: var(--serif); line-height: .98; }
h1 {
  max-width: 740px;
  font-size: clamp(3.5rem, 7.2vw, 7.2rem);
  font-weight: 700;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.hero-lede {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(251, 248, 241, .88);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
  line-height: 1.72;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--brass-500); color: var(--forest-950); box-shadow: 0 10px 28px rgba(0,0,0,.18); }
.button-primary:hover { background: var(--brass-300); }
.button-ghost { border-color: rgba(251, 248, 241, .48); color: var(--cream-50); background: rgba(16, 33, 28, .2); }
.button-ghost:hover { border-color: var(--cream-50); background: rgba(251, 248, 241, .08); }
.button-light { background: var(--cream-50); color: var(--forest-950); }
.button-light:hover { background: var(--brass-300); }

.hero-logo {
  width: min(640px, 100%);
  margin: 0;
  justify-self: end;
  transform: rotate(-1.2deg);
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, .34));
}
.hero-logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 539;
  object-fit: contain;
  border-radius: 4px;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(251,248,241,.72);
  text-decoration: none;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.5; }

.statement {
  position: relative;
  overflow: hidden;
  padding: clamp(90px, 11vw, 155px) 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(182,139,78,.13), transparent 26%),
    var(--cream-100);
}
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image: radial-gradient(rgba(47,75,66,.18) .55px, transparent .55px);
  background-size: 6px 6px;
}
.statement-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
}
.badge-wrap {
  position: relative;
  width: 100%;
  max-width: 490px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.badge-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 30px 38px rgba(21,42,34,.25));
}
.badge-glow {
  position: absolute;
  inset: 15%;
  border-radius: 50%;
  background: rgba(182,139,78,.22);
  filter: blur(48px);
}
.statement-copy { max-width: 650px; }
.statement-copy h2,
.section-heading h2,
.set-intro h2,
.roots-inner h2 {
  color: var(--forest-900);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}
.statement-copy .lead {
  margin: 28px 0 0;
  font-family: var(--serif);
  color: var(--forest-800);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.5;
}
.statement-copy > p:last-child { margin: 0; color: #59665f; font-size: 1.02rem; }
.statement-rule { display: flex; align-items: center; gap: 12px; margin: 32px 0; }
.statement-rule span { width: 70px; height: 1px; background: var(--brass-500); }
.statement-rule i { width: 7px; height: 7px; border-radius: 50%; background: var(--rust-500); }


/* Episodes are presented as framed portraits on a plaid wall inspired by the set. */
.episodes {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(100px, 11vw, 155px) 0 clamp(118px, 12vw, 175px);
  color: var(--cream-50);
  background: var(--forest-900);
}
.episodes-plaid {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-color: #263b34;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 45px, rgba(226,230,217,.19) 45px 48px, transparent 48px 58px, rgba(8,20,16,.32) 58px 63px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(226,230,217,.17) 58px 61px, transparent 61px 72px, rgba(8,20,16,.34) 72px 77px),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255,255,255,.045) 11px 12px),
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(255,255,255,.038) 11px 12px);
}
.episodes::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 28%, rgba(209,178,124,.12), transparent 34%),
    linear-gradient(180deg, rgba(9,23,18,.2), rgba(9,23,18,.54) 60%, rgba(9,23,18,.74));
}
.episodes-wainscot {
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 28%;
  border-top: 8px solid #183028;
  box-shadow: inset 0 3px 0 rgba(209,178,124,.22), 0 -18px 50px rgba(6,15,12,.2);
  background-color: #203a32;
  background-image:
    linear-gradient(90deg, transparent 0 7%, rgba(9,23,18,.34) 7% 7.35%, transparent 7.35% 22.5%, rgba(9,23,18,.34) 22.5% 22.85%, transparent 22.85% 38%, rgba(9,23,18,.34) 38% 38.35%, transparent 38.35% 53.5%, rgba(9,23,18,.34) 53.5% 53.85%, transparent 53.85% 69%, rgba(9,23,18,.34) 69% 69.35%, transparent 69.35% 84.5%, rgba(9,23,18,.34) 84.5% 84.85%, transparent 84.85%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(0,0,0,.14));
}
.episodes-shell { position: relative; }
.episodes-heading {
  max-width: 800px;
  margin: 0 auto 74px;
  text-align: center;
}
.episodes-heading h2 {
  margin: 0;
  color: var(--cream-50);
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.2vw, 6.4rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.episodes-heading > p:last-child {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(251,248,241,.76);
  font-size: 1.06rem;
}
.episode-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 70px 44px;
  padding: 36px 24px 48px;
}
.episode-frame {
  --frame-dark: #50311f;
  --frame-mid: #74462c;
  --frame-light: #9a6846;
  --tilt: 0deg;
  --lift: 0px;
  position: relative;
  padding: 15px;
  transform: translateY(var(--lift)) rotate(var(--tilt));
  border: 1px solid rgba(5,13,10,.78);
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), transparent 22%),
    linear-gradient(145deg, var(--frame-light), var(--frame-mid) 34%, var(--frame-dark) 68%, #24150d);
  box-shadow:
    0 28px 52px rgba(4,11,8,.44),
    inset 0 0 0 3px rgba(255,255,255,.08),
    inset 0 0 0 6px rgba(0,0,0,.24);
  transition: transform .28s ease, box-shadow .28s ease;
}
.episode-frame::before {
  content: "";
  position: absolute;
  inset: 7px;
  pointer-events: none;
  border: 1px solid rgba(209,178,124,.52);
  box-shadow: inset 0 0 0 2px rgba(0,0,0,.2);
}
.episode-frame:hover {
  transform: translateY(calc(var(--lift) - 8px)) rotate(0deg);
  box-shadow: 0 36px 68px rgba(4,11,8,.52), inset 0 0 0 3px rgba(255,255,255,.1), inset 0 0 0 6px rgba(0,0,0,.24);
}
.frame-pin {
  position: absolute;
  left: 50%;
  top: -25px;
  width: 11px;
  height: 11px;
  z-index: 3;
  border-radius: 50%;
  background: var(--brass-300);
  box-shadow: 0 4px 6px rgba(0,0,0,.5), inset 0 0 0 2px var(--brass-700);
  transform: translateX(-50%);
}
.frame-pin::before,
.frame-pin::after {
  content: "";
  position: absolute;
  top: 8px;
  width: 82px;
  height: 1px;
  background: rgba(209,178,124,.58);
  transform-origin: top center;
}
.frame-pin::before { right: 3px; transform: rotate(-30deg); }
.frame-pin::after { left: 3px; transform: rotate(30deg); }
.frame-walnut { --frame-dark:#3f2418; --frame-mid:#6f432b; --frame-light:#a36c48; --tilt:-1.1deg; --lift:0px; }
.frame-forest { --frame-dark:#12261f; --frame-mid:#29483d; --frame-light:#516b5f; --tilt:.75deg; --lift:24px; }
.frame-brass { --frame-dark:#6d4f29; --frame-mid:#a77d42; --frame-light:#d1b27c; --tilt:-.55deg; --lift:-8px; }
.frame-black { --frame-dark:#111714; --frame-mid:#27312d; --frame-light:#4a554f; --tilt:.9deg; --lift:12px; }
.episode-frame-inner {
  position: relative;
  z-index: 1;
  padding: 12px;
  background: #efe5d5;
  box-shadow: inset 0 0 0 1px rgba(32,58,50,.22), inset 0 0 18px rgba(75,47,29,.12);
}
.episode-art {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(32,58,50,.28);
  background: var(--forest-800);
}
.episode-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.02);
}
.episode-status {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(209,178,124,.62);
  border-radius: 999px;
  color: var(--cream-50);
  background: rgba(16,33,28,.88);
  box-shadow: 0 5px 16px rgba(0,0,0,.25);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.episode-caption {
  padding: 22px 10px 12px;
  color: var(--forest-900);
  text-align: center;
}
.episode-number {
  display: block;
  margin-bottom: 8px;
  color: var(--rust-500);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.episode-caption h3 {
  color: var(--forest-900);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}
.episode-town {
  margin: 9px 0 0;
  color: var(--brass-700);
  font-family: var(--serif);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.episode-summary {
  margin: 14px 0 0;
  color: #667069;
  font-size: .84rem;
  line-height: 1.55;
}
.episodes-note {
  width: fit-content;
  margin: 66px auto 0;
  padding: 13px 22px;
  border: 1px solid rgba(209,178,124,.52);
  border-radius: 999px;
  color: rgba(251,248,241,.78);
  background: rgba(16,33,28,.55);
  font-family: var(--serif);
  font-size: 1rem;
  text-align: center;
}

.stories { padding: clamp(90px, 10vw, 145px) 0; background: var(--cream-50); }
.section-heading { max-width: 810px; margin-bottom: 54px; }
.section-heading > p:last-child { max-width: 560px; margin: 24px 0 0; color: var(--muted); font-size: 1.06rem; }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.story-card {
  position: relative;
  min-height: 360px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: linear-gradient(145deg, rgba(255,255,255,.84), rgba(245,238,226,.78));
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.story-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -58px auto;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(182,139,78,.28);
  border-radius: 50%;
}
.story-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: rgba(182,139,78,.52); }
.card-number {
  position: absolute;
  right: 24px;
  top: 18px;
  color: rgba(32,58,50,.09);
  font-family: var(--serif);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}
.story-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--forest-800);
  color: var(--brass-300);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.story-icon svg { width: 34px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.story-card h3 { color: var(--forest-900); font-size: 2rem; }
.story-card p { margin: 18px 0 0; color: #657069; }

.set-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(90px, 11vw, 150px) 0;
  color: var(--cream-50);
  background: var(--forest-900);
}
.set-plaid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .52;
  background-color: #20362f;
  background-image:
    repeating-linear-gradient(0deg, transparent 0 46px, rgba(214,224,216,.18) 46px 48px, transparent 48px 58px, rgba(4,13,10,.3) 58px 62px),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(214,224,216,.16) 58px 60px, transparent 60px 72px, rgba(4,13,10,.32) 72px 76px),
    repeating-linear-gradient(0deg, transparent 0 11px, rgba(255,255,255,.045) 11px 12px),
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(255,255,255,.035) 11px 12px);
}
.set-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12,27,22,.58), rgba(12,27,22,.82));
}
.section-kicker-light { color: var(--brass-300); }
.set-intro {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: end;
  gap: clamp(40px, 9vw, 120px);
  margin-bottom: 54px;
}
.set-intro h2 { color: var(--cream-50); }
.set-intro > p { max-width: 570px; margin: 0 0 6px; color: rgba(251,248,241,.72); font-size: 1.05rem; }
.gallery { display: grid; grid-template-columns: 1.35fr .85fr; grid-template-rows: repeat(2, minmax(240px, 1fr)); gap: 18px; }
.gallery-item {
  position: relative;
  min-height: 260px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  background: #142821;
  cursor: zoom-in;
  box-shadow: 0 22px 60px rgba(5,12,10,.32);
}
.gallery-item-wide { grid-row: 1 / span 2; min-height: 600px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.75,.15,1), filter .4s ease; }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,18,14,.82));
  pointer-events: none;
}
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.35rem;
}
.gallery-expand {
  position: absolute;
  right: 20px;
  bottom: 22px;
  z-index: 2;
  color: rgba(251,248,241,.65);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.roots {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--cream-50);
}
.roots-photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url("assets/photos/set-03.webp") center 58% / cover no-repeat;
  transform: scale(1.02);
}
.roots-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(13,29,23,.94) 0%, rgba(13,29,23,.8) 52%, rgba(13,29,23,.45) 100%),
    linear-gradient(180deg, rgba(13,29,23,.12), rgba(13,29,23,.72));
}
.roots::after {
  content: "";
  position: absolute;
  inset: 26px;
  z-index: -1;
  border: 1px solid rgba(209,178,124,.45);
  pointer-events: none;
}
.roots-inner { padding-block: 110px; }
.roots-inner > * { max-width: 800px; }
.roots-inner h2 { color: var(--cream-50); font-size: clamp(3rem, 6vw, 6.3rem); }
.roots-inner > p:not(.section-kicker) { margin: 28px 0 34px; color: rgba(251,248,241,.8); font-size: 1.12rem; }

.site-footer { padding: 44px 0; background: var(--forest-950); color: var(--cream-50); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr auto; align-items: center; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 70px; height: 70px; aspect-ratio: 1 / 1; object-fit: contain; border-radius: 50%; }
.footer-brand div { display: grid; }
.footer-brand strong { font-family: var(--serif); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-brand span { color: rgba(251,248,241,.58); font-size: .73rem; letter-spacing: .11em; text-transform: uppercase; }
.footer-copy { margin: 0; color: rgba(251,248,241,.58); font-size: .86rem; }
.copyright {
  max-width: 390px;
  margin: 0;
  color: rgba(251,248,241,.48);
  font-size: .74rem;
  line-height: 1.55;
  text-align: right;
}

.lightbox {
  width: min(1100px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  padding: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px;
  overflow: hidden;
  background: #0c1814;
  box-shadow: 0 32px 120px rgba(0,0,0,.58);
}
.lightbox::backdrop { background: rgba(5,12,10,.86); backdrop-filter: blur(6px); }
.lightbox img { width: 100%; max-height: calc(100svh - 28px); object-fit: contain; }
.lightbox-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(10,24,20,.72);
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid var(--brass-300); outline-offset: 4px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .menu-toggle {
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { width: 20px; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    background: rgba(16,33,28,.98);
    box-shadow: var(--shadow-lg);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a { padding: 14px 12px; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 6px; text-align: center; }

  .hero { min-height: auto; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 145px 120px;
  }
  .hero-logo { width: min(640px, 100%); justify-self: start; transform: rotate(-.5deg); }
  .scroll-cue { display: none; }
  .statement-grid { grid-template-columns: 1fr; }
  .badge-wrap { max-width: 430px; margin-inline: auto; }
  .episode-wall { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 62px 36px; }
  .episode-frame:nth-child(even) { --lift: 18px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: auto; }
  .set-intro { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item-wide { grid-column: 1 / -1; grid-row: auto; min-height: 480px; }
  .gallery-item:not(.gallery-item-wide) { min-height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .copyright { grid-column: 1 / -1; max-width: none; text-align: left; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 24px); }
  html { scroll-padding-top: 76px; }
  .header-inner { min-height: 68px; }
 .site-brand img { width: 42px; height: 42px; }
  .site-brand small { display: none; }
  .hero-grid { padding-block: 118px 80px; gap: 46px; }
  h1 { font-size: clamp(3.25rem, 15.8vw, 5.2rem); }
  .hero-lede { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-logo { width: 100%; }
  .statement, .episodes, .stories, .set-section { padding-block: 82px; }
  .statement-copy h2,
  .section-heading h2,
  .set-intro h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .badge-wrap { max-width: 340px; }
  .episodes-heading { margin-bottom: 58px; }
  .episode-wall { grid-template-columns: 1fr; gap: 54px; padding-inline: 8px; }
  .episode-frame { width: min(100%, 430px); margin-inline: auto; transform: none; }
  .episode-frame:hover { transform: translateY(-6px); }
  .frame-pin::before, .frame-pin::after { width: 64px; }
  .episodes-wainscot { height: 20%; }
  .episodes-note { margin-top: 52px; }
  .story-card { padding: 28px; }
  .gallery { grid-template-columns: 1fr; }
  .gallery-item-wide,
  .gallery-item:not(.gallery-item-wide) { grid-column: auto; min-height: 310px; }
  .gallery-expand { display: none; }
  .roots { min-height: 620px; }
  .roots::after { inset: 12px; }
  .roots-inner h2 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-copy { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; }
  .copyright { grid-column: auto; max-width: none; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
