/* ── Muyinza Media — Case Study Pages ───────────────────────────
   Editorial system: warm paper, ink, coral (matches resume brand)
──────────────────────────────────────────────────────────────── */

:root {
  --paper: #FAF6F0;
  --paper-deep: #F3ECE2;
  --ink: #1C1917;
  --ink-soft: #44403B;
  --muted: #857C73;
  --coral: #C4725B;
  --coral-deep: #A85941;
  --rule: #E4DACC;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── Nav ── */
.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 22px;
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--rule);
}
.site-nav .brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.2px;
  color: var(--ink);
  text-decoration: none;
}
.site-nav .brand em { color: var(--coral); font-style: normal; }
.site-nav .links a {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--muted);
  text-decoration: none;
  margin-left: 22px;
  transition: color .2s ease;
}
.site-nav .links a:hover, .site-nav .links a.active { color: var(--coral-deep); }
@media (max-width: 760px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .site-nav .links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
  }
  .site-nav .links a {
    margin-left: 0;
    font-size: 11px;
    letter-spacing: 1.5px;
  }
}

/* ── Hero ── */
.hero { padding: 84px 0 48px; }
.hero .kicker {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coral-deep);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .kicker::before { content: ""; width: 44px; height: 1.5px; background: var(--coral); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.04;
  letter-spacing: -1px;
  max-width: 17ch;
}
.hero h1 em { font-style: italic; color: var(--coral-deep); }
.hero .dek {
  margin-top: 26px;
  max-width: 60ch;
  font-size: 19px;
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* ── Meta strip ── */
.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 48px 0 0;
}
.meta > div { background: var(--paper); padding: 18px 20px 20px; }
.meta dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 6px;
}
.meta dd { font-size: 15.5px; font-weight: 600; }

/* ── Sections ── */
section { padding: 72px 0 8px; }
.section-label {
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--rule); }
.section-label .num { font-family: var(--serif); font-style: italic; color: var(--coral); font-size: 15px; letter-spacing: 0; }

h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.5px;
  line-height: 1.15;
  max-width: 24ch;
  margin-bottom: 20px;
}
.prose { max-width: 66ch; color: var(--ink-soft); }
.prose p + p { margin-top: 16px; }
.prose strong { color: var(--ink); }

/* ── Two-col split ── */
.split { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; }
@media (max-width: 780px) { .split { grid-template-columns: 1fr; gap: 24px; } }

/* ── Service tags ── */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.tag {
  font-size: 13.5px;
  letter-spacing: 0.3px;
  padding: 9px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  transition: border-color .2s ease, color .2s ease;
}
.tag:hover { border-color: var(--coral); color: var(--coral-deep); }

/* ── Process list ── */
.process { counter-reset: step; display: grid; gap: 0; margin-top: 12px; }
.step {
  display: grid;
  grid-template-columns: 72px 220px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--rule);
}
.step:last-child { border-bottom: 1px solid var(--rule); }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--coral);
  line-height: 1;
}
.step h3 { font-size: 16px; font-weight: 700; letter-spacing: 0.2px; }
.step ul { list-style: none; }
.step li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-bottom: 6px;
}
.step li::before { content: "→"; position: absolute; left: 0; color: var(--coral); font-size: 13px; top: 2px; }
@media (max-width: 780px) { .step { grid-template-columns: 48px 1fr; } .step h3 { grid-column: 2; } .step ul { grid-column: 2; } }

/* ── Image grid ── */
.imgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 44px 0 8px; }
.imgrid.offset > :nth-child(2) { transform: translateY(28px); }
.imgrid img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  filter: saturate(0.96);
}
.imgrid img.focus-roux-speaker {
  object-position: 62% 24%;
}
@media (max-width: 780px) { .imgrid { grid-template-columns: 1fr; } .imgrid.offset > :nth-child(2) { transform: none; } .imgrid img { height: 240px; } }

/* ── Northeastern photo story ── */
.roux-photo-intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}
.roux-photo-intro h2 { max-width: 14ch; }
.roux-photo-intro p { color: var(--ink-soft); max-width: 48ch; padding-bottom: 5px; }
.roux-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 340px;
  gap: 12px;
}
.roux-photo-grid figure {
  grid-column: span 5;
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.roux-photo-grid .roux-photo-feature { grid-column: span 7; grid-row: 1 / span 2; }
.roux-photo-grid .roux-photo-wide { grid-column: 1 / -1; height: 440px; }
.roux-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96);
  transition: transform .7s ease, filter .5s ease;
}
.roux-photo-grid figure:hover img { transform: scale(1.025); filter: saturate(1.04); }
.roux-photo-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 9px;
  background: rgba(20,18,17,.76);
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
}
@media (max-width: 780px) {
  .roux-photo-intro { grid-template-columns: 1fr; gap: 18px; }
  .roux-photo-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .roux-photo-grid figure,
  .roux-photo-grid .roux-photo-feature,
  .roux-photo-grid .roux-photo-wide { grid-column: auto; grid-row: auto; height: 290px; }
}

/* ── Case study proof media ── */
.case-hero-media {
  margin: 18px 0 26px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: 0 18px 48px -30px rgba(28,25,23,.35);
  background: var(--ink);
}
.case-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  object-fit: cover;
  object-position: center;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 18px;
  margin: 42px 0 8px;
  align-items: start;
}
.proof-layout.tight {
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: stretch;
}
.proof-layout.single {
  grid-template-columns: 1fr;
}
.proof-layout figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 14px 36px -28px rgba(28,25,23,.32);
}
.proof-layout img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  filter: saturate(.98);
}
.proof-layout.tight img {
  height: 430px;
  object-position: center;
}
.proof-layout.single img {
  height: auto;
  max-height: none;
  object-fit: contain;
}
.proof-layout figcaption {
  padding: 14px 16px 16px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}
.note {
  max-width: 72ch;
  margin-top: 20px;
  color: var(--muted);
  font-size: 14px;
}
@media (max-width: 780px) {
  .proof-layout,
  .proof-layout.tight { grid-template-columns: 1fr; }
  .proof-layout img,
  .proof-layout.tight img { height: 300px; }
  .case-hero-media img { aspect-ratio: 4 / 3; }
}

/* ── Pull quote ── */
.pullquote {
  margin: 72px 0 8px;
  padding: 52px clamp(24px, 6vw, 72px);
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.pullquote::before {
  content: "“";
  position: absolute;
  top: -34px;
  left: 18px;
  font-family: var(--serif);
  font-size: 220px;
  color: var(--coral);
  opacity: 0.55;
  line-height: 1;
}
.pullquote blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 2.7vw, 27px);
  line-height: 1.45;
  letter-spacing: 0.1px;
  max-width: 46ch;
  position: relative;
}
.pullquote cite {
  display: block;
  margin-top: 26px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
}
.pullquote cite span { color: #B8AFA5; text-transform: none; letter-spacing: 0.3px; display: block; margin-top: 4px; font-size: 14px; }

/* ── Results ── */
.results { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--rule); border: 1px solid var(--rule); margin-top: 28px; }
.result { background: var(--paper); padding: 34px 26px 30px; }
.result .n {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 46px);
  letter-spacing: -1px;
  color: var(--coral-deep);
  line-height: 1;
}
.result .l { margin-top: 12px; font-size: 14.5px; color: var(--ink-soft); max-width: 24ch; }

/* ── Video embeds ── */
.video-block { margin: 40px 0 8px; }
.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: var(--ink);
  border-radius: 6px;
  overflow: hidden;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-caption { margin-top: 12px; font-size: 13.5px; color: var(--muted); letter-spacing: 0.3px; }
.video-caption a { color: var(--coral-deep); }

