:root {
  color-scheme: light dark;
  --bg: #e8eaeb;
  --bg-raised: #f2f3ee;
  --bg-deep: #d7dadc;
  --ink: #121517;
  --ink-soft: #4f575b;
  --line: rgba(18, 21, 23, 0.22);
  --line-strong: rgba(18, 21, 23, 0.52);
  --accent: #b33a28;
  --accent-hover: #922f22;
  --accent-ink: #f7f7f3;
  --media-accent: #ff684f;
  --media-black: #0a0c0d;
  --media-white: #f2f3ee;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --story: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
  --radius: 4px;
  --control-radius: 6px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0a0c0d;
    --bg-raised: #121618;
    --bg-deep: #171b1e;
    --ink: #f2f3ee;
    --ink-soft: #a7adb0;
    --line: rgba(242, 243, 238, 0.2);
    --line-strong: rgba(242, 243, 238, 0.5);
    --accent: #ff563b;
    --accent-hover: #ff745e;
    --accent-ink: #0a0c0d;
  }
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--line-strong) var(--bg);
}

[id] {
  scroll-margin-top: 72px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.dialog-open { overflow: hidden; }

[hidden] { display: none !important; }

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

img { height: auto; }

button,
input,
summary { font: inherit; }

button,
a,
summary,
input[type="range"] { -webkit-tap-highlight-color: transparent; }

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
video:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd { margin-top: 0; }

h1,
h2,
h3 {
  font-family: var(--display);
  font-stretch: 78%;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

h1 {
  max-width: 18ch;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 6vw, 6.65rem);
  font-weight: 650;
}

.hero h1 {
  max-width: 12ch;
  font-family: var(--story);
  font-stretch: normal;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  font-weight: 630;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  font-weight: 620;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: var(--control-radius);
  background: var(--accent);
  color: var(--accent-ink);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  color: var(--media-white);
  background: rgba(10, 12, 13, 0.92);
  box-shadow: 0 1px 0 rgba(242, 243, 238, 0.14);
  backdrop-filter: blur(12px) saturate(115%);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(10, 12, 13, 0.96);
  box-shadow: 0 1px 0 rgba(242, 243, 238, 0.14);
  backdrop-filter: blur(16px) saturate(120%);
}

.nav-shell {
  display: flex;
  width: var(--page);
  min-height: 72px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.9rem;
  font-weight: 680;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.875rem;
  font-weight: 640;
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta) { position: relative; }

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--media-accent);
  transition: transform 240ms var(--ease-out);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button,
.dialog-close { border-radius: var(--control-radius); }

.nav-cta {
  padding: 9px 13px;
  border: 1px solid rgba(242, 243, 238, 0.5);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  border-color: var(--media-white);
  background: var(--media-white);
  color: var(--media-black);
}

.nav-toggle {
  display: none;
  padding: 8px 12px;
  border: 1px solid rgba(242, 243, 238, 0.48);
  border-radius: var(--control-radius);
  background: transparent;
  color: inherit;
  font-size: 0.875rem;
  font-weight: 650;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  align-items: end;
  isolation: isolate;
  background: var(--media-black);
  color: var(--media-white);
}

.hero-reel,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-reel {
  z-index: -3;
  background: var(--media-black);
}

.hero-reel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.96) 0%, rgba(10, 12, 13, 0.88) 46%, rgba(10, 12, 13, 0.22) 74%),
    linear-gradient(0deg, rgba(10, 12, 13, 0.98) 0%, rgba(10, 12, 13, 0.82) 31%, rgba(10, 12, 13, 0.12) 67%, transparent 78%);
}

