@import url('assets/colors_and_type.css');

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--just-white);
  color: var(--midnight-blue);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------- NAV ---------- */
.uc-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--midnight-blue);
  border-bottom: 1px solid var(--white-08);
}
.uc-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  max-width: 1240px; margin: 0 auto;
}
.uc-nav-logo { height: 24px; }
.uc-nav-links { display: flex; gap: 36px; align-items: center; }
.uc-nav-link {
  font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-80); transition: color 160ms;
  cursor: pointer;
}
.uc-nav-link:hover { color: var(--clementine); }
.uc-nav-link.active { color: var(--clementine); }
.uc-nav-cta {
  background: var(--clementine); color: var(--just-white);
  padding: 10px 18px; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase; border: 0;
  transition: background 160ms;
}
.uc-nav-cta:hover { background: var(--clementine-dark); }

/* ---------- EYEBROW / LABELS ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--clementine);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.eyebrow--dark { color: var(--midnight-blue); }
.eyebrow--pepper { color: var(--ghost-pepper); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 18px 28px; border: 2px solid transparent;
  transition: all 160ms var(--ease-out); cursor: pointer;
  background: transparent;
}
.btn--primary { background: var(--clementine); color: var(--just-white); border-color: var(--clementine); }
.btn--primary:hover { background: var(--clementine-dark); border-color: var(--clementine-dark); }
.btn--ghost-rev { background: transparent; color: var(--just-white); border-color: var(--white-40); }
.btn--ghost-rev:hover { background: var(--just-white); color: var(--midnight-blue); border-color: var(--just-white); }
.btn--ghost { background: transparent; color: var(--midnight-blue); border-color: var(--midnight-blue); }
.btn--ghost:hover { background: var(--midnight-blue); color: var(--just-white); }

/* ==============================================================
   CASE HERO — Midnight ground, oversized title, hero media block.
   ============================================================== */
.case-hero {
  background: var(--midnight-blue);
  color: var(--just-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-hero .container { position: relative; z-index: 2; }
.case-hero__brand {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  line-height: 0;
  display: inline-flex;
  transition: opacity 0.2s ease;
}
.case-hero__brand:hover,
.case-hero__brand:focus-visible { opacity: 0.82; }
.case-hero__brand img {
  height: 44px;
  width: auto;
  display: block;
}
.case-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12,7,61,.78) 0%,
      rgba(12,7,61,.55) 45%,
      rgba(12,7,61,.82) 100%);
  pointer-events: none;
}
.case-hero__crumbs {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-60); font-weight: 700;
  margin-bottom: 120px;
}
.case-hero__crumbs a { color: var(--white-60); transition: color 160ms; }
.case-hero__crumbs a:hover { color: var(--clementine); }
.case-hero__crumbs .sep { opacity: .4; }

.case-hero__topline {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.case-hero__client {
  font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--clementine);
}
.case-hero__dateline {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--white-60); font-weight: 700;
}

.case-hero__title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(40px, 5.2vw, 84px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 0 40px;
  max-width: 22ch;
}
.case-hero__title em {
  font-style: normal;
  color: var(--clementine);
}

.case-hero__sub {
  max-width: none; font-size: 22px; line-height: 1.45;
  color: var(--white-80);
  margin: 0;
  font-weight: 400;
}

/* Hero media block removed — video now full-bleed behind hero. */

/* ==============================================================
   PLACEHOLDER — reusable media-needed block.
   ============================================================== */