.social-video-block { margin: 40px 0 8px; }
.instagram-frame {
  width: min(100%, 540px);
  aspect-ratio: 9 / 16;
  max-height: 760px;
  background: var(--paper-deep);
  border: 1px solid var(--rule);
  border-radius: 6px;
  overflow: hidden;
}
.instagram-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.social-video-link {
  position: relative;
  display: block;
  width: min(100%, 760px);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 16px 42px -30px rgba(28,25,23,.55);
}
.social-video-link::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,14,12,.88), rgba(17,14,12,.06) 58%); }
.social-video-link img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.social-video-link:hover img { transform: scale(1.035); }
.social-video-link > span { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 20px; display: flex; align-items: end; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: clamp(23px, 3vw, 34px); line-height: 1.05; }
.social-video-link small { display: block; margin-bottom: 7px; color: #efb09d; font-family: var(--sans); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.social-video-link b { font-family: var(--sans); font-size: 21px; font-weight: 400; }

.video-slot {
  border: 1.5px dashed var(--rule);
  border-radius: 6px;
  padding: 56px 24px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.5px;
  background: var(--paper-deep);
}

/* ── YouTube facade grid (click-to-play) ── */
.film-lede { max-width: 62ch; color: var(--ink-soft); margin: 6px 0 30px; font-size: 18px; }
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 20px; margin: 8px 0; }
.video-grid.feature { grid-template-columns: repeat(3, 1fr); margin-bottom: 20px; }
@media (max-width: 900px) { .video-grid.feature { grid-template-columns: 1fr; } }

.yt {
  position: relative; display: block; width: 100%; aspect-ratio: 16 / 9;
  border: 0; padding: 0; margin: 0; cursor: pointer; overflow: hidden;
  border-radius: 6px; background: var(--ink); text-align: left;
  box-shadow: 0 12px 32px -20px rgba(28, 25, 23, .5);
}
.yt img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; filter: saturate(.95);
  transition: transform .6s ease, filter .4s ease;
}
.yt:hover img { transform: scale(1.05); filter: saturate(1.06); }
.yt::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(18, 14, 12, .85) 0%, rgba(18, 14, 12, .06) 46%);
}
.yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; border-radius: 50%; z-index: 2;
  background: rgba(196, 114, 91, .95); display: grid; place-items: center;
  transition: transform .25s ease, background .25s ease;
}
.yt:hover .yt-play { transform: translate(-50%, -50%) scale(1.09); background: var(--coral); }
.yt-play::before {
  content: ""; margin-left: 5px;
  border-style: solid; border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent #fff;
}
.yt-cap { position: absolute; left: 18px; right: 18px; bottom: 15px; z-index: 2; }
.yt-tag { font-size: 10.5px; text-transform: uppercase; letter-spacing: 2px; color: #EDBCAB; display: block; margin-bottom: 5px; }
.yt-title { font-family: var(--serif); font-size: 18px; font-weight: 500; color: #fff; line-height: 1.22; letter-spacing: .2px; }
.yt.playing::after, .yt.playing .yt-play, .yt.playing .yt-cap, .yt.playing img { display: none; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }

/* ── Work rows (content marketing / video pages) ── */
.client-block { padding: 56px 0 16px; border-top: 1px solid var(--rule); }
.client-block:first-of-type { border-top: 0; }
.client-head { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.client-head h2 { margin-bottom: 0; }
.client-head .role { font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--coral-deep); }
.mini-results { display: flex; flex-wrap: wrap; gap: 28px 44px; margin: 26px 0 6px; }
.mini-results div .n { font-family: var(--serif); font-size: 30px; color: var(--coral-deep); letter-spacing: -0.5px; }
.mini-results div .l { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* ── Index cards ── */
.card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 48px 0 20px; }
@media (max-width: 780px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 34px 30px 30px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -18px rgba(28,25,23,.25); border-color: var(--coral); }
.card .k { font-size: 11.5px; text-transform: uppercase; letter-spacing: 2.4px; color: var(--coral-deep); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 26px; letter-spacing: -0.4px; margin: 12px 0 10px; line-height: 1.2; }
.card p { font-size: 15px; color: var(--ink-soft); }
.card .go { display: inline-block; margin-top: 18px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--coral-deep); }

/* ── CTA / footer ── */
.cta {
  margin-top: 88px;
  padding: 72px 0;
  background: var(--paper-deep);
  border-top: 1px solid var(--rule);
}
.cta h2 { max-width: 20ch; }
.cta .row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .2s ease, background .2s ease;
}
.btn.primary { background: var(--coral); color: #fff; }
.btn.primary:hover { background: var(--coral-deep); transform: translateY(-2px); }
.btn.ghost { border: 1.5px solid var(--ink); color: var(--ink); }
.btn.ghost:hover { border-color: var(--coral-deep); color: var(--coral-deep); transform: translateY(-2px); }

footer { padding: 30px 0 44px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: var(--muted); }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--coral-deep); }

/* ── Reveal behavior ──
   Content stays visible by default so a slow or blocked observer can never
   produce empty sections. */
