:root {
  --ink: #070606;
  --charcoal: #11100e;
  --ember: #c96c22;
  --gold: #f2bf58;
  --soft-gold: #ffe1a0;
  --bone: #f8eed7;
  --sage: #8aa08b;
  --line: rgba(255, 225, 160, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--bone);
  background: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(201, 108, 34, 0.18), transparent 32rem),
    linear-gradient(180deg, #050403 0%, #100d0a 47%, #070606 100%);
}

section {
  scroll-margin-top: 8rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: 0.12;
  mix-blend-mode: screen;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, rgba(255,255,255,0.48) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.08) 0 1px, transparent 1px 5px);
  animation: grainShift 0.7s steps(2) infinite;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.96), rgba(5, 4, 3, 0.62), rgba(5, 4, 3, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  border: 1px solid rgba(255, 225, 160, 0.38);
  padding: 0.48rem 0.82rem;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.98), rgba(16, 11, 6, 0.94));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.48), inset 0 0 34px rgba(242, 191, 88, 0.14);
  backdrop-filter: blur(12px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: clamp(2.65rem, 4.4vw, 3.4rem);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 191, 88, 0.52);
  background:
    radial-gradient(circle at 68% 22%, rgba(255, 225, 160, 0.62), transparent 0.45rem),
    linear-gradient(145deg, rgba(242, 191, 88, 0.26), rgba(5, 4, 3, 0.92) 58%);
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 24px rgba(242, 191, 88, 0.65);
  box-shadow: inset 0 0 24px rgba(242, 191, 88, 0.12), 0 0 26px rgba(242, 191, 88, 0.14);
}

.brand-wordmark {
  display: block;
  color: var(--soft-gold);
  text-transform: uppercase;
}

.brand-wordmark strong,
.brand-wordmark small {
  display: block;
  white-space: nowrap;
}

.brand-wordmark strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand-wordmark small {
  margin-top: 0.12rem;
  color: rgba(248, 238, 215, 0.86);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.6vw, 1.55rem);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(248, 238, 215, 0.82);
}

nav a {
  padding: 0.55rem 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 23rem);
  align-items: end;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 9rem clamp(1rem, 5vw, 5rem) clamp(2.5rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 11rem;
  background: linear-gradient(0deg, #090706, transparent);
  z-index: -1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #050403;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(1.12) contrast(1.1);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.94) 0%, rgba(5, 4, 3, 0.58) 40%, rgba(5, 4, 3, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.9), rgba(5, 4, 3, 0.12) 48%, rgba(5, 4, 3, 0.74));
}

.light-sweep {
  position: absolute;
  top: -20%;
  left: -25%;
  width: 40%;
  height: 150%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 225, 160, 0.18), transparent);
  filter: blur(10px);
  animation: sweep 9s ease-in-out infinite;
}

.hero-content {
  max-width: 54rem;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 12vw, 10.5rem);
  line-height: 0.82;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

.tagline {
  margin: 1.4rem 0 0;
  max-width: 42rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2.5rem);
  color: var(--soft-gold);
}

.intro,
.section-copy p,
.hit-copy p,
.market-copy p,
.investment-copy p,
.theme-list p,
.detail-panel p,
.cast-board p {
  max-width: 44rem;
  color: rgba(248, 238, 215, 0.78);
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.75;
}

.story-beats {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.story-beats span {
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  background: rgba(255, 225, 160, 0.055);
  color: rgba(248, 238, 215, 0.86);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0.85rem 1.15rem;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  color: #130d07;
  background: linear-gradient(135deg, #f9d787, #b86a20);
  border-color: rgba(255, 225, 160, 0.5);
}

.button.ghost {
  background: rgba(5, 4, 3, 0.32);
  backdrop-filter: blur(14px);
}

.hero-card {
  border: 1px solid var(--line);
  padding: 1.25rem;
  background: rgba(8, 7, 6, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card span {
  display: block;
  color: rgba(248, 238, 215, 0.64);
  line-height: 1.5;
}

.hero-card strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 500;
}

.hero-card .label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.divider {
  height: 1px;
  margin: 1.1rem 0;
  background: var(--line);
}

.reel-band,
.logline-strip,
.story-grid,
.hit-section,
.world-section,
.market-section,
.comps-section,
.package-section,
.themes-section,
.investment,
.timeline-section,
.final-cta {
  padding: clamp(4rem, 9vw, 8rem) clamp(1rem, 5vw, 5rem);
}

.logline-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(242, 191, 88, 0.14), transparent 58%),
    #090706;
}

.logline-strip p {
  max-width: 82rem;
  margin: 0;
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.7vw, 4rem);
  line-height: 1.05;
}

