:root {
  --red: #a40008;
  --red-bright: #d00012;
  --ink: #0a0b0d;
  --charcoal: #161a1e;
  --steel: #253038;
  --muted: #68707a;
  --line: #e7e2e2;
  --paper: #ffffff;
  --soft: #f7f4f4;
  --shadow: 0 28px 70px rgba(10, 11, 13, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body::selection {
  color: #fff;
  background: var(--red);
}

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

img {
  max-width: 100%;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.preloader span {
  position: relative;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.preloader span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 100%;
  height: 5px;
  background: var(--red);
  transform-origin: left;
  animation: loaderBar 900ms ease infinite alternate;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 4px;
  background: var(--red-bright);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  color: #fff;
  background: rgba(10, 11, 13, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, background 220ms ease;
}

.header-contact {
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: var(--red-bright);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(208, 0, 18, 0.32);
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(10, 11, 13, 0.95);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  border-radius: 50% 50% 50% 12%;
  box-shadow: 0 16px 30px rgba(164, 0, 8, 0.3);
}

.brand-logo-wrap {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 1.02rem;
}

.brand small {
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffc7cb;
}

.nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 25px);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.86;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav a:hover {
  color: #fff;
  opacity: 1;
}

.nav-group {
  position: relative;
  padding: 16px 0;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 290px;
  padding: 12px;
  background: rgba(10, 11, 13, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown a {
  display: block;
  padding: 12px;
  border-radius: 4px;
}

.nav-dropdown a:hover {
  background: rgba(164, 0, 8, 0.28);
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-cta {
  display: none;
  padding: 13px 16px;
  color: #fff;
  background: var(--red);
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(164, 0, 8, 0.28);
}

.menu-toggle {
  order: 4;
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-content: center;
  padding: 132px clamp(20px, 6vw, 88px) 56px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(10, 11, 13, 0.82), rgba(10, 11, 13, 0.48) 46%, rgba(10, 11, 13, 0.92)),
    var(--ink);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
  opacity: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.72;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}

.hero-meta {
  position: absolute;
  top: 116px;
  left: clamp(20px, 6vw, 88px);
  right: clamp(20px, 6vw, 88px);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(310px, 0.48fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 560px;
}

.hero-centered {
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  min-height: 0;
}

.hero-copy-block {
  max-width: 930px;
}

.hero-centered .hero-copy-block {
  max-width: 1060px;
  margin-inline: auto;
  text-align: center;
}

.hero-centered .hero-copy-block h1 {
  margin-inline: auto;
  max-width: 980px;
  text-wrap: balance;
}

.hero-filmstrip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1080px;
  margin: 42px auto 0;
}

.hero-filmstrip article {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
}

.hero-filmstrip img {
  width: 100%;
  height: 100%;
  min-height: 128px;
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(0.85) contrast(1.1);
  transition: transform 700ms ease, opacity 220ms ease;
}

.hero-filmstrip article:hover img {
  opacity: 0.92;
  transform: scale(1.08);
}

.hero-filmstrip span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}

.hero .eyebrow {
  color: #ffd0d3;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.6vw, 7.9rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-dot {
  color: var(--red-bright);
}

.hero-copy-block p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 30px;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.hero-centered .hero-copy-block p:not(.eyebrow) {
  margin-inline: auto;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-centered .hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  border-radius: 4px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 36px rgba(164, 0, 8, 0.32);
}

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
}

.text-link::after {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(6px);
}

.hero-outline {
  min-width: 220px;
  min-height: 62px;
  padding-inline: 34px;
  font-size: 1.05rem;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(10, 11, 13, 0.18);
  backdrop-filter: blur(10px);
}

.hero-poster {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.hero-poster img {
  display: block;
  width: 100%;
  height: min(68vh, 640px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.hero-poster span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  background: rgba(10, 11, 13, 0.72);
  border-left: 4px solid var(--red);
  backdrop-filter: blur(16px);
}

.hero-stats {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1040px;
  margin: 54px auto 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-stats article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-stats strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.9rem;
  font-weight: 900;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.78);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 4vw, 56px);
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.scroll-cue::after {
  content: "";
  width: 42px;
  height: 1px;
  background: currentColor;
}

.marquee {
  overflow: hidden;
  color: #fff;
  background: var(--red);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 20px 38px;
  font-size: clamp(1.2rem, 2.6vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  color: #fff;
  background: var(--ink);
}

.manifesto-copy h2,
.selected-heading h2,
.capability-lead h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 6.4vw, 7.2rem);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
}

.manifesto .section-kicker,
.capability-index .section-kicker {
  color: #ffc7cb;
}

.manifesto-notes {
  display: grid;
  gap: 18px;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.manifesto-notes p {
  margin: 0;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.selected-work {
  background: #fff;
}

.selected-heading {
  max-width: 1050px;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.work-cases {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  grid-auto-rows: minmax(310px, auto);
  gap: 18px;
}

.work-case {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(10, 11, 13, 0.16);
}

.work-case.large {
  grid-row: span 2;
  min-height: 740px;
}

.work-case::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10, 11, 13, 0.88), rgba(10, 11, 13, 0.2) 56%, rgba(10, 11, 13, 0.36));
}

.work-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  filter: saturate(0.86) contrast(1.08);
  transition: transform 800ms ease, opacity 220ms ease;
}

.work-case:hover img {
  opacity: 1;
  transform: scale(1.065);
}

.work-case div {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 2;
}

.work-case span {
  display: block;
  margin-bottom: 12px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc7cb;
}

.work-case h3 {
  max-width: 720px;
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 3.5vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.work-case p {
  max-width: 620px;
  margin: 0;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.76);
}

.capability-index {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  color: #fff;
  background: var(--charcoal);
}

.capability-lead {
  position: sticky;
  top: 120px;
  align-self: start;
}

.capability-rows {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-rows article {
  display: grid;
  grid-template-columns: 72px minmax(160px, 0.48fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: transform 220ms ease, color 220ms ease;
}

.capability-rows article:hover {
  transform: translateX(10px);
}

.capability-rows span {
  font-size: 0.82rem;
  font-weight: 900;
  color: #ffc7cb;
}

.capability-rows h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 3.1rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.capability-rows p {
  margin: 0;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(70px, 9vw, 122px) clamp(20px, 6vw, 88px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.split h2,
.section-heading h2,
.ecosystem-copy h2,
.feature-copy h2,
.advantage-copy h2,
.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.5vw, 4.45rem);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.prose p,
.section-heading p,
.impact-grid p,
.ecosystem-list span,
.film-strip p,
.feature-copy p,
.polish-grid p,
.studio-list p,
.process-track p,
.values-grid p,
.contact-panel p,
.footer p {
  line-height: 1.72;
  color: var(--muted);
}

.about-founder {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.founder-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
}

.founder-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 620ms ease;
}

.founder-card:hover img {
  transform: scale(1.045);
}

.founder-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  padding: 15px;
  background: rgba(10, 11, 13, 0.78);
  border-left: 5px solid var(--red);
  border-radius: 4px;
  backdrop-filter: blur(14px);
}

.founder-card strong,
.founder-card span {
  display: block;
}

.founder-card strong {
  margin-bottom: 5px;
  font-size: 1rem;
  text-transform: uppercase;
}

.founder-card span {
  font-size: 0.8rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--line);
}

.mission-vision article {
  min-height: 420px;
  padding: clamp(40px, 7vw, 96px);
  background: #fff;
}

.mission-vision article:nth-child(2) {
  color: #fff;
  background: var(--red);
}

.mission-vision span {
  display: block;
  margin-bottom: 26px;
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.mission-vision p {
  max-width: 760px;
  font-size: clamp(1.25rem, 2.4vw, 2.2rem);
  line-height: 1.28;
  font-weight: 800;
}

.architecture {
  background: var(--soft);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 40px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.impact-grid article {
  min-height: 250px;
  padding: 30px;
  background: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.impact-grid article:hover {
  z-index: 2;
  color: #fff;
  background: var(--red);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.impact-grid span {
  display: block;
  margin-bottom: 28px;
  font-weight: 900;
  color: var(--red);
}

.impact-grid article:hover span,
.impact-grid article:hover p {
  color: #fff;
}

.impact-grid h3 {
  font-size: 1.22rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.ecosystem {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
  color: #fff;
  background: var(--ink);
}

.ecosystem-visual {
  display: grid;
  min-height: 480px;
  place-items: center;
}

.rings {
  position: relative;
  width: min(62vw, 470px);
  aspect-ratio: 1;
}

.rings span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(164, 0, 8, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  animation: pulseRing 3.6s ease-in-out infinite;
}

.rings span:nth-child(2) {
  inset: 12%;
  animation-delay: 160ms;
}

.rings span:nth-child(3) {
  inset: 24%;
  animation-delay: 320ms;
}

.rings span:nth-child(4) {
  inset: 39%;
  background: var(--red);
  animation-delay: 480ms;
}

.ecosystem-copy p,
.ecosystem-copy span {
  color: rgba(255, 255, 255, 0.72);
}

.ecosystem-list {
  display: grid;
  gap: 14px;
}

.ecosystem-list article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 220ms ease, background 220ms ease;
}

.ecosystem-list article:hover {
  background: rgba(164, 0, 8, 0.3);
  transform: translateX(8px);
}

.ecosystem-list strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.content-creation {
  background: #fff;
}

.film-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.film-strip article {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.film-strip img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 620ms ease, opacity 220ms ease;
}

.film-strip article:hover img {
  opacity: 0.95;
  transform: scale(1.08);
}

.film-strip div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 20px;
  background: rgba(10, 11, 13, 0.78);
  border-left: 5px solid var(--red);
  border-radius: 6px;
  backdrop-filter: blur(14px);
}

.film-strip h3 {
  margin-bottom: 10px;
  text-transform: uppercase;
}

.film-strip p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-feature,
.advantage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  min-height: 720px;
  background: var(--soft);
}

.feature-image,
.advantage-media {
  overflow: hidden;
  background: var(--ink);
}

.feature-image img,
.advantage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
}

.feature-copy,
.advantage-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 96px);
}

.feature-meta {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-meta p {
  margin: 0;
  padding: 18px;
  background: #fff;
  border-left: 5px solid var(--red);
  border-radius: 6px;
}

.post-production {
  background: var(--ink);
  color: #fff;
}

.post-production .section-heading p,
.post-production .section-kicker {
  color: #ffccd0;
}

.polish-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.polish-grid article,
.studio-list article {
  padding: 26px;
  background: #fff;
  border-left: 5px solid var(--red);
  border-radius: 8px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.post-production .polish-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 5px solid var(--red);
}

.polish-grid article:hover,
.studio-list article:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.polish-grid span {
  display: block;
  margin-bottom: 12px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--red);
}

.post-production .polish-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.wide-feature-image {
  display: block;
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.studio-plan-image {
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
  padding: 0;
  background: var(--ink);
}

.studio {
  background: var(--soft);
}

.studio-list {
  display: grid;
  gap: 14px;
}

.studio-list h3 {
  text-transform: uppercase;
}

.process {
  background: #fff;
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 5px;
  background: var(--red);
  border-radius: 999px;
}

.process-track article {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.process-track article:hover {
  color: #fff;
  background: var(--red);
  transform: translateY(-8px);
}

.process-track span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 76px;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.process-track article:hover span {
  color: var(--red);
  background: #fff;
}

.process-track h3 {
  font-size: 1.28rem;
  text-transform: uppercase;
}

.process-track article:hover p {
  color: #fff;
}

.diagnostic {
  color: #fff;
  background: var(--charcoal);
}

.diagnostic .section-heading p,
.diagnostic .section-kicker {
  color: #ffccd0;
}

.matrix-table {
  display: grid;
  grid-template-columns: 0.85fr 1.05fr 1.1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.matrix-table div {
  padding: 22px;
  line-height: 1.4;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.matrix-table div:nth-child(3n) {
  border-right: 0;
}

.matrix-head {
  font-size: 1.05rem;
  font-weight: 900;
  color: #fff;
  background: var(--red);
  text-transform: uppercase;
}

.advantage {
  background: #fff;
}

.advantage ul {
  display: grid;
  gap: 16px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.advantage li {
  position: relative;
  padding: 18px 18px 18px 58px;
  line-height: 1.55;
  background: var(--soft);
  border-radius: 8px;
}

.advantage li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 22px;
  width: 20px;
  height: 12px;
  border-left: 5px solid var(--red);
  border-bottom: 5px solid var(--red);
  transform: rotate(-45deg);
}

.values {
  color: #fff;
  background: var(--red);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.values-grid article {
  min-height: 230px;
  padding: 28px;
  background: rgba(10, 11, 13, 0.1);
  transition: transform 220ms ease, background 220ms ease;
}

.values-grid article:hover {
  background: rgba(10, 11, 13, 0.24);
  transform: translateY(-8px);
}

.values-grid h3 {
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
  text-transform: uppercase;
}

.values-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.visual-highlights {
  background: #fff;
}

.highlight-wall {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.95fr;
  grid-auto-rows: 280px;
  gap: 18px;
}

.highlight-wall article {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(10, 11, 13, 0.12);
}

.highlight-wall article:first-child {
  grid-row: span 2;
}

.highlight-wall article:nth-child(4) {
  grid-column: span 2;
}

.highlight-wall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.88) contrast(1.08);
  transition: transform 620ms ease, opacity 220ms ease;
}

.highlight-wall article:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.highlight-wall span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 13px 15px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(10, 11, 13, 0.74);
  border-left: 5px solid var(--red);
  border-radius: 4px;
  backdrop-filter: blur(14px);
}

.contact {
  background: #fff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(164, 0, 8, 0.98), rgba(208, 0, 18, 0.88)),
    var(--red);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.8);
}

.contact .section-kicker {
  color: #fff;
}

.contact-actions {
  justify-content: flex-end;
  max-width: 420px;
}

.about-page {
  background: var(--ink);
}

.founder-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(128px, 13vw, 170px) clamp(20px, 6vw, 88px) clamp(64px, 8vw, 110px);
  color: #fff;
  background: var(--ink);
}

.founder-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(208, 0, 18, 0.34), transparent 28%),
    linear-gradient(90deg, rgba(10, 11, 13, 0.95), rgba(10, 11, 13, 0.72) 48%, rgba(10, 11, 13, 0.92));
}