.placeholder {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0 22px,
      rgba(255,255,255,.06) 22px 23px
    ),
    var(--ph-bg, var(--eggplant));
  color: var(--ph-fg, var(--white-80));
  overflow: hidden;
}
.placeholder::before,
.placeholder::after {
  content: ""; position: absolute;
  border: 2px solid var(--ph-fg, var(--white-40));
  opacity: .35;
}
.placeholder::before { inset: 16px; }
.placeholder::after {
  top: 50%; left: 50%; width: 40px; height: 40px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: transparent;
  opacity: .5;
}
.placeholder__inner {
  position: relative; z-index: 1;
  padding: 28px; text-align: center;
  max-width: 60ch;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.placeholder__kicker {
  font-weight: 700; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--just-white); color: var(--midnight-blue);
  padding: 6px 12px;
}
.placeholder__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 3vw, 32px); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 4px 0 0;
}
.placeholder__desc {
  font-size: 14px; line-height: 1.5;
  color: var(--ph-fg, var(--white-80));
  opacity: .88;
  margin: 0;
  max-width: 48ch;
}
.placeholder__meta {
  display: flex; gap: 8px; margin-top: 4px; flex-wrap: wrap; justify-content: center;
}
.placeholder__chip {
  font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; border: 1px solid var(--ph-fg, var(--white-40));
  opacity: .85;
}
/* Aspect variants */
.placeholder--16x9 { aspect-ratio: 16/9; }
.placeholder--4x3  { aspect-ratio: 4/3; }
.placeholder--1x1  { aspect-ratio: 1/1; }
.placeholder--3x4  { aspect-ratio: 3/4; }
.placeholder--9x16 { aspect-ratio: 9/16; }
/* Color variants */
.placeholder--eggplant  { --ph-bg: var(--eggplant);      --ph-fg: rgba(255,255,255,.88); }
.placeholder--midnight  { --ph-bg: var(--midnight-blue); --ph-fg: rgba(255,255,255,.88); }
.placeholder--clementine{ --ph-bg: var(--clementine);    --ph-fg: rgba(255,255,255,.95); }
.placeholder--electric  { --ph-bg: var(--electric-blue); --ph-fg: rgba(255,255,255,.88); }
.placeholder--pepper    { --ph-bg: var(--ghost-pepper);  --ph-fg: var(--midnight-blue); }
.placeholder--paper     { --ph-bg: #EAE7F5;              --ph-fg: var(--midnight-blue); }
.placeholder--paper .placeholder__kicker { background: var(--midnight-blue); color: var(--just-white); }

/* ==============================================================
   INTRO BLOCK — light paper, big lede.
   ============================================================== */
.intro {
  background: var(--just-white);
  color: var(--midnight-blue);
  padding: 120px 0;
  position: relative;
}
.intro__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
.intro__eyebrow { margin-top: 8px; }
.intro__body p {
  font-size: 22px; line-height: 1.5;
  margin: 0 0 24px;
  max-width: 62ch;
  text-wrap: pretty;
}
.intro__body p:last-child { margin-bottom: 0; }
.intro__body strong {
  font-weight: 700;
  color: var(--midnight-blue);
  background: linear-gradient(to top, var(--clementine-24) 40%, transparent 40%);
  padding: 0 2px;
}
.intro__body .picked-line {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin-top: 24px;
  color: var(--midnight-blue);
}
.intro__body .picked-line em {
  font-style: normal; color: var(--clementine);
}

/* ==============================================================
   STATS STRIP — KPI row.
   ============================================================== */
.stats {
  background: var(--clementine);
  color: var(--midnight-blue);
  padding: 56px 0;
  border-top: 2px solid var(--midnight-blue);
  border-bottom: 2px solid var(--midnight-blue);
}
.stats__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 36px; gap: 24px; flex-wrap: wrap;
}
.stats__head .eyebrow { color: var(--midnight-blue); }
.stats__head .eyebrow::before { background: var(--midnight-blue); }
.stats__head h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 3vw, 36px); margin: 8px 0 0;
  text-transform: uppercase; letter-spacing: -0.01em; line-height: 1;
}
.stats__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--midnight-blue);
  border: 2px solid var(--midnight-blue);
}
.stat {
  background: var(--clementine);
  padding: 36px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 180px;
}
.stat__n {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(64px, 6.5vw, 96px); line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--midnight-blue);
  font-variant-numeric: tabular-nums;
}
.stat__label {
  font-size: 15px; line-height: 1.35;
  font-weight: 500;
  color: var(--midnight-blue);
  max-width: 22ch;
}

/* ==============================================================
   TWO-COL TEXT SECTIONS — challenge, role, outcome, process.
   ============================================================== */
.prose-section {
  padding: 120px 0;
  background: var(--just-white);
  color: var(--midnight-blue);
}
.prose-section--dark {
  background: var(--midnight-blue);
  color: var(--just-white);
}
.prose-section--dark .eyebrow--dark { color: var(--ghost-pepper); }
.prose-section--eggplant {
  background: var(--eggplant);
  color: var(--just-white);
}

.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.prose-grid__heading {
  position: sticky; top: 100px;
}
.prose-grid__heading h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 14px 0 0;
  text-wrap: balance;
}
.prose-grid__body p {
  font-size: 19px; line-height: 1.55;
  margin: 0 0 24px;
  max-width: 62ch;
  text-wrap: pretty;
}
.prose-grid__body p:first-child { margin-top: 0; }
.prose-grid__body p.lede {
  font-size: 24px; line-height: 1.45;
  font-weight: 400;
}

