/* =====================================================================
   LIFTED — Homepage
   A cinematic-magazine hybrid. Scroll-driven story panels + funnel.
   Palette derived from the Great Sand Dunes shoot. Zodiak display,
   Source Serif reading body, Montserrat UI. Red is accent only.
   ===================================================================== */

:root {
  /* Palette */
  --ink:            #171310;
  --ink-2:          #221B15;
  --ink-3:          #2E2620;
  --paper:          #F6F1E9;
  --paper-2:        #EDE5D9;
  --sand:           #D8C6AE;
  --sand-deep:      #A88C6B;
  --sand-dark:      #6A553C;
  --red:            #ED1C24;
  --red-deep:       #B71217;
  --gray:           #464646;

  --txt-on-paper:      #211B16;
  --txt-on-paper-soft: #5C5045;
  --txt-on-paper-mute: #7A6E60;
  --txt-on-ink:        #F2EBE1;
  --txt-on-ink-soft:   #C6B8A6;
  --txt-on-ink-mute:   #8A7D6E;

  /* Type */
  --font-display: 'Zodiak', 'Source Serif 4', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-brand:   'Montserrat', system-ui, sans-serif;

  /* Type scale — 8 tokens only */
  --t-caption: 0.75rem;
  --t-label:   0.8125rem;
  --t-body:    1.0625rem;
  --t-lede:    clamp(1.125rem, 1.6vw, 1.375rem);
  --t-h3:      clamp(1.625rem, 3vw, 2.375rem);
  --t-h2:      clamp(2.125rem, 5.5vw, 3.75rem);
  --t-hero:    clamp(2.875rem, 9vw, 7.25rem);
  --t-mega:    clamp(4rem, 14vw, 11rem);

  /* Space */
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-6: 1.5rem;
  --s-8: 2rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-24: 6rem;
  --section-y: clamp(4.5rem, 10vw, 9rem);

  --gutter: clamp(1.25rem, 5vw, 4rem);
  --measure: 34rem;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  background: var(--paper);
  color: var(--txt-on-paper);
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--red); color: #fff; }

.wrap {
  max-width: 78rem;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =====================================================================
   Reading progress + chapter marker (fixed HUD, magazine feel)
   ===================================================================== */
.progress {
  position: fixed; inset: 0 0 auto 0;
  height: 2px; z-index: 90; pointer-events: none;
  background: transparent;
}
.progress__bar {
  height: 100%; width: 0%;
  background: var(--red);
  transform-origin: left center;
  will-change: width;
  transition: width 0.08s linear;
}

.chapter-marker {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 70;
  display: none;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--txt-on-paper-mute);
  opacity: 0;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
  pointer-events: none;
}
@media (min-width: 960px) { .chapter-marker { display: flex; gap: 1rem; align-items: center; } }
.chapter-marker.is-visible { opacity: 1; }
.chapter-marker.on-dark { color: var(--txt-on-ink-mute); }
.chapter-marker__num {
  font-weight: 700; color: var(--red);
}

/* =====================================================================
   Header
   ===================================================================== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding: 0.9rem var(--gutter);
  font-family: var(--font-brand);
  color: var(--txt-on-ink);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s var(--ease);
}
.hdr.hdr--solid {
  background: rgba(246, 241, 233, 0.92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  color: var(--txt-on-paper);
  box-shadow: 0 1px 0 rgba(23, 19, 16, 0.08);
  padding-top: 0.65rem; padding-bottom: 0.65rem;
}
.hdr__mark { display: flex; align-items: center; gap: 0.6rem; }
.hdr__wordmark {
  font-size: var(--t-caption);
  font-weight: 800;
  letter-spacing: 0.24em;
}
.hdr__nav { display: flex; gap: clamp(0.9rem, 2vw, 1.75rem); }
.hdr__nav a {
  font-size: var(--t-caption); font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.78; transition: opacity 0.2s;
}
.hdr__nav a:hover { opacity: 1; }
@media (max-width: 820px) { .hdr__nav { display: none; } }

.hdr__cta {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.6rem 1rem 0.6rem 1.1rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hdr__cta:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-1px); }
@media (max-width: 520px) { .hdr__cta span { display: none; } .hdr__cta { padding: 0.55rem; } }

/* =====================================================================
   Issue masthead — small strip like a magazine
   ===================================================================== */
