/* ============================================================
   Investment Guide 2027 — Andy Hansen Films
   Rust-primary palette, cream type, yellow + brown accents.
   Brand fonts: Self Modern (display), Transcript (body).
   ============================================================ */

@font-face {
  font-family: "Self Modern";
  src: url("fonts/self-modern-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Self Modern";
  src: url("fonts/self-modern-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Transcript";
  src: url("fonts/transcript-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Transcript";
  src: url("fonts/transcript-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ---------- tokens ---------- */
:root {
  --cream: #FAF8E6;
  --cream-dim: rgba(250, 248, 230, 0.72);
  --cream-line: rgba(250, 248, 230, 0.22);
  --yellow: #F7ECCB;
  --chartreuse: #DDCD8B;
  --rust: #B7764A;
  --rust-deep: #a2663d;
  --rust-dark: #8e5530;
  --brown: #3F210A;
  --brown-soft: #5a3a1e;

  /* CTA — reserved for actions only (book a call). do not reuse elsewhere. */
  --cta: #1B1814;
  --cta-hover: #2E2A24;

  --display: "Self Modern", "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --body: "Transcript", "JetBrains Mono", "IBM Plex Mono", ui-monospace, Menlo, monospace;

  --measure: 62ch;
  --gutter: clamp(20px, 4vw, 56px);
  --page-max: 1440px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  /* primary surface is rust */
  background: var(--rust);
  color: var(--cream);
  font-family: var(--body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-synthesis: none;
}

h1, h2, h3, h4, h5, h6 { font-weight: 400; }

body {
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: multiply;
  opacity: var(--grain-opacity, 0.5);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.247  0 0 0 0 0.129  0 0 0 0 0.039  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}

/* ---------- typography primitives ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  color: var(--cream);
  letter-spacing: -0.01em;
  line-height: 1.02;
}

.display em, em.emph {
  font-style: italic;
  font-family: var(--display);
}

.prose {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  max-width: var(--measure);
}

.prose p + p { margin-top: 1.1em; }

.credit {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
}

.rule {
  height: 1px;
  background: var(--cream);
  opacity: 0.3;
  border: 0;
  margin: 0;
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { position: relative; }

/* ---------- masthead ---------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--rust);
  border-bottom: 1px solid var(--cream-line);
  transition: padding 220ms ease, background 220ms ease;
}
.masthead .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
  transition: padding 220ms ease;
}
.masthead.compact .wrap { padding-top: 12px; padding-bottom: 12px; }

.masthead__left,
.masthead__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.masthead__right { justify-content: flex-end; }

.masthead__slash {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--cream);
  opacity: 0.4;
  margin: 0 6px;
}

.masthead__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--cta);
  color: var(--cream);
  transition: background 180ms ease, transform 180ms ease;
  line-height: 1;
}
.masthead__cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.masthead__cta .arrow { display: inline-block; transform: translateY(-1px); }

/* ---------- generic still ---------- */
.still {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.still--dark { background: var(--brown); }
.still--light { background: var(--cream); color: var(--brown); }
.still .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(250, 248, 230, 0.04) 0,
      rgba(250, 248, 230, 0.04) 22px,
      rgba(250, 248, 230, 0.09) 22px,
      rgba(250, 248, 230, 0.09) 44px
    );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  color: var(--cream);
}
.still .placeholder .tag {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- looping postcard placeholder ---------- */
.loopstill {
  position: relative;
  background: var(--brown);
  overflow: hidden;
  width: 100%;
}
.loopstill .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(250, 248, 230, 0.05) 0,
      rgba(250, 248, 230, 0.05) 18px,
      rgba(250, 248, 230, 0.1) 18px,
      rgba(250, 248, 230, 0.1) 36px
    );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--cream);
}
.loopstill .placeholder .tag {
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
  align-self: flex-end;
}
.loopstill__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.28);
  padding: 8px 12px;
  font-family: var(--body);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  align-self: flex-start;
}
.loopstill__badge .rec-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--cream);
  animation: rec-pulse 1.4s ease-in-out infinite;
}
@keyframes rec-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.loopstill__bars {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  display: flex;
  gap: 2px;
  padding: 0 24px 10px;
}
.loopstill__bars span {
  flex: 1;
  background: var(--cream);
  opacity: 0.35;
  animation: loop-bar 4s linear infinite;
}
.loopstill__bars span:nth-child(1) { animation-delay: 0s; }
.loopstill__bars span:nth-child(2) { animation-delay: 0.4s; }
.loopstill__bars span:nth-child(3) { animation-delay: 0.8s; }
.loopstill__bars span:nth-child(4) { animation-delay: 1.2s; }
.loopstill__bars span:nth-child(5) { animation-delay: 1.6s; }
.loopstill__bars span:nth-child(6) { animation-delay: 2.0s; }
.loopstill__bars span:nth-child(7) { animation-delay: 2.4s; }
.loopstill__bars span:nth-child(8) { animation-delay: 2.8s; }
@keyframes loop-bar {
  0%, 90%, 100% { opacity: 0.2; transform: scaleY(0.5); }
  45% { opacity: 1; transform: scaleY(1.6); }
}