/* ==============================================================
   DELIVERABLES — the 5 "what we built" blocks.
   ============================================================== */
.deliverables {
  padding: 120px 0 0;
  background: var(--just-white);
  color: var(--midnight-blue);
  border-top: 2px solid var(--midnight-blue);
}
.deliverables__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
  gap: 24px; flex-wrap: wrap;
}
.deliverables__head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 0.95; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 14px 0 0;
  max-width: 14ch;
}
.deliverables__counter {
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--midnight-60);
  padding: 10px 16px;
  border: 2px solid var(--midnight-blue);
}

.deliverable {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 48px;
  padding: 72px 0;
  border-top: 2px solid var(--midnight-blue);
  align-items: start;
}
.deliverable:last-of-type { border-bottom: 2px solid var(--midnight-blue); }

.deliverable__num {
  font-family: var(--font-display); font-weight: 900;
  font-size: 56px; line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--clementine);
}
.deliverable__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.deliverable__meta {
  display: flex; flex-direction: column; gap: 18px;
}
.deliverable__meta h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1; letter-spacing: -0.01em; text-transform: uppercase;
  margin: 0;
}
.deliverable__meta p {
  font-size: 17px; line-height: 1.55;
  margin: 0;
  max-width: 42ch;
}
.deliverable__credits {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 4px;
}
.deliverable__credits .chip {
  font-weight: 700; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 10px; background: var(--midnight-blue); color: var(--just-white);
}
.deliverable__credits .chip--ghost {
  background: transparent; color: var(--midnight-blue);
  border: 1.5px solid var(--midnight-blue);
}
.deliverable__needs {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px dashed var(--midnight-40);
}
.deliverable__needs-label {
  font-weight: 700; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--midnight-60);
  margin-bottom: 8px;
}
.deliverable__needs-text {
  font-size: 14px; line-height: 1.5;
  color: var(--midnight-60);
  font-style: italic;
  max-width: 44ch;
}

/* ==============================================================
   DEL — rebuilt deliverables (big banner + 16:9 video + BTS)
   ============================================================== */
.del {
  padding: 0 0 96px;
}
.del + .del {
  padding-top: 40px;
  border-top: 1px solid var(--midnight-20);
}

/* --- 1. Full-bleed banner with background image placeholder --- */
.del__banner {
  position: relative;
  /* Break out of .container to span the full viewport */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  aspect-ratio: 21 / 9;
  min-height: 380px;
  max-height: 80vh;
  overflow: hidden;
  color: var(--just-white);
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 6vw, 96px);
  background: var(--ph-bg, var(--midnight-blue));
  margin-bottom: 56px;
  isolation: isolate;
}
.del__banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--del-img);
  background-size: cover;
  background-position: var(--del-img-pos, center);
  z-index: -2;
}
.del__banner::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,4,40,0.1) 0%, rgba(5,4,40,0.35) 55%, rgba(5,4,40,0.9) 100%),
    linear-gradient(90deg, rgba(5,4,40,0.55) 0%, rgba(5,4,40,0) 55%);
  z-index: -1;
}
/* Banner color variants (used when no image is provided) */
.del__banner--midnight   { --ph-bg: var(--midnight-blue); }
.del__banner--clementine { --ph-bg: var(--clementine); }
.del__banner--eggplant   { --ph-bg: var(--eggplant); }
.del__banner--electric   { --ph-bg: var(--electric-blue); }
.del__banner--pepper     { --ph-bg: var(--ghost-pepper); color: var(--midnight-blue); }
.del__banner--pepper::after {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 55%, rgba(255,255,255,0.55) 100%);
}

.del__banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
}
.del__banner-title-row {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: nowrap;
}
.del__banner-title-row .del__banner-title {
  white-space: nowrap;
  text-wrap: nowrap;
  margin: 0;
}
.del__banner-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--clementine);
  flex: 0 0 auto;
}
.del__banner--pepper .del__banner-num { color: var(--midnight-blue); }

.del__banner-eyebrow {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
}
.del__banner-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.del__banner-tag {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
  max-width: 60ch;
}
.del__banner-plate {
  position: absolute;
  top: 20px; right: 20px;
  font-weight: 700; font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 7px 12px;
  background: rgba(255,255,255,0.9);
  color: var(--midnight-blue);
  z-index: 2;
}