.masthead {
  background: var(--ink);
  color: var(--txt-on-ink-soft);
  padding: 0.7rem var(--gutter);
  padding-top: calc(0.7rem + 3.2rem); /* clear fixed header */
}
.masthead__line {
  max-width: 78rem; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 0.35rem 0.9rem;
  align-items: center;
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  letter-spacing: 0.22em; text-transform: uppercase;
}
.masthead__dot { color: var(--red); }

/* =====================================================================
   HERO — cinematic cold open
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  color: var(--txt-on-ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__frame {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero__img {
  position: absolute; inset: -8% -4%;
  width: 108%; height: 116%;
  object-fit: cover; object-position: 50% 35%;
  will-change: transform;
  transform: translate3d(0,0,0) scale(1.02);
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(23,19,16,.35) 0%, rgba(23,19,16,.05) 32%, rgba(23,19,16,.15) 62%, rgba(23,19,16,.85) 100%),
    radial-gradient(120% 80% at 78% 40%, rgba(23,19,16,0) 0%, rgba(23,19,16,.35) 65%, rgba(23,19,16,.75) 100%);
}

/* Portrait viewports run the tighter two-up crop, which puts faces in the upper
   third and the copy block directly over the lower half. Deepen the scrim from
   mid-frame down so the headline holds contrast without veiling either face. */
@media (max-aspect-ratio: 4/5) {
  /* Mobile hero is a 5:6 crop centered on both filmmakers. Source is
     16:9 landscape so any portrait crop clips at least one camera; the 5:6
     keeps hats, faces, scarf, and Ian's shirt all readable. */
  .hero__img {
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 42%;
  }
  .hero__veil {
    background:
      linear-gradient(180deg,
        rgba(23,19,16,.42) 0%,
        rgba(23,19,16,.08) 22%,
        rgba(23,19,16,.32) 46%,
        rgba(23,19,16,.72) 66%,
        rgba(23,19,16,.95) 100%);
  }
}

/* Viewfinder brackets */
.brackets {
  position: absolute; inset: clamp(1.25rem, 3vw, 2.5rem);
  pointer-events: none;
}
.brackets span {
  position: absolute;
  width: clamp(28px, 4vw, 46px);
  height: clamp(28px, 4vw, 46px);
  border: 2px solid rgba(242, 235, 225, 0.85);
}
.brackets span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.brackets span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.brackets span:nth-child(3) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.brackets span:nth-child(4) { bottom: 0; left: 0; border-right: 0; border-top: 0; border-color: var(--red); }

.hero__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: var(--s-6);
  min-height: 100vh; min-height: 100svh;
  padding: 6rem var(--gutter) clamp(4rem, 8vw, 6rem);
  max-width: 78rem;
  margin: 0 auto;
}
.hero__eyebrow {
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--txt-on-ink-soft);
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 0;
}
.hero__eyebrow em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--red);
  text-transform: none;
  letter-spacing: 0;
  padding: 0 0.15em;
}
.dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.18); }
  50%      { box-shadow: 0 0 0 9px rgba(237, 28, 36, 0.02); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-hero);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
  max-width: 18ch;
}
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.02em;
}
.hero__line em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.hero__deck {
  max-width: 42rem;
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--txt-on-ink-soft);
  text-wrap: pretty;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 0.55rem 0.85rem;
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--txt-on-ink-mute);
}

.scroll-cue {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--txt-on-ink-mute);
  animation: cue 3s ease-in-out infinite;
}
.scroll-cue__line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--txt-on-ink-mute), transparent);
}
@keyframes cue {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.85; }
  50%      { transform: translate(-50%, 8px); opacity: 0.35; }
}

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.35rem;
  font-family: var(--font-brand);
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn svg { transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 6px 22px -6px rgba(237, 28, 36, 0.55);
}
.btn--primary:hover { background: var(--red-deep); transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(237, 28, 36, 0.7); }
.btn--ghost {
  background: transparent; color: currentColor;
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: currentColor; color: var(--ink); }
.btn--full { width: 100%; justify-content: center; padding: 1.05rem 1.35rem; }