.founder-hero-bg {
  position: absolute;
  inset: -8%;
  z-index: 0;
  opacity: 0.58;
}

.founder-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.founder-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.58fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
  width: 100%;
}

.founder-hero-copy {
  max-width: 900px;
}

.founder-hero-copy h1 {
  max-width: 900px;
  font-size: clamp(3rem, 8.4vw, 8.4rem);
}

.founder-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
  color: #ffc7cb;
}

.founder-hero-copy p:not(.founder-title) {
  max-width: 760px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 1.42vw, 1.28rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.82);
}

.founder-outline {
  background: rgba(10, 11, 13, 0.18);
  backdrop-filter: blur(10px);
}

.founder-portrait-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder-portrait-panel::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
}

.founder-portrait-panel img {
  display: block;
  width: 100%;
  height: min(64vh, 680px);
  min-height: 500px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.08);
}

.founder-portrait-panel figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  padding: 18px;
  background: rgba(10, 11, 13, 0.82);
  border-left: 5px solid var(--red-bright);
  border-radius: 4px;
  backdrop-filter: blur(16px);
}

.founder-portrait-panel span,
.founder-portrait-panel strong {
  display: block;
}

.founder-portrait-panel span {
  margin-bottom: 7px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc7cb;
}

.founder-portrait-panel strong {
  line-height: 1.45;
}