/* --- Dark variant: full Hero Movie block on midnight --- */
.del--dark {
  background: var(--midnight-blue);
  color: var(--just-white);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 0 96px;
}
.del--dark .del__banner {
  /* Already full-bleed; neutralize the outer negative margins since parent is 100vw now */
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.del--dark .del__body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 48px 0;
}
.del--dark .del__copy { max-width: none; }
.del--dark .del__copy p { color: rgba(255,255,255,0.88); }
.del--dark .del__bts-label { color: rgba(255,255,255,0.7); }

/* Butt adjacent deliverable sections flush when either side is a dark one —
   no coloured gap, no divider line. */
.del--dark + .del,
.del + .del--dark {
  padding-top: 0;
  border-top: 0;
}

/* GLTF model slot */
.del__model {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.del__model model-viewer {
  width: 100%;
  height: 100%;
  position: absolute; inset: 0;
  --poster-color: transparent;
  background: transparent;
}
.del__model.has-model .placeholder__inner { display: none; }
.del__model.has-model::before,
.del__model.has-model::after { display: none; }

/* --- 2. Body: video + copy + BTS --- */
.del__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.del__video {
  width: 100%;
}
.del__cube {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: var(--midnight-blue);
  border-radius: 2px;
  margin-bottom: 32px;
  cursor: grab;
}
.del__cube:active { cursor: grabbing; }
.del__cube canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.del__copy {
  max-width: 72ch;
}
.del__copy--full { max-width: none; }
.del__copy p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--midnight-blue);
  margin: 0;
  text-wrap: pretty;
}

/* --- 3. BTS thumbnail strip --- */
.del__bts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.del__bts-label {
  font-weight: 700; font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--midnight-60);
}
.del__bts-grid {
  display: grid;
  gap: 14px;
}
.del__bts-grid--3 { grid-template-columns: repeat(3, 1fr); }
.del__bts-grid--4 { grid-template-columns: repeat(4, 1fr); }
.del__bts-grid .placeholder__inner { padding: 14px; gap: 6px; }
.del__bts-grid .placeholder__kicker { font-size: 9px; letter-spacing: 0.16em; padding: 4px 8px; }
.del__bts-grid .placeholder::before { inset: 10px; }
.del__bts-grid .placeholder::after { width: 24px; height: 24px; }
.del__bts-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* ==============================================================
   TIMELINE (HOW IT CAME TOGETHER) — horizontal band
   ============================================================== */
.timeline {
  background: var(--just-white);
  color: var(--midnight-blue);
  padding: 120px 0;
}
.timeline__head { margin-bottom: 64px; }
.timeline__head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 14px 0 0; max-width: 16ch;
}
.timeline__head .eyebrow { color: var(--clementine); }
.timeline__head .eyebrow::before { background: var(--clementine); }

.timeline__body {
  border-top: 2px solid var(--clementine);
  padding-top: 32px;
  max-width: 72ch;
}
.timeline__body p {
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.55;
  color: var(--midnight-blue);
  margin: 0;
}

/* ==============================================================
   OUTCOME — checklist-style highlights
   ============================================================== */
.outcome {
  padding: 120px 0;
  background: var(--eggplant);
  color: var(--just-white);
}
.outcome__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.outcome__head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 14px 0 0;
}
.outcome__head .eyebrow { color: var(--ghost-pepper); }
.outcome__head .eyebrow::before { background: var(--ghost-pepper); }
.outcome__list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--white-12);
}
.outcome__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--white-12);
  align-items: center;
}
.outcome__item-num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em;
  color: var(--ghost-pepper);
}
.outcome__item p {
  font-size: 20px; line-height: 1.4;
  margin: 0;
  max-width: 44ch;
  text-wrap: pretty;
}

/* ==============================================================
   CREDITS
   ============================================================== */
.credits {
  padding: 120px 0;
  background: var(--just-white);
  color: var(--midnight-blue);
}
.credits__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.credits__head h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 3.6vw, 52px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 14px 0 0;
}
.credits__list {
  display: flex; flex-direction: column;
  border-top: 2px solid var(--midnight-blue);
}
.credit {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--midnight-12);
  align-items: baseline;
}
.credit__role {
  font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--midnight-60);
}
.credit__name {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; letter-spacing: -0.01em;
}

/* ==============================================================
   CTA STRIP
   ============================================================== */