.hero-content {
  padding-top: 92px;
  padding-bottom: clamp(84px, 10vh, 118px);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero .eyebrow,
.dialog-bar p,
.closing-question {
  color: var(--media-accent);
}

.hero-deck {
  max-width: 510px;
  margin-bottom: 28px;
  color: rgba(242, 243, 238, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
}

.button:hover { transform: translateY(-2px); }

.button:active,
.nav-cta:active,
.dialog-close:active { transform: translateY(1px); }

.button-primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.button-primary:hover { background: var(--accent-hover); }

.site-header a:focus-visible,
.site-header button:focus-visible,
.hero a:focus-visible,
.hero button:focus-visible,
.preview-dialog a:focus-visible,
.preview-dialog button:focus-visible,
.preview-dialog video:focus-visible {
  outline-color: var(--media-accent);
}

.button-ghost {
  border-color: rgba(242, 243, 238, 0.55);
  background: rgba(10, 12, 13, 0.28);
  color: var(--media-white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--media-white);
  background: var(--media-white);
  color: var(--media-black);
}

.hero-credit {
  position: absolute;
  right: 22px;
  bottom: 18px;
  margin: 0;
  color: rgba(242, 243, 238, 0.58);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.media-error {
  z-index: 6;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(242, 243, 238, 0.32);
  border-radius: var(--control-radius);
  background: rgba(10, 12, 13, 0.92);
  color: var(--media-white);
  font-size: 0.875rem;
  line-height: 1.4;
}

.media-error strong {
  color: var(--media-white);
  font-size: 0.9rem;
}

.media-error span { color: rgba(242, 243, 238, 0.72); }

.media-error a {
  color: var(--media-accent);
  font-weight: 700;
}

.hero-media-error {
  position: absolute;
  right: 22px;
  bottom: 42px;
  max-width: 300px;
  padding: 12px 14px;
}

.offer-map {
  padding-block: clamp(88px, 10vw, 132px);
  border-bottom: 1px solid var(--line-strong);
}

.offer-heading {
  max-width: 820px;
  margin-bottom: clamp(42px, 6vw, 68px);
}

.offer-heading h2 { max-width: 9ch; }

.offer-heading p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.offer-doors {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.offer-door {
  display: grid;
  min-height: 210px;
  padding: clamp(30px, 4vw, 48px) 0;
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: minmax(160px, 0.65fr) minmax(0, 1.5fr) minmax(170px, 0.55fr);
  gap: clamp(28px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
}

.offer-start { margin: 0; }

.offer-start {
  color: var(--accent);
  font-size: 0.94rem;
  font-weight: 700;
}

.offer-door h3 {
  margin: 0 0 14px;
  font-family: var(--story);
  font-size: clamp(2.8rem, 5vw, 5.35rem);
  font-stretch: normal;
  font-weight: 560;
  letter-spacing: -0.05em;
  line-height: 1;
}

.offer-outcome {
  max-width: 540px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.sample-slot {
  display: grid;
  width: 100%;
  min-height: 104px;
  padding: 18px;
  align-content: space-between;
  justify-self: end;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(135deg, transparent 0 48%, var(--line) 49% 50%, transparent 51%),
    var(--bg-raised);
}

.sample-slot span {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.sample-slot strong {
  font-size: 0.92rem;
  font-weight: 700;
}

.sample-ready {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  align-content: end;
  color: var(--media-white);
  text-decoration: none;
}

.sample-ready::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 12, 13, 0.9), rgba(10, 12, 13, 0.12) 78%);
  content: "";
}

.sample-ready img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
  transition: transform 420ms var(--ease-out), filter 240ms ease;
}

.sample-ready span {
  color: rgba(242, 243, 238, 0.78);
}

.sample-ready:hover img {
  transform: scale(1.035);
  filter: saturate(1.08);
}

.edit-section { padding-block: clamp(84px, 11vw, 148px); }

.edit-heading,
.film-library-heading {
  max-width: 810px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.edit-heading p,
.promise-lead p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.process-journey {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 5vw, 72px);
}

.journey-sticky {
  position: relative;
  top: auto;
  min-width: 0;
}

.edit-monitor {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--media-black);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.stage-media {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  place-items: center;
  pointer-events: none;
  transform: scale(1.018);
  transition: opacity 520ms var(--ease-out), transform 820ms var(--ease-out);
}

.process-journey[data-stage="0"] [data-stage-media="0"],
.process-journey[data-stage="1"] [data-stage-media="1"],
.process-journey[data-stage="2"] [data-stage-media="2"],
.process-journey[data-stage="3"] [data-stage-media="3"] {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.stage-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stage-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(7, 8, 8, 0.38), transparent);
  content: "";
}

.stage-media-error {
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  padding: 12px 14px;
}

.stage-responsibility {
  display: grid;
  margin: 26px 0 0;
  padding-top: 18px;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.stage-responsibility dt {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.875rem;
}

.stage-responsibility dd {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 680;
  line-height: 1.45;
}

.stage-selector {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
  background: var(--bg-raised);
}

.stage-button {
  display: grid;
  min-height: 62px;
  padding: 10px 14px;
  border: 0;
  border-top: 2px solid transparent;
  border-right: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.stage-button:last-child { border-right: 0; }

.stage-button:hover,
.stage-button.is-active {
  background: var(--ink);
  color: var(--bg-raised);
}

.stage-button.is-active { border-top-color: var(--accent); }

.stage-button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

.journey-steps {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.journey-step {
  display: none;
  min-height: 100%;
  padding: clamp(34px, 5vw, 64px) 0;
  grid-area: 1 / 1;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transform: none;
  transition: opacity 320ms ease;
}

.journey-step.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.journey-step[hidden] { display: none; }

.journey-step-kicker {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.journey-step h3 {
  margin-bottom: 20px;
  font-family: var(--headline);
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-wrap: balance;
}

.journey-step > p:not(.journey-step-kicker) {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.process-disclosure {
  max-width: 720px;
  margin: clamp(32px, 5vw, 56px) 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.film-status {
  margin-bottom: 12px;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.875rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.film-section {
  padding-block: clamp(86px, 12vw, 160px);
  background: var(--bg-deep);
}

.film-library-heading {
  max-width: 860px;
  margin-bottom: clamp(48px, 7vw, 82px);
}

.film-library-heading h2 { max-width: 10ch; }

.film-library-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.film-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 10vw, 150px);
}

.film-feature {
  padding-top: clamp(38px, 5vw, 62px);
  border-top: 1px solid var(--line-strong);
}

.signature-film {
  align-items: start;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  gap: clamp(42px, 6vw, 82px);
}

.film-frame {
  position: relative;
  width: min(100%, 420px);
  justify-self: end;
}

.film-frame::before {
  position: absolute;
  inset: -16px 16px 16px -16px;
  z-index: 0;
  border: 1px solid var(--line-strong);
  content: "";
}

.film-frame video,
.film-entry-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius);
  background: var(--media-black);
}

.film-frame video { aspect-ratio: 9 / 16; }

.signature-film .film-frame {
  width: 100%;
  justify-self: stretch;
}

.signature-film .film-frame video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.signature-film .film-copy { padding-top: clamp(8px, 2vw, 24px); }

.signature-film .film-name {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
}

.signature-film .film-logline { max-width: 17ch !important; }

.signature-film .film-facts {
  grid-template-columns: 1fr;
  gap: 14px;
}

.signature-film .film-facts div { padding-top: 0; }

.film-media-error {
  position: absolute;
  inset: 18px;
  padding: 18px;
  align-content: center;
  text-align: center;
}

.film-name {
  max-width: 13ch;
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.3vw, 5.8rem);
  font-stretch: 78%;
  font-weight: 640;
  letter-spacing: -0.05em;
  line-height: 0.94;
}

.film-logline {
  max-width: 20ch !important;
  color: var(--ink) !important;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2.2rem) !important;
  font-stretch: 82%;
  font-weight: 630;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.film-copy > p:not(.film-status) {
  max-width: 580px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.film-facts {
  display: grid;
  max-width: 680px;
  margin: 36px 0 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
}

.film-facts div { padding: 16px 14px 0 0; }

.film-facts dt {
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.film-facts dd {
  font-size: 0.9rem;
  font-weight: 620;
}

.text-link {
  color: var(--accent);
  font-weight: 720;
}

.film-secondary {
  margin-top: clamp(72px, 11vw, 136px);
}

.film-secondary-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 54px);
}

.film-secondary-heading h3,
.ai-scene-copy h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-stretch: 78%;
  font-size: clamp(2.45rem, 4.8vw, 5rem);
  font-weight: 640;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.film-secondary-heading p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.short-film-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
}

.film-entry {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--bg-raised);
}

.film-entry-media,
.reserved-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--media-black);
}

