
/* Typography lock: keep every text element on Inter Tight, including Tailwind/preflight defaults and interactive UI. */
html, body, body *, body *::before, body *::after, input, textarea, select, button {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

p, li, .body-copy, .work-card p, .case-intro, .case-panel p, .capability-card p, .principle p, .modal-copy p {
  font-weight: 400;
  letter-spacing: -0.012em;
}

:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --text: #ffffff;
  --muted: #c8c8c8;
  --dim: #8a8a8a;
  --line: rgba(255,255,255,.13);
  --line-soft: rgba(255,255,255,.08);
  --accent: #ffffff;
  --radius: 18px;
  --container: 1480px;
  --gutter: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.68;
  letter-spacing: -0.012em;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

img, video, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
::selection { background: #ffffff; color: #050505; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  transform: translateY(-140%);
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(5,5,5,.72);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(16px);
}
.nav-shell {
  width: min(100% - 40px, 1560px);
  min-height: 88px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand { display: inline-flex; align-items: center; width: clamp(150px, 13vw, 212px); }
.brand img { width: 100%; height: auto; }
.nav-menu { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 44px); font-size: 15px; font-weight: 600; }
.nav-menu > a:not(.button) { color: rgba(255,255,255,.82); transition: color .2s ease; }
.nav-menu > a:not(.button):hover, .nav-menu > a:not(.button):focus-visible { color: #fff; }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .012em;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.button::after { content: "→"; margin-left: 14px; transition: transform .25s var(--ease); }
.button:hover::after, .button:focus-visible::after { transform: translateX(4px); }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button--small { min-height: 48px; padding-inline: 22px; font-size: 14px; }
.button--light { background: #fff; color: #050505; }
.button--outline { color: #fff; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.02); }
.button--outline:hover, .button--outline:focus-visible { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 clamp(70px, 8vw, 130px);
}
.hero-video-wrap, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-video-wrap { opacity: .72; overflow: hidden; }
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  height: 100vh;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}
.hero-overlay { background: linear-gradient(90deg, rgba(5,5,5,.86) 0%, rgba(5,5,5,.78) 22%, rgba(5,5,5,.48) 46%, rgba(5,5,5,.14) 72%, rgba(5,5,5,0) 100%); }
.hero-overlay::before { content: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 780px) 1fr; align-items: end; }
.eyebrow {
  color: rgba(255,255,255,.64);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 24px;
}
.hero h1, .section-heading h2, .why h2, .contact h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -.014em;
  line-height: .98;
}
.hero h1 { max-width: 900px; font-size: clamp(58px, 7vw, 108px); letter-spacing: -.008em; }
.hero h1 span, .section-heading h2 span, .why h2 span, .principle h3 span, .work-card h3 span, .contact h2 span, .accent-dot { color: var(--accent); }
.hero-intro {
  max-width: 720px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.78;
  letter-spacing: .012em;
}

.trusted { border-block: 1px solid var(--line-soft); background: #050505; }
.trusted-grid {
  min-height: 190px;
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 54px;
  align-items: center;
}
.trusted h2 { margin: 0; color: var(--muted); font-size: 18px; font-weight: 500; letter-spacing: .002em; }
.logo-row { display: grid; grid-template-columns: repeat(6, minmax(100px, 1fr)); gap: clamp(34px, 5vw, 86px); align-items: center; justify-items: center; }
.logo-row--images img { width: 100%; max-width: 210px; max-height: 66px; object-fit: contain; opacity: .36; filter: grayscale(1); transition: opacity .35s var(--ease), transform .35s var(--ease); }
.logo-row--images img:hover { opacity: .96; transform: translateY(-2px); }
.logo-row--images img[src*="milano"] { max-height: 82px; max-width: 160px; }
.logo-mark { height: 42px; opacity: .72; justify-self: center; transition: opacity .2s ease, transform .25s var(--ease); }
.logo-mark:hover { opacity: 1; transform: translateY(-2px); }
.mark-1 { width: 48px; background: linear-gradient(135deg, #eee 0 48%, transparent 48% 55%, #8d8d8d 55%); }
.mark-2 { width: 46px; border-radius: 50%; background: conic-gradient(from 0deg, #eee 0 15deg, transparent 15deg 30deg, #eee 30deg 45deg, transparent 45deg 60deg, #eee 60deg 75deg, transparent 75deg 90deg, #eee 90deg 105deg, transparent 105deg 120deg, #eee 120deg 135deg, transparent 135deg 150deg, #eee 150deg 165deg, transparent 165deg 180deg, #eee 180deg 195deg, transparent 195deg 210deg, #eee 210deg 225deg, transparent 225deg 240deg, #eee 240deg 255deg, transparent 255deg 270deg, #eee 270deg 285deg, transparent 285deg 300deg, #eee 300deg 315deg, transparent 315deg 330deg, #eee 330deg 345deg, transparent 345deg 360deg); }
.mark-3 { width: 74px; border-radius: 999px; background: radial-gradient(circle at 35% 50%, transparent 0 21px, #ddd 22px 31px, transparent 32px), radial-gradient(circle at 65% 50%, transparent 0 21px, #aaa 22px 31px, transparent 32px); }
.mark-4 { width: 60px; background: repeating-linear-gradient(90deg,#eee 0 6px, transparent 6px 12px); }
.mark-5 { width: 54px; clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%); background:#d7d7d7; }
.mark-6 { width: 72px; background: linear-gradient(#ddd 0 0) left 10px top 0/22px 22px no-repeat, linear-gradient(#ddd 0 0) center/22px 22px no-repeat, linear-gradient(#ddd 0 0) right 10px bottom 0/22px 22px no-repeat; }

.section { padding: clamp(95px, 11vw, 170px) 0; }
.section-heading { display: grid; gap: 18px; margin-bottom: 54px; }
.section-heading h2 { font-size: clamp(48px, 7vw, 104px); max-width: 930px; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.work-card {
  position: relative;
  min-height: 680px;
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
  overflow: hidden;
  isolation: isolate;
}
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
}
.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.08) 100%);
}
.work-card:hover img { transform: scale(1.035); opacity: .9; }
.work-card-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(24px, 3.2vw, 46px);
}
.work-kicker { color: rgba(255,255,255,.68); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; margin: 0 0 14px; }
.work-card h3 { margin: 0 0 16px; font-size: clamp(30px, 3vw, 48px); font-weight: 850; letter-spacing: .002em; line-height: .95; }
.work-card p:last-child { color: var(--muted); margin: 0; max-width: 420px; font-size: 18px; line-height: 1.55; }

.capabilities { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.capabilities-grid { display: grid; grid-template-columns: 1.5fr .7fr; align-items: end; gap: 70px; }
.capability-list { margin: 0; display: grid; gap: 0; font-size: clamp(48px, 7vw, 104px); line-height: 1.02; letter-spacing: .002em; font-weight: 900; }
.capability-note { align-self: end; color: var(--muted); font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important; font-size: clamp(28px, 3vw, 46px); line-height: 1.03; letter-spacing: .002em; font-weight: 900; }
.capability-note p { margin: 0; max-width: 430px; font-family: inherit !important; font-weight: inherit; letter-spacing: inherit; }
.capability-note span { font-family: inherit !important; font-weight: inherit; letter-spacing: inherit; }

.why-grid { display: grid; grid-template-columns: .9fr 1.3fr; gap: clamp(48px, 8vw, 120px); align-items: start; }
.why h2 { font-size: clamp(52px, 7vw, 105px); max-width: 580px; }
.why-intro > p:last-child { margin: 28px 0 0; color: var(--muted); max-width: 500px; font-size: 22px; line-height: 1.74; letter-spacing: .004em; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.principle { min-height: 300px; border: 1px solid var(--line-soft); padding: 34px; display: flex; flex-direction: column; justify-content: flex-end; background: #070707; }
.principle h3 { margin: 0 0 18px; font-size: clamp(28px, 2.8vw, 44px); letter-spacing: .002em; line-height: 1.08; font-weight: 850; }
.principle p { margin: 0; color: var(--muted); }

.contact {
  padding: clamp(105px, 12vw, 190px) 0;
  border-top: 1px solid var(--line-soft);
  background: #050505;
}
.contact-grid { display: grid; grid-template-columns: 1.2fr .55fr; gap: 60px; align-items: end; }
.contact h2 { font-size: clamp(56px, 8vw, 126px); max-width: 980px; }
.contact-actions { display: grid; gap: 24px; justify-items: start; }
.email-link { color: var(--muted); font-weight: 800; letter-spacing: -0.01em; transition: color .2s ease; }
.email-link:hover, .email-link:focus-visible { color: #fff; }

.site-footer { border-top: 1px solid var(--line-soft); padding: 34px 0; color: var(--dim); }
.footer-grid { display: grid; grid-template-columns: 220px 1fr auto; gap: 34px; align-items: start; }
.footer-brand { width: 160px; opacity: .92; }
.site-footer p { margin: 0; font-size: 14px; }
.footer-copy { display: grid; gap: 10px; max-width: 780px; }
.legal-disclaimer { color: rgba(255,255,255,.45); font-size: 12px !important; line-height: 1.55; }
.footer-links { display: flex; gap: 28px; font-size: 14px; }
.footer-links a { transition: color .2s ease; }
.footer-links a:hover { color: #fff; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-video-wrap { display: none; }
}

@media (max-width: 1040px) {
  .hero-grid, .capabilities-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 560px; }
  .principles { grid-template-columns: 1fr; }
  .trusted-grid { grid-template-columns: 1fr; padding-block: 34px; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-copy { max-width: none; }
}

@media (max-width: 760px) {
  .nav-shell { min-height: 74px; width: min(100% - 28px, 1560px); }
  .brand { width: 162px; }
  .nav-toggle {
    display: inline-grid;
    gap: 6px;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(0,0,0,.25);
    color: #fff;
  }
  .nav-toggle span:not(.sr-only) { width: 17px; height: 1.5px; background: #fff; display: block; transition: transform .25s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .nav-menu {
    position: fixed;
    inset: 74px 14px auto 14px;
    border: 1px solid var(--line-soft);
    border-radius: 22px;
    background: rgba(5,5,5,.96);
    backdrop-filter: blur(20px);
    display: grid;
    gap: 0;
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu a { padding: 14px 12px; }
  .nav-menu .button { margin-top: 8px; }
  .hero { padding-top: 128px; min-height: 880px; }
  .hero h1 { font-size: clamp(56px, 16vw, 84px); }
  .button-row { display: grid; }
  .button { width: 100%; }
  .section { padding-block: 86px; }
  .work-card { min-height: 500px; }
  .principle { min-height: 230px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .container { width: min(100% - 32px, var(--container)); }
  .hero h1 { letter-spacing: .002em; }
  .work-card-copy, .principle { padding: 24px; }
}

/* Build 6 refinements */
.logo-row--images .logo-wef { max-width: 250px; max-height: 94px; }
.logo-row--images .logo-royal { max-width: 260px; max-height: 92px; }
.logo-row--images .logo-bbc { max-width: 190px; max-height: 58px; transform: translateY(8px); }
.logo-row--images .logo-cortina { max-height: 82px; max-width: 160px; }
.logo-row--images .logo-dow { max-width: 230px; }
.logo-row--images .logo-unilever { max-width: 130px; max-height: 86px; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
}
.text-link::after { content: "→"; transition: transform .25s var(--ease); }
.text-link:hover::after, .text-link:focus-visible::after { transform: translateX(5px); }

.project-modal {
  width: min(1180px, calc(100vw - 32px));
  max-height: min(900px, calc(100svh - 32px));
  padding: 0;
  border: 1px solid var(--line-soft);
  background: #050505;
  color: #fff;
  overflow: auto;
}
.project-modal::backdrop { background: rgba(0,0,0,.78); backdrop-filter: blur(10px); }
.modal-panel { position: relative; }
.modal-close {
  position: sticky;
  top: 18px;
  float: right;
  z-index: 10;
  width: 46px;
  height: 46px;
  margin: 18px 18px -64px 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(5,5,5,.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover, .modal-close:focus-visible { background: #fff; color: #050505; }
.modal-hero { min-height: 420px; background: #0a0a0a; }
.modal-hero > img { width: 100%; height: min(68svh, 620px); object-fit: cover; }
.modal-hero--gallery {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-soft);
}
.modal-hero--gallery img { width: 100%; height: 100%; min-height: 0; object-fit: cover; }
.modal-hero--gallery img:first-child { grid-row: span 2; }
.modal-content {
  padding: clamp(30px, 5vw, 70px);
  display: grid;
  gap: 32px;
}
.modal-content h2 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: .98;
  letter-spacing: .002em;
  font-weight: 900;
}
.modal-lede {
  margin: 0;
  max-width: 840px;
  color: var(--muted);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.45;
}
.modal-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  padding-top: 32px;
}
.modal-details > div { border: 1px solid var(--line-soft); padding: 28px; background: #070707; }
.modal-details h3 { margin: 0 0 12px; font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -0.01em; }
.modal-details p { margin: 0; color: var(--muted); line-height: 1.65; }
.contact h2 { max-width: 1160px; }

@media (max-width: 760px) {
  .modal-hero--gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .modal-hero--gallery img:first-child { grid-row: auto; }
  .modal-details { grid-template-columns: 1fr; }
  .modal-hero > img { height: 400px; }
}

/* Build 7 case-study depth */
.modal-content--story { gap: 38px; }
.modal-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  border-top: 1px solid var(--line-soft);
  padding-top: 34px;
}
.modal-story p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.68;
  letter-spacing: -0.012em;
}
.modal-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.modal-stats div {
  background: #070707;
  min-height: 142px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.modal-stats strong {
  display: block;
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: .95;
  letter-spacing: .002em;
  font-weight: 900;
}
.modal-stats span {
  margin-top: 10px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.modal-gallery--editorial {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 8px;
}
.modal-gallery--editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b0b0b;
}
.modal-gallery--editorial .span-2 {
  grid-column: span 2;
  grid-row: span 2;
}
.project-modal { width: min(1320px, calc(100vw - 32px)); }
.modal-hero > img { height: min(70svh, 700px); }

@media (max-width: 900px) {
  .modal-story { grid-template-columns: 1fr; }
  .modal-stats { grid-template-columns: repeat(2, 1fr); }
  .modal-gallery--editorial { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .modal-gallery--editorial img,
  .modal-gallery--editorial .span-2 { grid-column: auto; grid-row: auto; height: auto; aspect-ratio: 16 / 10; }
}

/* Build 9 additions */
.production-strip {
  padding-top: clamp(72px, 10vw, 150px);
  padding-bottom: clamp(72px, 10vw, 150px);
  background: #050505;
}
.production-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 8px;
  margin-top: clamp(28px, 5vw, 72px);
}
.production-grid img {
  width: 100%;
  height: clamp(290px, 34vw, 560px);
  object-fit: cover;
  background: #0b0b0b;
}
.production-grid img:nth-child(2) { margin-top: clamp(24px, 5vw, 80px); }
.production-grid img:nth-child(3) { margin-top: clamp(8px, 2vw, 32px); }

.logo-wef,
.logo-royal { transform: scale(1.18); }
.logo-bbc { transform: translateY(8px) scale(.94); }

@media (max-width: 900px) {
  .production-grid { grid-template-columns: 1fr; }
  .production-grid img,
  .production-grid img:nth-child(2),
  .production-grid img:nth-child(3) { margin-top: 0; height: auto; aspect-ratio: 16 / 10; }
  .logo-wef,
  .logo-royal,
  .logo-bbc { transform: none; }
}

/* Build 10 refinements */
.modal-hero--contain img,
.modal-gallery--contain img {
  object-fit: contain !important;
  background: #050505;
}
.modal-gallery--editorial img {
  object-position: center;
}
.production-grid img {
  filter: saturate(.9) contrast(1.06) brightness(.92);
}

/* Build 11: final gallery cleanup — no empty grid holes */
.modal-gallery--masonry {
  display: block !important;
  column-count: 3;
  column-gap: 8px;
  background: transparent;
}
.modal-gallery--masonry img,
.modal-gallery--masonry .span-2 {
  display: block;
  width: 100%;
  height: auto !important;
  aspect-ratio: auto !important;
  margin: 0 0 8px;
  break-inside: avoid;
  object-fit: contain;
  background: #050505;
  grid-column: auto !important;
  grid-row: auto !important;
}
.modal-gallery--masonry:not(.modal-gallery--wef) img {
  object-fit: cover;
  background: #0b0b0b;
}
.modal-gallery--wef img {
  object-fit: contain !important;
  background: #050505;
}

.work-card img,
.modal-gallery--masonry img,
.modal-hero img {
  filter: saturate(.92) contrast(1.04) brightness(.95);
}
.production-grid img {
  filter: saturate(.88) contrast(1.08) brightness(.9);
}

@media (max-width: 900px) {
  .modal-gallery--masonry { column-count: 2; }
}
@media (max-width: 620px) {
  .modal-gallery--masonry { column-count: 1; }
}

/* Build 12: clean fixed grids for Royal Society and WEF */
.modal-gallery--clean-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  column-count: initial !important;
}
.modal-gallery--clean-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto !important;
  object-fit: cover !important;
  display: block;
  background: #0b0b0b;
  cursor: zoom-in;
  margin: 0 !important;
}
.modal-gallery--contain-grid img {
  object-fit: cover !important;
  background: #050505;
}
.image-lightbox {
  width: min(1480px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  background: #050505;
  color: #fff;
}
.image-lightbox::backdrop {
  background: rgba(0,0,0,.86);
}
.image-lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100svh - 32px);
  object-fit: contain;
  background: #050505;
}
.image-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 3;
}
@media (max-width: 900px) {
  .modal-gallery--clean-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .modal-gallery--clean-grid { grid-template-columns: 1fr; }
}

/* Build 13: mobile hero video, footer family link and final contact refinements */
.hero-video--mobile { display: none; }
.hero-video--desktop { display: block; }

.footer-family {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  color: rgba(255,255,255,.48);
}
.footer-family p {
  font-size: 13px;
  color: rgba(255,255,255,.42);
}
.footer-family a {
  font-size: 13px;
  color: rgba(255,255,255,.68);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer-family a:hover,
.footer-family a:focus-visible {
  color: #fff;
}

@media (max-width: 767px) {
  .hero-video--desktop { display: none; }
  .hero-video--mobile { display: block; }
  .hero-video {
    width: 100vw;
    height: 177.78vw;
    min-width: 100%;
    min-height: 100%;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(5,5,5,.84) 0%, rgba(5,5,5,.58) 48%, rgba(5,5,5,.28) 100%);
  }
}

/* Build 16: single full-screen production image behind capabilities */
.capabilities--image {
  position: relative;
  overflow: hidden;
  min-height: clamp(760px, 92svh, 1080px);
  display: flex;
  align-items: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #050505;
}
.capabilities--image .container { position: relative; z-index: 2; }
.capabilities-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.capabilities-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.9) contrast(1.08) brightness(.72);
  transform: scale(1.01);
}
.capabilities--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 50%, rgba(0,0,0,.16) 0%, rgba(0,0,0,.72) 58%, rgba(0,0,0,.9) 100%),
    linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.66) 42%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.06) 45%, rgba(0,0,0,.78) 100%);
}
.capabilities--image .capability-list {
  text-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.capabilities--image .capability-note {
  color: rgba(255,255,255,.78);
  text-shadow: 0 16px 50px rgba(0,0,0,.65);
}

@media (max-width: 900px) {
  .capabilities--image {
    min-height: 760px;
    align-items: end;
  }
  .capabilities-bg img { object-position: 52% center; }
  .capabilities--image::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.45) 34%, rgba(0,0,0,.9) 100%),
      linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.28));
  }
}