.founder-proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: #fff;
  background: var(--red);
}

.founder-proof-band article {
  min-height: 170px;
  padding: clamp(26px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.founder-proof-band strong {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(2.3rem, 4.8vw, 5.2rem);
  line-height: 0.9;
  font-weight: 900;
}

.founder-proof-band span {
  display: block;
  max-width: 280px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.founder-profile,
.founder-experience,
.founder-specializations,
.founder-highlights {
  background: #fff;
}

.founder-editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: start;
}

.founder-side-note {
  position: sticky;
  top: 120px;
}

.founder-side-note h2,
.founder-editorial-grid h2,
.founder-experience .section-heading h2,
.founder-specializations .section-heading h2,
.founder-highlights .section-heading h2 {
  font-size: clamp(2.1rem, 4.5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-story-copy {
  display: grid;
  gap: 16px;
  font-size: clamp(1rem, 1.28vw, 1.16rem);
}

.founder-image-break {
  position: relative;
  min-height: 64vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(70px, 9vw, 122px) clamp(20px, 6vw, 88px);
  color: #fff;
  background: var(--ink);
}

.founder-image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(10, 11, 13, 0.92), rgba(10, 11, 13, 0.2) 58%, rgba(10, 11, 13, 0.62));
}

.founder-image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.founder-image-break div {
  position: relative;
  z-index: 2;
  max-width: 930px;
}

.founder-image-break span {
  display: block;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffc7cb;
}

.founder-image-break strong {
  display: block;
  font-size: clamp(2.1rem, 5vw, 5.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.timeline article,
.specialization-grid article,
.highlight-grid article {
  padding: clamp(24px, 3vw, 36px);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.timeline article:hover,
.specialization-grid article:hover,
.highlight-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(164, 0, 8, 0.24);
  box-shadow: 0 18px 44px rgba(10, 11, 13, 0.12);
}

.timeline span,
.specialization-grid span {
  display: block;
  margin-bottom: 14px;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.timeline h3,
.specialization-grid h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.timeline p,
.specialization-grid p {
  line-height: 1.72;
  color: var(--muted);
}

.timeline ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.timeline li {
  padding: 9px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--steel);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.specialization-grid,
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}

.founder-industries {
  color: #fff;
  background: var(--ink);
}

.founder-industries .section-kicker,
.founder-impact .section-kicker {
  color: #fff;
}

.founder-industries h2 {
  color: #fff;
}

.impact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.impact-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.impact-tags.compact span {
  background: rgba(10, 11, 13, 0.18);
  border-color: rgba(255, 255, 255, 0.22);
}

.founder-quote {
  padding: clamp(76px, 10vw, 144px) clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(164, 0, 8, 0.97), rgba(10, 11, 13, 0.94)),
    var(--red);
}

.founder-quote div {
  max-width: 1060px;
}

.founder-quote .section-kicker {
  color: #fff;
}

.founder-quote blockquote {
  margin: 0 0 24px;
  font-size: clamp(2rem, 4.6vw, 5.2rem);
  line-height: 1.02;
  font-weight: 900;
  text-transform: uppercase;
}

.founder-quote cite {
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
}

.highlight-grid.compact article {
  min-height: 168px;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.founder-impact {
  background: #fff;
}

.footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 6vw, 88px);
  color: #fff;
  background: var(--ink);
}

.footer strong {
  font-size: 1.12rem;
}

.footer p {
  max-width: 540px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 900;
  text-transform: uppercase;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.34);
  transition: transform 200ms ease;
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.04);
}