/* =====================================================================
   Chapter head — small numbered marker per section
   ===================================================================== */
.chapter-head {
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  font-family: var(--font-brand);
}
.chapter-head__num {
  font-size: var(--t-caption); font-weight: 700;
  color: var(--red); letter-spacing: 0.24em;
}
.chapter-head__label {
  font-size: var(--t-caption); font-weight: 600;
  color: var(--txt-on-paper-mute);
  letter-spacing: 0.24em; text-transform: uppercase;
}
.chapter-head--light .chapter-head__label { color: var(--txt-on-paper-soft); }

/* =====================================================================
   Problem section — big editorial pullquote
   ===================================================================== */
.problem {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.03;
  letter-spacing: -0.015em;
  max-width: 26ch;
  text-wrap: balance;
  margin-bottom: var(--s-8);
}
.pull--tight { max-width: 22ch; margin-bottom: var(--s-6); }
.pull em { color: var(--red); font-style: italic; }
.pull .plus { font-weight: 500; margin: 0 0.1em; }
.pull span { display: block; overflow: hidden; padding-bottom: 0.02em; }

.problem__body {
  max-width: var(--measure);
  display: flex; flex-direction: column; gap: var(--s-4);
  font-size: var(--t-lede);
  color: var(--txt-on-paper-soft);
  line-height: 1.6;
}
.problem__body em { color: var(--ink); font-style: italic; }

.lede {
  max-width: var(--measure);
  font-size: var(--t-lede);
  color: var(--txt-on-paper-soft);
  line-height: 1.6;
  margin-bottom: var(--s-8);
}
.lede em { color: var(--ink); font-style: italic; }

/* =====================================================================
   FRAMEWORK — four beats. Pin & sticky "panels" (comic feel)
   ===================================================================== */
.framework {
  background: var(--paper);
  padding-top: var(--section-y);
}
.framework__intro { margin-bottom: clamp(2rem, 5vw, 4rem); }

.beat {
  position: relative;
  min-height: 200vh; /* generous scroll budget per beat */
}
.beat__sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: var(--paper-2);
}
.beat--dark .beat__sticky { background: var(--ink); color: var(--txt-on-ink); }
.beat--dark .beat__content { color: var(--txt-on-ink); }
.beat--dark .beat__eyebrow { color: var(--txt-on-ink-mute); }
.beat--dark .beat__body { color: var(--txt-on-ink-soft); }
.beat--dark .beat__list li { border-color: rgba(242, 235, 225, 0.18); color: var(--txt-on-ink-soft); }