/* Build 17: production-room image behind final contact section */
.capabilities-bg img {
  filter: saturate(.98) contrast(1.06) brightness(.86);
  transform: scale(1.005);
}
.capabilities--image::after {
  background:
    radial-gradient(circle at 72% 50%, rgba(0,0,0,.08) 0%, rgba(0,0,0,.48) 58%, rgba(0,0,0,.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.54) 40%, rgba(0,0,0,.18) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.02) 45%, rgba(0,0,0,.70) 100%);
}
.contact--image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(780px, 92svh, 1080px);
  display: flex;
  align-items: center;
  background: #050505;
}
.contact--image .container { position: relative; z-index: 2; }
.contact-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.contact-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.08) brightness(.78);
  transform: scale(1.01);
}
.contact--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.66) 38%, rgba(0,0,0,.28) 68%, rgba(0,0,0,.14) 100%),
    linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.08) 45%, rgba(0,0,0,.82) 100%);
}
.contact--image h2,
.contact--image .eyebrow,
.contact--image .contact-actions {
  text-shadow: 0 18px 70px rgba(0,0,0,.75);
}
@media (max-width: 900px) {
  .contact--image {
    min-height: 760px;
    align-items: end;
  }
  .contact-bg img { object-position: 58% center; }
  .contact--image::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.58) 45%, rgba(0,0,0,.92) 100%);
  }
}

