:root {
  --paper: #f2eee6;
  --paper-soft: #f8f5ef;
  --ink: #171512;
  --ink-soft: #292520;
  --cream: #fffaf2;
  --accent: #9e6657;
  --accent-soft: #d5b1a4;
  --muted: #716b63;
  --line: rgba(23, 21, 18, .14);
  --light-line: rgba(255, 250, 242, .18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, .75, .24, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(255,255,255,.66), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open,
body.lightbox-open { overflow: hidden; }
img, video { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { color: var(--cream); background: var(--accent); }

body::before {
  content: "";
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  width: min(1160px, calc(100vw - 38px));
  min-height: 62px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease, min-height .35s ease;
}
.site-header.scrolled {
  min-height: 56px;
  background: rgba(248, 245, 239, .84);
  border-color: rgba(23, 21, 18, .10);
  box-shadow: 0 14px 45px rgba(23, 21, 18, .08);
  backdrop-filter: blur(18px) saturate(125%);
  -webkit-backdrop-filter: blur(18px) saturate(125%);
}
.wordmark {
  justify-self: start;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .18em;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.desktop-nav a {
  position: relative;
  padding: 8px 0;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 1px;
  background: currentColor;
  transition: right .3s ease;
}
.desktop-nav a:hover::after { right: 0; }
.menu-toggle {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform .3s ease;
}
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(23, 21, 18, .985);
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu-inner { width: min(520px, calc(100vw - 48px)); }
.mobile-menu-inner > p {
  margin: 0 0 55px;
  color: rgba(255,250,242,.48);
  font-size: .7rem;
  letter-spacing: .18em;
}
.mobile-menu a {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,250,242,.16);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 12vw, 5rem);
  line-height: 1;
}
.mobile-menu a span {
  color: var(--accent-soft);
  font-family: var(--sans);
  font-size: .65rem;
  letter-spacing: .15em;
}

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

.hero {
  position: relative;
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px 0 72px;
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
}
.hero::before {
  content: "G/J";
  position: absolute;
  z-index: -1;
  left: -2vw;
  bottom: 1vh;
  color: rgba(23,21,18,.026);
  font-family: var(--serif);
  font-size: min(31vw, 520px);
  line-height: .65;
  letter-spacing: -.08em;
  pointer-events: none;
}
.eyebrow {
  margin: 0 0 32px;
  color: var(--accent);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5.3rem, 9.2vw, 10.4rem);
  font-weight: 500;
  line-height: .74;
  letter-spacing: -.065em;
}
.hero h1 em,
.manifesto-main em,
.archive-heading h2 em,
.films-title h2 em,
.closing blockquote em {
  color: var(--accent);
  font-weight: 500;
}
.hero-intro {
  max-width: 500px;
  margin: 34px 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  line-height: 1.45;
}
.birthday-message {
  max-width: 510px;
  margin-top: 24px;
  padding: 4px 0 5px 20px;
  display: grid;
  gap: 6px;
  border-left: 2px solid var(--accent);
}
.birthday-message p,
.birthday-message strong,
.birthday-message span { margin: 0; }
.birthday-message p {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 1rem;
}
.birthday-message strong {
  font-family: var(--serif);
  font-size: clamp(1.22rem, 1.6vw, 1.52rem);
  font-weight: 600;
  line-height: 1.35;
}
.birthday-message span {
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.6;
}
.circle-link {
  width: 112px;
  height: 112px;
  margin-top: 34px;
  padding: 19px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: .65rem;
  line-height: 1.35;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .35s ease, background .35s ease, transform .35s var(--ease);
}
.circle-link b { font-size: 1.35rem; font-weight: 400; }
.circle-link:hover { color: var(--cream); background: var(--ink); transform: rotate(-5deg); }

.hero-art {
  margin: 0;
  padding: 14px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  box-shadow: 0 28px 90px rgba(23, 21, 18, .12);
  transform: rotate(1.2deg);
}
.birthday-feature {
  width: auto;
  max-width: 100%;
  justify-self: center;
  scroll-margin-top: 96px;
  transform: rotate(1deg);
}
.hero-art-topline,
.hero-art figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-art-topline { padding: 2px 3px 13px; }
.hero-art figcaption { padding: 13px 3px 2px; }
.hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1052 / 585;
  background: #111;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.birthday-video {
  position: relative;
  height: min(64svh, 720px);
  max-width: 100%;
  overflow: hidden;
  aspect-ratio: 464 / 848;
  background: #08090e;
}
.birthday-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16);
}
.birthday-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #08090e;
}
.birthday-video-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 10px 13px;
  color: var(--cream);
  background: rgba(23, 21, 18, .72);
  border: 1px solid rgba(255, 250, 242, .24);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: var(--serif);
  font-size: .9rem;
  letter-spacing: .02em;
}
.hero-side-note {
  position: absolute;
  right: -32px;
  top: 50%;
  margin: 0;
  color: var(--muted);
  font-size: .59rem;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.ticker {
  overflow: hidden;
  color: var(--cream);
  background: var(--ink);
  border-block: 1px solid var(--ink);
}
.ticker div {
  width: max-content;
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  animation: ticker 24s linear infinite;
}
.ticker span { font-family: var(--serif); font-size: 1.03rem; letter-spacing: .08em; }
.ticker i { color: var(--accent-soft); font-size: .7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto {
  padding: clamp(110px, 13vw, 190px) max(48px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 60px;
  color: var(--cream);
  background: var(--ink);
}
.chapter-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.chapter-label span {
  min-width: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--accent);
}
.chapter-label p { margin: 0; }
.chapter-label.light { color: rgba(255,250,242,.52); }
.chapter-label.light span { color: var(--accent-soft); }
.manifesto-copy { max-width: 1000px; }
.manifesto-main {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.7vw, 8.9rem);
  font-weight: 500;
  line-height: .85;
  letter-spacing: -.055em;
}
.manifesto-note {
  max-width: 660px;
  margin: 70px 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  color: rgba(255,250,242,.62);
  font-size: .92rem;
  line-height: 1.85;
}
.manifesto-note p { margin: 0; }

.portraits {
  padding-top: clamp(100px, 12vw, 180px);
  padding-bottom: clamp(115px, 13vw, 195px);
  display: grid;
  grid-template-columns: 1.17fr .83fr;
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
}
.portrait { position: relative; margin: 0; }
.portrait img {
  display: block;
  width: 100%;
  height: auto;
  background: #ddd5c9;
}
.portrait-primary { padding-top: 30px; }
.portrait-primary img { box-shadow: 0 30px 80px rgba(23,21,18,.11); }
.portrait-secondary { width: min(100%, 520px); margin: 0 0 0 auto; }
.portrait-number {
  position: absolute;
  z-index: 2;
  top: 0;
  left: -22px;
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: var(--accent);
  border-radius: 50%;
  font-size: .7rem;
  letter-spacing: .15em;
}
.portrait-secondary .portrait-number { top: -30px; }
.portrait figcaption {
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr minmax(190px, .75fr);
  gap: 34px;
  align-items: end;
}
.portrait figcaption span {
  color: var(--accent);
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.portrait figcaption h2 {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 500;
  line-height: .93;
  letter-spacing: -.035em;
}
.portrait figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.7;
}
.portrait-side { padding-top: clamp(90px, 12vw, 175px); }
.side-quote {
  max-width: 390px;
  margin: 0 0 86px auto;
  padding: 25px 0 25px 28px;
  border-left: 1px solid var(--accent);
}
.side-quote span {
  color: var(--accent);
  font-size: .64rem;
  letter-spacing: .18em;
}
.side-quote p {
  margin: 15px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1.03;
}

.archive {
  padding: clamp(110px, 13vw, 190px) 0;
  color: var(--cream);
  background: var(--ink-soft);
}
.archive-inner {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1.45fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.archive-heading {
  position: sticky;
  top: 118px;
}
.archive-heading h2 {
  margin: 52px 0 32px;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 6.4vw, 7.4rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.055em;
}
.archive-heading > p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,250,242,.58);
  font-size: .88rem;
  line-height: 1.8;
}
.archive-count {
  margin-top: 58px;
  padding-top: 18px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  border-top: 1px solid var(--light-line);
}
.archive-count strong {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 500;
}
.archive-count span {
  color: rgba(255,250,242,.42);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.memory-columns { columns: 3 240px; column-gap: 18px; }
.memory-card {
  width: 100%;
  margin: 0 0 18px;
  padding: 8px 8px 13px;
  display: inline-block;
  break-inside: avoid;
  color: var(--cream);
  background: #1d1a17;
  border: 1px solid rgba(255,250,242,.11);
  cursor: zoom-in;
  text-align: left;
  transition: transform .45s var(--ease), border-color .35s ease, background .35s ease;
}
.memory-card:nth-child(4n + 2) { transform: translateY(18px); }
.memory-card:nth-child(4n + 2):hover { transform: translateY(12px); }
.memory-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,250,242,.32);
  background: #211d1a;
}
.memory-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #151311;
}
.memory-card > span {
  padding: 13px 3px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,250,242,.72);
  font-family: var(--serif);
  font-size: .98rem;
}
.memory-card > span b {
  color: var(--accent-soft);
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .13em;
}