.beat--red .beat__sticky { background: linear-gradient(140deg, var(--red) 0%, var(--red-deep) 100%); color: #fff; }
.beat--red .beat__content { color: #fff; }
.beat--red .beat__eyebrow { color: rgba(255,255,255,0.75); }
.beat--red .beat__body { color: rgba(255,255,255,0.92); }
.beat--red .beat__list li { border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.9); }

.beat__media {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.beat__media img {
  position: absolute; inset: -4%;
  width: 108%; height: 108%;
  object-fit: cover; object-position: 50% 40%;
  will-change: transform;
  transform: scale(1.05);
}
.beat__vignette {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.15), rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.beat__badge {
  position: absolute; z-index: 2;
  top: clamp(1.25rem, 3vw, 2rem);
  left: clamp(1.25rem, 3vw, 2rem);
  padding: 0.55rem 0.9rem;
  background: rgba(23, 19, 16, 0.75);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.65rem;
  border-radius: 3px;
  border: 1px solid rgba(242, 235, 225, 0.14);
}
.beat__badge .beat__num { color: var(--red); }
.beat__badge--red { background: rgba(0,0,0,0.35); }
.beat__badge--red .beat__num { color: #fff; }

.beat__content {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3.5rem);
  display: flex; flex-direction: column;
  justify-content: center;
  gap: var(--s-4);
  color: var(--txt-on-paper);
}
.beat__eyebrow {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
  margin: 0;
}
.beat__title {
  font-family: var(--font-display);
  font-size: var(--t-h2);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.015em;
  max-width: 16ch;
  text-wrap: balance;
}
.beat__title em { color: var(--red); font-style: italic; }
.beat--red .beat__title em { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.beat--dark .beat__title em { color: var(--red); }
.beat__body {
  font-size: var(--t-lede);
  line-height: 1.55;
  max-width: 34ch;
  color: var(--txt-on-paper-soft);
}
.beat__list {
  display: flex; flex-direction: column;
  margin-top: var(--s-4);
  font-family: var(--font-brand);
  font-size: var(--t-label);
  letter-spacing: 0.02em;
}
.beat__list li {
  padding: 0.85rem 0;
  border-top: 1px solid rgba(23, 19, 16, 0.12);
  color: var(--txt-on-paper-soft);
}
.beat__list li:last-child { border-bottom: 1px solid rgba(23, 19, 16, 0.12); }

/* Stack the beats until the panel is wide enough to hold a figure.
   Below ~1100px the half-panel gets so tall and narrow that no crop of a
   standing subject survives it — portrait tablets were cutting Kadri out. */
@media (max-width: 1100px) {
  .beat { min-height: auto; }
  .beat__sticky {
    grid-template-columns: 1fr;
    position: relative; top: auto; min-height: auto;
  }
  .beat__media { min-height: 55vh; height: 55vh; }
  .beat__content { padding: clamp(2rem, 6vw, 3.5rem) var(--gutter); }
}

/* =====================================================================
   FALL STORY SLATE
   ===================================================================== */
.slate {
  background: var(--ink);
  color: var(--txt-on-ink);
  padding: var(--section-y) 0;
  position: relative;
  overflow: hidden;
}
.slate::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 10% 10%, rgba(216,198,174,0.09) 0%, transparent 60%),
    radial-gradient(50% 40% at 90% 90%, rgba(237,28,36,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.slate .wrap { position: relative; }
.slate .chapter-head__label { color: var(--txt-on-ink-mute); }

.slate__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.slate__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(242,235,225,0.22);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--txt-on-ink-soft);
  margin-bottom: var(--s-6);
}
.slate__eyebrow::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.25);
}
.slate__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  color: var(--txt-on-ink);
  text-wrap: balance;
}
.slate__title em { color: var(--red); font-style: italic; }
.slate__title span { display: block; overflow: hidden; padding-bottom: 0.03em; }
.slate__deck {
  font-size: var(--t-lede);
  color: var(--txt-on-ink-soft);
  line-height: 1.6;
  max-width: 46rem;
}

.slate__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .slate__grid { grid-template-columns: 1fr; }
}

.tier {
  position: relative;
  background: var(--ink-2);
  border: 1px solid rgba(242,235,225,0.10);
  border-radius: 6px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.tier:hover { transform: translateY(-4px); border-color: rgba(242,235,225,0.22); }

.tier--feature {
  background: linear-gradient(180deg, rgba(237,28,36,0.05) 0%, var(--ink-2) 50%);
  border-color: rgba(237,28,36,0.28);
}
.tier__ribbon {
  position: absolute; top: -12px; left: clamp(1.5rem, 3vw, 2.25rem);
  background: var(--red); color: #fff;
  padding: 0.35rem 0.7rem;
  font-family: var(--font-brand);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  border-radius: 3px;
}
.tier__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.tier__name {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1;
  color: var(--txt-on-ink);
}
.tier__tag {
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--txt-on-ink-mute);
}
.tier__pitch {
  font-size: 0.9375rem;
  color: var(--txt-on-ink-soft);
  line-height: 1.55;
  min-height: 3rem;
}
.tier__list {
  display: flex; flex-direction: column;
  font-family: var(--font-brand);
  font-size: var(--t-label);
  color: var(--txt-on-ink-soft);
  flex: 1;
}
.tier__list li {
  padding: 0.75rem 0;
  border-top: 1px solid rgba(242,235,225,0.09);
}
.tier__list li:last-child { border-bottom: 1px solid rgba(242,235,225,0.09); }
.tier__cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-brand);
  font-size: var(--t-label); font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-on-ink);
  padding-top: 0.5rem;
  transition: color 0.25s;
}
.tier__cta:hover { color: var(--red); }
.tier__cta--red { color: var(--red); }
.tier__cta--red:hover { color: #fff; }

.slate__deadline {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: flex; align-items: flex-start; gap: 1.25rem;
  padding: 1.5rem;
  border-left: 3px solid var(--red);
  background: rgba(237,28,36,0.05);
  max-width: 46rem;
}
.slate__deadline-mark span {
  display: inline-block; width: 10px; height: 10px; border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(237,28,36,0.22);
  animation: pulse 2.4s ease-in-out infinite;
  margin-top: 0.35rem;
}
.slate__deadline-label {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.3rem;
}
.slate__deadline-text {
  font-size: 0.9375rem;
  color: var(--txt-on-ink-soft);
  line-height: 1.55;
}
.slate__deadline-text strong { color: var(--txt-on-ink); }

/* =====================================================================
   POSITIONING — Filmmakers + Fractional CMO
   ===================================================================== */
.positioning {
  padding: var(--section-y) 0;
  background: var(--paper);
}
.positioning__grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .positioning__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .positioning__grid { grid-template-columns: 1fr; } }