/* Build 18: mobile modal fit, lighter overlays and calmer interaction polish */
.hero-video-wrap { opacity: .82; }
.hero-overlay { background: linear-gradient(90deg, rgba(5,5,5,.72) 0%, rgba(5,5,5,.58) 24%, rgba(5,5,5,.34) 50%, rgba(5,5,5,.10) 76%, rgba(5,5,5,0) 100%); }

.capabilities-bg img { filter: saturate(1) contrast(1.05) brightness(.94); }
.capabilities--image::after {
  background:
    radial-gradient(circle at 72% 50%, rgba(0,0,0,.04) 0%, rgba(0,0,0,.34) 58%, rgba(0,0,0,.68) 100%),
    linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.42) 40%, rgba(0,0,0,.12) 100%),
    linear-gradient(180deg, rgba(0,0,0,.20) 0%, rgba(0,0,0,0) 45%, rgba(0,0,0,.58) 100%);
}

.contact-bg img { filter: saturate(1) contrast(1.05) brightness(.88); }
.contact--image::after {
  background:
    linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.48) 38%, rgba(0,0,0,.18) 68%, rgba(0,0,0,.08) 100%),
    linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.04) 45%, rgba(0,0,0,.68) 100%);
}

.why--image {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #050505;
}
.why--image .container { position: relative; z-index: 2; }
.why-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.96) contrast(1.05) brightness(.62);
  transform: scale(1.01);
}
.why--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.58) 44%, rgba(0,0,0,.32) 100%),
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.10) 48%, rgba(0,0,0,.72) 100%);
}
.principle {
  transition: transform .28s var(--ease), border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease);
}
.principle:hover,
.principle:focus-within {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.principle:hover h3,
.principle:focus-within h3 { color: #fff; }
.principle:hover h3 span,
.principle:focus-within h3 span { color: var(--accent); }

@media (max-width: 767px) {
  .hero-video-wrap { opacity: .88; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(5,5,5,.58) 0%, rgba(5,5,5,.36) 45%, rgba(5,5,5,.22) 100%);
  }
  .hero-copy {
    text-shadow: 0 18px 70px rgba(0,0,0,.82);
  }

  .project-modal {
    width: 100vw;
    max-width: 100vw;
    max-height: 100svh;
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow-x: hidden;
  }
  .modal-panel {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .modal-content {
    padding: 72px 20px 32px;
    gap: 24px;
  }
  .modal-content h2 {
    font-size: clamp(42px, 16vw, 64px);
    overflow-wrap: anywhere;
  }
  .modal-lede {
    font-size: 20px;
    line-height: 1.45;
  }
  .modal-story p {
    font-size: 17px;
    line-height: 1.6;
  }
  .modal-stats {
    grid-template-columns: 1fr;
  }
  .modal-stats div {
    min-height: 104px;
    padding: 20px;
  }
  .modal-details > div {
    padding: 22px;
  }
  .modal-gallery--clean-grid {
    gap: 10px;
  }
  .modal-gallery--clean-grid img {
    aspect-ratio: 16 / 10;
  }
  .modal-close {
    top: 14px;
    right: 14px;
  }

  .capabilities--image::after {
    background:
      linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.34) 34%, rgba(0,0,0,.76) 100%),
      linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.16));
  }
  .contact--image::after {
    background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.36) 45%, rgba(0,0,0,.78) 100%);
  }
  .why-bg img { object-position: 55% center; filter: saturate(.95) contrast(1.04) brightness(.54); }
  .why--image::after {
    background: linear-gradient(180deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.46) 45%, rgba(0,0,0,.86) 100%);
  }
  .principle:hover,
  .principle:focus-within {
    transform: translateY(-3px) scale(1.008);
  }
}