/* ---------- hero ---------- */
.hero {
  padding-top: clamp(48px, 8vw, 120px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background: var(--rust);
}
.hero__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: clamp(32px, 5vw, 64px);
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 18px;
}
.hero__kicker .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--yellow);
  display: inline-block;
}
.hero__title {
  font-size: clamp(40px, 6.4vw, 96px);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.hero__title em { color: var(--yellow); }

.hero__dedication {
  font-family: var(--body);
  font-size: clamp(17px, 1.7vw, 23px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  margin: 0 0 clamp(18px, 2vw, 28px);
  line-height: 1.3;
}

.hero__couple {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.015em;
  margin: 0;
}
.hero__standfirst {
  font-family: var(--display);
  font-size: clamp(18px, 1.8vw, 24px);
  color: var(--yellow);
  letter-spacing: 0.02em;
  margin: 18px 0 36px;
}
.hero__standfirst em { font-style: italic; }

/* When a couple is named, title drops to secondary role: transcript font, tighter */
.hero__couple + .hero__title {
  font-family: var(--body);
  font-size: clamp(18px, 1.9vw, 26px);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01em;
  text-transform: none;
  margin: 18px 0 0;
  max-width: none;
  line-height: 1.25;
  color: var(--cream);
  opacity: 0.88;
}
.hero__couple + .hero__title em {
  font-family: var(--body);
  font-style: italic;
  color: var(--cream);
  opacity: 1;
}

/* legacy standfirst-driven variant (kept for safety) */
.hero__standfirst + .hero__title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-style: italic;
  max-width: 28ch;
  opacity: 0.95;
  line-height: 1.1;
}
.hero__standfirst + .hero__title em { color: var(--yellow); font-style: italic; }

/* ---------- hero manifesto video placeholder ---------- */
.hero__manifesto {
  margin: clamp(24px, 3.5vw, 44px) 0 clamp(32px, 5vw, 48px);
}
/* Default "top" variant: frame + side caption in a 2-col grid */
.hero__manifesto--top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.38fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
}
.hero__manifesto--top .manifesto__caption {
  margin-top: 0;
  max-width: 32ch;
}
/* "below" variant: full-width block sitting under the lede, caption beneath */
.hero__manifesto--below {
  margin: clamp(48px, 7vw, 88px) 0 0;
}
.hero__manifesto--below .manifesto__caption {
  margin-top: 18px;
  max-width: 54ch;
}
.manifesto__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--brown);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid var(--cream-line);
}
.manifesto__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(183, 118, 74, 0.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(250,248,230,0.04) 0 22px, rgba(250,248,230,0.09) 22px 44px);
}
.manifesto__play {
  position: relative;
  z-index: 2;
  width: 112px;
  height: 112px;
  border-radius: 999px;
  border: 1.5px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.18);
  transition: transform 200ms ease, background 200ms ease;
}
.manifesto__frame:hover .manifesto__play {
  transform: scale(1.06);
  background: var(--rust);
  border-color: var(--rust);
}
.manifesto__play::after {
  content: "";
  width: 0; height: 0;
  border-left: 22px solid var(--cream);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.manifesto__meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.9;
  z-index: 2;
}
.manifesto__caption {
  margin-top: 16px;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
  color: var(--cream);
  opacity: 0.88;
  max-width: 54ch;
}