.floating-cta svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

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

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

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

  to {
    transform: scale(1.12);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes loaderBar {
  from {
    transform: scaleX(0.18);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .split,
  .about-founder,
  .founder-hero-inner,
  .founder-editorial-grid,
  .manifesto,
  .capability-index,
  .ecosystem,
  .service-feature,
  .advantage,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .hero-poster {
    max-width: 520px;
  }

  .impact-grid,
  .values-grid,
  .highlight-wall,
  .specialization-grid,
  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline,
  .founder-proof-band {
    grid-template-columns: 1fr;
  }

  .founder-side-note,
  .capability-lead {
    position: static;
  }

  .work-cases {
    grid-template-columns: 1fr;
  }

  .work-case.large {
    grid-row: auto;
    min-height: 540px;
  }

  .founder-portrait-panel {
    max-width: 560px;
  }

  .highlight-wall article:first-child,
  .highlight-wall article:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .film-strip,
  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

  .process-track span {
    margin-bottom: 26px;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .header-contact {
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    padding: 18px;
    background: rgba(10, 11, 13, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
  }

  .nav-group {
    padding: 0;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-meta {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 24px;
  }

  .founder-hero {
    min-height: auto;
    padding-top: 124px;
  }

  .founder-portrait-panel img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .hero-stats,
  .mission-vision,
  .polish-grid {
    grid-template-columns: 1fr;
  }

  .matrix-table {
    grid-template-columns: 1fr;
  }

  .matrix-table div {
    border-right: 0;
  }

  .matrix-head:nth-child(1)::after {
    content: " / Core Challenge / AfrikoHub Solution";
  }

  .matrix-head:nth-child(2),
  .matrix-head:nth-child(3) {
    display: none;
  }

  .contact-actions {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 14px 18px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  .brand-logo-wrap {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.62rem;
  }

  .header-contact {
    min-height: 44px;
    padding: 0 18px;
    font-size: 0.72rem;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .hero {
    min-height: 100svh;
    align-content: center;
    padding-top: 126px;
    padding-bottom: 74px;
  }

  .hero::after {
    inset: auto 0 0;
    width: auto;
    height: 46%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
    clip-path: none;
    opacity: 1;
  }

  .hero-backdrop {
    opacity: 0.66;
  }

  .hero-backdrop img {
    object-position: center;
  }

  .hero-grid {
    min-height: 0;
    gap: 24px;
  }

  .hero-meta {
    display: none;
  }

  .hero-copy-block {
    max-width: calc(100vw - 36px);
    min-width: 0;
    text-align: center;
  }

  .eyebrow,
  .section-kicker {
    align-items: flex-start;
    max-width: 100%;
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.12em;
    overflow-wrap: anywhere;
  }

  .eyebrow::before,
  .section-kicker::before {
    flex: 0 0 28px;
    width: 28px;
    margin-top: 0.55em;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.7rem);
    line-height: 0.98;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
  }

  .section,
  .hero,
  .founder-hero {
    padding-inline: 18px;
  }

  .founder-hero-copy {
    text-align: center;
  }

  .founder-hero-copy .section-kicker {
    justify-content: center;
  }

  .founder-hero-copy h1 {
    font-size: clamp(2.7rem, 14vw, 4.8rem);
    line-height: 0.92;
  }

  .founder-title {
    font-size: clamp(0.95rem, 4.2vw, 1.2rem);
  }

  .founder-hero-copy p:not(.founder-title) {
    max-width: 100%;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    line-height: 1.5;
  }

  .hero-copy-block p:not(.eyebrow) {
    max-width: 100%;
    font-size: clamp(1.05rem, 4.9vw, 1.28rem);
    line-height: 1.45;
    overflow-wrap: break-word;
  }

  .hero-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-actions .button {
    width: min(100%, 310px);
    min-width: 0;
    min-height: 56px;
    padding-inline: 26px;
    font-size: 0.92rem;
  }

  .hero-stats {
    display: none;
  }

  .hero-filmstrip {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-top: 28px;
    scroll-snap-type: x mandatory;
  }

  .hero-filmstrip article {
    min-height: 104px;
    scroll-snap-align: start;
  }

  .hero-filmstrip img {
    min-height: 104px;
  }

  .manifesto-copy h2,
  .selected-heading h2,
  .capability-lead h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .work-case,
  .work-case.large {
    min-height: 430px;
  }

  .work-case h3 {
    font-size: clamp(1.55rem, 8vw, 2.7rem);
  }

  .capability-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .founder-proof-band article {
    min-height: 132px;
  }

  .founder-side-note h2,
  .founder-editorial-grid h2,
  .founder-experience .section-heading h2,
  .founder-specializations .section-heading h2,
  .founder-highlights .section-heading h2,
  .founder-image-break strong,
  .founder-quote blockquote {
    font-size: clamp(2rem, 10vw, 3.35rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .founder-image-break {
    min-height: 58vh;
    padding-inline: 18px;
  }

  .hero-poster img {
    height: auto;
  }

  .impact-grid,
  .values-grid,
  .highlight-wall,
  .specialization-grid,
  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .specialization-grid article,
  .highlight-grid article {
    padding: 24px 20px;
  }

  .impact-tags span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .highlight-wall {
    grid-auto-rows: 250px;
  }

  .mission-vision article,
  .feature-copy,
  .advantage-copy {
    padding: 34px 20px;
  }

  .footer {
    flex-direction: column;
  }

  .floating-cta {
    width: 56px;
    height: 56px;
    right: 14px;
    bottom: 14px;
  }

}

@media (max-width: 420px) {
  .site-header {
    padding-inline: 14px;
    gap: 8px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand-logo-wrap {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.54rem;
  }

  .header-contact {
    min-height: 40px;
    padding-inline: 13px;
    font-size: 0.66rem;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    padding: 7px;
  }
}

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

/* Editorial redesign pass inspired by Lens For Good's calm, image-led rhythm. */
:root {
  --ink: #050505;
  --charcoal: #101010;
  --steel: #202020;
  --muted: #6f7474;
  --paper: #fffdf8;
  --soft: #f4f1ea;
  --line: #e7e0d5;
  --red: #b50712;
  --red-bright: #e00016;
  --sage: #b8c9c1;
  --shadow: 0 24px 60px rgba(5, 5, 5, 0.16);
}

body {
  font-family: Poppins, Arial, sans-serif;
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.site-header {
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 0;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.9);
}

.header-contact,
.nav-cta,
.button {
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
}

.header-contact {
  min-height: 48px;
  padding-inline: 24px;
  font-weight: 700;
}

.nav {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand small {
  letter-spacing: 0.1em;
}

.lens-hero {
  min-height: 100svh;
  display: grid;
  align-content: end;
  padding: 0;
  color: #fff;
  background: var(--ink);
}

.lens-hero::after,
.lens-hero .hero-backdrop,
.lens-hero .hero-meta,
.lens-hero .hero-filmstrip,
.lens-hero .hero-stats {
  display: none;
}

.lens-hero-media {
  position: absolute;
  inset: 0 0 39%;
  overflow: hidden;
  background: var(--ink);
}

.lens-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.36), rgba(5, 5, 5, 0.12) 40%, rgba(5, 5, 5, 0.84)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.2), transparent 42%);
}

.lens-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.92) contrast(1.04);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.lens-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  width: 100%;
  min-height: 48svh;
  padding: clamp(118px, 13vw, 152px) clamp(18px, 4vw, 56px) clamp(52px, 7vw, 86px);
  background: var(--ink);
}

.lens-hero-note {
  align-self: start;
}

.lens-hero-note span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 18px;
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 500;
  color: #eef7f1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.lens-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.42fr);
  gap: clamp(30px, 7vw, 116px);
  align-items: end;
}

.lens-hero-copy h1,
h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(3.9rem, 8.4vw, 8.8rem);
  line-height: 0.88;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.lens-hero-aside {
  max-width: 440px;
  padding-bottom: 0.42em;
}

.lens-hero-aside p {
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.58;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.74);
}

.lens-hero .button.primary {
  min-height: 50px;
  padding-inline: 24px;
  color: var(--ink);
  background: var(--sage);
  box-shadow: none;
}

.lens-hero .hero-outline {
  min-width: 0;
  min-height: 50px;
  padding-inline: 24px;
  font-size: 1rem;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.scroll-cue {
  color: rgba(255, 255, 255, 0.58);
}

.story-strip {
  padding: 22px clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.story-strip div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.story-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--steel);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 6vw, 84px);
}

.eyebrow,
.section-kicker {
  margin-bottom: 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--red);
}

