@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Manrope:wght@400;500;600&display=swap");

:root {
  --paper: #eee9de;
  --paper-soft: #f7f3eb;
  --ink: #17130f;
  --muted: #6d675f;
  --line: rgba(23, 19, 15, 0.2);
  --wine: #702923;
  --wine-dark: #4d1917;
  --sand: #cbb79b;
  --smoke: #d8d4cc;
  --night: #15191d;
  --rose: #d7beb5;
  --cream: #f3eee4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 15px;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, video { font: inherit; }
button { color: inherit; }
::selection { background: var(--wine); color: var(--cream); }

.page { margin-left: 72px; }
.wrap { width: min(1450px, calc(100% - 96px)); margin-inline: auto; }
.micro {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .17em;
  line-height: 1.3;
  text-transform: uppercase;
}
.micro.wine { color: var(--wine); }
.film { width: 100%; height: 100%; object-fit: contain; background: #0b0b0b; }

.rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 27px 0 25px;
  border-right: 1px solid var(--line);
  background: rgba(238, 233, 222, .93);
  backdrop-filter: blur(14px);
}
.rail-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.06em;
}
.rail-rule { width: 1px; flex: 1; background: var(--line); }
.rail p {
  margin: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.rail-index {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-style: italic;
}

.masthead {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.mobile-mark { display: none; }
.masthead p { margin: 0; }
.masthead nav { display: flex; gap: 34px; }
.masthead nav a { position: relative; }
.masthead nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.masthead nav a:hover::after { transform: scaleX(1); }
.edition { justify-self: end; color: var(--muted); }

.editorial-hero {
  position: relative;
  min-height: 860px;
  padding: 70px 0 54px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto 1fr auto;
  column-gap: 24px;
}
.hero-volume {
  position: absolute;
  right: -20px;
  bottom: 1px;
  z-index: 0;
  color: rgba(112, 41, 35, .08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(260px, 30vw, 500px);
  font-weight: 500;
  letter-spacing: -.1em;
  line-height: .65;
  pointer-events: none;
}
.hero-title { grid-column: 1 / 8; position: relative; z-index: 2; align-self: start; }
.hero-title h1 {
  margin: 27px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(78px, 8.2vw, 142px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .78;
}
.hero-title h1 em { color: var(--wine); font-weight: 400; }
.hero-note {
  grid-column: 1 / 5;
  align-self: end;
  position: relative;
  z-index: 2;
  max-width: 390px;
  padding: 30px 34px 0 0;
  border-top: 1px solid var(--ink);
}
.hero-note p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.hero-note a {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  color: var(--wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-film {
  grid-column: 8 / 13;
  grid-row: 1 / 3;
  align-self: stretch;
  position: relative;
  z-index: 1;
  min-height: 700px;
  margin: 0;
  background: var(--night);
  overflow: hidden;
}
.hero-film video { width: 100%; height: 100%; object-fit: cover; }
.hero-film::before {
  content: "FEATURED";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  padding: 9px 12px;
  background: var(--paper);
  color: var(--wine);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
}
.hero-film figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  color: white;
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-deck {
  grid-column: 1 / 13;
  grid-row: 3;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 14px;
  font-style: italic;
}
.hero-deck p { margin: 0; }

.cover-story { padding: 128px 0 110px; background: var(--wine); color: var(--cream); }
.cover-intro {
  display: grid;
  grid-template-columns: 2fr 6fr 3fr;
  gap: 50px;
  align-items: start;
}
.chapter-label {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.cover-intro h2,
.archive-heading h2,
.closing-title h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(70px, 8.5vw, 145px);
  font-weight: 500;
  letter-spacing: -.065em;
  line-height: .78;
}
.cover-intro h2 em { color: #d4a58d; font-weight: 400; }
.cover-lead {
  margin: 12px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.8;
}
.cover-screen {
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr minmax(340px, 530px) 1fr;
  gap: 46px;
  align-items: center;
}
.cover-video { height: 760px; padding: 26px; background: #120e0d; box-shadow: 0 50px 110px rgba(42, 6, 5, .42); }
.screen-meta { color: rgba(255,255,255,.65); }
.screen-meta p { margin: 30px 0 7px; font-size: 8px; font-weight: 600; letter-spacing: .17em; text-transform: uppercase; }
.screen-meta strong { color: white; font-family: "Cormorant Garamond", Georgia, serif; font-size: 24px; font-weight: 400; }
.screen-meta.left { text-align: right; }

.case-notes { padding: 140px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 130px; align-items: start; }
.case-aside { position: sticky; top: 40px; }
.case-quote {
  margin: 42px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 4vw, 68px);
  font-style: italic;
  line-height: 1.05;
  letter-spacing: -.04em;
}
.note-list { border-top: 1px solid var(--line); }
.note-list article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 34px 0 38px;
  border-bottom: 1px solid var(--line);
}
.note-list article > span { color: var(--wine); font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-style: italic; }
.note-list h3 { margin: 0 0 14px; font-family: "Cormorant Garamond", Georgia, serif; font-size: 36px; font-weight: 500; letter-spacing: -.03em; }
.note-list p { max-width: 700px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }

.making-of { padding: 120px 0; background: var(--night); color: var(--cream); }
.making-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 120px; }
.making-title h2 { margin: 26px 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(58px, 6vw, 98px); font-weight: 400; line-height: .87; letter-spacing: -.055em; }
.making-of .micro { color: #b09080; }
.making-of ol { list-style: none; margin: 0; padding: 0; border-top: 1px solid rgba(255,255,255,.22); }
.making-of li { display: grid; grid-template-columns: 70px 1fr; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.22); }
.making-of li span { color: #c49a84; font-family: "Cormorant Garamond", Georgia, serif; font-size: 17px; font-style: italic; }
.making-of li p { margin: 0; font-size: 13px; letter-spacing: .02em; }

.prompt-spread { padding: 140px 0; display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; }
.prompt-copy { display: flex; flex-direction: column; padding: 0 8vw 0 0; }
.dark-label { border-color: var(--line); color: var(--muted); }
.prompt-copy blockquote { margin: auto 0; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(30px, 3vw, 50px); font-style: italic; line-height: 1.15; letter-spacing: -.03em; }
.prompt-copy > p { max-width: 500px; margin: 36px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.prompt-spread figure { position: relative; margin: 0; min-height: 680px; background: var(--night); overflow: hidden; }
.prompt-spread figure img { width: 100%; height: 100%; object-fit: cover; }
.prompt-spread figcaption,
.before-after figcaption {
  display: flex;
  justify-content: space-between;
  padding: 14px 0 0;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.prompt-spread figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 14px; background: rgba(238,233,222,.92); }

.archive { border-top: 1px solid var(--line); }
.archive-heading { padding: 140px 0 110px; display: grid; grid-template-columns: 2fr 7fr 3fr; gap: 44px; align-items: end; }
.archive-heading h2 { font-size: clamp(78px, 9vw, 150px); }
.archive-heading h2 em { color: var(--wine); font-weight: 400; }
.archive-heading > p:last-child { margin: 0 0 8px; color: var(--muted); font-size: 14px; line-height: 1.8; }
.study { padding: 120px 0; }
.study-grid { display: grid; grid-template-columns: 1.2fr 3fr 5fr; gap: 52px; align-items: start; }
.study-index { padding-top: 12px; border-top: 1px solid var(--line); }
.study-index span { display: block; color: var(--wine); font-family: "Cormorant Garamond", Georgia, serif; font-size: 26px; font-style: italic; }
.study-index p { margin: 8px 0 0; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .14em; line-height: 1.5; text-transform: uppercase; }
.study-copy h3 { margin: -10px 0 30px; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(62px, 7vw, 118px); font-weight: 500; letter-spacing: -.06em; line-height: .78; }
.study-copy > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.study-copy ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 36px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); list-style: none; color: var(--muted); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.study-stage { display: grid; place-items: center; min-height: 760px; padding: 42px; }
.study-stage .film { width: auto; max-height: 680px; box-shadow: 0 38px 85px rgba(40,24,12,.2); }
.cookie-study { background: var(--paper-soft); }
.cookie-stage { background: var(--sand); }

.pix-study { background: var(--smoke); }
.pix-header { display: grid; grid-template-columns: 1.2fr 3fr 5fr; gap: 52px; }
.pix-header .study-copy { grid-column: 2 / 4; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.pix-header .study-copy h3 { margin-bottom: 0; }
.pix-strip { margin-top: 80px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.pix-strip button { position: relative; border: 0; padding: 0; background: var(--night); cursor: zoom-in; overflow: hidden; }
.pix-strip img { width: 100%; aspect-ratio: 9 / 13; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.pix-strip button:hover img { transform: scale(1.025); }
.pix-strip button span { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 12px; background: rgba(238,233,222,.9); color: var(--ink); font-size: 8px; font-weight: 600; letter-spacing: .13em; text-align: left; text-transform: uppercase; }

.speaker-study { background: var(--night); color: var(--cream); }
.speaker-top { display: grid; grid-template-columns: 1.2fr 3fr 5fr; gap: 52px; }
.speaker-top .study-copy { grid-column: 2 / 4; display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: end; }
.light-index { border-color: rgba(255,255,255,.25); }
.light-index span { color: #d2a38b; }
.light-index p, .light-copy > p { color: rgba(255,255,255,.58); }
.light-copy h3 { margin-bottom: 0; }
.before-after { margin-top: 84px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.before-after figure { margin: 0; }
.before-after img, .before-after .film { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.before-after figcaption { color: rgba(255,255,255,.62); }

.reel-study { background: var(--rose); }
.reverse-study .study-stage { grid-column: 2; grid-row: 1; }
.reverse-study .study-copy { grid-column: 3; }
.reel-stage { background: var(--wine-dark); }
.reel-stage .film { box-shadow: 0 38px 85px rgba(67,14,12,.28); }

.closing { position: relative; min-height: 760px; padding: 150px 0 130px; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; overflow: hidden; }
.closing-number { position: absolute; right: -20px; bottom: -120px; z-index: 0; color: rgba(112,41,35,.07); font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(300px, 42vw, 680px); font-weight: 500; line-height: .7; letter-spacing: -.11em; }
.closing-title, .closing-copy { position: relative; z-index: 1; }
.closing-title h2 { margin-top: 30px; }
.closing-title h2 em { color: var(--wine); font-weight: 400; }
.closing-copy { align-self: end; columns: 2; column-gap: 44px; }
.closing-copy p { margin: 0; break-inside: avoid; color: var(--muted); font-size: 14px; line-height: 1.9; }

footer { padding: 74px 0 44px; background: var(--wine); color: var(--cream); }
.footer-grid { min-height: 240px; display: grid; grid-template-columns: 2fr 1fr auto auto; gap: 50px; align-items: end; }
.footer-grid p { margin: 0; color: rgba(255,255,255,.68); font-size: 9px; letter-spacing: .12em; line-height: 1.65; text-transform: uppercase; }
.footer-name { color: white !important; font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(48px, 5vw, 78px) !important; font-weight: 400; letter-spacing: -.05em !important; line-height: .8 !important; text-transform: none !important; }
.footer-grid a { font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.footer-year { font-family: "Cormorant Garamond", Georgia, serif !important; font-size: 19px !important; letter-spacing: .04em !important; }

.lightbox { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 34px; background: rgba(20,18,16,.95); backdrop-filter: blur(18px); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .25s ease, visibility .25s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox > button { position: absolute; top: 24px; right: 30px; border: 0; padding: 10px 0; background: transparent; color: white; cursor: pointer; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.lightbox figure { max-width: min(720px, 88vw); max-height: 88vh; margin: 0; }
.lightbox img { width: 100%; max-height: 82vh; object-fit: contain; }
.lightbox figcaption { padding-top: 12px; color: rgba(255,255,255,.7); font-size: 9px; letter-spacing: .14em; text-align: center; text-transform: uppercase; }

@media (max-width: 1100px) {
  .wrap { width: min(100% - 56px, 1450px); }
  .editorial-hero { min-height: 760px; }
  .hero-title { grid-column: 1 / 9; }
  .hero-film { grid-column: 8 / 13; min-height: 600px; }
  .hero-note { grid-column: 1 / 6; }
  .cover-intro { grid-template-columns: 1.4fr 5fr 2.4fr; gap: 32px; }
  .cover-screen { grid-template-columns: .8fr minmax(320px, 470px) .8fr; gap: 28px; }
  .case-notes, .making-grid { gap: 70px; }
  .study-grid, .pix-header, .speaker-top { grid-template-columns: 1fr 2.5fr 4.5fr; gap: 34px; }
  .study-stage { min-height: 650px; }
}

@media (max-width: 780px) {
  .page { margin-left: 0; }
  .rail { display: none; }
  .wrap { width: min(100% - 30px, 1450px); }
  .masthead { min-height: 68px; grid-template-columns: auto 1fr auto; gap: 18px; }
  .mobile-mark { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 22px; font-weight: 600; }
  .masthead > p:first-of-type { display: none; }
  .masthead nav { justify-self: center; gap: 18px; }
  .masthead nav a { font-size: 7px; }
  .edition { font-size: 7px; }

  .editorial-hero { min-height: auto; padding: 52px 0 34px; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; gap: 34px; }
  .hero-volume { top: 98px; right: -10px; bottom: auto; font-size: 220px; }
  .hero-title, .hero-note, .hero-film, .hero-deck { grid-column: 1; grid-row: auto; }
  .hero-title h1 { font-size: clamp(62px, 20vw, 96px); }
  .hero-note { max-width: none; }
  .hero-film { min-height: 68vh; }
  .hero-deck { margin-top: 0; gap: 20px; font-size: 12px; }

  .cover-story { padding: 88px 0 72px; }
  .cover-intro { grid-template-columns: 1fr; gap: 38px; }
  .cover-intro h2, .archive-heading h2, .closing-title h2 { font-size: clamp(64px, 20vw, 92px); }
  .cover-lead { max-width: 520px; }
  .cover-screen { margin-top: 60px; grid-template-columns: 1fr; gap: 24px; }
  .cover-video { height: 70vh; padding: 14px; }
  .screen-meta { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 8px 12px; align-items: end; }
  .screen-meta.left { text-align: left; }
  .screen-meta p { margin: 0; }
  .screen-meta strong { font-size: 18px; }

  .case-notes { padding: 90px 0; grid-template-columns: 1fr; gap: 62px; }
  .case-aside { position: static; }
  .case-quote { font-size: 46px; }
  .making-of { padding: 84px 0; }
  .making-grid { grid-template-columns: 1fr; gap: 60px; }
  .making-title h2 { font-size: 64px; }

  .prompt-spread { padding: 90px 0; grid-template-columns: 1fr; gap: 58px; min-height: auto; }
  .prompt-copy { min-height: 560px; padding-right: 0; }
  .prompt-copy blockquote { font-size: 36px; }
  .prompt-spread figure { min-height: 620px; }

  .archive-heading { padding: 90px 0 74px; grid-template-columns: 1fr; gap: 34px; }
  .study { padding: 84px 0; }
  .study-grid, .pix-header, .speaker-top { grid-template-columns: 1fr; gap: 44px; }
  .study-copy h3 { font-size: 72px; }
  .study-stage { min-height: 620px; padding: 24px; }
  .pix-header .study-copy, .speaker-top .study-copy { grid-column: 1; grid-template-columns: 1fr; gap: 28px; }
  .pix-strip { margin-top: 56px; grid-template-columns: 1fr 1fr; }
  .pix-strip button:first-child { grid-column: 1 / -1; }
  .pix-strip button:first-child img { aspect-ratio: 4 / 5; }
  .before-after { margin-top: 60px; grid-template-columns: 1fr; gap: 46px; }
  .reverse-study .study-stage, .reverse-study .study-copy { grid-column: 1; grid-row: auto; }
  .reverse-study .study-stage { order: 3; }

  .closing { min-height: auto; padding: 100px 0; grid-template-columns: 1fr; gap: 64px; }
  .closing-number { right: -10px; bottom: -50px; font-size: 330px; }
  .closing-copy { columns: 1; }
  .closing-copy p + p { margin-top: 24px; }
  .footer-grid { min-height: 260px; grid-template-columns: 1fr 1fr; }
  .footer-name { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .masthead nav a:first-child { display: none; }
  .hero-title h1 { font-size: 60px; }
  .hero-film { min-height: 600px; }
  .cover-intro h2, .archive-heading h2, .closing-title h2 { font-size: 58px; }
  .screen-meta { grid-template-columns: auto 1fr; }
  .screen-meta p:nth-of-type(2) { margin-top: 12px; }
  .note-list article { grid-template-columns: 42px 1fr; gap: 12px; }
  .making-title h2 { font-size: 54px; }
  .prompt-copy { min-height: 620px; }
  .prompt-copy blockquote { font-size: 31px; }
  .study-copy h3 { font-size: 62px; }
  .pix-strip { grid-template-columns: 1fr; }
  .pix-strip button:first-child { grid-column: auto; }
  .pix-strip button:first-child img, .pix-strip img { aspect-ratio: 4 / 5; }
  .footer-grid { gap: 38px 20px; }
}

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