.reel-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(138, 160, 139, 0.12), transparent 44%),
    #0c0907;
}

h2 {
  margin: 0;
  max-width: 15ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.96;
  font-weight: 500;
}

.motion-reel {
  position: relative;
  min-height: clamp(22rem, 40vw, 34rem);
  overflow: hidden;
  border: 1px solid rgba(255, 225, 160, 0.28);
  background: #050403;
  box-shadow: var(--shadow);
}

.motion-reel::before,
.motion-reel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.motion-reel::before {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.78), transparent 38%, rgba(5, 4, 3, 0.66)),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255,255,255,0.035) 18px 19px);
}

.motion-reel::after {
  border: 0.8rem solid rgba(8, 7, 6, 0.72);
  box-shadow: inset 0 0 0 1px var(--line);
}

.reel-frame {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: reelCut 15s infinite;
}

.frame-a {
  background-image: url("assets/oil-ranch.jpg");
}

.frame-b {
  background-image: url("assets/cattle-sunset.jpg");
  animation-delay: 5s;
}

.frame-c {
  background-image: url("assets/hero-dual-worlds.png");
  animation-delay: 10s;
}

.play-pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: 4rem;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 225, 160, 0.64);
  border-radius: 50%;
  background: rgba(5, 4, 3, 0.45);
  box-shadow: 0 0 50px rgba(242, 191, 88, 0.3);
}

.play-pulse::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 34%;
  border-top: 0.65rem solid transparent;
  border-bottom: 0.65rem solid transparent;
  border-left: 1rem solid var(--soft-gold);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6rem);
}

.poster-stack {
  position: relative;
  min-height: 40rem;
}

.poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #070606;
  box-shadow: var(--shadow);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-poster {
  height: 34rem;
}

.inset-poster {
  position: absolute;
  right: 6%;
  bottom: 0;
  width: min(42%, 19rem);
  height: 26rem;
}

.hit-section {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 22%, rgba(201, 108, 34, 0.18), transparent 24rem),
    #0a0807;
}

.hit-image {
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hit-image img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
}

blockquote {
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.25rem 0;
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.4rem);
  line-height: 1.12;
}

.world-section {
  background: linear-gradient(180deg, #090706, #14100c);
}

.world-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.world-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.world-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 225, 160, 0.04);
}

.world-card img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
  transition: transform 700ms ease;
}

.world-card:hover img {
  transform: scale(1.05);
}

.world-card div {
  padding: 1.2rem;
}

.world-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h3 {
  margin: 0.55rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 500;
}

.world-card p {
  margin: 0;
  color: rgba(248, 238, 215, 0.72);
  line-height: 1.62;
}

.market-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 31rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(90deg, rgba(201, 108, 34, 0.16), transparent 52%),
    #0b0908;
}

.audience-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.audience-list span {
  border-left: 3px solid var(--sage);
  padding: 0.7rem 0.9rem;
  background: rgba(138, 160, 139, 0.08);
  color: rgba(248, 238, 215, 0.82);
  line-height: 1.45;
}

.stats {
  display: grid;
  gap: 1rem;
}

.stats div {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

.stats strong {
  display: block;
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  line-height: 0.95;
}

.stats span {
  color: rgba(248, 238, 215, 0.68);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.comps-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 77% 20%, rgba(242, 191, 88, 0.16), transparent 24rem),
    #0a0807;
}

.comps-heading p,
.schedule-note {
  max-width: 42rem;
  color: rgba(248, 238, 215, 0.76);
  line-height: 1.7;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: rgba(255, 225, 160, 0.035);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
  color: rgba(248, 238, 215, 0.82);
}

th,
td {
  border-bottom: 1px solid rgba(255, 225, 160, 0.16);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

td:first-child {
  color: var(--soft-gold);
  font-weight: 800;
}

.comparison-posters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

.comp-card {
  position: relative;
  min-height: clamp(24rem, 35vw, 34rem);
  overflow: hidden;
  border: 1px solid rgba(255, 225, 160, 0.28);
  background: #050403;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.comp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 4, 3, 0.95) 0%, rgba(5, 4, 3, 0.6) 38%, rgba(5, 4, 3, 0.08) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 8px);
}

.comp-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.comp-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.15) contrast(1.12);
}

.comp-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1rem;
}

.comp-card span,
.leader-frame span {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comp-card h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.02;
}

.comp-card p {
  margin: 0;
  color: rgba(248, 238, 215, 0.78);
  line-height: 1.45;
}