.positioning__card {
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--ink);
  display: flex; flex-direction: column; gap: 0.9rem;
}
.positioning__num {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--red);
}
.positioning__card h4 {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.positioning__card p {
  font-size: 0.9375rem;
  color: var(--txt-on-paper-soft);
  line-height: 1.55;
}

/* =====================================================================
   TEAM
   ===================================================================== */
.team {
  background: var(--paper-2);
  padding: var(--section-y) 0;
}
.team__grid {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
@media (max-width: 820px) { .team__grid { grid-template-columns: 1fr; } }

.member { display: flex; flex-direction: column; gap: var(--s-6); }
.member__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}
.member__frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 30%;
  transition: transform 0.9s var(--ease);
}
.member:hover .member__frame img { transform: scale(1.03); }
.member__brackets { position: absolute; inset: 0.75rem; pointer-events: none; }
.member__brackets span {
  position: absolute; width: 20px; height: 20px;
  border: 1.5px solid rgba(255,255,255,0.85);
}
.member__brackets span:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.member__brackets span:nth-child(2) { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.member__brackets span:nth-child(3) { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.member__brackets span:nth-child(4) { bottom: 0; left: 0; border-right: 0; border-top: 0; border-color: var(--red); }

.member__role {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.member__name {
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.member__body p {
  font-size: var(--t-body);
  color: var(--txt-on-paper-soft);
  line-height: 1.6;
  max-width: 34rem;
}

/* =====================================================================
   PROOF
   ===================================================================== */
.proof {
  background: var(--ink);
  color: var(--txt-on-ink);
  padding: var(--section-y) 0;
}
.proof .chapter-head__label { color: var(--txt-on-ink-mute); }
.proof__eyebrow {
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: var(--s-6);
}
.proof__row {
  display: flex; flex-wrap: wrap;
  gap: 0.75rem 2.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  font-weight: 500;
  color: var(--txt-on-ink-soft);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(242,235,225,0.12);
}
.proof__row span { transition: color 0.3s var(--ease); }
.proof__row span:hover { color: var(--txt-on-ink); }
.proof__quote {
  max-width: 44rem;
  font-family: var(--font-display);
  font-size: var(--t-h3);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: -0.005em;
  color: var(--txt-on-ink);
}
.proof__quote p em { color: var(--red); font-style: italic; }
.proof__quote cite {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  font-style: normal;
  color: var(--txt-on-ink-mute);
}

/* =====================================================================
   GREENLIGHT (calm close)
   ===================================================================== */
.greenlight {
  background: var(--paper);
  padding: var(--section-y) 0;
}
.greenlight__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 900px) { .greenlight__grid { grid-template-columns: 1fr; } }

.greenlight__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(23,19,16,0.14);
  border-radius: 999px;
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--txt-on-paper-soft);
  margin-bottom: var(--s-6);
}
.greenlight__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-6);
  text-wrap: balance;
}
.greenlight__title em { color: var(--red); font-style: italic; }
.greenlight__deck {
  font-size: var(--t-lede);
  color: var(--txt-on-paper-soft);
  line-height: 1.6;
  margin-bottom: var(--s-8);
  max-width: 34rem;
}
.greenlight__deck em { color: var(--ink); font-style: italic; }