.film-entry-media video,
.film-entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-entry-error {
  position: absolute;
  z-index: 2;
  inset: 16px;
  padding: 18px;
  align-content: center;
  text-align: center;
}

.film-entry-copy {
  display: flex;
  padding: clamp(22px, 3vw, 34px);
  flex: 1;
  align-items: flex-start;
  flex-direction: column;
}

.film-entry-copy .film-name {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 3.5vw, 3.8rem);
  line-height: 0.94;
}

.film-entry-copy > p:not(.film-status) {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.film-entry-copy .text-link { margin-top: auto; padding-top: 24px; }

.film-entry-progress img {
  object-position: 50% 38%;
  filter: saturate(0.72) contrast(1.05);
}

.ai-scene-proof {
  display: grid;
  margin-top: clamp(82px, 12vw, 148px);
  padding-top: clamp(42px, 6vw, 68px);
  align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: clamp(54px, 10vw, 148px);
  border-top: 1px solid var(--line-strong);
}

.ai-scene-copy { max-width: 700px; }

.ai-scene-copy h3 { max-width: 11ch; }

.ai-scene-copy > p:not(.film-status) {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.ai-scene-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ai-disclosure {
  margin: 26px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem !important;
}

.ai-scene-media {
  position: relative;
  width: min(100%, 380px);
  justify-self: end;
}

.ai-scene-media::before {
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 1px solid var(--line-strong);
  content: "";
}

.ai-scene-media video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius);
  background: var(--media-black);
}

.reserved-frame {
  display: grid;
  place-items: center;
  background: var(--bg-deep);
  color: var(--ink-soft);
}

.reserved-frame span {
  max-width: 10ch;
  font-family: var(--display);
  font-size: clamp(2.1rem, 3.6vw, 3.8rem);
  font-stretch: 78%;
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-align: center;
}

.promise {
  display: grid;
  padding-block: clamp(98px, 14vw, 190px);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(72px, 12vw, 170px);
  border-top: 1px solid var(--line-strong);
}

.promise-lead { align-self: start; }
.promise-lead h2 { max-width: 8ch; }

.promise-statements {
  display: grid;
  border-top: 1px solid var(--line-strong);
}

.promise-statements article {
  display: grid;
  padding-block: 28px;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  border-bottom: 1px solid var(--line);
}

.promise-statements h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2.1rem);
}

.promise-statements p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-soft);
}

.closing { padding-bottom: clamp(34px, 6vw, 76px); }

.closing-frame {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 8vw, 96px);
  background:
    linear-gradient(90deg, rgba(10, 12, 13, 0.93), rgba(10, 12, 13, 0.62)),
    center / cover no-repeat url("./assets/brand/lives-before-us-banner-source.webp");
  color: var(--media-white);
}

.closing-question {
  margin-bottom: 16px;
  color: var(--media-accent);
  font-family: var(--mono);
  font-size: 0.88rem;
  font-weight: 700;
}

.closing h2 {
  max-width: 13ch;
  font-family: var(--display);
  font-stretch: 78%;
  font-weight: 640;
  letter-spacing: -0.05em;
}

.closing .button { margin-top: 26px; }