/* Build 21: refined branded full-stop cursor */
@media (hover: hover) and (pointer: fine) {
  html, body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='5.5' fill='%23ffffff' opacity='.95'/%3E%3C/svg%3E") 12 12, auto;
  }
  a, button, [role="button"], .work-card, [data-lightbox], .capability-list span, .capability-note span, .principle {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='7' fill='%23ffffff' opacity='.98'/%3E%3C/svg%3E") 14 14, pointer;
  }
}

.capability-list span {
  position: relative;
  width: fit-content;
  max-width: 100%;
  border-radius: .08em;
  transition: transform .28s var(--ease), color .28s ease, text-shadow .28s ease, opacity .28s ease;
}
.capability-list span::before {
  content: "";
  position: absolute;
  left: -.06em;
  right: -.08em;
  bottom: .07em;
  height: .18em;
  z-index: -1;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: .92;
  transition: transform .3s var(--ease);
}
.capability-list span:hover,
.capability-list span:focus-visible {
  color: #fff;
  transform: translateX(.08em) scale(1.015);
  text-shadow: 0 18px 50px rgba(255,255,255,.10), 0 20px 60px rgba(0,0,0,.7);
}
.capability-list span:hover::before,
.capability-list span:focus-visible::before {
  transform: scaleX(1);
}
.capability-note p {
  display: flex;
  flex-wrap: wrap;
  gap: .28em .38em;
}
.capability-note span {
  display: inline-block;
  border-radius: 999px;
  padding: .08em .22em;
  margin: -.08em -.22em;
  transition: transform .24s var(--ease), color .24s ease, background-color .24s ease, box-shadow .24s ease;
}
.capability-note span:hover,
.capability-note span:focus-visible {
  color: #fff;
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 18px 50px rgba(255,255,255,.08);
  transform: translateY(-2px) scale(1.035);
}