.greenlight__list { display: flex; flex-direction: column; gap: 0.65rem; }
.greenlight__list li {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-brand);
  font-size: var(--t-label);
  color: var(--txt-on-paper);
}
.greenlight__list li span {
  width: 8px; height: 8px; background: var(--red); border-radius: 999px; flex-shrink: 0;
}

.greenlight__form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--ink);
  color: var(--txt-on-ink);
  border-radius: 6px;
  display: flex; flex-direction: column; gap: 1rem;
  box-shadow: 0 30px 60px -30px rgba(23,19,16,0.35);
}
.greenlight__booking {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 30px 60px -30px rgba(23,19,16,0.35);
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden;
  min-width: 0;
}
.greenlight__booking iframe {
  min-height: 900px !important;
  height: 900px !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #fff;
  border-radius: 4px;
  display: block;
}
@media (max-width: 700px) {
  .greenlight__booking iframe { min-height: 780px !important; height: 780px !important; }
}
.greenlight__booking .form__note { color: var(--txt-soft); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label {
  font-family: var(--font-brand);
  font-size: var(--t-caption);
  font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--txt-on-ink-soft);
}
.field input, .field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(242,235,225,0.14);
  border-radius: 4px;
  padding: 0.9rem 1rem;
  color: var(--txt-on-ink);
  font-family: var(--font-body);
  font-size: var(--t-body);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.field input::placeholder, .field textarea::placeholder {
  color: var(--txt-on-ink-mute);
}
.form__note {
  font-family: var(--font-brand);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--txt-on-ink-mute);
  text-align: center;
}
.form__note.is-success { color: #b6e2c4; }
.form__note.is-error { color: #ff9a9a; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.ftr {
  background: var(--ink);
  color: var(--txt-on-ink-soft);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
}
.ftr__wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(242,235,225,0.1);
}
@media (max-width: 720px) { .ftr__wrap { grid-template-columns: 1fr; } }
.ftr__mark {
  display: flex; align-items: center; gap: 0.7rem;
  color: var(--txt-on-ink);
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
}
.ftr__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 560px) { .ftr__cols { grid-template-columns: 1fr 1fr; } }
.ftr__cols > div { display: flex; flex-direction: column; gap: 0.55rem; }
.ftr__label {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}
.ftr__cols a {
  font-family: var(--font-brand);
  font-size: var(--t-label);
  color: var(--txt-on-ink-soft);
  transition: color 0.2s;
}
.ftr__cols a:hover { color: var(--txt-on-ink); }
.ftr__legal {
  max-width: 78rem; margin: 0 auto;
  padding: 1.5rem var(--gutter) 0;
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem;
  font-family: var(--font-brand);
  font-size: 0.6875rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--txt-on-ink-mute);
}

/* =====================================================================
   Scroll reveals (baseline; JS enhances)
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   Chapter 02 — Where it started (origin + LIFTED Weddings)
   ===================================================================== */
.origin {
  padding: var(--section-y) 0;
  background: var(--paper-2);
}
.origin__head {
  display: flex; align-items: baseline; gap: 0.8rem;
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
  font-family: var(--font-brand);
}
.origin__num {
  font-size: var(--t-caption); font-weight: 700;
  color: var(--red); letter-spacing: 0.24em;
}
.origin__label {
  font-size: var(--t-caption); font-weight: 600;
  color: var(--txt-on-paper-mute);
  letter-spacing: 0.24em; text-transform: uppercase;
}
.origin__pull {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--t-h2);
  line-height: 1.03;
  letter-spacing: -0.015em;
  max-width: 24ch;
  text-wrap: balance;
  margin-bottom: var(--s-12);
}
.origin__pull em { color: var(--red); font-style: italic; }
.origin__pull span { display: block; }

.origin__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
@media (max-width: 900px) { .origin__grid { grid-template-columns: 1fr; } }

.origin__body {
  display: flex; flex-direction: column; gap: var(--s-4);
  font-size: var(--t-lede);
  color: var(--txt-on-paper-soft);
  line-height: 1.62;
  max-width: var(--measure);
}
.origin__body em { color: var(--ink); font-style: italic; }

.origin__figure { margin: 0; }
.origin__figure img {
  width: 100%; height: auto; display: block;
  border-radius: 2px;
  filter: saturate(0.94);
}
.origin__figure figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-brand);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--txt-on-paper-mute);
}