.hero__lede {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  margin-top: clamp(56px, 8vw, 96px);
  align-items: start;
}
.hero__lede h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 38px);
  margin: 0;
  color: var(--cream);
  line-height: 1.15;
}
.hero__lede .prose { font-size: 16px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--cta);
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, color 180ms ease;
  line-height: 1;
}
.btn:hover { background: var(--cta-hover); transform: translate(0, -1px); }
.btn .arrow { display: inline-block; transform: translateY(-1px); }

.btn--cream {
  background: var(--cta);
  color: var(--cream);
}
.btn--cream:hover { background: var(--cta-hover); color: var(--cream); }

.btn--ghost-cream {
  background: var(--cta);
  color: var(--cream);
  border: 1px solid var(--cta);
}
.btn--ghost-cream:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: var(--cream); }

.btn--sm {
  padding: 12px 18px;
  font-size: 10px;
}

/* ---------- note (cream accent band on rust page) ---------- */
.note {
  background: var(--cream);
  color: var(--brown);
  padding: clamp(72px, 10vw, 140px) 0;
  position: relative;
}

.note .eyebrow,
.note .credit { color: var(--brown); }

.note__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
}
.note__label {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.note__letter {
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.35;
  color: var(--brown);
  max-width: 40ch;
  margin: 0;
}
.note__letter em {
  font-style: italic;
  color: var(--rust);
}
.note__signoff {
  margin-top: 36px;
  font-family: var(--display);
  font-size: 26px;
  color: var(--brown);
}

/* ---------- experience (brown, editorial) ---------- */
.experience {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--brown);
  color: var(--cream);
}
.experience__head {
  margin-bottom: clamp(56px, 8vw, 96px);
}
.experience__title {
  font-size: clamp(44px, 6vw, 84px);
  margin: 0;
  max-width: 14ch;
}

.steps { display: flex; flex-direction: column; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: start;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--cream-line);
}
.step:last-child { border-bottom: 1px solid var(--cream-line); }
.step__num {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  color: var(--yellow);
}
.step__title {
  font-family: var(--display);
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 0;
  line-height: 1.2;
  color: var(--cream);
  padding-top: 12px;
}
.step__body {
  font-size: 15px;
  padding-top: 12px;
}

/* ---------- collections (cream spreads, brown text) ---------- */
.collections { background: var(--cream); color: var(--brown); display: flow-root; }

.collections__header {
  padding: clamp(96px, 12vw, 160px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid rgba(63, 33, 10, 0.18);
}
.collections__header .eyebrow { color: var(--brown); }
.collections__title {
  font-size: clamp(80px, 12vw, 180px);
  line-height: 0.95;
  color: var(--brown);
  margin: 18px 0 28px;
  letter-spacing: -0.02em;
}
.collections__title em {
  font-style: italic;
  color: var(--rust);
}
.collections__lede {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--brown);
  max-width: 32ch;
  margin: 0;
  opacity: 0.88;
}
.collection {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid rgba(63, 33, 10, 0.18);
}
.collections .collection:first-child { border-top: 0; }
.collection:last-of-type { border-bottom: 1px solid rgba(63, 33, 10, 0.18); }