.split h2,
.section-heading h2,
.ecosystem-copy h2,
.feature-copy h2,
.advantage-copy h2,
.contact-panel h2,
.manifesto-copy h2,
.selected-heading h2,
.capability-lead h2,
.founder-side-note h2,
.founder-editorial-grid h2,
.founder-experience .section-heading h2,
.founder-specializations .section-heading h2,
.founder-highlights .section-heading h2 {
  font-size: clamp(2.15rem, 4.9vw, 5.85rem);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.manifesto {
  align-items: start;
  background: var(--soft);
  color: var(--ink);
}

.manifesto .section-kicker,
.capability-index .section-kicker {
  color: var(--red);
}

.manifesto-notes p {
  color: var(--muted);
}

.selected-work {
  background: var(--paper);
}

.work-case,
.film-strip article,
.highlight-wall article,
.founder-card,
.contact-panel,
.impact-grid,
.values-grid {
  border-radius: 18px;
}

.work-case h3,
.film-strip h3,
.impact-grid h3,
.capability-rows h3,
.values-grid h3 {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.work-case h3 {
  font-size: clamp(1.65rem, 3.1vw, 3.55rem);
  line-height: 1.04;
}

.capability-index,
.ecosystem {
  background: var(--ink);
}

.capability-rows h3 {
  font-size: clamp(1.45rem, 2.6vw, 2.7rem);
}

.capability-rows article:hover {
  transform: translateX(6px);
}

.mission-vision article {
  min-height: 360px;
}

.mission-vision span {
  font-size: clamp(1.6rem, 3.4vw, 3.8rem);
  font-weight: 500;
  text-transform: none;
}

.mission-vision p {
  font-size: clamp(1.08rem, 1.9vw, 1.65rem);
  font-weight: 500;
  line-height: 1.42;
}

.impact-grid article,
.timeline article,
.specialization-grid article,
.highlight-grid article {
  border-radius: 16px;
}

.button {
  min-height: 50px;
  padding-inline: 22px;
  font-weight: 600;
}

.button.primary {
  box-shadow: 0 16px 32px rgba(181, 7, 18, 0.2);
}

.button.secondary {
  border-color: rgba(5, 5, 5, 0.2);
}

.lens-hero .button.secondary.hero-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.contact-panel {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(181, 7, 18, 0.88)),
    var(--ink);
}

@media (max-width: 980px) {
  .lens-hero-media {
    inset: 0 0 46%;
  }

  .lens-hero-panel {
    min-height: 58svh;
    padding-top: 104px;
  }

  .lens-hero-copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .lens-hero-aside {
    max-width: 620px;
    padding-bottom: 0;
  }

  .lens-hero-copy h1,
  h1 {
    font-size: clamp(3.2rem, 12vw, 6.3rem);
  }
}

@media (max-width: 660px) {
  .site-header {
    padding: 14px;
  }

  .header-contact {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.7rem;
  }

  .lens-hero {
    min-height: 100svh;
  }

  .lens-hero-media {
    inset: 0 0 54%;
  }

  .lens-hero-panel {
    min-height: 62svh;
    padding: 118px 18px 58px;
  }

  .lens-hero-note span {
    min-height: 36px;
    padding-inline: 13px;
    font-size: 0.74rem;
  }

  .lens-hero-copy h1,
  h1 {
    max-width: 100%;
    font-size: clamp(3.05rem, 15.6vw, 5.05rem);
    line-height: 0.92;
    text-wrap: balance;
  }

  .lens-hero-aside p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .lens-hero .hero-actions {
    justify-content: flex-start;
  }

  .lens-hero .hero-actions .button {
    width: auto;
    min-height: 46px;
    padding-inline: 18px;
    font-size: 0.9rem;
  }

  .story-strip {
    padding-inline: 14px;
  }

  .split h2,
  .section-heading h2,
  .ecosystem-copy h2,
  .feature-copy h2,
  .advantage-copy h2,
  .contact-panel h2,
  .manifesto-copy h2,
  .selected-heading h2,
  .capability-lead h2 {
    font-size: clamp(2rem, 10vw, 3.4rem);
    line-height: 1.04;
  }

  .work-case,
  .work-case.large {
    min-height: 390px;
  }

  .mission-vision article {
    min-height: 280px;
  }
}

/* Image-led agency pass inspired by the reference direction, adapted for AfrikoHub. */
body {
  font-family: Manrope, Arial, sans-serif;
}

h1,
h2,
h3,
.brand strong,
.button,
.nav,
.header-contact {
  font-family: Archivo, Manrope, Arial, sans-serif;
}

.image-hero {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(126px, 15vh, 176px) clamp(18px, 5vw, 72px) clamp(86px, 12vh, 128px);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #070709;
}

.image-hero::after,
.image-hero .hero-backdrop,
.image-hero .hero-meta,
.image-hero .hero-filmstrip,
.image-hero .hero-stats {
  display: none;
}

.image-hero::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 24%),
    linear-gradient(90deg, rgba(208, 0, 18, 0.22), transparent 28%, transparent 72%, rgba(208, 0, 18, 0.2));
  mix-blend-mode: screen;
  opacity: 0.74;
  transition: opacity 220ms ease;
}