.films {
  padding: clamp(110px, 13vw, 190px) 0;
  overflow: hidden;
  background: var(--paper-soft);
}
.films-intro {
  display: grid;
  grid-template-columns: .36fr 1.64fr;
  gap: 60px;
}
.films-title {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 55px;
  align-items: end;
}
.films-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.4rem, 8vw, 9rem);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.06em;
}
.films-title > p {
  max-width: 370px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.8;
}
.featured-film {
  margin-top: 90px;
  padding: clamp(22px, 3vw, 44px);
  display: grid;
  grid-template-columns: .35fr 1.65fr;
  gap: clamp(25px, 5vw, 72px);
  align-items: end;
  color: var(--cream);
  background: var(--ink);
}
.film-meta { padding-bottom: 6px; }
.film-meta > span {
  color: var(--accent-soft);
  font-size: .62rem;
  letter-spacing: .18em;
}
.film-meta h3 {
  margin: 22px 0 9px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 500;
  line-height: .9;
}
.film-meta p {
  margin: 0;
  color: rgba(255,250,242,.48);
  font-size: .65rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: var(--ratio, 9 / 16);
  background: #090807;
  box-shadow: 0 22px 55px rgba(23,21,18,.15);
}
.video-frame.landscape { --ratio: 848 / 464; }
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #090807;
}
.film-reel {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.film-card {
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.film-card > div:last-child {
  padding: 13px 4px 3px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.film-card > div:last-child span {
  color: var(--accent);
  font-size: .62rem;
  letter-spacing: .14em;
}
.film-card > div:last-child p {
  margin: 0;
  color: var(--muted);
  font-size: .61rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.closing {
  padding-top: clamp(120px, 15vw, 220px);
  padding-bottom: clamp(120px, 15vw, 220px);
  text-align: center;
}
.closing-label {
  margin: 0 0 45px;
  color: var(--accent);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.closing blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 8.2vw, 9.2rem);
  font-weight: 500;
  line-height: .81;
  letter-spacing: -.057em;
}
.closing-signature {
  width: 180px;
  height: 180px;
  margin: 75px auto 0;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: rotate(-7deg);
}
.closing-signature span {
  font-family: var(--serif);
  font-size: 2.2rem;
}
.closing-signature p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .57rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-footer {
  min-height: 86px;
  padding: 24px max(30px, calc((100vw - 1320px) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  color: rgba(255,250,242,.52);
  background: var(--ink);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer > a {
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1rem;
  letter-spacing: .18em;
}
.site-footer p { margin: 0; text-align: center; }
.site-footer p:last-child { text-align: right; }

.lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  padding: 42px 96px 34px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) 60px;
  align-items: center;
  color: var(--cream);
  background: rgba(10, 9, 8, .975);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure {
  min-width: 0;
  height: calc(100svh - 86px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
}
.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox figcaption {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: rgba(255,250,242,.68);
  font-family: var(--serif);
  font-size: 1rem;
}
.lightbox-count {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .15em;
}
.lightbox-close,
.lightbox-arrow {
  color: var(--cream);
  background: transparent;
  border: 0;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  padding: 10px;
  color: rgba(255,250,242,.72);
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.lightbox-close span { margin-left: 7px; font-size: 1.25rem; vertical-align: -2px; }
.lightbox-arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255,250,242,.22);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: color .25s ease, background .25s ease;
}
.lightbox-arrow:hover { color: var(--ink); background: var(--cream); }

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 56px, 1080px); }
  .hero { grid-template-columns: .7fr 1.3fr; gap: 46px; }
  .hero-side-note { display: none; }
  .manifesto, .films-intro { grid-template-columns: .28fr 1.72fr; }
  .archive-inner { grid-template-columns: 300px 1fr; gap: 55px; }
  .memory-columns { columns: 2 230px; }
  .film-reel { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
  :root { --shell: min(100% - 42px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 88px;
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .birthday-feature { order: -1; }
  .birthday-video { height: min(62svh, 620px); }
  .hero-copy { max-width: 620px; }
  .hero-art { transform: none; }
  .manifesto, .films-intro {
    padding-left: 28px;
    padding-right: 28px;
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .manifesto-note { margin-left: 0; }
  .portraits { grid-template-columns: 1fr; }
  .portrait-primary { width: min(100%, 620px); }
  .portrait-side { padding-top: 30px; }
  .side-quote { margin: 0 0 70px; }
  .portrait-secondary { width: min(84%, 520px); }
  .archive-inner { grid-template-columns: 1fr; }
  .archive-heading { position: relative; top: auto; max-width: 680px; }
  .archive-count { max-width: 340px; }
  .memory-columns { columns: 2 220px; }
  .films-title { grid-template-columns: 1fr; gap: 30px; }
  .featured-film { grid-template-columns: 1fr; }
  .film-meta { display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 20px; }
  .film-meta h3 { margin: 0; }
  .film-reel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  :root { --shell: calc(100vw - 32px); }
  .site-header { top: max(8px, env(safe-area-inset-top)); width: calc(100vw - 18px); padding: 0 15px; }
  .site-header.scrolled { min-height: 52px; }
  .wordmark { font-size: 1.02rem; }
  .hero { padding-top: 92px; padding-bottom: 68px; gap: 44px; }
  .eyebrow { margin-bottom: 22px; font-size: .58rem; }
  .hero h1 { font-size: clamp(4.7rem, 24vw, 7.2rem); }
  .hero-intro { margin-top: 28px; font-size: 1.12rem; }
  .birthday-message { margin-top: 20px; padding-left: 15px; }
  .birthday-message p { font-size: .94rem; }
  .birthday-message strong { font-size: 1.18rem; }
  .birthday-message span { font-size: .7rem; }
  .circle-link { width: 96px; height: 96px; margin-top: 34px; padding: 16px; font-size: .56rem; }
  .hero-art { padding: 8px; box-shadow: 0 20px 50px rgba(23,21,18,.11); }
  .birthday-feature { width: auto; }
  .birthday-video { height: min(57svh, 540px); }
  .birthday-video-badge { top: 10px; left: 10px; padding: 8px 11px; font-size: .78rem; }
  .hero-art-topline, .hero-art figcaption { font-size: .52rem; letter-spacing: .12em; }
  .hero-art-topline { padding-bottom: 8px; }
  .hero-art figcaption { padding-top: 8px; }
  .ticker div { padding: 15px 0; gap: 25px; }
  .ticker span { font-size: .88rem; }
  .manifesto { padding-top: 92px; padding-bottom: 104px; }
  .manifesto-main { font-size: clamp(3.45rem, 16vw, 5.2rem); line-height: .87; }
  .manifesto-note { margin-top: 48px; grid-template-columns: 1fr; gap: 20px; font-size: .84rem; }
  .portraits { padding-top: 90px; padding-bottom: 105px; gap: 60px; }
  .portrait-number { left: -4px; width: 54px; height: 54px; }
  .portrait figcaption { grid-template-columns: 1fr; gap: 16px; }
  .portrait figcaption h2 { font-size: 2.75rem; }
  .portrait-side { padding-top: 0; }
  .side-quote { margin-bottom: 60px; }
  .portrait-secondary { width: 92%; }
  .archive { padding-top: 96px; padding-bottom: 102px; }
  .archive-heading h2 { margin-top: 42px; font-size: clamp(3.8rem, 17vw, 5.4rem); }
  .archive-heading > p { font-size: .82rem; }
  .archive-count { margin-top: 38px; }
  .memory-columns {
    columns: 1;
    margin-top: 16px;
  }
  .memory-card,
  .memory-card:nth-child(4n + 2) { margin-bottom: 16px; transform: none; }
  .memory-card:hover,
  .memory-card:nth-child(4n + 2):hover { transform: none; }
  .films { padding-top: 96px; padding-bottom: 105px; }
  .films-intro { padding-left: 16px; padding-right: 16px; }
  .films-title h2 { font-size: clamp(4rem, 19vw, 6rem); }
  .featured-film { margin-top: 62px; width: calc(100vw - 20px); padding: 12px; }
  .film-meta { padding: 10px 5px 5px; grid-template-columns: 1fr auto; }
  .film-meta > span { grid-column: 1 / -1; }
  .film-meta h3 { font-size: 2.65rem; }
  .film-reel {
    width: 100%;
    margin-top: 18px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .film-reel::-webkit-scrollbar { display: none; }
  .film-card { flex: 0 0 min(82vw, 410px); scroll-snap-align: center; }
  .closing { padding-top: 110px; padding-bottom: 120px; }
  .closing blockquote { font-size: clamp(3.7rem, 17vw, 5.7rem); }
  .closing-signature { width: 148px; height: 148px; margin-top: 58px; }
  .site-footer { grid-template-columns: 1fr; gap: 13px; text-align: center; }
  .site-footer p:last-child { text-align: center; }
  .lightbox { padding: 56px 12px 18px; grid-template-columns: 1fr; }
  .lightbox figure { height: calc(100svh - 82px); }
  .lightbox figcaption { padding: 0 4px; font-size: .92rem; }
  .lightbox-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 44px;
    height: 44px;
    background: rgba(10,9,8,.52);
  }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 9px; right: 10px; }
}

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