.closing-note {
  max-width: 610px;
  margin: 0;
  color: rgba(242, 243, 238, 0.78);
  font-size: 1rem;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr auto;
  gap: 26px 42px;
}

.footer-brand { width: max-content; }

.footer-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 0.875rem;
}

.footer-links a:hover { color: var(--accent); }

.footer-meta {
  grid-column: 3;
  text-align: right;
}

.preview-dialog {
  width: min(960px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 243, 238, 0.28);
  border-radius: var(--radius);
  background: var(--media-black);
  color: var(--media-white);
}

.preview-dialog::backdrop {
  background: rgba(5, 6, 7, 0.88);
  backdrop-filter: blur(8px);
}

.dialog-bar {
  display: flex;
  min-height: 78px;
  padding: 14px 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(242, 243, 238, 0.18);
}

.dialog-bar p {
  margin-bottom: 2px;
  color: var(--media-accent);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dialog-bar h2 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
}

.dialog-close {
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 243, 238, 0.45);
  cursor: pointer;
  background: transparent;
  color: var(--media-white);
  font-size: 0.875rem;
}

.dialog-close:hover {
  background: var(--media-white);
  color: var(--media-black);
}

.dialog-media {
  position: relative;
  background: var(--media-black);
}

.dialog-media video {
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 112px);
  margin-inline: auto;
  background: var(--media-black);
}

.dialog-media-error {
  position: absolute;
  inset: 20px;
  padding: 28px;
  align-content: center;
  text-align: center;
}