.image-hero-media,
.image-hero-overlay {
  position: absolute;
  inset: 0;
}

.image-hero-media {
  z-index: 0;
  overflow: hidden;
}

.image-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.04);
  animation: slowZoom 24s ease-in-out infinite alternate;
}

.image-hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.72), rgba(3, 3, 4, 0.2) 42%, rgba(3, 3, 4, 0.82)),
    linear-gradient(90deg, rgba(3, 3, 4, 0.48), rgba(3, 3, 4, 0.08) 28%, rgba(3, 3, 4, 0.08) 72%, rgba(3, 3, 4, 0.46));
}

.image-hero-content {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: min(100%, 1040px);
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: clamp(18px, 3vw, 28px);
  padding: 7px 14px;
  font-family: Archivo, Manrope, Arial, sans-serif;
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 800;
  text-transform: uppercase;
  color: #ffd6d9;
  background: rgba(10, 11, 13, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.image-hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  font-size: clamp(4rem, 8.5vw, 8.6rem);
  line-height: 0.88;
  font-weight: 500;
  text-transform: none;
  text-wrap: balance;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
}

.image-hero p {
  width: min(100%, 660px);
  margin: clamp(22px, 3vw, 34px) 0 0;
  font-size: clamp(1.03rem, 1.45vw, 1.32rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}

.image-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(26px, 4vw, 42px);
}

.image-hero .button.primary {
  color: #fff;
  background: var(--red-bright);
  box-shadow: 0 18px 42px rgba(208, 0, 18, 0.34);
}

.image-hero .hero-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(12px);
}