.reveal,
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Corporate media landing page ────────────────────────────── */
.corporate-media-page {
  --corp-night: #0c1116;
  --corp-night-soft: #141c23;
  --corp-cream: #f2eee6;
  --corp-paper: #faf8f3;
  --corp-blue: #2378a6;
  --corp-orange: #ed7b24;
  --corp-line: rgba(12, 17, 22, .16);
  background: var(--corp-paper);
  color: var(--corp-night);
  font-family: var(--sans);
  overflow-x: hidden;
}
.goddard-media-page .legacy-goddard { display: none !important; }
.corporate-media-page h1,
.corporate-media-page h2,
.corporate-media-page h3 { max-width: none; margin: 0; }
.corp-shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.corp-hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  background: var(--corp-night);
}
.corp-hero-video,
.corp-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.corp-hero-video { object-fit: cover; opacity: .82; }
.corp-hero-shade {
  background:
    linear-gradient(90deg, rgba(7,11,15,.94) 0%, rgba(7,11,15,.65) 43%, rgba(7,11,15,.22) 72%, rgba(7,11,15,.45) 100%),
    linear-gradient(0deg, rgba(7,11,15,.88) 0%, transparent 38%, rgba(7,11,15,.25) 100%);
}
.corp-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.corp-brand { color: inherit; text-decoration: none; font-size: 18px; font-weight: 600; letter-spacing: -.02em; }
.corp-brand span { font-family: var(--serif); font-style: italic; font-weight: 400; color: #ff9b4d; }
.corp-nav-links { display: flex; align-items: center; gap: 26px; }
.corp-nav-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.corp-nav-links a:hover { color: #fff; }
.corp-nav-links .corp-nav-cta { color: #fff; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; padding: 10px 16px; }
.corp-hero-copy {
  width: min(1360px, calc(100% - 64px));
  margin: auto;
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
}
.corp-eyebrow,
.corp-section-index,
.corp-job-label,
.corp-package-kicker {
  font-size: 11px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 700;
}
.corp-eyebrow { color: #ff9b4d; margin-bottom: 26px; }
.corp-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(54px, 7vw, 112px);
  line-height: .91;
  letter-spacing: -.035em;
  max-width: 11.6ch;
}
.corp-hero h1 em { font-weight: 400; color: #ffc08d; }
.corp-hero-dek { max-width: 680px; margin-top: 30px; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.55; color: rgba(255,255,255,.78); }
.corp-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.corp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.corp-button:hover { transform: translateY(-2px); }
.corp-button-light { background: #fff; color: var(--corp-night); }
.corp-button-light:hover { background: #ffc08d; }
.corp-button-dark { background: var(--corp-night); color: #fff; }
.corp-button-dark:hover { background: var(--corp-blue); }
.corp-text-link { color: #fff; text-decoration: none; font-size: 14px; border-bottom: 1px solid rgba(255,255,255,.42); padding: 8px 0; }
.corp-hero-proof {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255,255,255,.22);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.corp-hero-proof div { display: flex; align-items: baseline; gap: 12px; }
.corp-hero-proof strong { font-family: var(--serif); font-size: 30px; font-weight: 400; color: #ffc08d; }
.corp-hero-proof span { font-size: 11px; line-height: 1.35; text-transform: uppercase; letter-spacing: .09em; color: rgba(255,255,255,.63); max-width: 25ch; }

.corp-manifesto { padding: 140px 0 0; background: var(--corp-cream); overflow: hidden; }
.corp-manifesto-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 10vw; align-items: start; }
.corp-section-index { color: var(--corp-orange); margin-bottom: 26px; }
.corp-manifesto h2,
.corp-section-head h2,
.corp-expo-intro h2,
.corp-package-head h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(42px, 5.5vw, 82px); line-height: .98; letter-spacing: -.035em; }
.corp-manifesto h2 em,
.corp-expo-intro h2 em { color: var(--corp-blue); font-weight: 400; }
.corp-manifesto-copy { padding-top: 38px; color: #384047; max-width: 650px; }
.corp-manifesto-copy p { font-size: 17px; }
.corp-manifesto-copy .corp-lead { font-family: var(--serif); font-size: clamp(27px, 2.6vw, 39px); line-height: 1.18; color: var(--corp-night); margin-bottom: 28px; }
.corp-photo-ribbon { display: grid; grid-template-columns: 1.35fr 1fr 1fr .75fr; gap: 8px; margin-top: 104px; padding: 0 8px; }
.corp-photo-ribbon figure { min-height: 360px; position: relative; overflow: hidden; background: var(--corp-night); }
.corp-photo-ribbon img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s ease; }
.corp-photo-ribbon figure:hover img { transform: scale(1.035); }
.corp-photo-ribbon figcaption { position: absolute; left: 18px; bottom: 16px; color: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: .15em; }

.corp-jobs { padding: 118px 0; background: var(--corp-paper); }
.corp-section-head { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; margin-bottom: 76px; }
.corp-section-head > p { color: #545c62; font-size: 17px; max-width: 46ch; padding-bottom: 6px; }
.corp-job { background: #fff; border: 1px solid var(--corp-line); }
.corp-job-feature { display: grid; grid-template-columns: .7fr 1.3fr; margin-bottom: 28px; }
.corp-job-copy { padding: clamp(28px, 4.2vw, 58px); }
.corp-job-num { display: block; font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--corp-orange); margin-bottom: 28px; }
.corp-job-label { color: var(--corp-blue); margin-bottom: 16px; }
.corp-job h3,
.corp-demo h3,
.corp-expo-video h3,
.corp-package-core h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(29px, 3vw, 45px); line-height: 1.05; letter-spacing: -.025em; }
.corp-job-copy > p:not(.corp-job-label):not(.corp-source) { margin-top: 20px; color: #565e64; font-size: 15.5px; }
.corp-source { margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--corp-line); color: #747c82; font-size: 11px; line-height: 1.5; text-transform: uppercase; letter-spacing: .08em; }
.corp-job .yt { border-radius: 0; box-shadow: none; width: 100%; height: auto; min-height: 0; aspect-ratio: 16 / 9; }
.corp-job-feature .corp-yt { aspect-ratio: 16 / 9; align-self: center; }
.corp-job-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.corp-job-grid .corp-job { display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); align-items: stretch; }
.corp-job-media { min-width: 0; align-self: center; background: var(--corp-night); overflow: hidden; }
.corp-paired-video { display: grid; grid-template-columns: 1fr 1fr; }
.corp-paired-video .yt { min-height: 0; aspect-ratio: 16 / 9; }
.corp-paired-video .yt + .yt { border-left: 1px solid rgba(255,255,255,.2); }
.corp-local-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--corp-line); }
.corp-local-pair figure { background: var(--corp-night); }
.corp-local-pair video,
.corp-demo-media video,
.corp-expo-video video { width: 100%; display: block; background: var(--corp-night); aspect-ratio: 16/9; object-fit: cover; }
.corp-local-pair figcaption,
.corp-demo-media span,
.corp-expo-video figcaption { display: block; padding: 10px 14px 12px; background: #fff; color: #6d757b; font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.corp-demo { display: grid; grid-template-columns: .8fr 1.2fr; margin-top: 28px; background: var(--corp-night); color: #fff; }
.corp-demo-copy { padding: clamp(34px, 5vw, 72px); }
.corp-demo-copy > p:not(.corp-job-label):not(.corp-source) { margin-top: 20px; color: rgba(255,255,255,.67); }
.corp-demo .corp-source { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.47); }
.corp-demo-media { align-self: center; padding: 24px 24px 24px 0; }
.corp-demo-media span { background: transparent; color: rgba(255,255,255,.5); padding-left: 0; }
.corp-roadmap { margin-top: 28px; background: #fff; border: 1px solid var(--corp-line); overflow: hidden; }
.corp-roadmap img { width: 100%; display: block; }
.corp-roadmap figcaption { padding: 18px 22px; color: #5d666c; font-size: 13px; }

.corp-results { padding: 142px 0; background: #dce8ec; }
.corp-results-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 72px;
  align-items: end;
}
.corp-results-head .corp-section-index { grid-column: 1 / -1; margin-bottom: -40px; }
.corp-results-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: .98;
  letter-spacing: -.035em;
}
.corp-results-head > p:last-child { color: #4e5b61; font-size: 17px; max-width: 48ch; padding-bottom: 7px; }
.corp-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(12,17,22,.2);
  border-left: 1px solid rgba(12,17,22,.2);
}
.corp-results-grid > div {
  min-height: 220px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(12,17,22,.2);
  border-bottom: 1px solid rgba(12,17,22,.2);
}
.corp-results-grid strong { font-family: var(--serif); font-size: clamp(48px, 5vw, 72px); line-height: 1; font-weight: 400; color: var(--corp-blue); }
.corp-results-grid span { max-width: 25ch; font-size: 12px; line-height: 1.45; text-transform: uppercase; letter-spacing: .09em; color: #55636a; }

.corp-expo { padding: 140px 0; background: var(--corp-night); color: #fff; overflow: hidden; }
.corp-expo-intro { max-width: 920px; }
.corp-expo-intro h2 em { color: #ff9b4d; }
.corp-expo-intro > p:last-child { max-width: 63ch; margin-top: 28px; color: rgba(255,255,255,.66); font-size: 18px; }
.corp-expo-stage { display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: auto auto; gap: 12px; margin-top: 72px; }
.corp-expo-stage figure { position: relative; overflow: hidden; background: var(--corp-night-soft); }
.corp-expo-stage figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.corp-expo-stage figcaption { position: absolute; left: 18px; bottom: 16px; padding: 7px 10px; background: rgba(8,12,16,.72); color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.corp-expo-booth { grid-row: 1 / span 2; min-height: 760px; }
.corp-expo-branding { min-height: 374px; }
.corp-expo-brochure { min-height: 374px; }
.corp-stickers {
  grid-column: 1 / -1;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0px, 3vw, 42px);
  position: relative;
  background: radial-gradient(circle at center, rgba(35,120,166,.23), transparent 62%), var(--corp-night-soft);
  overflow: hidden;
}
.corp-stickers img { width: min(36vw, 390px); filter: drop-shadow(0 25px 35px rgba(0,0,0,.28)); }
.corp-stickers img + img { margin-left: -9vw; transform: translateY(20px); }
.corp-stickers span { position: absolute; left: 18px; bottom: 16px; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); }
.corp-expo-video { display: grid; grid-template-columns: .75fr 1.25fr; gap: 72px; align-items: center; margin-top: 96px; }
.corp-expo-video > div > p:not(.corp-job-label):not(.corp-source) { color: rgba(255,255,255,.66); margin-top: 20px; }
.corp-expo-video .corp-source { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.47); }
.corp-expo-video figcaption { background: transparent; color: rgba(255,255,255,.5); padding-left: 0; }

.corp-package { padding: 142px 0; background: #e9e2d6; }
.corp-package-head { display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: end; }
.corp-package-head .corp-section-index { grid-column: 1 / -1; margin-bottom: -42px; }
.corp-package-head > p:last-child { color: #545c62; max-width: 50ch; font-size: 18px; padding-bottom: 8px; }
.corp-package-layout { display: grid; grid-template-columns: 1.2fr .8fr; margin-top: 72px; border-top: 1px solid var(--corp-line); border-bottom: 1px solid var(--corp-line); }
.corp-package-core { padding: 58px 72px 58px 0; border-right: 1px solid var(--corp-line); }
.corp-package-kicker { color: var(--corp-orange); margin-bottom: 24px; }
.corp-package-core ul { list-style: none; margin-top: 36px; }
.corp-package-core li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid var(--corp-line); font-size: 15px; }
.corp-package-core li span { font-family: var(--serif); font-style: italic; color: var(--corp-blue); }
.corp-package-note { margin-top: 26px; color: #697177; font-size: 12px; max-width: 66ch; }
.corp-modules { padding: 58px 0 58px 60px; }
.corp-modules > div { padding: 18px 0; border-top: 1px solid var(--corp-line); }
.corp-modules > div span { display: block; font-family: var(--serif); font-size: 26px; color: var(--corp-blue); }
.corp-modules > div p { color: #646d73; font-size: 13px; margin-top: 4px; }
.corp-package-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 54px; }
.corp-package-cta p { font-family: var(--serif); font-size: clamp(25px, 3vw, 38px); }

.corp-testimonial { padding: 130px 0; background: var(--corp-blue); color: #fff; }
.corp-testimonial blockquote { font-family: var(--serif); font-size: clamp(38px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -.03em; max-width: 18ch; }
.corp-testimonial cite { display: block; margin-top: 32px; font-style: normal; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; }
.corp-testimonial cite span { display: block; margin-top: 6px; color: rgba(255,255,255,.63); text-transform: none; letter-spacing: .02em; font-size: 13px; }
.corp-footer { background: var(--corp-night); color: #fff; padding: 60px 0; }
.corp-footer .corp-shell { display: flex; justify-content: space-between; gap: 40px; }
.corp-footer p { margin-top: 10px; color: rgba(255,255,255,.5); font-size: 13px; }
.corp-footer-links { display: flex; align-items: flex-start; flex-wrap: wrap; gap: 24px; }
.corp-footer-links a { color: rgba(255,255,255,.66); text-decoration: none; font-size: 12px; text-transform: uppercase; letter-spacing: .09em; }
.corp-footer-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .corp-shell,
  .corp-nav,
  .corp-hero-copy,
  .corp-hero-proof { width: min(100% - 36px, 1240px); }
  .corp-nav { align-items: flex-start; }
  .corp-nav-links a:not(.corp-nav-cta) { display: none; }
  .corp-hero-copy { padding: 76px 0 60px; }
  .corp-hero h1 { font-size: clamp(50px, 14vw, 82px); }
  .corp-hero-proof { grid-template-columns: 1fr; gap: 12px; }
  .corp-hero-proof div { justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 10px; }
  .corp-hero-proof span { text-align: right; }
  .corp-manifesto { padding-top: 100px; }
  .corp-manifesto-grid,
  .corp-section-head,
  .corp-job-feature,
  .corp-demo,
  .corp-expo-video,
  .corp-package-head,
  .corp-package-layout { grid-template-columns: 1fr; gap: 32px; }
  .corp-manifesto-copy { padding-top: 0; }
  .corp-photo-ribbon { grid-template-columns: 1fr 1fr; margin-top: 68px; }
  .corp-photo-ribbon figure { min-height: 280px; }
  .corp-jobs,
  .corp-expo,
  .corp-package { padding: 100px 0; }
  .corp-job-feature .corp-yt { min-height: 360px; }
  .corp-job-grid,
  .corp-job-grid .corp-job { grid-template-columns: 1fr; }
  .corp-demo-media { padding: 0 24px 24px; }
  .corp-expo-stage { grid-template-columns: 1fr; grid-template-rows: auto; }
  .corp-expo-booth { grid-row: auto; min-height: 520px; }
  .corp-expo-branding,
  .corp-expo-brochure { min-height: 420px; }
  .corp-stickers { grid-column: auto; }
  .corp-results-head { grid-template-columns: 1fr; gap: 28px; }
  .corp-results-head .corp-section-index { grid-column: auto; margin-bottom: 0; }
  .corp-results-grid { grid-template-columns: 1fr 1fr; }
  .corp-package-head .corp-section-index { grid-column: auto; margin-bottom: 0; }
  .corp-package-core { border-right: 0; border-bottom: 1px solid var(--corp-line); padding: 52px 0; }
  .corp-modules { padding: 20px 0 52px; }
}

@media (max-width: 600px) {
  .corp-nav { padding: 20px 0; }
  .corp-nav-cta { padding: 9px 12px !important; }
  .corp-hero-copy { margin: auto 0; }
  .corp-hero h1 { font-size: 53px; }
  .corp-hero-dek { font-size: 16px; }
  .corp-manifesto h2,
  .corp-section-head h2,
  .corp-expo-intro h2,
  .corp-package-head h2 { font-size: 44px; }
  .corp-photo-ribbon { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; padding: 0 18px 14px; }
  .corp-photo-ribbon figure { min-width: 82vw; scroll-snap-align: center; }
  .corp-section-head { margin-bottom: 48px; }
  .corp-job-num { margin-bottom: 24px; }
  .corp-job-feature .corp-yt { min-height: 0; }
  .corp-paired-video,
  .corp-local-pair { grid-template-columns: 1fr; }
  .corp-paired-video .yt + .yt { border-left: 0; border-top: 1px solid rgba(255,255,255,.2); }
  .corp-expo-booth,
  .corp-expo-branding,
  .corp-expo-brochure { min-height: 360px; }
  .corp-stickers { min-height: 270px; }
  .corp-stickers img { width: 58vw; }
  .corp-stickers img + img { margin-left: -28vw; }
  .corp-package-cta,
  .corp-footer .corp-shell { align-items: flex-start; flex-direction: column; }
  .corp-testimonial { padding: 90px 0; }
  .corp-results { padding: 96px 0; }
  .corp-results-grid { grid-template-columns: 1fr; margin-top: 52px; }
  .corp-results-grid > div { min-height: 170px; }
}

@media (prefers-reduced-motion: reduce) {
  .corp-hero-video { display: none; }
  .corp-hero { background: linear-gradient(110deg, rgba(7,11,15,.8), rgba(7,11,15,.45)), url('assets/corporate/expo-conversation.webp') center/cover no-repeat; }
  .corp-photo-ribbon img { transition: none; }
}

/* ── Unified Muyinza Media navigation ───────────────────────── */
.global-nav {
  position: relative;
  z-index: 40;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--rule);
}
.global-brand {
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -.01em;
}
.global-brand em { margin-left: .14em; color: var(--coral-deep); font-style: italic; font-weight: 400; }
.global-nav-links { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 30px); }
.global-nav-links > a,
.global-work > summary {
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease;
}
.global-nav-links > a:hover,
.global-work > summary:hover,
.global-nav-links > a[aria-current="page"],
.global-work.current > summary { color: var(--coral-deep); }
.global-work { position: relative; }
.global-work > summary { display: flex; align-items: center; gap: 7px; list-style: none; }
.global-work > summary::-webkit-details-marker { display: none; }
.global-work > summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.global-work[open] > summary::after { transform: translateY(2px) rotate(225deg); }
.global-submenu {
  position: absolute;
  top: calc(100% + 17px);
  left: -18px;
  width: 238px;
  padding: 9px;
  background: rgba(250,246,240,.98);
  border: 1px solid var(--rule);
  border-radius: 10px;
  box-shadow: 0 24px 55px -28px rgba(28,25,23,.6);
}
.global-submenu::before { content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.global-submenu a {
  display: block;
  padding: 11px 12px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
  border-radius: 6px;
}
.global-submenu a:hover,
.global-submenu a[aria-current="page"] { color: var(--coral-deep); background: var(--paper-deep); }
.global-nav-links .global-contact {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  letter-spacing: .08em;
}
.global-nav-links .global-contact:hover { color: #fff; background: var(--ink); }
.global-nav-dark {
  width: min(1360px, calc(100% - 64px));
  margin: 0 auto;
  border-color: rgba(255,255,255,.23);
  color: #fff;
}
.global-nav-dark .global-brand { color: #fff; }
.global-nav-dark .global-brand em { color: #ffb477; }
.global-nav-dark .global-nav-links > a,
.global-nav-dark .global-work > summary { color: rgba(255,255,255,.72); }
.global-nav-dark .global-nav-links > a:hover,
.global-nav-dark .global-work > summary:hover,
.global-nav-dark .global-work.current > summary { color: #fff; }
.global-nav-dark .global-nav-links .global-contact { color: #fff; border-color: rgba(255,255,255,.48); }
.global-nav-dark .global-nav-links .global-contact:hover { background: #fff; color: var(--ink); }

/* ── Cinematic case study heroes ─────────────────────────────── */
.case-cinema-hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #fff;
  background: #111513;
}
.case-cinema-video,
.case-cinema-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.case-cinema-video { object-fit: cover; opacity: .86; }
.northeastern-cinema-hero .case-cinema-video { object-position: center; }
.dragonwood-cinema-hero .case-cinema-video { object-position: 58% center; }
.case-cinema-shade {
  background:
    linear-gradient(90deg, rgba(12,15,14,.93) 0%, rgba(12,15,14,.67) 45%, rgba(12,15,14,.2) 76%, rgba(12,15,14,.38) 100%),
    linear-gradient(0deg, rgba(10,12,11,.9) 0%, transparent 48%, rgba(10,12,11,.22) 100%);
}
.case-cinema-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 64px));
  margin: auto auto 0;
  padding: 72px 0 54px;
}
.case-cinema-content .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: #ffb477;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.case-cinema-content .kicker::before { content: ""; width: 44px; height: 1px; background: currentColor; }
.case-cinema-content h1 {
  max-width: 14ch;
  font-family: var(--serif);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.035em;
}
.case-cinema-content h1 em { color: #ffc08d; font-weight: 400; }
.case-cinema-content .dek { max-width: 68ch; margin-top: 25px; color: rgba(255,255,255,.76); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.55; }
.case-cinema-meta {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.2);
}
.case-cinema-meta > div { background: rgba(8,12,10,.38); padding: 15px 17px 17px; }
.case-cinema-meta dt { color: rgba(255,255,255,.48); }
.case-cinema-meta dd { color: rgba(255,255,255,.88); font-size: 14px; }
.roux-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.roux-video-grid .video-block { margin: 0; min-width: 0; }
.roux-video-story .social-video-block { margin-top: 24px; }

@media (max-width: 760px) {
  .case-cinema-hero { min-height: 100svh; }
  .case-cinema-content { width: calc(100% - 40px); padding: 56px 0 32px; }
  .case-cinema-content h1 { font-size: clamp(46px, 13vw, 64px); }
  .case-cinema-content .dek { font-size: 15px; }
  .case-cinema-meta { grid-template-columns: 1fr 1fr; margin-top: 30px; }
  .case-cinema-meta > div { padding: 12px; }
  .case-cinema-meta dd { font-size: 12px; line-height: 1.35; }
  .roux-video-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .case-cinema-video { display: none; }
  .northeastern-cinema-hero { background: linear-gradient(90deg, rgba(12,15,14,.88), rgba(12,15,14,.45)), url('assets/northeastern/hero-reel-poster.jpg') center/cover no-repeat; }
  .dragonwood-cinema-hero { background: linear-gradient(90deg, rgba(12,15,14,.88), rgba(12,15,14,.45)), url('assets/dragonwood/video/human-story-01-poster.jpg') 58% center/cover no-repeat; }
}

@media (max-width: 760px) {
  .wrap { padding-left: 20px; padding-right: 20px; }
  .global-nav,
  .global-nav-dark {
    width: 100%;
    min-height: 0;
    padding: 20px 0 18px;
    margin: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .global-nav-dark { width: calc(100% - 40px); margin: 0 20px; }
  .global-nav-links { width: 100%; justify-content: space-between; gap: 12px; }
  .global-nav-links > a,
  .global-work > summary { font-size: 10px; letter-spacing: .1em; }
  .global-nav-links .global-contact { padding: 9px 11px; white-space: nowrap; }
  .global-submenu { left: 0; top: calc(100% + 13px); width: min(238px, calc(100vw - 40px)); }
}

@media (max-width: 430px) {
  .global-nav-links { display: grid; grid-template-columns: 1fr auto auto; }
  .global-nav-links .global-contact { grid-column: 1 / -1; justify-self: start; }
}

/* ── Dragonwood premium case study ───────────────────────────── */
.dragonwood-media-page { overflow-x: hidden; }
.dragonwood-hero { padding-top: 72px; }
.dragonwood-hero h1 { max-width: 14.5ch; }
.dragonwood-hero .dek { max-width: 68ch; }
.dragonwood-hero-media {
  margin: 22px 0 34px;
  background: var(--ink);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 70px -42px rgba(28,25,23,.58);
}
.dragonwood-hero-media img { display: block; width: 100%; aspect-ratio: 16 / 8.5; object-fit: cover; object-position: top center; }
.dragonwood-hero-media figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 18px 17px;
  background: var(--ink);
  color: #c8c0b6;
  font-size: 13px;
  line-height: 1.45;
}
.dragonwood-hero-media figcaption span { color: #efb09d; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; white-space: nowrap; }
.dragonwood-intro h2 { font-size: clamp(34px, 4.6vw, 54px); max-width: 15ch; }

.dragonwood-results {
  margin-top: 72px;
  padding: clamp(34px, 6vw, 72px);
  background: #172019;
  color: #f8f2e9;
  border-radius: 14px;
}
.dragonwood-results .section-label { color: rgba(255,255,255,.52); }
.dragonwood-results .section-label::after { background: rgba(255,255,255,.18); }
.dragonwood-results-head { display: grid; grid-template-columns: 1.1fr .9fr; gap: 72px; align-items: end; }
.dragonwood-results-head h2 { max-width: 16ch; font-size: clamp(38px, 5vw, 61px); }
.dragonwood-results-head > p { max-width: 48ch; color: rgba(255,255,255,.63); font-size: 15px; }
.dragonwood-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.18);
}
.dragonwood-metric-grid article {
  min-height: 240px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.metric-kicker,
.film-index {
  color: #e69a83;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.dragonwood-metric-grid strong { font-family: var(--serif); font-weight: 400; font-size: clamp(50px, 6.5vw, 76px); line-height: .9; color: #f4c2a8; }
.dragonwood-metric-grid p { max-width: 30ch; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.55; }
.dragonwood-social-proof {
  display: grid;
  grid-template-columns: .7fr .7fr 1.6fr;
  gap: 34px;
  align-items: end;
  padding-top: 38px;
}
.dragonwood-social-proof > div span { display: block; font-family: var(--serif); color: #f4c2a8; font-size: 42px; line-height: 1; }
.dragonwood-social-proof > div p { margin-top: 8px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.5; }
.dragonwood-proof-note { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.48); font-size: 11px; line-height: 1.65; }

.dragonwood-film-intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; }
.dragonwood-film-intro h2 { max-width: 14ch; font-size: clamp(38px, 5vw, 60px); }
.dragonwood-film-intro p { color: var(--ink-soft); max-width: 50ch; padding-bottom: 6px; }
.dragonwood-film-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.dragonwood-film-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 45px -36px rgba(28,25,23,.52);
}
.dragonwood-film-card video,
.local-video-card video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; background: #101512; }
.dragonwood-film-card video { border-radius: 0; }
.dragonwood-film-copy { padding: clamp(24px, 3vw, 38px); }
.dragonwood-film-copy h3 { margin-top: 13px; font-family: var(--serif); font-size: clamp(27px, 3vw, 38px); line-height: 1.08; font-weight: 400; }
.dragonwood-film-copy p { margin-top: 15px; color: var(--ink-soft); font-size: 14px; line-height: 1.62; }
.dragonwood-film-feature { grid-column: 1 / -1; display: grid; grid-template-columns: .72fr 1.28fr; background: #e9e1d4; }
.dragonwood-film-feature video { height: 100%; min-height: 390px; }
.dragonwood-film-feature .film-index { color: var(--coral-deep); }
.dragonwood-process { margin-top: 36px; }

.dragonwood-proof-copy { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.dragonwood-proof-copy h2 { max-width: 17ch; font-size: clamp(38px, 5vw, 58px); }
.dragonwood-proof-copy p { color: var(--ink-soft); max-width: 49ch; padding-bottom: 5px; }
.dragonwood-proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 14px; margin-top: 42px; }
.dragonwood-proof-grid figure { position: relative; min-height: 360px; overflow: hidden; background: var(--ink); border-radius: 7px; }
.dragonwood-proof-grid .proof-wide { grid-column: 1 / -1; min-height: 440px; }
.dragonwood-proof-grid img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top center; }
.dragonwood-proof-grid figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; background: rgba(20,18,17,.78); color: #fff; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.dragonwood-cta { margin-top: 96px; }

/* ── Self-hosted video library cards ─────────────────────────── */
.local-video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0 0; }
.local-video-grid.compact { gap: 14px; }
.local-video-card { margin: 0; min-width: 0; background: #fff; border: 1px solid var(--rule); border-radius: 8px; overflow: hidden; }
.local-video-card figcaption { padding: 14px 16px 17px; color: var(--ink-soft); font-size: 13px; line-height: 1.5; }
.local-video-card figcaption span { display: block; margin-bottom: 5px; color: var(--coral-deep); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.case-link { margin-top: 22px; }
.case-link a { color: var(--coral-deep); text-decoration-thickness: 1px; text-underline-offset: 4px; }

@media (max-width: 800px) {
  .dragonwood-hero { padding-top: 56px; }
  .dragonwood-hero-media img { aspect-ratio: 4 / 3; }
  .dragonwood-hero-media figcaption { flex-direction: column; gap: 7px; }
  .dragonwood-results { margin-left: -4px; margin-right: -4px; }
  .dragonwood-results-head,
  .dragonwood-film-intro,
  .dragonwood-proof-copy { grid-template-columns: 1fr; gap: 20px; }
  .dragonwood-metric-grid { grid-template-columns: 1fr; }
  .dragonwood-metric-grid article { min-height: 185px; }
  .dragonwood-social-proof { grid-template-columns: 1fr 1fr; }
  .dragonwood-proof-note { grid-column: 1 / -1; padding: 20px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .dragonwood-film-grid,
  .local-video-grid { grid-template-columns: 1fr; }
  .dragonwood-film-feature { grid-column: auto; display: flex; }
  .dragonwood-film-feature video { order: -1; min-height: 0; height: auto; }
  .dragonwood-proof-grid { grid-template-columns: 1fr; }
  .dragonwood-proof-grid .proof-wide { grid-column: auto; min-height: 310px; }
  .dragonwood-proof-grid figure { min-height: 310px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero { padding-bottom: 36px; }
  .dragonwood-results { padding: 30px 20px; border-radius: 9px; }
  .dragonwood-metric-grid { margin-top: 38px; }
  .dragonwood-metric-grid article { padding: 24px 20px; }
  .dragonwood-social-proof { grid-template-columns: 1fr; gap: 22px; }
  .dragonwood-proof-note { grid-column: auto; }
  .dragonwood-film-grid { gap: 14px; }
  .dragonwood-film-copy { padding: 23px 20px 26px; }
  .client-block { padding-top: 46px; }
}

/* ── Muyinza Media agency homepage ───────────────────────────── */
.agency-home {
  --agency-night: #0c100e;
  --agency-night-soft: #151b18;
  --agency-cream: #f1eadf;
  --agency-paper: #faf7f1;
  --agency-amber: #d49358;
  --agency-amber-light: #f2bd88;
  --agency-line: rgba(18, 21, 19, .17);
  overflow-x: hidden;
  background: var(--agency-paper);
}
.agency-home main { overflow: hidden; }
.agency-home h1,
.agency-home h2,
.agency-home h3,
.agency-home p { margin-top: 0; }
.agency-shell { width: min(1240px, calc(100% - 64px)); margin: 0 auto; }
.agency-index,
.agency-eyebrow,
.agency-service-label {
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
}
.agency-index { color: var(--agency-amber); margin-bottom: 24px; }

.agency-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
  background: var(--agency-night);
}
.agency-hero-video,
.agency-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.agency-hero-video {
  object-fit: cover;
  object-position: 57% center;
  opacity: .88;
  transform: scale(1.04);
  will-change: transform;
}
.agency-hero-shade {
  background:
    linear-gradient(90deg, rgba(6,9,8,.94) 0%, rgba(6,9,8,.73) 42%, rgba(6,9,8,.23) 74%, rgba(6,9,8,.45) 100%),
    linear-gradient(0deg, rgba(6,9,8,.9) 0%, transparent 46%, rgba(6,9,8,.28) 100%);
}
.agency-hero .global-nav { flex: 0 0 auto; }
.agency-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 64px));
  margin: auto;
  padding: clamp(70px, 9vh, 120px) 0 clamp(82px, 11vh, 130px);
}
.agency-eyebrow { color: var(--agency-amber-light); margin-bottom: 25px; }
.agency-hero h1 {
  max-width: 12.2ch;
  font-family: var(--serif);
  font-size: clamp(58px, 7.4vw, 114px);
  line-height: .9;
  letter-spacing: -.045em;
  font-weight: 400;
}
.agency-hero h1 em { color: var(--agency-amber-light); font-weight: 400; }
.agency-hero-dek {
  max-width: 690px;
  margin-top: 30px !important;
  color: rgba(255,255,255,.76);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.55;
}
.agency-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 34px; }
.agency-button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  overflow: hidden;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .045em;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.agency-button:hover { transform: translateY(-2px); }
.agency-button-light { background: #fff; color: var(--agency-night); }
.agency-button-light:hover { background: var(--agency-amber-light); }
.agency-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  border-bottom: 1px solid currentColor;
  padding: 8px 0 6px;
  transition: color .2s ease, gap .25s ease;
}
.agency-text-link:hover { color: var(--agency-amber-light); gap: 15px; }
.agency-availability {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 31px !important;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .16em;
}
.agency-availability span { width: 7px; height: 7px; border-radius: 50%; background: #a9d2a4; box-shadow: 0 0 0 5px rgba(169,210,164,.12); }
.agency-scroll {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.46);
  text-decoration: none;
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: .22em;
}
.agency-scroll i { width: 1px; height: 42px; background: rgba(255,255,255,.4); transform-origin: top; animation: agencyScroll 2s ease-in-out infinite; }
@keyframes agencyScroll { 0%,100% { transform: scaleY(.2); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }

.agency-positioning { padding: 140px 0 0; background: var(--agency-cream); }
.agency-positioning-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 9vw; align-items: start; }
.agency-positioning h2,
.agency-section-head h2,
.agency-work-heading h2,
.agency-faq h2,
.agency-final-copy h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(46px, 5.6vw, 82px);
  line-height: .96;
  letter-spacing: -.04em;
}
.agency-positioning h2 em,
.agency-section-head h2 em,
.agency-work-heading h2 em,
.agency-final-copy h2 em { color: #9d5d36; font-weight: 400; }
.agency-positioning-copy { max-width: 620px; padding-top: 30px; color: #4c514e; }
.agency-positioning-copy .agency-lead { margin-bottom: 28px; font-family: var(--serif); color: var(--agency-night); font-size: clamp(28px, 2.75vw, 40px); line-height: 1.16; }
.agency-positioning-copy > p:last-child { max-width: 59ch; font-size: 16px; }
.agency-marquee { margin-top: 110px; overflow: hidden; border-top: 1px solid var(--agency-line); border-bottom: 1px solid var(--agency-line); }
.agency-marquee div {
  width: max-content;
  padding: 17px 0 15px;
  color: #2c302d;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  animation: agencyMarquee 25s linear infinite;
}
.agency-marquee span { color: #b96c3d; padding: 0 28px; }
@keyframes agencyMarquee { to { transform: translateX(-50%); } }

.agency-engine { padding: 138px 0; background: var(--agency-night); color: #fff; }
.agency-engine-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(56px, 8vw, 120px); align-items: start; }
.agency-engine-intro { position: sticky; top: 48px; }
.agency-engine-intro h2 { max-width: 12ch; font-family: var(--serif); font-size: clamp(46px, 5.2vw, 76px); font-weight: 400; line-height: .95; letter-spacing: -.04em; }
.agency-engine-intro h2 em { color: var(--agency-amber-light); font-weight: 400; }
.agency-engine-intro > p:not(.agency-index) { max-width: 43ch; margin-top: 27px; color: rgba(255,255,255,.61); font-size: 15px; }
.agency-engine-intro .agency-text-link { margin-top: 28px; }
.agency-engine-steps { display: grid; gap: 84px; }
.agency-engine-step { border-top: 1px solid rgba(255,255,255,.18); padding-top: 18px; }
.agency-engine-media { height: clamp(310px, 46vw, 580px); overflow: hidden; background: #080b09; }
.agency-engine-media img,
.agency-engine-media video { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.9); transition: transform .7s cubic-bezier(.16,1,.3,1), filter .5s ease; }
.agency-engine-step:hover .agency-engine-media img,
.agency-engine-step:hover .agency-engine-media video { transform: scale(1.025); filter: saturate(1.02); }
.agency-engine-copy { display: grid; grid-template-columns: 44px 1fr; gap: 0 22px; padding-top: 24px; }
.agency-engine-copy > span { grid-row: 1 / span 2; color: var(--agency-amber-light); font-family: var(--serif); font-size: 22px; font-style: italic; }
.agency-engine-copy h3 { max-width: 16ch; font-family: var(--serif); font-size: clamp(31px, 3.3vw, 46px); font-weight: 400; line-height: 1.02; }
.agency-engine-copy p { max-width: 49ch; margin-top: 15px; color: rgba(255,255,255,.56); font-size: 14px; }

.agency-services { padding: 140px 0; background: var(--agency-paper); }
.agency-section-head { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; margin-bottom: 78px; }
.agency-section-head > p { max-width: 48ch; padding-bottom: 5px; color: #5e625f; font-size: 16px; }
.agency-service-list { border-top: 1px solid var(--agency-line); }
.agency-service {
  display: grid;
  grid-template-columns: 55px 1.05fr 1fr 104px;
  gap: clamp(20px, 3.7vw, 54px);
  align-items: center;
  min-height: 250px;
  padding: 34px 0;
  border-bottom: 1px solid var(--agency-line);
}
.agency-service-num { align-self: start; color: #b76a3d; font-family: var(--serif); font-size: 21px; font-style: italic; }
.agency-service-label { color: #a35d36; margin-bottom: 15px; }
.agency-service h3 { max-width: 14ch; font-family: var(--serif); font-size: clamp(35px, 4vw, 55px); font-weight: 400; line-height: 1; letter-spacing: -.025em; }
.agency-service > p { max-width: 46ch; color: #5e625f; font-size: 14px; }
.agency-service > a { color: var(--agency-night); text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.agency-service > a span { display: block; margin-top: 15px; color: #b76a3d; font-size: 24px; font-weight: 400; transition: transform .25s ease; }
.agency-service:hover > a span { transform: translate(4px,-4px); }

.agency-work { padding: 138px 0; background: #dfe8e2; }
.agency-work-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.agency-work-heading .agency-index { grid-column: 1 / -1; margin-bottom: -44px; }
.agency-work-heading > p:last-child { max-width: 49ch; color: #56615b; padding-bottom: 6px; }
.agency-case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.agency-case {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 25px;
  color: #fff;
  text-decoration: none;
  background: var(--agency-night);
}
.agency-case-feature { grid-column: 1 / -1; min-height: 760px; }
.agency-case > img,
.agency-case-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.agency-case > img { object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1), filter .5s ease; }
.agency-case-feature > img { object-position: center 32%; }
.agency-case-overlay { background: linear-gradient(0deg, rgba(8,11,9,.94), rgba(8,11,9,.08) 66%, rgba(8,11,9,.4)); }
.agency-case:hover > img { transform: scale(1.025); filter: saturate(1.05); }
.agency-case-top,
.agency-case-copy { position: relative; z-index: 1; }
.agency-case-top { display: flex; justify-content: space-between; gap: 20px; font-size: 9px; text-transform: uppercase; letter-spacing: .17em; color: rgba(255,255,255,.68); }
.agency-case-copy { max-width: 760px; }
.agency-case-copy h3 { font-family: var(--serif); font-size: clamp(42px, 5vw, 72px); font-weight: 400; line-height: .96; letter-spacing: -.03em; }
.agency-case:not(.agency-case-feature) .agency-case-copy h3 { font-size: clamp(38px, 4vw, 54px); }
.agency-case-copy > p { max-width: 56ch; margin-top: 15px; color: rgba(255,255,255,.68); font-size: 14px; }
.agency-case-copy strong { display: flex; align-items: baseline; gap: 15px; margin-top: 24px; color: var(--agency-amber-light); font-family: var(--serif); font-size: clamp(36px, 4vw, 58px); font-weight: 400; line-height: 1; }
.agency-case-copy small { max-width: 28ch; color: rgba(255,255,255,.52); font-family: var(--sans); font-size: 9px; line-height: 1.5; font-weight: 600; text-transform: uppercase; letter-spacing: .11em; }

.agency-testimonial { padding: 132px 0; background: #a85f37; color: #fff; }
.agency-testimonial-grid { display: grid; grid-template-columns: 110px 1fr .42fr; gap: 44px; align-items: end; }
.agency-quote-mark { align-self: start; color: #ffd1a8; font-family: var(--serif); font-size: 170px; line-height: .55; opacity: .75; }
.agency-testimonial blockquote { max-width: 17ch; font-family: var(--serif); font-size: clamp(43px, 5.6vw, 78px); line-height: 1; letter-spacing: -.03em; }
.agency-cite { padding-bottom: 8px; border-top: 1px solid rgba(255,255,255,.3); padding-top: 18px; }
.agency-cite strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; }
.agency-cite span { display: block; margin-top: 6px; color: rgba(255,255,255,.62); font-size: 12px; }

.agency-engagements { padding: 140px 0; background: var(--agency-cream); }
.agency-engagement-list { border-top: 1px solid var(--agency-line); }
.agency-engagement-list article { display: grid; grid-template-columns: 150px 1.05fr 1fr .75fr; gap: 36px; align-items: start; padding: 38px 0 42px; border-bottom: 1px solid var(--agency-line); }
.agency-engagement-list article > span { color: #a25e38; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.agency-engagement-list h3 { max-width: 18ch; font-family: var(--serif); font-size: clamp(29px, 3.2vw, 43px); font-weight: 400; line-height: 1.04; }
.agency-engagement-list p { max-width: 43ch; color: #5b605d; font-size: 14px; }
.agency-engagement-list strong { color: #7e4b2e; font-size: 10px; line-height: 1.55; text-transform: uppercase; letter-spacing: .11em; }

.agency-faq { padding: 138px 0; background: var(--agency-paper); }
.agency-faq-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 10vw; align-items: start; }
.agency-faq-intro { position: sticky; top: 48px; }
.agency-faq-intro h2 { max-width: 11ch; }
.agency-faq-intro > p:last-child { max-width: 40ch; margin-top: 24px; color: #606562; font-size: 14px; }
.agency-faq-list { border-top: 1px solid var(--agency-line); }
.agency-faq-list details { border-bottom: 1px solid var(--agency-line); }
.agency-faq-list summary { position: relative; padding: 29px 48px 29px 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: clamp(25px, 2.8vw, 36px); line-height: 1.1; }
.agency-faq-list summary::-webkit-details-marker { display: none; }
.agency-faq-list summary::after { content: "+"; position: absolute; right: 0; top: 29px; color: #a85f37; font-family: var(--sans); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.agency-faq-list details[open] summary::after { transform: rotate(45deg); }
.agency-faq-list details p { max-width: 63ch; padding: 0 52px 31px 0; color: #5c615e; font-size: 14px; }

.agency-final-cta { position: relative; min-height: 86svh; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--agency-night); }
.agency-final-cta > video,
.agency-final-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.agency-final-cta > video { object-fit: cover; object-position: 54% center; opacity: .82; }
.agency-final-shade { background: linear-gradient(90deg, rgba(7,10,8,.92), rgba(7,10,8,.35)), linear-gradient(0deg, rgba(7,10,8,.86), transparent 62%); }
.agency-final-copy { position: relative; z-index: 1; padding: 100px 0 78px; }
.agency-final-copy h2 { max-width: 13ch; font-size: clamp(54px, 7vw, 98px); }
.agency-final-copy h2 em { color: var(--agency-amber-light); }
.agency-final-copy > p:not(.agency-index) { max-width: 62ch; margin-top: 28px; color: rgba(255,255,255,.67); font-size: 16px; }
.agency-footer { padding: 58px 0; background: var(--agency-night); color: #fff; }
.agency-footer .agency-shell { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 50px; }
.agency-footer .global-brand { color: #fff; }
.agency-footer .global-brand em { color: var(--agency-amber-light); }
.agency-footer p { margin-top: 12px; color: rgba(255,255,255,.43); font-size: 12px; }
.agency-footer-links,
.agency-footer-contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.agency-footer a,
.agency-footer span { color: rgba(255,255,255,.55); text-decoration: none; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }
.agency-footer a:hover { color: #fff; }

.js-ready .agency-home .reveal { opacity: 1; transform: translateY(22px); transition: transform .75s cubic-bezier(.16,1,.3,1); }
.js-ready .agency-home .reveal.in { opacity: 1; transform: none; }

@media (max-width: 960px) {
  .agency-positioning-grid,
  .agency-engine-layout,
  .agency-section-head,
  .agency-work-heading,
  .agency-faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .agency-engine-intro,
  .agency-faq-intro { position: static; }
  .agency-engine-intro h2 { max-width: 14ch; }
  .agency-engine-steps { gap: 64px; }
  .agency-service { grid-template-columns: 42px 1fr 1fr; }
  .agency-service > a { grid-column: 2 / -1; }
  .agency-service > a span { display: inline-block; margin: 0 0 0 10px; }
  .agency-work-heading .agency-index { grid-column: auto; margin-bottom: 0; }
  .agency-case-feature { min-height: 650px; }
  .agency-testimonial-grid { grid-template-columns: 75px 1fr; }
  .agency-cite { grid-column: 2; }
  .agency-engagement-list article { grid-template-columns: 120px 1fr 1fr; }
  .agency-engagement-list strong { grid-column: 2 / -1; }
}

@media (max-width: 760px) {
  .agency-shell,
  .agency-hero-copy { width: calc(100% - 40px); }
  .agency-hero-copy { padding: 48px 0 64px; }
  .agency-hero h1 { max-width: 10ch; font-size: clamp(50px, 14.5vw, 68px); }
  .agency-hero-dek { max-width: 36ch; font-size: 15px; }
  .agency-availability { max-width: 30ch; }
  .agency-scroll { display: none; }
  .agency-positioning,
  .agency-services,
  .agency-work,
  .agency-engagements,
  .agency-faq { padding: 96px 0; }
  .agency-positioning h2,
  .agency-section-head h2,
  .agency-work-heading h2,
  .agency-faq h2 { font-size: 47px; }
  .agency-positioning-copy { padding-top: 0; }
  .agency-marquee { margin-top: 72px; }
  .agency-engine { padding: 96px 0; }
  .agency-engine-intro h2 { font-size: 50px; }
  .agency-engine-media { height: 64vw; min-height: 250px; }
  .agency-engine-copy { grid-template-columns: 34px 1fr; gap: 0 14px; }
  .agency-engine-copy h3 { font-size: 34px; }
  .agency-section-head { margin-bottom: 52px; }
  .agency-service { grid-template-columns: 34px 1fr; gap: 18px; min-height: 0; padding: 34px 0 38px; }
  .agency-service > p,
  .agency-service > a { grid-column: 2; }
  .agency-service h3 { font-size: 39px; }
  .agency-case-grid { grid-template-columns: 1fr; }
  .agency-case,
  .agency-case-feature { grid-column: auto; min-height: 540px; padding: 19px; }
  .agency-case-copy h3,
  .agency-case:not(.agency-case-feature) .agency-case-copy h3 { font-size: 43px; }
  .agency-case-copy strong { align-items: flex-start; flex-direction: column; gap: 8px; }
  .agency-testimonial { padding: 92px 0; }
  .agency-testimonial-grid { grid-template-columns: 1fr; gap: 22px; }
  .agency-quote-mark { font-size: 120px; height: 62px; }
  .agency-testimonial blockquote { font-size: 45px; }
  .agency-cite { grid-column: auto; }
  .agency-engagement-list article { grid-template-columns: 1fr; gap: 16px; padding: 34px 0; }
  .agency-engagement-list strong { grid-column: auto; }
  .agency-engagement-list h3 { font-size: 35px; }
  .agency-faq-list summary { font-size: 27px; }
  .agency-final-cta { min-height: 92svh; }
  .agency-final-copy { padding: 82px 0 64px; }
  .agency-final-copy h2 { font-size: 55px; }
  .agency-footer .agency-shell { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 430px) {
  .agency-hero .global-nav-links { grid-template-columns: auto auto 1fr; }
  .agency-hero .global-nav-links > a:first-child { display: none; }
  .agency-hero .global-nav-links .global-contact { grid-column: 1 / -1; }
  .agency-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .agency-button { width: 100%; }
  .agency-case { min-height: 500px; }
}

@media (prefers-reduced-motion: reduce) {
  .agency-hero-video,
  .agency-engine-media video,
  .agency-final-cta > video { display: none; }
  .agency-hero { background: linear-gradient(90deg,rgba(8,11,10,.9),rgba(8,11,10,.35)),url('assets/corporate/expo-conversation.webp') center/cover no-repeat; }
  .agency-engine-step:nth-child(2) .agency-engine-media { background: url('assets/northeastern/hero-reel-poster.jpg') center/cover no-repeat; }
  .agency-engine-step:nth-child(3) .agency-engine-media { background: url('assets/corporate/biomedevice-excerpt.webp') center/cover no-repeat; }
  .agency-final-cta { background: linear-gradient(90deg,rgba(8,11,10,.9),rgba(8,11,10,.35)),url('assets/dragonwood/video/human-story-01-poster.jpg') 54% center/cover no-repeat; }
  .agency-marquee div,
  .agency-scroll i { animation: none; }
  .js-ready .agency-home .reveal { opacity: 1; transform: none; transition: none; }
}