.collections .collection__kicker,
.collections .collection__name,
.collections .collection__tagline,
.collections .collection__body,
.collections .collection__includes,
.collections .collection__price .unit,
.collections .collection__mediacaption { color: var(--brown); }
.collections .collection__numeral { color: var(--rust); }
.collections .collection__price .amount { color: var(--rust); }
.collections .collection__includes { border-top-color: rgba(63, 33, 10, 0.22); }
.collections .collection__price { border-top-color: rgba(63, 33, 10, 0.22); }

.collection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.collection__media { display: flex; flex-direction: column; gap: 14px; }
.collection__mediacaption {
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--cream);
}

.collection__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.collection__numeral {
  font-family: var(--display);
  font-size: 64px;
  line-height: 0.9;
  color: var(--yellow);
}
.collection__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.collection__kicker {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}
.collection__name {
  font-family: var(--display);
  font-size: 22px;
  color: var(--cream);
  line-height: 1;
}

.collection__tagline {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  color: var(--cream);
  margin: 0 0 28px 0;
  max-width: 16ch;
}
.collection__body {
  font-size: 15px;
  margin-bottom: 36px;
}

.collection__includes {
  border-top: 1px solid var(--cream-line);
  padding-top: 24px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px 20px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.collection__includes dt { opacity: 0.65; }
.collection__includes ul {
  grid-column: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.collection__price {
  margin-top: 40px;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-line);
}
.collection__price .amount {
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.9;
  color: var(--yellow);
}
.collection__price .unit {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--cream);
}

.collection.inverted .collection__grid {
  grid-template-areas: "copy media";
}
.collection.inverted .collection__media { grid-area: media; }
.collection.inverted .collection__copy { grid-area: copy; }

.collection--solo .collection__grid {
  grid-template-columns: 1fr;
  max-width: 920px;
}
.collection--solo .collection__copy {
  max-width: 100%;
}

/* Collection II: rust inset card so it reads as a distinct chapter */
.collection--rust {
  background: var(--rust);
  color: var(--cream);
  margin: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 40px) clamp(48px, 6vw, 80px);
  padding: clamp(64px, 8vw, 120px) 0;
  border-top: 0;
}
.collections .collection--rust { border-top: 0; border-bottom: 0; }
.collection--rust .collection__kicker,
.collection--rust .collection__name,
.collection--rust .collection__tagline,
.collection--rust .collection__body,
.collection--rust .collection__includes,
.collection--rust .collection__price .unit,
.collection--rust .collection__mediacaption { color: var(--cream); }
.collection--rust .collection__numeral { color: var(--yellow); }
.collection--rust .collection__price .amount { color: var(--yellow); }
.collection--rust .collection__includes,
.collection--rust .collection__price { border-top-color: rgba(250, 248, 230, 0.25); }
.collection--rust .collection__kicker { opacity: 0.8; }

/* ---------- upgrades (yellow paper) ---------- */
.upgrades {
  padding: clamp(96px, 12vw, 160px) 0;
  background: var(--yellow);
  color: var(--brown);
}
.upgrades .upgrades__title,
.upgrades .prose,
.upgrades .upgrade__name,
.upgrades .upgrade__sub,
.upgrades .upgrade__price { color: var(--brown); }
.upgrades .upgrade__num { color: var(--rust); }
.upgrades .upgrade-list { border-top-color: rgba(63, 33, 10, 0.28); }
.upgrades .upgrade { border-bottom-color: rgba(63, 33, 10, 0.2); }
.upgrades .upgrade:hover { background: rgba(63, 33, 10, 0.05); }
.upgrades__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.upgrades__title {
  font-size: clamp(40px, 5vw, 72px);
  margin: 0;
  max-width: 16ch;
}

.upgrade-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--cream-line);
}
.upgrade {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--cream-line);
  transition: background 180ms ease;
}
.upgrade:hover { background: rgba(250, 248, 230, 0.06); }
.upgrade__num {
  font-family: var(--display);
  font-size: 22px;
  color: var(--yellow);
}
.upgrade__name {
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.1;
  color: var(--cream);
}
.upgrade__sub {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 6px;
  color: var(--cream);
}
.upgrade__price {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--cream);
}