.final-cta {
  padding: 140px 0;
  background: var(--clementine);
  color: var(--midnight-blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4vw, 60px);
  line-height: 1; letter-spacing: -0.02em; text-transform: uppercase;
  margin: 0 auto 40px;
  max-width: 24ch;
  text-wrap: balance;
}
.final-cta__btns {
  display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.final-cta__mark {
  position: absolute; bottom: -80px; right: -80px;
  width: 320px; height: 320px;
  opacity: .15;
  pointer-events: none;
}

/* ==============================================================
   FOOTER
   ============================================================== */
.uc-footer {
  background: var(--midnight-blue);
  color: var(--just-white);
  padding: 80px 0 40px;
  border-top: 1px solid var(--white-08);
}
.uc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.uc-footer h4 { font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-60); margin: 0 0 18px; }
.uc-footer a { display: block; padding: 6px 0; color: var(--white-80); font-size: 15px; transition: color 160ms; cursor: pointer; }
.uc-footer a:hover { color: var(--clementine); }
.uc-footer__logo { height: 32px; margin-bottom: 24px; }
.uc-footer__tag { color: var(--white-60); max-width: 32ch; font-size: 15px; line-height: 1.5; }
.uc-footer__foot { border-top: 1px solid var(--white-08); margin-top: 60px; padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: var(--white-60); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* Hero video slot — full-bleed background.
   Iframes from bunny.stream ignore object-fit, so we scale with aspect-ratio
   tricks to always cover the hero. */
.hero-video {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  background: var(--midnight-blue);
}
.hero-video video {
  position: absolute; top: 50%; left: 50%;
  width: 100%; height: 100%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0; object-fit: cover; display: block;
  pointer-events: none;
}
/* Iframe: size it to the larger of (100vw×56.25vw) or (177.78vh×100vh) so
   it always covers the hero area regardless of aspect. */
.hero-video iframe {
  position: absolute; top: 50%; left: 50%;
  width: max(100%, 177.78vh);
  height: max(56.25vw, 100%);
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0; display: block;
  pointer-events: none;
}
.hero-video .placeholder { position: absolute; inset: 0; }

/* ==============================================================
   SCROLL REVEAL — fade + slide up on enter.
   ============================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
      opacity 620ms var(--ease-out),
      transform 620ms var(--ease-out);
    will-change: opacity, transform;
  }
  .reveal.is-in {
    opacity: 1;
    transform: none;
  }
  /* Staggered children — delay based on nth */
  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 520ms var(--ease-out),
      transform 520ms var(--ease-out);
  }
  .reveal-stagger.is-in > *         { opacity: 1; transform: none; }
  .reveal-stagger.is-in > *:nth-child(1) { transition-delay: 0ms;   }
  .reveal-stagger.is-in > *:nth-child(2) { transition-delay: 80ms;  }
  .reveal-stagger.is-in > *:nth-child(3) { transition-delay: 160ms; }
  .reveal-stagger.is-in > *:nth-child(4) { transition-delay: 240ms; }
  .reveal-stagger.is-in > *:nth-child(5) { transition-delay: 320ms; }
  .reveal-stagger.is-in > *:nth-child(6) { transition-delay: 400ms; }
}

/* ==============================================================
   RESPONSIVE (light — prototype targets desktop ≥1000px)
   ============================================================== */
@media (max-width: 960px) {
  .container, .container--narrow { padding: 0 24px; }
  .uc-nav-inner { padding: 16px 24px; }
  .uc-nav-links { gap: 18px; }
  .intro__grid,
  .prose-grid,
  .outcome__grid,
  .credits__grid { grid-template-columns: 1fr; gap: 32px; }
  .prose-grid__heading { position: static; }
  .stats__grid { grid-template-columns: 1fr; }
  .timeline__grid { grid-template-columns: 1fr 1fr; }
  .deliverable { grid-template-columns: 1fr; gap: 24px; }
  .deliverable__body { grid-template-columns: 1fr; gap: 32px; }
  .del__head { grid-template-columns: 64px 1fr; gap: 20px; }
  .del__meta { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: flex-start; border-left: none; border-top: 1px solid var(--midnight-20); padding: 14px 0 0; text-align: left; gap: 12px; min-width: 0; }
  .del__hero--split { grid-template-columns: 1fr; }
  .del__bts-grid--3, .del__bts-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .credit { grid-template-columns: 1fr; gap: 6px; }
  .uc-footer__grid { grid-template-columns: 1fr 1fr; }
  .case-hero__title { max-width: none; }
}