.media-failed {
  opacity: 0.2;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-reel { animation: aperture-open 1100ms var(--ease-out) both; }
  .hero-content > * { animation: hero-enter 720ms var(--ease-out) both; }
  .hero-content > :nth-child(1) { animation-delay: 120ms; }
  .hero-content > :nth-child(2) { animation-delay: 190ms; }
  .hero-content > :nth-child(3) { animation-delay: 260ms; }
  .hero-content > :nth-child(4) { animation-delay: 330ms; }

  @keyframes aperture-open {
    from { clip-path: inset(0 8vw); transform: scale(1.04); }
    to { clip-path: inset(0); transform: scale(1); }
  }

  @keyframes hero-enter {
    from { opacity: 0.72; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
  }

}

@media (max-width: 980px) {
  :root { --page: min(100% - 34px, 820px); }
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 17px;
    display: none;
    width: min(300px, calc(100vw - 34px));
    padding: 12px;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    border: 1px solid rgba(242, 243, 238, 0.2);
    border-radius: var(--control-radius);
    background: rgba(10, 12, 13, 0.97);
    color: var(--media-white);
  }

  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 11px 12px; }

  .nav-cta {
    margin-top: 5px;
    text-align: center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 12, 13, 0.96) 0%, rgba(10, 12, 13, 0.82) 62%, rgba(10, 12, 13, 0.18)),
      linear-gradient(0deg, rgba(10, 12, 13, 0.98), rgba(10, 12, 13, 0.76) 38%, transparent 72%);
  }

  .film-layout,
  .promise { grid-template-columns: 1fr; }

  .process-journey {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journey-sticky {
    position: relative;
    top: auto;
    z-index: auto;
    padding-bottom: 1px;
    background: var(--bg);
  }

  .edit-monitor {
    aspect-ratio: 16 / 9;
  }

  .stage-selector { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .stage-button { text-align: center; }

  .journey-steps {
    width: min(650px, 100%);
    margin: 0;
  }

  .journey-step { min-height: 0; }

  .film-frame {
    width: min(72vw, 400px);
    justify-self: start;
  }

  .signature-film .film-frame {
    width: 100%;
    margin-left: 0;
  }

  .short-film-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .short-film-grid .film-entry-progress {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  }

  .short-film-grid .film-entry-progress .film-entry-media {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .film-entry-reserved {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  }

  .film-entry-reserved .reserved-frame {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .offer-door {
    grid-template-columns: minmax(140px, 0.62fr) minmax(0, 1.38fr) minmax(150px, 0.58fr);
  }

  .promise { gap: 64px; }
  .promise-lead h2 { max-width: 11ch; }

  .promise-statements article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer-grid { grid-template-columns: 1fr auto; }
  .footer-grid > p:nth-child(2) { display: none; }
  .footer-meta { grid-column: 2; }
}

@media (max-width: 680px) {
  :root { --page: calc(100% - 28px); }
  .nav-shell { min-height: 64px; }
  .brand span { font-size: 0.875rem; }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero { min-height: 100dvh; }
  .hero-reel video { object-position: 56% center; }

  .hero-shade {
    background: linear-gradient(0deg, rgba(10, 12, 13, 0.99) 0%, rgba(10, 12, 13, 0.94) 48%, rgba(10, 12, 13, 0.42) 78%, rgba(10, 12, 13, 0.16));
  }

  .hero-content {
    padding-top: 88px;
    padding-bottom: 84px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.25rem, 14vw, 5rem);
  }

  h2 { font-size: clamp(2.55rem, 12vw, 4.2rem); }

  .hero-deck {
    max-width: 340px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button { width: 100%; }
  .hero-credit { display: none; }

  .hero-media-error {
    right: 14px;
    bottom: 18px;
    left: 14px;
    max-width: none;
  }

  .edit-section,
  .offer-map,
  .promise,
  .film-section { padding-block: 82px; }

  .journey-sticky { top: auto; }

  .edit-monitor { aspect-ratio: 16 / 9; }

  .stage-selector { grid-template-columns: repeat(4, minmax(0, 1fr)); }

  .stage-button {
    min-height: 52px;
    padding: 8px 4px;
    border-top-width: 2px;
    text-align: center;
  }

  .journey-steps {
    width: 100%;
    margin-top: 0;
  }

  .journey-step {
    min-height: 0;
    padding-block: 36px;
  }

  .journey-step h3 { font-size: clamp(2.2rem, 11vw, 3.3rem); }

  .stage-responsibility {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .film-frame {
    width: min(86vw, 360px);
    margin-left: 14px;
  }

  .signature-film .film-frame {
    width: 100%;
    margin-left: 0;
  }

  .film-name { font-size: clamp(2.8rem, 13vw, 4.4rem); }

  .short-film-grid { grid-template-columns: 1fr; }

  .short-film-grid .film-entry-progress {
    display: flex;
    grid-column: auto;
  }

  .short-film-grid .film-entry-progress .film-entry-media {
    height: auto;
    aspect-ratio: 4 / 5;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .ai-scene-proof { grid-template-columns: 1fr; }

  .ai-scene-media {
    width: min(86vw, 360px);
    margin-left: 14px;
    justify-self: start;
  }

  .film-entry-reserved {
    display: flex;
    grid-column: auto;
  }

  .film-entry-reserved .reserved-frame {
    height: auto;
    aspect-ratio: 4 / 3;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .film-facts {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .offer-door {
    min-height: 0;
    padding: 34px 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .offer-door h3 {
    margin-top: 0;
    font-size: clamp(2.7rem, 12vw, 4.25rem);
  }

  .sample-slot {
    min-height: 96px;
    justify-self: stretch;
  }

  .promise { gap: 52px; }

  .closing {
    width: 100%;
    padding-bottom: 0;
  }

  .closing-frame { padding: 72px 20px; }

  .footer-grid {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links { flex-wrap: wrap; }

  .footer-meta {
    grid-column: 1;
    text-align: left;
  }

  .preview-dialog { max-height: calc(100dvh - 20px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-reel,
  .hero-content > * {
    clip-path: none;
    opacity: 1;
    transform: none;
  }
}

/* 2026 editorial brand system */
:root {
  color-scheme: light;
  --bg: #e7dcc9;
  --bg-raised: #f1e8da;
  --bg-deep: #dacdb9;
  --ink: #292a24;
  --ink-soft: #625f56;
  --line: rgba(41, 42, 36, 0.14);
  --line-strong: rgba(41, 42, 36, 0.3);
  --accent: #984932;
  --accent-hover: #7d3929;
  --accent-ink: #f7efe3;
  --media-accent: #b75a3d;
  --media-black: #080a0a;
  --media-white: #f4ead6;
  --display: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --story: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --mono: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --page: min(1240px, calc(100vw - 64px));
  --radius: 2px;
  --control-radius: 3px;
  --headline: "Lora", Georgia, serif;
}

body {
  background: var(--bg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
}

h1,
h2,
h3,
.hero h1,
.offer-story h3,
.film-name,
.film-logline,
.film-secondary-heading h3,
.ai-scene-copy h3,
.journey-step h3,
.closing h2 {
  font-family: var(--headline);
  font-stretch: normal;
  letter-spacing: -0.035em;
}

h1,
.hero h1 {
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  font-weight: 560;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.7rem, 5.6vw, 5.8rem);
  font-weight: 560;
  line-height: 0.98;
}

h3 { font-weight: 590; }

.film-status,
.journey-step-kicker,
.closing-question,
.offer-start {
  font-family: var(--body);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-header {
  position: absolute;
  color: var(--ink);
  background: rgba(231, 220, 201, 0.94);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.is-scrolled {
  background: rgba(241, 232, 218, 0.97);
  box-shadow: 0 1px 0 var(--line-strong);
}

.nav-shell { min-height: 76px; }

.brand img,
.brand-wordmark {
  width: 168px;
  height: auto;
  border-radius: 0;
}

.footer-brand img,
.footer-brand .brand-wordmark { width: min(260px, 70vw); }

.site-nav {
  gap: 24px;
  font-size: 0.84rem;
  font-weight: 620;
}

.site-nav a:not(.nav-cta)::after { background: currentColor; }

.nav-cta {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.nav-cta:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg-raised);
}

.nav-cta,
.button {
  border-radius: var(--control-radius);
}

.brand-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  background: #0a0c0c;
  color: var(--media-white);
}

.brand-curtain,
.banner-side,
.banner-vignette {
  position: absolute;
  inset: 0;
}

.brand-curtain { overflow: hidden; }

.banner-side {
  width: 50%;
  background-color: #25211d;
  background-image: url("./assets/brand/lives-before-us-banner-source.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  filter: grayscale(0.45) contrast(1.08) brightness(0.62);
}

.banner-side-left {
  right: auto;
  background-position: left center;
  transform-origin: left center;
  animation: curtain-left 1000ms var(--ease-out) both;
}

.banner-side-right {
  left: auto;
  background-position: right center;
  transform-origin: right center;
  animation: curtain-right 1000ms var(--ease-out) both;
}

.banner-vignette {
  background:
    linear-gradient(90deg, rgba(8, 10, 10, 0.28), rgba(8, 10, 10, 0.92) 34%, rgba(8, 10, 10, 0.96) 66%, rgba(8, 10, 10, 0.28)),
    linear-gradient(rgba(8, 10, 10, 0.22), rgba(8, 10, 10, 0.7));
}

.brand-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(860px, calc(100vw - 48px));
  min-height: auto;
  padding: 96px 0 64px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-wordmark {
  width: min(720px, 78vw);
  height: auto;
  margin-bottom: clamp(30px, 5vw, 54px);
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.48));
  opacity: 0;
  transform: scale(0.96);
  animation: brand-arrive 800ms 580ms var(--ease-out) forwards;
}

.brand-hero h1 {
  max-width: 13ch;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 700ms 760ms var(--ease-out) forwards;
}

.brand-hero h1 span { display: block; }

.brand-hero .hero-deck {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(242, 238, 229, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
  opacity: 0;
  transform: translateY(16px);
  animation: hero-rise 700ms 900ms var(--ease-out) forwards;
}

.brand-hero .hero-actions {
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-rise 700ms 1020ms var(--ease-out) forwards;
}

@keyframes curtain-left {
  from { opacity: 0; transform: translateX(-10%); }
  to { opacity: 0.88; transform: translateX(0); }
}

@keyframes curtain-right {
  from { opacity: 0; transform: translateX(10%); }
  to { opacity: 0.88; transform: translateX(0); }
}

@keyframes brand-arrive {
  to { opacity: 1; transform: scale(1); }
}

@keyframes hero-rise {
  to { opacity: 1; transform: translateY(0); }
}

.offer-map { padding-block: clamp(80px, 9vw, 118px); }

.offer-heading {
  display: block;
  max-width: 840px;
  margin-bottom: clamp(38px, 5vw, 58px);
}

.offer-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.offer-heading p {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.6;
}

.offer-stories {
  border-bottom: 1px solid var(--line-strong);
}

.offer-story {
  display: grid;
  min-height: 220px;
  padding: clamp(34px, 5vw, 58px) 0;
  align-items: center;
  grid-template-columns: minmax(240px, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(34px, 7vw, 100px);
  border-top: 1px solid var(--line-strong);
}

.offer-story-offset { padding-left: 0; }

.offer-start {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 720;
  text-transform: none;
  letter-spacing: 0.02em;
}

.offer-story h3 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 0.98;
}

.offer-summary {
  max-width: 34ch;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.6;
}

.offer-price {
  display: flex;
  margin: 22px 0 0;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

.offer-price strong {
  font-family: var(--headline);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.purchase-link {
  width: fit-content;
  min-width: 128px;
  margin-top: 24px;
  justify-content: center;
  white-space: nowrap;
}

.purchase-link:active { transform: translateY(1px); }

.order-dialog {
  width: min(680px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--bg-raised);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(22, 18, 13, 0.32);
}

.order-dialog::backdrop {
  background: rgba(20, 17, 13, 0.72);
  backdrop-filter: blur(5px);
}

.order-dialog-shell { min-height: 100%; }

.order-dialog-header {
  display: flex;
  padding: 22px 24px 20px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.order-dialog-header p {
  margin: 0 0 5px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-dialog-header h2 {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(1.8rem, 5vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.order-dialog-close {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}

.order-dialog-close:hover { background: var(--bg-deep); }

.order-dialog-body { padding: 24px; }

.order-dialog-price {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--headline);
  font-size: 1.35rem;
  font-weight: 600;
}

.order-dialog-intro {
  max-width: 55ch;
  margin: 0;
  color: var(--ink-soft);
}

.order-steps {
  display: grid;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  counter-reset: order-step;
  border-top: 1px solid var(--line);
}

.order-steps li {
  position: relative;
  padding: 14px 0 14px 40px;
  counter-increment: order-step;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.order-steps li::before {
  position: absolute;
  top: 14px;
  left: 0;
  color: var(--accent);
  content: counter(order-step, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 800;
}

.order-steps strong { color: var(--ink); }

.order-message-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.86rem;
  font-weight: 750;
}

.order-message {
  width: 100%;
  min-height: 118px;
  padding: 14px;
  resize: vertical;
  border: 1px solid var(--line-strong);
  border-radius: var(--control-radius);
  background: var(--bg);
  color: var(--ink);
  font: inherit;
  line-height: 1.5;
}

.order-dialog-actions {
  display: flex;
  margin-top: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.order-copy {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.order-copy:hover { background: var(--bg-deep); }

.order-status {
  min-height: 1.5em;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.offer-preview {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0;
  overflow: visible;
  aspect-ratio: auto;
  border: 0;
  border-radius: 2px;
  background: transparent;
  isolation: isolate;
}

.offer-preview::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  aspect-ratio: 16 / 9;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 10, 10, 0.14), transparent 28%);
  content: "";
}

.offer-preview video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  object-fit: cover;
  transform: scale(1.002);
}

.offer-preview-toggle {
  position: static;
  min-width: 0;
  min-height: 44px;
  padding: 10px 0 2px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.offer-preview-toggle:hover {
  border-color: var(--ink);
  background: transparent;
  color: var(--accent-hover);
}

.offer-preview-toggle:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.offer-preview-caption {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
}

.offer-preview-error {
  top: 12px;
  right: 12px;
  bottom: auto;
  left: 12px;
  z-index: 4;
  padding: 10px 12px;
  font-size: 0.78rem;
}

.offer-story-copy {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.offer-story-copy > p:first-child {
  color: var(--ink);
  font-size: 1.12rem;
}

.offer-example {
  margin: 26px 0 0;
  padding: 0;
  border: 0;
}

.offer-example strong { color: var(--ink); }

.legacy-inquiry {
  display: grid;
  padding: clamp(40px, 6vw, 72px) 0;
  align-items: center;
  grid-template-columns: minmax(230px, 0.78fr) minmax(300px, 1.12fr) auto;
  gap: clamp(28px, 5vw, 72px);
  border-top: 1px solid var(--line-strong);
}

.legacy-inquiry h3 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(2.4rem, 4.4vw, 4.9rem);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.legacy-inquiry > p {
  max-width: 510px;
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.legacy-contact {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 16px;
}

.legacy-contact p {
  margin: 0;
  color: var(--ink);
  font-family: var(--headline);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 560;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.film-section {
  padding-block: clamp(80px, 9vw, 118px);
  background: var(--bg-deep);
}

.film-status {
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0.04em;
}

.text-link {
  color: var(--ink);
  text-decoration-color: var(--line-strong);
}

.film-library-heading h2 { max-width: 11ch; }

.film-library-heading { margin-bottom: clamp(38px, 5vw, 58px); }

.signature-film .film-frame::before { display: none; }

.signature-film-link {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: var(--media-black);
}

.signature-film-link img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 600ms var(--ease-out), filter 300ms ease;
}

.signature-film-link:hover img,
.signature-film-link:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.018);
}

.signature-film-link:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.signature-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(244, 234, 214, 0.72);
  border-radius: 50%;
  place-items: center;
  background: rgba(8, 10, 10, 0.76);
  color: var(--media-white);
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  transition: background 180ms ease, transform 220ms var(--ease-out);
}

.signature-film-link:hover .signature-play-icon,
.signature-film-link:focus-visible .signature-play-icon {
  background: rgba(8, 10, 10, 0.94);
  transform: translate(-50%, -50%) scale(1.06);
}

.film-name,
.signature-film .film-name {
  font-stretch: normal;
  font-weight: 560;
  line-height: 0.98;
}

.film-logline {
  font-stretch: normal;
  font-weight: 560;
  line-height: 1.14;
}

.film-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.short-film-grid {
  grid-template-columns: 1.12fr 0.96fr 0.84fr;
  gap: clamp(14px, 2.3vw, 28px);
}

.film-entry {
  border: 0;
  border-top: 1px solid var(--line-strong);
  background: transparent;
}

.film-entry:nth-child(2) { margin-top: 42px; }
.film-entry:nth-child(3) { margin-top: 86px; }

.film-entry-media {
  border: 0;
  background: #ebe0c9;
}

.sketch-cover img {
  transition: transform 700ms var(--ease-out), filter 500ms ease;
}

.sketch-cover:hover img,
.sketch-cover:focus-visible img {
  filter: contrast(1.04) saturate(1.06);
  transform: scale(1.025);
}

.film-entry-copy { padding: 24px 0 0; }

.film-entry-copy .film-name {
  font-size: clamp(2rem, 3.1vw, 3.25rem);
  line-height: 1;
}

.ai-scene-proof {
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 8vw, 110px);
}

.ai-scene-copy h3 {
  max-width: 10ch;
  font-stretch: normal;
  font-weight: 560;
}

.ai-scene-gallery {
  display: grid;
  gap: 22px;
}

.ai-scene-instruction {
  margin: 24px 0 0 !important;
  color: var(--ink-soft) !important;
  font-size: 0.86rem !important;
  font-weight: 620;
  letter-spacing: 0;
}

.ai-scene-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--media-black);
  box-shadow: 0 34px 90px rgba(84, 70, 48, 0.2);
}

.ai-scene-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(0.92) translateY(18px);
  transform-origin: center;
  transition:
    opacity 380ms ease,
    transform 620ms var(--ease-out);
}

.ai-scene-panel.is-active {
  z-index: 2;
  opacity: 1;
  transform: scale(1);
}

.ai-scene-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-scene-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.ai-scene-card {
  appearance: none;
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  background: var(--media-black);
  color: var(--media-white);
  cursor: pointer;
  opacity: 0.58;
  transform: translateY(0);
  transition:
    opacity 240ms ease,
    transform 360ms var(--ease-out),
    border-color 240ms ease;
}

.ai-scene-card:hover,
.ai-scene-card:focus-visible,
.ai-scene-card.is-active {
  opacity: 1;
  transform: translateY(-5px);
}

.ai-scene-card.is-active {
  border-color: var(--ink);
}

.ai-scene-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.ai-scene-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ai-scene-card span {
  display: block;
  padding: 9px 8px;
  overflow: hidden;
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.edit-section,
.closing { background: var(--bg); }

.edit-section { padding-block: clamp(80px, 9vw, 118px); }

.edit-heading { margin-bottom: clamp(38px, 5vw, 58px); }

.edit-heading p,
.journey-step > p:not(.journey-step-kicker) {
  color: var(--ink);
  font-size: 1.08rem;
}

.stage-button {
  color: var(--ink);
  font-size: 0.92rem;
}

.stage-button.is-active { border-top-color: var(--ink); }

.journey-step-kicker {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0.03em;
}

.stage-media img,
.stage-media video { object-fit: cover; }

.closing-frame {
  background: var(--bg-raised);
  background-image: linear-gradient(90deg, rgba(241, 232, 218, 0.96), rgba(231, 220, 201, 0.8)), url("./assets/brand/lives-before-us-banner-source.webp");
  background-position: center;
  background-size: cover;
  color: var(--ink);
}

.closing-question,
.closing-note { color: var(--ink-soft); }

.site-footer {
  background: var(--bg-raised);
  color: var(--ink);
}

.footer-links a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}

.footer-grid {
  align-items: center;
  grid-template-columns: minmax(220px, 0.7fr) minmax(160px, 0.45fr) auto;
}

.footer-meta { grid-column: 1 / -1; }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms var(--ease-out), transform 760ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 981px) {
  .site-nav { font-size: 1rem; }

  .stage-button {
    min-height: 76px;
    padding: 14px 18px;
    font-size: 1.15rem;
  }

  .journey-step-kicker,
  .film-status,
  .closing-question { font-size: 1.05rem; }

  .offer-start { font-size: 1.15rem; }

  .offer-preview-toggle,
  .ai-scene-card span { font-size: 1rem; }
}

@media (min-width: 1280px) {
  :root { --page: min(1680px, calc(100vw - 48px)); }

  .nav-shell { min-height: 80px; }

  .site-nav {
    gap: 30px;
    font-size: 1.05rem;
  }

  .stage-button {
    min-height: 96px;
    padding: 20px 26px;
    font-size: 1.85rem;
    line-height: 1.1;
  }

  .journey-step-kicker {
    margin-bottom: 22px;
    font-size: 1.5rem;
    letter-spacing: 0.01em;
  }

  .offer-start {
    margin-bottom: 24px;
    font-size: 1.85rem;
    line-height: 1.15;
  }

  .edit-heading p,
  .journey-step > p:not(.journey-step-kicker),
  .offer-heading p,
  .offer-summary { font-size: 1.2rem; }

  .offer-price { font-size: 1.15rem; }
  .offer-price strong { font-size: 3rem; }

  .film-status,
  .closing-question { font-size: 1.4rem; }

  .button,
  .offer-preview-toggle { font-size: 1.05rem; }

  .ai-scene-card span {
    padding: 13px 10px;
    font-size: 1.1rem;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    border-color: var(--line-strong);
    color: var(--ink);
  }

  .site-nav {
    border-color: var(--line-strong);
    background: rgba(241, 232, 218, 0.98);
    color: var(--ink);
  }

  .offer-heading,
  .offer-story,
  .ai-scene-proof,
  .legacy-inquiry,
  .process-journey {
    grid-template-columns: 1fr;
  }

  .offer-heading { gap: 22px; }
  .offer-story { min-height: 0; gap: 22px; }
  .offer-story-offset { padding-left: 0; }
  .offer-preview { width: min(720px, 100%); }
  .purchase-link { min-width: 148px; }

  .legacy-contact {
    align-items: flex-start;
  }

  .ai-scene-copy { max-width: 680px; }
  .ai-scene-gallery { width: min(760px, 100%); }
}

@media (max-width: 680px) {
  :root { --page: calc(100vw - 38px); }

  .brand img,
  .brand-wordmark { width: 142px; }

  .brand-hero .hero-content {
    width: min(100% - 38px, 520px);
    padding-top: 92px;
  }

  .hero-wordmark { width: min(520px, 92vw); }

  .banner-side {
    width: 58%;
    background-size: auto 86%;
  }

  .banner-side-left { right: auto; }
  .banner-side-right { left: auto; }

  .banner-vignette {
    background: linear-gradient(90deg, rgba(8, 10, 10, 0.32), rgba(8, 10, 10, 0.92) 25%, rgba(8, 10, 10, 0.92) 75%, rgba(8, 10, 10, 0.32));
  }

  .short-film-grid { grid-template-columns: 1fr; }
  .film-entry:nth-child(2),
  .film-entry:nth-child(3) { margin-top: 44px; }

  .ai-scene-gallery { gap: 14px; }
  .ai-scene-stage { width: min(100%, 420px); }
  .ai-scene-thumbnails { gap: 7px; }
  .ai-scene-card span { padding-inline: 5px; font-size: 0.65rem; }

  .offer-preview-toggle {
    min-width: 0;
    min-height: 44px;
  }

  .purchase-link {
    width: 100%;
    min-width: 0;
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .banner-side,
  .hero-wordmark,
  .brand-hero h1,
  .brand-hero .hero-deck,
  .brand-hero .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .stage-media,
  .journey-step {
    transition: none;
  }

  .ai-scene-panel,
  .ai-scene-card {
    transition: none;
  }
}