/* Build 20: subtler hover states */
.work-card img {
  filter: saturate(.86) brightness(.74);
  opacity: .82;
  transition: transform .8s var(--ease), opacity .8s var(--ease), filter .8s var(--ease);
}
.work-card:hover img,
.work-card:focus-within img {
  transform: scale(1.035);
  opacity: 1;
  filter: saturate(1.05) brightness(1);
}

.capability-list span::before { display: none; }
.capability-list span {
  color: rgba(255,255,255,.58);
  text-shadow: none;
}
.capability-list span:hover,
.capability-list span:focus-visible {
  color: #fff;
  transform: translateX(.05em) scale(1.012);
  text-shadow: 0 14px 44px rgba(255,255,255,.10), 0 20px 60px rgba(0,0,0,.55);
}

.capability-note p {
  display: flex;
  flex-wrap: wrap;
  gap: .28em .38em;
}
.capability-note span {
  display: inline-block;
  color: rgba(255,255,255,.62);
  border-radius: 999px;
  padding: .05em .16em;
  margin: -.05em -.16em;
  transition: transform .24s var(--ease), color .24s ease, opacity .24s ease;
}
.capability-note span:hover,
.capability-note span:focus-visible {
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px) scale(1.025);
}

/* Footer documentary signpost */
.footer-family {
  align-items: center;
  gap: 12px 18px;
}
.pictures-logo-link {
  display: inline-flex;
  align-items: center;
  opacity: .66;
  transform: translateY(0);
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.pictures-logo-link:hover,
.pictures-logo-link:focus-visible {
  opacity: 1;
  transform: translateY(-2px);
}
.pictures-logo-link img {
  display: block;
  width: 138px;
  height: auto;
  object-fit: contain;
}
@media (max-width: 620px) {
  .footer-family {
    align-items: flex-start;
    flex-direction: column;
  }
  .pictures-logo-link img {
    width: 128px;
  }
}

/* Build 25: mobile/touch equivalents for desktop hover states */
.logo-row--images img.is-touch-active,
.logo-row--images img:active {
  opacity: .96;
  transform: translateY(-2px);
}
.logo-mark.is-touch-active,
.logo-mark:active {
  opacity: 1;
  transform: translateY(-2px);
}
.button.is-touch-active::after,
.button:active::after { transform: translateX(4px); }
.button.is-touch-active,
.button:active { transform: translateY(-2px); }
.button--outline.is-touch-active,
.button--outline:active { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }
.work-card.is-touch-active img,
.work-card:active img {
  transform: scale(1.035);
  opacity: 1;
  filter: saturate(1.05) brightness(1);
}
.text-link.is-touch-active::after,
.text-link:active::after { transform: translateX(5px); }
.email-link.is-touch-active,
.email-link:active,
.footer-links a.is-touch-active,
.footer-links a:active { color: #fff; }
.principle.is-touch-active,
.principle:active {
  transform: translateY(-3px) scale(1.008);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.principle.is-touch-active h3,
.principle:active h3 { color: #fff; }
.principle.is-touch-active h3 span,
.principle:active h3 span { color: var(--accent); }
.capability-list span.is-touch-active,
.capability-list span:active {
  color: #fff;
  transform: translateX(.05em) scale(1.012);
  text-shadow: 0 14px 44px rgba(255,255,255,.10), 0 20px 60px rgba(0,0,0,.55);
}
.capability-note span.is-touch-active,
.capability-note span:active {
  color: #fff;
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px) scale(1.025);
}
.pictures-logo-link.is-touch-active,
.pictures-logo-link:active {
  opacity: 1;
  transform: translateY(-2px);
}
.modal-gallery img.is-touch-active,
.modal-gallery img:active,
[data-lightbox].is-touch-active,
[data-lightbox]:active {
  filter: saturate(1.03) brightness(1);
  opacity: 1;
  transform: scale(1.01);
}

/* Build 28: six-case-study grid and Enterprise case study refinements */
.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.work-card--placeholder {
  display: flex;
  align-items: flex-end;
  border-style: dashed;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,.09), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
}
.work-card--placeholder::after {
  background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.42));
}
.work-card--placeholder::before {
  content: "+";
  position: absolute;
  top: clamp(24px, 3vw, 44px);
  left: clamp(24px, 3vw, 44px);
  z-index: 2;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 1;
  font-weight: 400;
  color: rgba(255,255,255,.42);
}
.work-card--placeholder img { display: none; }
.modal-content--financial,
.modal-content--financial p,
.modal-content--financial li,
.modal-content--financial h2,
.modal-content--financial h3,
.modal-content--financial span,
.modal-content--financial strong {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.modal-content--financial {
  gap: 26px;
}
.modal-content--financial .modal-lede {
  margin-bottom: 0;
}
.modal-story--compact {
  grid-template-columns: 1fr;
  gap: 12px;
  padding-top: 24px;
}
.modal-story--compact p {
  margin: 0;
  max-width: 920px;
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.modal-content--financial .modal-details h3,
.modal-content--financial .modal-details p {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
@media (max-width: 1180px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; }
  .modal-content--financial { gap: 22px; }
  .modal-story--compact { gap: 10px; padding-top: 18px; }
}


/* Build 30: Financial case study final copy, typography and 2x2 image grid */
.modal-content--financial .modal-lede,
.modal-content--financial .modal-story p,
.modal-content--financial .modal-details p {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}
.modal-content--financial .modal-lede {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 800;
}
.modal-content--financial .modal-story {
  max-width: 980px;
}
.modal-content--financial .modal-story p {
  max-width: 880px;
  color: rgba(255,255,255,.76);
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.54;
  letter-spacing: -0.018em;
  font-weight: 500;
}
.modal-gallery--financial-four,
.modal-gallery--financial-six {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  background: #050505;
  border: 1px solid var(--line-soft);
}
.modal-gallery--financial-four img,
.modal-gallery--financial-six img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  border: 1px solid rgba(255,255,255,.06);
}
.modal-details--financial {
  grid-template-columns: 1fr 1fr;
}
.modal-details--financial > div {
  min-height: 260px;
}
.modal-details--financial h3 {
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  font-weight: 900;
}
.modal-details--financial p {
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.58;
  letter-spacing: -0.012em;
  font-weight: 500;
}

@media (max-width: 980px) and (min-width: 761px) {
  .modal-gallery--financial-six { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 760px) {
  .modal-gallery--financial-four, .modal-gallery--financial-six { grid-template-columns: 1fr !important; }
  .modal-content--financial .modal-lede { font-size: 25px; }
  .modal-content--financial .modal-story p { font-size: 18px; }
  .modal-details--financial { grid-template-columns: 1fr; }
}

/* Build 31: Keep PTZ lens visible in the financial case study 2x2 crop */
.modal-gallery--financial-four img:nth-child(3),
.modal-gallery--financial-six img:nth-child(3) {
  object-position: 50% 12% !important;
}

/* Build 32: global case study Inter Tight body audit and C40 case study */
.modal-content--story,
.modal-content--story p,
.modal-content--story li,
.modal-content--story h2,
.modal-content--story h3,
.modal-content--story span,
.modal-content--story strong,
.work-card-copy,
.work-card-copy p,
.work-card-copy h3,
.work-card-copy span {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}

.modal-content--story:not(.modal-content--financial) .modal-lede {
  max-width: 760px;
  color: rgba(255,255,255,.86);
  font-size: clamp(26px, 2.5vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.018em;
  font-weight: 800;
}

.modal-content--story:not(.modal-content--financial) .modal-story p {
  color: rgba(255,255,255,.76);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.58;
  letter-spacing: -0.016em;
  font-weight: 500;
}

.modal-content--story:not(.modal-content--financial) .modal-details p {
  color: rgba(255,255,255,.70);
  font-size: clamp(16px, 1.08vw, 19px);
  line-height: 1.6;
  letter-spacing: -0.012em;
  font-weight: 500;
}

.modal-content--story:not(.modal-content--financial) .modal-details h3 {
  letter-spacing: -0.016em;
  font-weight: 900;
}

.work-card-copy p {
  letter-spacing: -0.012em;
  line-height: 1.58;
}

.modal-content--financial .modal-story p:nth-child(2) {
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

/* Build 34: final case study typography lock */
.project-modal,
.project-modal *,
.work-grid,
.work-grid *,
.work-card,
.work-card *,
.modal-content,
.modal-content *,
.modal-gallery,
.modal-gallery * {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.modal-lede,
.modal-story p,
.modal-details p,
.work-card p,
.case-intro,
.case-panel p {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-optical-sizing: auto;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: geometricPrecision;
}

/* Build 36: Unilever gallery - closed 3x3 grid */
.modal-gallery--unilever-nine {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px !important;
  align-items: stretch;
}
.modal-gallery--unilever-nine img {
  width: 100%;
  height: 100% !important;
  aspect-ratio: 16 / 10;
  object-fit: cover !important;
  display: block;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .modal-gallery--unilever-nine { grid-template-columns: 1fr !important; }
}

/* v38 nav typography lock: force primary navigation to Inter Tight at full weight. */
.site-header .nav-shell,
.site-header .nav-menu,
.site-header .nav-menu a,
.site-header .nav-menu .button,
.site-header .nav-toggle,
.site-header .nav-toggle span,
.site-header [data-nav-menu],
.site-header [data-nav-menu] a,
.site-header [data-nav-menu] .button {
  font-family: "Inter Tight", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -0.004em !important;
  font-synthesis: none;
}

.site-header .nav-menu > a:not(.button),
.site-header [data-nav-menu] > a:not(.button) {
  font-size: 15px;
  line-height: 1;
}

.site-header .nav-menu .button,
.site-header [data-nav-menu] .button {
  font-size: 14px;
  line-height: 1;
}


/* v39: C40 duplicate image removal and financial mobile heading wrap fix */
.modal-content--financial h2 {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}
@media (max-width: 760px) {
  .modal-content--financial h2 {
    font-size: clamp(38px, 13vw, 56px) !important;
    line-height: .96 !important;
    letter-spacing: -0.03em !important;
  }
}

/* v40: scroll-triggered hover states with subtle fade on/off for desktop and mobile */
.work-card.is-scroll-active img {
  transform: scale(1.035);
  opacity: 1;
  filter: saturate(1.05) brightness(1);
}

.capability-list span,
.capability-note span,
.principle,
.work-card img {
  will-change: transform, opacity, filter, background-color, box-shadow;
}

.capability-list span.is-scroll-active {
  color: #fff;
  transform: translateX(.08em) scale(1.015);
  text-shadow: 0 18px 50px rgba(255,255,255,.10), 0 20px 60px rgba(0,0,0,.7);
}
.capability-list span.is-scroll-active::before {
  transform: scaleX(1);
}

.capability-note span.is-scroll-active {
  color: #fff;
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 18px 50px rgba(255,255,255,.08);
  transform: translateY(-2px) scale(1.035);
}

.principle.is-scroll-active {
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.34);
}
.principle.is-scroll-active h3 { color: #fff; }
.principle.is-scroll-active h3 span { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .work-card.is-scroll-active img,
  .capability-list span.is-scroll-active,
  .capability-note span.is-scroll-active,
  .principle.is-scroll-active {
    transition-duration: .01ms !important;
  }
}


/* Build 43: correct swapped hero images and keep Unilever panel subject visible */
.work-card img[src*="assets/work/unilever.webp"],
.work-card img[src$="unilever.jpg"] {
  object-position: 70% center !important;
}

@media (max-width: 760px) {
  .work-card img[src*="assets/work/unilever.webp"],
  .work-card img[src$="unilever.jpg"] {
    object-position: 78% center !important;
  }
}

/* v44: WEF gallery expanded to a closed 3x3 grid */
.modal-gallery--wef-nine {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px !important;
  column-count: initial !important;
}
.modal-gallery--wef-nine img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto !important;
  object-fit: cover !important;
  display: block;
  margin: 0 !important;
}
@media (max-width: 760px) {
  .modal-gallery--wef-nine { grid-template-columns: 1fr !important; }
}

/* v46: Unilever gallery display fix — closed responsive grid */
#unilever-modal .modal-gallery--unilever-nine {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  align-items: stretch !important;
  grid-auto-flow: row dense;
}
#unilever-modal .modal-gallery--unilever-nine img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  object-position: center center !important;
  margin: 0 !important;
  grid-column: auto !important;
  grid-row: auto !important;
}
@media (max-width: 980px) {
  #unilever-modal .modal-gallery--unilever-nine {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 640px) {
  #unilever-modal .modal-gallery--unilever-nine {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  #unilever-modal .modal-gallery--unilever-nine img {
    aspect-ratio: 16 / 10 !important;
  }
}


/* v48: optical logo alignment in the navigation bar */
.site-header .brand {
  align-items: center;
}

.site-header .brand img {
  display: block;
  transform: translateY(3px);
}

@media (max-width: 760px) {
  .site-header .brand img {
    transform: translateY(2px);
  }
}


/* v50 production optimisation */
img { max-width: 100%; height: auto; }
.work-card img, .modal-gallery img, .capabilities-bg img, .why-bg img { height: 100%; }
section, footer { content-visibility: auto; contain-intrinsic-size: 900px; }
.hero, .site-header { content-visibility: visible; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .hero-video-wrap { display: none; }
  .hero { background: #050505 url("assets/hero-poster.svg") center/cover no-repeat; }
}