.hero-signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 8px;
  min-width: 178px;
  padding: 16px 18px;
  color: #fff;
  background: rgba(10, 11, 13, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--red-bright);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.hero-signal-card span {
  font-family: Archivo, Manrope, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  color: #ffd6d9;
}

.hero-signal-card strong {
  font-family: Archivo, Manrope, Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-signal-left {
  left: clamp(20px, 5vw, 74px);
  bottom: clamp(108px, 14vh, 170px);
}

.hero-signal-right {
  right: clamp(20px, 5vw, 74px);
  top: clamp(150px, 18vh, 220px);
}

.hero-frame-line {
  position: absolute;
  inset: clamp(96px, 13vh, 140px) clamp(18px, 4vw, 62px) clamp(44px, 6vh, 76px);
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.image-hero .scroll-cue {
  z-index: 5;
}

.work-case {
  isolation: isolate;
  border-radius: 8px;
}

.work-case img {
  transform-origin: center;
}

.work-case:hover {
  transform: translateY(-6px);
}

@media (max-width: 980px) {
  .image-hero {
    padding-inline: 22px;
  }

  .image-hero h1 {
    font-size: clamp(3.4rem, 11vw, 6.2rem);
  }

  .hero-signal-card {
    display: none;
  }
}

@media (max-width: 660px) {
  .image-hero {
    min-height: 100svh;
    padding: 118px 18px 74px;
  }

  .image-hero::before {
    opacity: 0.46;
  }

  .image-hero-media img {
    object-position: 47% center;
    transform: scale(1.08);
  }

  .image-hero-overlay {
    background:
      linear-gradient(180deg, rgba(3, 3, 4, 0.76), rgba(3, 3, 4, 0.26) 36%, rgba(3, 3, 4, 0.88)),
      linear-gradient(90deg, rgba(3, 3, 4, 0.46), rgba(3, 3, 4, 0.16));
  }

  .hero-pill {
    min-height: 32px;
    margin-bottom: 16px;
    font-size: 0.68rem;
  }

  .image-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 13.2vw, 4.35rem);
    line-height: 0.92;
  }

  .image-hero p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .image-hero .hero-actions {
    display: grid;
    width: min(100%, 310px);
    gap: 12px;
  }

  .image-hero .hero-actions .button {
    width: 100%;
    flex: none;
    min-width: 0;
  }

  .hero-frame-line {
    inset: 96px 12px 38px;
  }
}