.package-section {
  background:
    linear-gradient(180deg, rgba(255, 225, 160, 0.05), transparent 38%),
    #100c09;
}

.package-heading {
  max-width: 62rem;
  margin-bottom: 2rem;
}

.package-heading h2 {
  max-width: 17ch;
}

.theme-list article {
  border: 1px solid var(--line);
  padding: clamp(1.15rem, 2vw, 1.5rem);
  background: rgba(255, 225, 160, 0.045);
}

.cast-board span,
.theme-list span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.leadership-filmstrip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.leadership-filmstrip .leader-logo {
  display: none !important;
}

.leader-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 225, 160, 0.045);
  box-shadow: var(--shadow);
}

.leader-feature {
  min-height: auto;
}

.leader-frame img {
  width: 100%;
  height: 16rem;
  min-height: 0;
  object-fit: contain;
  background: #050403;
  filter: saturate(1.05) contrast(1.08);
}

.leader-feature img {
  height: 16rem;
}

.leader-frame::before {
  content: none;
}

.leader-frame div {
  position: static;
  padding: 1.15rem;
}

.leader-frame h3 {
  margin: 0.45rem 0 0.35rem;
}

.leader-frame p {
  max-width: 36rem;
  margin: 0;
  color: rgba(248, 238, 215, 0.78);
  line-height: 1.55;
}

.cast-board {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 5vw, 4rem);
}

.mini-heading {
  max-width: 48rem;
  margin-bottom: 0.5rem;
}

.mini-heading h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

.cast-board article {
  display: grid;
  grid-template-columns: minmax(11rem, 18rem) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(5, 4, 3, 0.38);
}

.cast-board img {
  width: 100%;
  height: 100%;
  min-height: 14rem;
  object-fit: cover;
}

.cast-board div {
  padding: 1rem 1.2rem 1rem 0;
}

.themes-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 6vw, 5rem);
  background:
    linear-gradient(90deg, rgba(138, 160, 139, 0.14), transparent 55%),
    #090706;
}

.theme-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.theme-list article {
  min-height: 15rem;
}

.theme-list span {
  display: inline-block;
  margin-bottom: 1.2rem;
}

.investment {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.investment-visual {
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.investment-visual img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
}

.waterfall {
  display: grid;
  gap: 0.75rem;
  margin-top: 2rem;
}

.waterfall span {
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1rem;
  background: rgba(255, 225, 160, 0.06);
  color: var(--bone);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.scenario-grid div {
  border: 1px solid var(--line);
  padding: 1rem;
  background: rgba(5, 4, 3, 0.38);
}

.scenario-grid .wide {
  grid-column: 1 / -1;
}

.scenario-grid strong {
  display: block;
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1;
}

.scenario-grid span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(248, 238, 215, 0.7);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.investment-notes {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.investment-notes p {
  margin: 0;
  color: rgba(248, 238, 215, 0.7);
  line-height: 1.5;
}

.incentive-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.incentive-row span {
  border: 1px solid rgba(242, 191, 88, 0.22);
  padding: 0.55rem 0.72rem;
  background: rgba(242, 191, 88, 0.065);
  color: rgba(248, 238, 215, 0.74);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dl {
  margin: 1rem 0 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 225, 160, 0.15);
  padding: 0.72rem 0;
}

dt,
dd {
  margin: 0;
  color: rgba(248, 238, 215, 0.72);
  line-height: 1.4;
}

dd {
  color: rgba(248, 238, 215, 0.9);
  font-weight: 850;
  white-space: nowrap;
}

dl .total dt,
dl .total dd {
  color: var(--soft-gold);
  font-weight: 900;
}

.timeline-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  border-top: 1px solid var(--line);
  background: #0d0a08;
}

.timeline-visual {
  min-height: 36rem;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-visual img {
  width: 100%;
  height: 100%;
  min-height: 36rem;
  object-fit: cover;
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  counter-reset: timeline;
}

.timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(8rem, 11rem) minmax(0, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding: 1rem 0 1rem 2.2rem;
}

.timeline-list li::before {
  counter-increment: timeline;
  content: counter(timeline, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
}

.timeline-list strong {
  color: var(--soft-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.timeline-list span {
  color: rgba(248, 238, 215, 0.74);
  line-height: 1.5;
}

.schedule-note {
  margin: 1.5rem 0 0;
}

.final-cta {
  min-height: 80svh;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(0deg, rgba(5, 4, 3, 0.74), rgba(5, 4, 3, 0.2)),
    url("assets/cattle-sunset.jpg") center / cover;
}

.final-cta img {
  width: min(28rem, 80vw);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 34px rgba(242, 191, 88, 0.26));
}

.footer-brand-lockup {
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  margin-bottom: 2rem;
  color: var(--soft-gold);
  text-transform: uppercase;
  filter: drop-shadow(0 0 34px rgba(242, 191, 88, 0.26));
}

.footer-brand-lockup span {
  display: grid;
  place-items: center;
  width: min(8rem, 28vw);
  aspect-ratio: 1;
  border: 1px solid rgba(242, 191, 88, 0.5);
  background:
    radial-gradient(circle at 67% 22%, rgba(255, 225, 160, 0.64), transparent 1rem),
    linear-gradient(145deg, rgba(242, 191, 88, 0.22), rgba(5, 4, 3, 0.92) 58%);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 6.6rem);
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 0 32px rgba(242, 191, 88, 0.72);
}

.footer-brand-lockup strong,
.footer-brand-lockup small {
  display: block;
  white-space: nowrap;
}

.footer-brand-lockup strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 500;
  letter-spacing: 0.14em;
}

.footer-brand-lockup small {
  color: rgba(248, 238, 215, 0.86);
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  font-weight: 850;
  letter-spacing: 0.38em;
}

.final-cta h2 {
  max-width: 18ch;
}

.contact-name {
  margin: 1.2rem 0 0;
  color: var(--soft-gold);
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  font-style: normal;
}

address a {
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  background: rgba(5, 4, 3, 0.42);
  color: var(--soft-gold);
}

body.reveal-ready [data-reveal] {
  opacity: 1;
  transform: none;
  transition: transform 800ms ease;
}

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

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08) translate3d(1.2%, -1%, 0);
  }
}