/* ---------- reactions (brown theater for contrast) ---------- */
.theater {
  background: var(--brown);
  color: var(--cream);
  padding: clamp(96px, 12vw, 160px) 0;
  position: relative;
}

.theater__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(56px, 8vw, 80px);
}
.theater__head h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  margin: 0;
  color: var(--cream);
}

.reactions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
}
.reactions > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.reaction-tile {
  position: relative;
  overflow: hidden;
  background: #2a1606;
}
.reaction-tile.portrait { aspect-ratio: 9 / 16; }
.reaction-tile.landscape { aspect-ratio: 16 / 9; }

.reaction-tile .placeholder {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(250, 248, 230, 0.05) 0,
      rgba(250, 248, 230, 0.05) 22px,
      rgba(250, 248, 230, 0.1) 22px,
      rgba(250, 248, 230, 0.1) 44px
    );
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--cream);
}
.reaction-tile .play {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  transition: transform 200ms ease, background 200ms ease;
}
.reaction-tile:hover .play { background: var(--rust); border-color: var(--rust); transform: scale(1.05); }
.reaction-tile .play::after {
  content: "";
  width: 0; height: 0;
  border-left: 14px solid var(--cream);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.reaction-tile .meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}

.reaction-caption {
  margin-top: 16px;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
  color: var(--cream);
}

/* ---------- closing (rust, signature return) ---------- */
.closing {
  background: var(--rust);
  color: var(--cream);
  padding: clamp(120px, 14vw, 200px) 0;
  position: relative;
  overflow: hidden;
}
.closing__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 2;
}
.closing .eyebrow { opacity: 0.8; }
.closing__title {
  font-family: var(--display);
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1.02;
  color: var(--cream);
  margin: 24px 0 48px 0;
  max-width: 14ch;
}
.closing__title em { font-style: italic; color: var(--yellow); }
.closing__body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--cream);
  max-width: 58ch;
  margin-bottom: 28px;
}
.closing__body:last-of-type { margin-bottom: 48px; }
.closing__signoff {
  font-family: var(--display);
  font-size: 36px;
  color: var(--cream);
  margin-bottom: 56px;
}

/* ---------- final cta (cream accent, breathes) ---------- */
.final {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--cream);
  color: var(--brown);
  text-align: center;
}
.final__line {
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 0 0 28px 0;
  color: var(--brown);
}
.final__caption {
  margin-top: 20px;
  font-family: var(--body);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.65;
  color: var(--brown);
}

/* ---------- footer ---------- */
.footer {
  padding: 40px 0 60px;
  border-top: 1px solid rgba(63, 33, 10, 0.2);
  background: var(--cream);
  color: var(--brown);
}
.footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  color: var(--brown);
}

/* ---------- video embed (Vimeo iframe fills the placeholder frame) ---------- */
.video-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--brown);
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .masthead .wrap {
    grid-template-columns: 1fr auto;
  }
  .masthead__right { display: none; }

  .hero__credit { grid-template-columns: repeat(2, 1fr); }
  .hero__lede,
  .experience__head,
  .upgrades__head,
  .theater__head,
  .note__inner { grid-template-columns: 1fr; }
  .collection__grid { grid-template-columns: 1fr; gap: 32px; }
  .collection.inverted .collection__grid { grid-template-areas: none; }
  .collection.inverted .collection__media,
  .collection.inverted .collection__copy { grid-area: auto; }
  .step { grid-template-columns: 60px 1fr; }
  .step__body { grid-column: 1 / -1; padding-top: 0; }
  .reactions { grid-template-columns: 1fr; gap: 40px; }
  .reactions > div { max-width: 360px; margin-left: auto; margin-right: auto; width: 100%; }
  .footer .wrap { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero__manifesto--top { grid-template-columns: 1fr; gap: 20px; }
  .hero__manifesto--top .manifesto__caption { max-width: 54ch; }
  .hero__title { font-size: clamp(32px, 8vw, 60px); }
}