/* LIFTED Weddings — still-running band */
.weddings {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: start;
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
  border-top: 1px solid rgba(23, 19, 16, 0.14);
}
@media (max-width: 720px) { .weddings { grid-template-columns: 1fr; gap: 1.25rem; } }

.weddings__tag {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  white-space: nowrap;
  padding-top: 0.4rem;
}
.weddings__body { max-width: 62ch; }
.weddings__body h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-4);
  color: var(--txt-on-paper);
}
.weddings__body p {
  font-size: 1rem;
  color: var(--txt-on-paper-soft);
  line-height: 1.65;
  margin-bottom: var(--s-4);
}
.weddings__cta {
  display: inline-block;
  font-family: var(--font-brand);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-on-paper);
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.2rem;
  transition: color 0.25s ease, gap 0.25s ease;
}
.weddings__cta:hover { color: var(--red); }

/* ---- Weddings gallery (magazine grid under the paragraph) ---- */
.wed-gallery {
  margin: clamp(2rem, 5vw, 3.5rem) 0 0;
}
.wed-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}
.wed-gallery__tile {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-2);
  border: 1px solid rgba(23, 19, 16, 0.06);
  aspect-ratio: 4 / 5;
  text-decoration: none;
}
.wed-gallery__tile--wide { aspect-ratio: 3 / 2; grid-column: span 2; }
.wed-gallery__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.98);
}
.wed-gallery__tile:hover img,
.wed-gallery__tile:focus-visible img { transform: scale(1.03); filter: saturate(1.08); }
.wed-gallery__tile:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.wed-gallery__cap {
  margin: clamp(1rem, 2vw, 1.5rem) 0 0;
  font-family: var(--font-brand);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--txt-on-paper-mute);
  text-align: right;
}
.wed-gallery__cap a { color: var(--txt-on-paper); text-decoration: none; border-bottom: 1px solid var(--red); padding-bottom: 1px; }
.wed-gallery__cap a:hover { color: var(--red); }

@media (max-width: 900px) {
  .wed-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .wed-gallery__tile--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .wed-gallery__grid { grid-template-columns: 1fr; }
  .wed-gallery__tile--wide { aspect-ratio: 4 / 5; grid-column: span 1; }
  .wed-gallery__cap { text-align: left; }
}

/* =====================================================================
   The day of — Multiply, run on ourselves
   ===================================================================== */
.dayof {
  display: block;
  background: var(--ink);
  color: var(--txt-on-ink);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.dayof__wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
@media (max-width: 900px) { .dayof__wrap { grid-template-columns: 1fr; } }

.dayof__media img {
  width: 100%; height: auto; display: block;
  border-radius: 2px;
  filter: saturate(0.9) contrast(1.02);
}
.dayof__body {
  display: flex; flex-direction: column; gap: var(--s-4);
  max-width: 60ch;
}
.dayof__label {
  font-family: var(--font-brand);
  font-size: var(--t-caption); font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}
.dayof__body p {
  font-size: 1.02rem;
  line-height: 1.68;
  color: var(--txt-on-ink-soft);
}
.dayof__body strong { color: var(--txt-on-ink); font-weight: 600; }
.dayof__body em { color: var(--txt-on-ink); font-style: italic; }

/* Team lede — the role-split correction */
.team__lede {
  max-width: var(--measure);
  font-size: var(--t-lede);
  line-height: 1.6;
  color: var(--txt-on-paper-soft);
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.team__lede em { color: var(--ink); font-style: italic; }
.member__body p + p { margin-top: var(--s-4); }

/* Footer now carries four columns */
.ftr__cols { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .ftr__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 420px) { .ftr__cols { grid-template-columns: 1fr; } }

/* ---- day-of stacked frames ---- */
.dayof__media { display: flex; flex-direction: column; gap: var(--s-6); }
.dayof__frame { margin: 0; }
.dayof__frame figcaption {
  font-family: var(--font-brand);
  font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--txt-on-ink-mute);
  margin-top: var(--s-3); line-height: 1.6;
}
@media (max-width: 900px) {
  .dayof__media { gap: var(--s-8); }
}