@keyframes sweep {
  0%,
  28% {
    transform: translateX(-20%) rotate(18deg);
    opacity: 0;
  }

  44% {
    opacity: 1;
  }

  70%,
  100% {
    transform: translateX(390%) rotate(18deg);
    opacity: 0;
  }
}

@keyframes reelCut {
  0% {
    opacity: 0;
    transform: scale(1.1) translateX(-2%);
  }

  8%,
  30% {
    opacity: 1;
  }

  38%,
  100% {
    opacity: 0;
    transform: scale(1.02) translateX(2%);
  }
}

@keyframes grainShift {
  to {
    transform: translate3d(2%, -2%, 0);
  }
}

@media (max-width: 980px) {
  .hero,
  .reel-band,
  .story-grid,
  .hit-section,
  .market-section,
  .comps-section,
  .themes-section,
  .investment,
  .timeline-section {
    grid-template-columns: 1fr;
  }

  .hero {
    align-items: end;
  }

  .hero-card {
    max-width: 26rem;
  }

  .world-heading {
    display: block;
  }

  .world-cards {
    grid-template-columns: 1fr;
  }

  .theme-list {
    grid-template-columns: 1fr;
  }

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

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

  .world-card {
    display: grid;
    grid-template-columns: minmax(12rem, 0.86fr) 1fr;
  }

  .world-card img {
    height: 100%;
    min-height: 15rem;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    padding: 0.75rem 1rem;
  }

  nav {
    display: none;
  }

  .brand-mark {
    width: 4rem;
  }

  .brand-wordmark strong {
    font-size: 0.9rem;
  }

  .brand-wordmark small {
    font-size: 0.5rem;
  }

  .comparison-posters {
    grid-template-columns: 1fr;
  }

  .leadership-filmstrip {
    grid-template-columns: 1fr;
  }

  .comp-card {
    min-height: 26rem;
  }

  .leader-frame img {
    min-height: 18rem;
  }

  .leader-feature img {
    min-height: 0;
  }

  .hero {
    min-height: 94svh;
    padding-top: 8rem;
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.6rem);
  }

  .hero-card {
    display: none;
  }

  .motion-reel {
    min-height: 20rem;
  }

  .poster-stack {
    min-height: auto;
  }

  .main-poster {
    height: 25rem;
  }

  .inset-poster {
    position: relative;
    right: auto;
    bottom: auto;
    width: 78%;
    height: 18rem;
    margin: -5rem 0 0 auto;
  }

  .world-card {
    display: block;
  }

  .cast-board article {
    display: block;
  }

  .cast-board img {
    height: 16rem;
  }

  .cast-board div {
    padding: 1.1rem;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  table {
    min-width: 42rem;
  }

  .world-card img {
    height: 16rem;
  }

  .final-cta {
    background-attachment: scroll;
  }

  address {
    display: grid;
  }
}

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