/*
Theme Name: TCV Africa Marketplace Growth
Theme URI: https://tcvafrica.agency/
Author: TCV Africa
Author URI: https://tcvafrica.agency/
Description: Custom WordPress theme for TCV Africa's Amazon and Takealot marketplace growth agency website.
Version: 1.0.4
Requires at least: 6.2
Requires PHP: 8.0
Text Domain: tcv-africa
*/

:root {
  --navy: #061223;
  --navy-2: #0a1a2f;
  --ink: #101522;
  --orange: #f05a00;
  --orange-2: #ff7a1a;
  --paper: #ffffff;
  --muted: #667085;
  --line: #dfe4ea;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; text-decoration: none; }
.hero-header { color: white; background: #061223; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 92px 0; }
.eyebrow {
  margin: 0 0 20px;
  color: #d7dee8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.eyebrow.outlined {
  display: inline-flex;
  border: 1px solid #566174;
  border-radius: 4px;
  padding: 12px 18px;
}
.eyebrow.orange { color: var(--orange); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 4px;
  padding: 0 24px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-solid {
  background: linear-gradient(135deg, var(--orange-2), var(--orange));
  color: white;
  box-shadow: 0 12px 28px rgba(240,90,0,.2);
}
.button-outline { border: 1px solid var(--orange); color: white; }
.button-light { border: 1px solid var(--orange); color: var(--orange); }

.hero {
  min-height: 760px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 71% 43%, rgba(42,67,101,.22), transparent 24%),
    radial-gradient(circle at 50% 34%, rgba(24,63,98,.18) 0 1px, transparent 2px) 0 0/10px 10px,
    linear-gradient(145deg, #07192d 0%, #040b16 56%, #0a1627 100%);
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -310px;
  border: 1px solid rgba(255,255,255,.05);
  transform: rotate(-30deg);
}
.nav {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.logo { display: inline-flex; align-items: center; }
.logo img { display: block; width: 154px; height: auto; }
.footer-logo img { width: 120px; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 700; }
.nav-links a { padding: 10px 0; }
.nav-links a.active, .nav-links a:hover { color: var(--orange-2); }
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-dropdown > a span { font-size: 13px; transition: transform .2s ease; }
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 660px;
  padding: 16px;
  border: 1px solid #314158;
  border-radius: 12px;
  background: rgba(5,16,31,.99);
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 1px solid #314158;
  border-left: 1px solid #314158;
  background: #05101f;
  transform: translateX(-50%) rotate(45deg);
}
.submenu-heading { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 5px 6px 14px; border-bottom: 1px solid #26384f; }
.submenu-heading > span { color: var(--orange-2); font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.submenu-heading small { color: #8593a6; font-size: 10px; font-weight: 500; }
.submenu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding-top: 10px; }
.case-submenu { width: 390px; }
.case-submenu .submenu-grid { grid-template-columns: 1fr; }
.case-submenu .submenu-heading { justify-content: flex-start; }
.submenu a { display: grid; gap: 5px; padding: 13px 14px; border-radius: 7px; color: #d9e0e9; }
.submenu a strong { font-size: 12px; line-height: 1.25; }
.submenu a span { color: #8f9cae; font-size: 10px; font-weight: 500; line-height: 1.35; }
.submenu a:hover, .submenu a:focus-visible { background: #12253d; color: var(--orange-2); }
.submenu a:hover span, .submenu a:focus-visible span { color: #bbc6d4; }
.nav-dropdown:hover .submenu,
.nav-dropdown:focus-within .submenu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown:hover > a span,
.nav-dropdown:focus-within > a span { transform: rotate(180deg); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; color: white; font-size: 12px; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu > div {
  position: absolute;
  top: 34px;
  right: 0;
  width: min(320px, calc(100vw - 28px));
  display: grid;
  padding: 12px;
  border: 1px solid #314158;
  border-radius: 8px;
  background: #061223;
  box-shadow: 0 22px 55px rgba(0,0,0,.35);
}
.mobile-menu a, .mobile-menu span { padding: 10px 12px; color: #d9e0e9; font-size: 12px; font-weight: 700; }
.mobile-menu span { color: var(--orange-2); text-transform: uppercase; }
.mobile-menu .mobile-sub-link { padding-left: 24px; color: #b8c3d1; }
.nav-cta { min-height: 44px; padding-inline: 20px; }
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.34fr .66fr;
  align-items: center;
  gap: 46px;
  padding-block: 38px 80px;
}
.hero-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-copy h1 strong, .hero-copy h1 em { display: block; font-style: normal; font-weight: 900; }
.hero-copy h1 strong { white-space: nowrap; }
.hero-copy h1 em { color: var(--orange); }
.hero-lede {
  max-width: 630px;
  margin: 28px 0 26px;
  color: #d8dee8;
  font-size: 18px;
  line-height: 1.6;
}
.partner-row { display: flex; flex-wrap: wrap; gap: 0; margin: 0 0 20px; }
.partner-row > div {
  width: 24%;
  min-width: 120px;
  padding: 0 22px;
  border-left: 1px solid #485363;
}
.partner-row > div:first-child { padding-left: 0; border-left: 0; }
.credential-item { display: flex; min-height: 42px; flex-direction: column; align-items: flex-start; justify-content: flex-start; }
.partner-row b { display: block; font-size: 18px; }
.partner-row span { display: block; margin-top: 4px; color: #c3cbd6; font-size: 11px; }
.amazon-ads-mark { height: 22px; line-height: 22px; letter-spacing: -.04em; }
.amazon-ads-mark i { color: #ff9900; font-style: normal; font-weight: 700; }
.marketplace-logo { position: relative; width: max-content; line-height: 1; letter-spacing: -.04em; }
.amazon-logo { padding-bottom: 5px; }
.amazon-logo::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 28px;
  height: 6px;
  border-bottom: 2px solid #ff9900;
  border-radius: 0 0 50% 50%;
  transform: rotate(4deg);
}
.takealot-mark {
  width: 124px;
  max-width: 100%;
  display: flex;
  align-items: center;
}
.takealot-mark img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter: none !important;
}
.micro-proof { display: flex; gap: 28px; color: #e6e9ef; font-size: 12px; }
.micro-proof span::first-letter { color: var(--orange); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.proof-card {
  border: 1px solid #445064;
  border-radius: 10px;
  padding: 30px 24px;
  background: linear-gradient(145deg, rgba(14,31,52,.82), rgba(5,14,27,.65));
  box-shadow: 0 28px 70px rgba(0,0,0,.25);
}
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; }
.proof-stat {
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #334056;
}
.proof-stat:nth-child(odd) { border-right: 1px solid #334056; }
.proof-stat:nth-last-child(-n+2) { border-bottom: 0; }
.proof-stat b { display: block; font-size: 27px; }
.proof-stat span { display: block; max-width: 150px; margin-top: 6px; color: #c7cfda; font-size: 11px; line-height: 1.35; }

.brand-strip { padding: 25px 0 33px; background: #fff; text-align: center; border-bottom: 1px solid #eee; }
.brand-strip > p { margin: 0 0 24px; color: #4d5562; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.brand-row { display: flex; align-items: center; justify-content: space-between; gap: 28px; color: #3c3f44; }
.brand-logo { flex: 1; min-width: 0; height: 56px; display: flex; align-items: center; justify-content: center; }
.brand-logo img {
  display: block;
  max-width: min(180px, 100%);
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .72;
  mix-blend-mode: multiply;
}
.services { display: grid; grid-template-columns: .7fr 1.3fr; gap: 74px; align-items: center; }
.section-intro h2 { max-width: 370px; margin: 0; font-size: 40px; line-height: 1.12; letter-spacing: -.04em; }
.section-intro > p:not(.eyebrow) { max-width: 390px; margin: 26px 0; color: var(--muted); line-height: 1.7; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.service-card {
  min-height: 265px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: white;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-5px); border-color: #ffb486; box-shadow: 0 18px 40px rgba(18,32,51,.1); }
.service-icon { display: inline-grid; place-items: center; width: 40px; height: 40px; border: 1px solid #ffb486; border-radius: 50%; color: var(--orange); font-size: 12px; font-weight: 900; }
.service-card h3 { margin: 18px 0 12px; font-size: 18px; line-height: 1.2; }
.service-card p { min-height: 62px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.55; }
.service-card a { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--orange); font-size: 10px; font-weight: 900; text-transform: uppercase; }

.results {
  color: white;
  background:
    radial-gradient(circle at 72% 25%, rgba(33,65,101,.22), transparent 23%),
    linear-gradient(130deg, #07182d, #050d19 72%);
}
.results-layout { display: grid; grid-template-columns: .55fr 1.45fr; gap: 52px; align-items: center; }
.results-intro h2 { margin: 0; font-size: 42px; line-height: 1.1; letter-spacing: -.04em; }
.results-intro > p:not(.eyebrow) { margin: 24px 0 28px; color: #c8d0dc; line-height: 1.6; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.case-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  border: 1px solid #45536a;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(7,18,35,.15), rgba(6,18,35,.95)),
    linear-gradient(135deg, #414d5a, #15243a);
  overflow: hidden;
}
.case-2 { background: linear-gradient(180deg, rgba(7,18,35,.2), rgba(6,18,35,.95)), linear-gradient(135deg, #635a3d, #182c40); }
.case-3 { background: linear-gradient(180deg, rgba(7,18,35,.2), rgba(6,18,35,.95)), linear-gradient(135deg, #494052, #182c40); }
.case-4 { background: linear-gradient(180deg, rgba(7,18,35,.2), rgba(6,18,35,.95)), linear-gradient(135deg, #3e4d59, #15243a); }
.case-brand {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0 0 auto;
  font-size: 18px;
  font-weight: 900;
}
.case-brand.has-logo {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(255,255,255,.96);
}
.case-brand img {
  display: block;
  width: auto;
  max-width: 150px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
}
.case-metrics { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid #465368; }
.case-metrics span { display: block; min-height: 28px; color: #c6ced8; font-size: 9px; line-height: 1.3; }
.case-metrics b { display: block; margin-top: 6px; font-size: 25px; }
.case-card a { margin-top: 16px; color: white; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.case-card a span { color: var(--orange); margin-left: 6px; }
blockquote {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 18px 0 0;
  padding: 24px 28px;
  background: rgba(13,31,52,.8);
  border: 1px solid #263a53;
}
blockquote p { margin: 0; color: #d2d9e2; font-size: 12px; line-height: 1.6; }
.stars { color: #ffb000; letter-spacing: 3px; }
blockquote cite { font-style: normal; font-size: 12px; font-weight: 800; }
blockquote cite small { display: block; margin-top: 4px; color: #aab6c5; font-weight: 400; }

.process { display: grid; grid-template-columns: .8fr 2.2fr; gap: 60px; align-items: start; }
.process-heading h2 { max-width: 300px; margin: 0; font-size: 31px; line-height: 1.2; letter-spacing: -.035em; }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); position: relative; }
.process-grid::before { content: ""; position: absolute; top: 23px; left: 7%; right: 7%; height: 1px; background: #d8dee5; }
.process-grid article { position: relative; padding: 0 16px; }
.process-grid article > span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #ffad78;
  border-radius: 4px;
  background: white;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
}
.process-grid h3 { margin: 18px 0 10px; font-size: 16px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.founder {
  min-height: 390px;
  display: grid;
  grid-template-columns: .55fr 1.1fr 1fr;
  align-items: center;
  gap: 44px;
  margin-bottom: 32px;
  padding: 54px 58px;
  border-radius: 20px;
  color: white;
  background:
    radial-gradient(circle at 17% 50%, rgba(240,90,0,.24), transparent 22%),
    linear-gradient(135deg, #07192e, #050e1c);
}
.founder-badge {
  position: relative;
  overflow: hidden;
  width: 210px;
  height: 250px;
  border-radius: 110px 110px 20px 20px;
  border: 1px solid #31445d;
  background: linear-gradient(160deg, #192c44, #0c1828);
}
.founder-badge img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder-badge small {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(5,14,28,.88);
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.founder-copy h2 { margin: 0; font-size: 34px; line-height: 1.1; letter-spacing: -.04em; }
.founder-copy > p:not(.eyebrow) { margin: 22px 0; color: #c7d0db; font-size: 13px; line-height: 1.65; }
.founder-proof { display: grid; grid-template-columns: 1fr 1fr; }
.founder-proof div { min-height: 110px; padding: 22px; border-left: 1px solid #304058; border-bottom: 1px solid #304058; }
.founder-proof div:nth-last-child(-n+2) { border-bottom: 0; }
.founder-proof b { display: block; color: var(--orange-2); font-size: 18px; }
.founder-proof span { display: block; margin-top: 6px; color: #d0d7e0; font-size: 11px; line-height: 1.4; }

footer { padding-top: 84px; color: white; background: #061223; }
.footer-features { display: grid; grid-template-columns: repeat(4, 1fr); padding-bottom: 34px; }
.footer-features div { padding: 0 30px; border-right: 1px solid #2b3b50; }
.footer-features div:first-child { padding-left: 0; }
.footer-features div:last-child { border: 0; }
.footer-features b { display: block; font-size: 12px; }
.footer-features span { display: block; margin-top: 5px; color: #9faabb; font-size: 10px; line-height: 1.4; }
.footer-services {
  display: grid;
  grid-template-columns: .7fr .55fr 1.25fr;
  gap: 64px;
  padding-block: 42px;
  border-top: 1px solid #27384d;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand > p { max-width: 260px; margin: 17px 0 12px; color: #9faabb; font-size: 11px; line-height: 1.55; }
.footer-brand > .footer-email-link { color: #c6ced9; font-size: 11px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: 15px;
  color: white !important;
  border: 1px solid #42536a;
  border-radius: 0;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}
.footer-social-link svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social-link:hover { color: white !important; border-color: #0a66c2; background: #0a66c2; }
.footer-menu-column > p { margin: 0 0 17px; color: var(--orange-2); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.footer-menu-column nav { display: grid; gap: 13px; }
.footer-menu-column a { color: #c6ced9; font-size: 11px; }
.footer-menu-column a:hover { color: var(--orange-2); }
.footer-service-column nav { grid-template-columns: repeat(2, 1fr); gap: 13px 28px; }
.footer-bottom { display: grid; gap: 18px; padding-block: 26px; border-top: 1px solid #27384d; color: #9faabb; font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-legal-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-legal-row nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-legal-row a { color: #c6ced9; }
.footer-legal-row a:hover { color: var(--orange-2); }
.footer-trademarks { max-width: 1050px; color: #758398; font-size: 9px; line-height: 1.6; }

.inner-header {
  color: white;
  background:
    radial-gradient(circle at 76% 42%, rgba(42,67,101,.25), transparent 25%),
    radial-gradient(circle at 50% 34%, rgba(24,63,98,.16) 0 1px, transparent 2px) 0 0/10px 10px,
    linear-gradient(145deg, #07192d 0%, #040b16 60%, #0a1627 100%);
}
.service-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 90px;
  padding-block: 76px 96px;
}
.service-hero h1 { max-width: 760px; margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: 1; letter-spacing: -.05em; }
.service-hero > div > p:not(.eyebrow) { max-width: 700px; margin: 28px 0 0; color: #cbd4df; font-size: 18px; line-height: 1.65; }
.service-hero aside { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #3d4d63; border-radius: 10px; background: rgba(10,26,47,.72); }
.service-hero aside span { min-height: 110px; padding: 26px 22px; border-right: 1px solid #34445a; border-bottom: 1px solid #34445a; color: #dce3ec; font-size: 12px; line-height: 1.5; }
.service-hero aside span:nth-child(even) { border-right: 0; }
.service-hero aside span:nth-last-child(-n+2) { border-bottom: 0; }
.service-hero aside b { color: white; font-size: 14px; }
.service-hero-image { overflow: hidden; border: 1px solid #3d4d63; border-radius: 12px; box-shadow: 0 28px 70px rgba(0,0,0,.28); }
.service-hero-image img { display: block; width: 100%; height: auto; object-fit: contain; }
.takealot-service-visual {
  overflow: hidden;
  padding: 40px;
  border: 1px solid #3d4d63;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #f2f5f7);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.takealot-service-visual > img { display: block; width: 100%; height: auto; }
.takealot-service-visual > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 34px; }
.takealot-service-visual span { padding: 13px 9px; border-radius: 6px; background: #eaf3f9; color: #566270; font-size: 10px; text-align: center; }
.takealot-service-visual b { display: block; margin-bottom: 3px; color: #087abf; font-size: 12px; }
.creative-example { color: white; background: linear-gradient(145deg, #07192d, #050d19); }
.creative-example-heading { display: grid; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; margin-bottom: 42px; }
.creative-example-heading h2 { max-width: 730px; margin: 0; font-size: 42px; line-height: 1.12; letter-spacing: -.04em; }
.creative-example-heading > p { margin: 0; color: #c4ceda; font-size: 15px; line-height: 1.75; }
.creative-example figure { margin: 0; }
.creative-example img { display: block; width: 100%; height: auto; border: 1px solid #3b4b61; border-radius: 10px; box-shadow: 0 28px 70px rgba(0,0,0,.35); }
.creative-example figcaption { margin-top: 14px; color: #8795a7; font-size: 10px; line-height: 1.5; }

.service-content { display: grid; grid-template-columns: 1.45fr .55fr; gap: 90px; align-items: start; }
.service-copy h2, .service-inclusions h2, .service-faq h2, .service-cta h2 { margin: 0; font-size: 42px; line-height: 1.12; letter-spacing: -.04em; }
.service-copy > p:not(.eyebrow) { margin: 22px 0 0; color: #4f5c6c; font-size: 16px; line-height: 1.8; }
.service-side-nav { position: sticky; top: 30px; display: grid; padding: 24px; border: 1px solid var(--line); border-radius: 9px; background: #f8fafc; }
.service-side-nav > p { margin: 0 0 12px; color: var(--orange); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.service-side-nav a { display: flex; justify-content: space-between; gap: 18px; padding: 15px 4px; border-bottom: 1px solid #e1e6ec; color: #526071; font-size: 12px; font-weight: 700; }
.service-side-nav a:last-child { border-bottom: 0; }
.service-side-nav a.active, .service-side-nav a:hover { color: var(--orange); }
.service-inclusions { background: #f5f7f9; }
.inclusion-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 42px; background: #dfe4ea; border: 1px solid #dfe4ea; }
.inclusion-grid article { min-height: 220px; padding: 34px; background: white; }
.inclusion-grid article > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.inclusion-grid h3 { margin: 20px 0 12px; font-size: 21px; }
.inclusion-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }
.service-faq > div:first-child > p:not(.eyebrow) { color: var(--muted); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; font-size: 16px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--orange); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -8px 0 24px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.service-case { padding: 72px 0; color: white; background: linear-gradient(135deg, #07182d, #050d19); }
.service-case .shell { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: center; }
.service-case h2 { max-width: 760px; margin: 0; font-size: 37px; line-height: 1.18; letter-spacing: -.04em; }
.service-case p:not(.eyebrow) { max-width: 730px; color: #c4ceda; line-height: 1.7; }
.service-case strong { padding-left: 50px; border-left: 1px solid #304057; color: #c8d1dd; font-size: 13px; }
.service-case strong span { display: block; color: var(--orange-2); font-size: 56px; }
.service-cta { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding-block: 72px; }
.service-cta h2 { max-width: 760px; }
.service-cta > div > p:not(.eyebrow) { color: var(--muted); }
.service-cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
.service-not-found { min-height: 600px; padding-block: 120px; }
.service-not-found h1 { font-size: 60px; }

.about-hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 90px;
  padding-block: 72px 100px;
}

.insights-hero {
  display: grid;
  align-content: center;
  min-height: 440px;
  padding-block: 70px 90px;
}
.insights-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.055em;
}
.insights-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 28px 0 0;
  color: #cbd4df;
  font-size: 18px;
  line-height: 1.65;
}
.insights-section { min-height: 420px; }
.insight-feature {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
  background: #fafbfc;
}
.insight-feature h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.insight-feature p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.7;
}
.insights-submenu { width: 430px; }
.insights-submenu .submenu-grid { grid-template-columns: 1fr; }
.news-heading { max-width: 760px; margin-bottom: 42px; }
.news-heading h2 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.04em; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fafbfc;
}
.news-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.news-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}
.news-card-meta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.news-card-meta span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-card-meta time { color: var(--muted); font-size: 10px; white-space: nowrap; }
.news-card h3 { margin: 24px 0 0; font-size: 28px; line-height: 1.12; letter-spacing: -.035em; }
.news-card p { margin: 18px 0 26px; color: var(--muted); line-height: 1.7; }
.news-card a { margin-top: auto; color: var(--orange); font-size: 11px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.news-card a:hover { color: var(--ink); }
.article-hero {
  max-width: 980px;
  min-height: 540px;
  display: grid;
  align-content: center;
  padding-block: 64px 90px;
}
.article-back {
  width: fit-content;
  margin-bottom: 40px;
  color: #bdc7d4;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-back:hover { color: var(--orange-2); }
.article-hero h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(48px, 6.3vw, 82px);
  line-height: .98;
  letter-spacing: -.058em;
}
.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 32px;
  color: #bdc7d4;
  font-size: 12px;
  font-weight: 700;
}
.article-meta span { color: white; }
.article-layout { max-width: 980px; }
.article-featured-image {
  overflow: hidden;
  margin: 0 0 64px;
  border-radius: 12px;
  background: #eef1f4;
}
.article-featured-image img {
  display: block;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}
.article-body {
  max-width: 790px;
  margin-inline: auto;
  color: #354153;
  font-size: 18px;
  line-height: 1.85;
}
.article-body h2 {
  margin: 58px 0 18px;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.article-body h3 {
  margin: 42px 0 14px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.article-body p { margin: 0 0 24px; }
.article-body ul,
.article-body ol { margin: 0 0 28px; padding-left: 25px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote {
  display: block;
  margin: 34px 0;
  border-left: 4px solid var(--orange);
  padding: 8px 0 8px 28px;
  color: var(--ink);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
}
.article-body blockquote p { margin: 0; }
.article-body a { color: var(--orange); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.article-body img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 10px 8px 10px 0;
  border-radius: 8px;
}
.about-hero h1 { max-width: 770px; margin: 0; font-size: clamp(48px, 6vw, 78px); line-height: 1; letter-spacing: -.055em; }
.about-hero > div:first-child > p:not(.eyebrow) { max-width: 690px; margin: 28px 0; color: #cbd4df; font-size: 18px; line-height: 1.65; }
.about-hero-proof { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid #3d4d63; border-radius: 10px; background: rgba(10,26,47,.72); }
.about-hero-proof span { min-height: 125px; padding: 28px 24px; border-right: 1px solid #34445a; border-bottom: 1px solid #34445a; color: #bec8d5; font-size: 12px; line-height: 1.45; }
.about-hero-proof span:nth-child(even) { border-right: 0; }
.about-hero-proof span:nth-last-child(-n+2) { border-bottom: 0; }
.about-hero-proof b { display: block; margin-bottom: 7px; color: white; font-size: 25px; }
.about-story { display: grid; grid-template-columns: .75fr 1.25fr; gap: 95px; align-items: start; }
.about-story h2, .about-location h2, .testimonial-heading h2, .about-founder h2 { margin: 0; font-size: 42px; line-height: 1.12; letter-spacing: -.04em; }
.about-story article p { margin: 0 0 22px; color: #4f5c6c; font-size: 16px; line-height: 1.8; }
.about-founder { color: white; background: linear-gradient(135deg, #07182d, #050d19); }
.about-founder .shell { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; align-items: center; }
.about-founder-image { overflow: hidden; width: min(100%, 390px); aspect-ratio: 4 / 5; border-radius: 190px 190px 20px 20px; border: 1px solid #304058; background: #10233a; }
.about-founder-image img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-founder h2 { font-size: 54px; }
.about-founder div > p:not(.eyebrow) { max-width: 700px; color: #c5ceda; font-size: 16px; line-height: 1.75; }
.about-founder .button { margin-top: 10px; }
.about-location { display: grid; grid-template-columns: 1fr 1fr; gap: 95px; align-items: center; }
.about-location > p { margin: 0; color: #4f5c6c; font-size: 17px; line-height: 1.8; }
.about-testimonials { background: #f5f7f9; }
.testimonial-heading { max-width: 680px; margin-bottom: 46px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.about-quote {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 0;
  padding: 32px;
  border: 1px solid #dfe4ea;
  background: white;
}
.about-quote p { color: #536070; font-size: 14px; line-height: 1.75; }
.about-quote cite { margin-top: auto; color: var(--ink); font-size: 14px; }

.case-study-header { overflow: hidden; }
.case-study-hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 78px;
  padding-block: 62px 92px;
}
.case-study-hero h1 { max-width: 720px; margin: 0; font-size: clamp(46px, 5.3vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.case-study-hero h1 em { display: block; color: var(--orange-2); font-style: normal; }
.case-study-lede { margin: 26px 0 16px; color: white !important; font-size: 21px !important; font-weight: 800; }
.case-study-hero > div > p:not(.eyebrow) { max-width: 700px; color: #cbd4df; font-size: 15px; line-height: 1.7; }
.case-study-hero .button { margin-top: 16px; }
.case-study-preview {
  overflow: hidden;
  margin: 0;
  border: 1px solid #3d4d63;
  border-radius: 14px;
  background: white;
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
}
.case-study-preview img { display: block; width: 100%; height: auto; }
.case-metric-band { position: relative; z-index: 2; margin-top: -1px; background: white; box-shadow: 0 16px 42px rgba(7,18,35,.08); }
.case-metric-grid { display: grid; grid-template-columns: repeat(6, 1fr); }
.case-metric-grid article { min-height: 146px; display: flex; flex-direction: column; justify-content: center; padding: 22px 18px; border-right: 1px solid #e1e6eb; text-align: center; }
.case-metric-grid article:last-child { border-right: 0; }
.case-metric-grid b { color: #254d2d; font-size: 36px; letter-spacing: -.04em; }
.case-metric-grid span { margin-top: 7px; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.case-metric-grid small { margin-top: 5px; color: var(--muted); font-size: 10px; line-height: 1.35; }
.case-narrative { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; }
.case-narrative h2, .case-solution h2, .case-growth h2, .case-recognition h2, .case-why h2, .case-artwork h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -.04em;
}
.case-narrative article p { margin: 0 0 22px; color: #4f5c6c; font-size: 16px; line-height: 1.8; }
.case-solution { background: #f5f7f9; }
.case-solution h2 { max-width: 760px; }
.case-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 44px; border: 1px solid #dfe4ea; background: #dfe4ea; }
.case-solution-grid article { min-height: 250px; padding: 32px; background: white; }
.case-solution-grid article > span { color: var(--orange); font-size: 11px; font-weight: 900; }
.case-solution-grid h3 { margin: 20px 0 12px; font-size: 20px; line-height: 1.25; }
.case-solution-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.case-growth { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.case-growth-copy > p:not(.eyebrow) { color: #4f5c6c; font-size: 16px; line-height: 1.8; }
.case-growth aside { padding: 44px; border-radius: 14px; color: white; background: linear-gradient(145deg, #0b2037, #06101f); box-shadow: 0 24px 55px rgba(7,18,35,.18); }
.case-growth aside p { margin: 0; color: var(--orange-2); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.case-growth aside strong { display: block; margin: 15px 0 8px; font-size: 68px; letter-spacing: -.06em; }
.case-growth aside span { color: #c6d0dc; font-size: 14px; line-height: 1.6; }
.case-growth-chart { grid-column: 1 / -1; margin: 8px 0 0; padding: 28px; border: 1px solid #dfe4ea; border-radius: 12px; background: #fafbfc; }
.case-growth-chart img { display: block; width: 100%; height: auto; }
.case-growth-chart figcaption { margin-top: 12px; color: #778495; font-size: 10px; line-height: 1.5; text-align: center; }
.case-recognition { padding: 78px 0; color: white; background: linear-gradient(135deg, #07182d, #050d19); }
.case-recognition .shell { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.case-recognition p:not(.eyebrow) { max-width: 700px; color: #c5ced9; line-height: 1.7; }
.award-photo { justify-self: center; overflow: hidden; width: min(100%, 190px); margin: 0; border: 1px solid #34475f; border-radius: 10px; background: #0a1728; box-shadow: 0 20px 42px rgba(0,0,0,.34); }
.award-photo img { display: block; width: 100%; height: auto; }
.case-why > h2 { max-width: 650px; }
.case-why > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 38px; }
.case-why span { min-height: 110px; display: flex; align-items: flex-end; padding: 22px; border: 1px solid #dfe4ea; color: #344150; font-size: 13px; font-weight: 800; line-height: 1.4; background: #fafbfc; }
.case-why span::before { content: "✓"; align-self: flex-start; margin-right: auto; color: #285934; font-size: 18px; }
.case-artwork { background: #f5f7f9; }
.case-artwork-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.case-artwork img { display: block; width: min(100%, 1024px); height: auto; margin-inline: auto; border: 1px solid #dce2e8; box-shadow: 0 24px 65px rgba(7,18,35,.12); }
.case-source { max-width: 880px; margin: 20px auto 0; color: #7b8795; font-size: 10px; line-height: 1.6; text-align: center; }

.booking-hero,
.contact-hero {
  min-height: 470px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 90px;
  padding-block: 66px 88px;
}
.booking-hero h1,
.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -.055em;
}
.booking-hero > div > p:not(.eyebrow),
.contact-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin: 26px 0 0;
  color: #cbd4df;
  font-size: 18px;
  line-height: 1.65;
}
.booking-hero aside {
  display: grid;
  border: 1px solid #3d4d63;
  border-radius: 10px;
  background: rgba(10,26,47,.72);
}
.booking-hero aside span {
  padding: 24px 26px;
  border-bottom: 1px solid #34445a;
  color: #c8d1dc;
  font-size: 13px;
  line-height: 1.5;
}
.booking-hero aside span:last-child { border-bottom: 0; }
.booking-hero aside b { color: white; }
.booking-section { background: #f5f7f9; }
.calendly-frame {
  overflow: hidden;
  max-width: 1080px;
  margin-inline: auto;
  border: 1px solid #dfe4ea;
  border-radius: 14px;
  background: white;
  box-shadow: 0 28px 70px rgba(7,18,35,.12);
}
.calendly-frame iframe { display: block; width: 100%; height: 760px; border: 0; }
.booking-fallback { margin: 18px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.booking-fallback a { color: var(--orange); font-weight: 800; }

.contact-details {
  display: grid;
  border: 1px solid #3d4d63;
  border-radius: 10px;
  background: rgba(10,26,47,.72);
}
.contact-details a,
.contact-details > span {
  display: grid;
  gap: 6px;
  padding: 23px 26px;
  border-bottom: 1px solid #34445a;
}
.contact-details > :last-child { border-bottom: 0; }
.contact-details small { color: var(--orange-2); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.contact-details strong { color: white; font-size: 15px; overflow-wrap: anywhere; }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: 48px; line-height: 1.08; letter-spacing: -.045em; }
.contact-copy > p:not(.eyebrow) { color: #536071; font-size: 16px; line-height: 1.75; }
.contact-platforms { display: flex; flex-wrap: wrap; gap: 9px; margin: 30px 0; }
.contact-platforms span { padding: 10px 13px; border: 1px solid #dfe4ea; border-radius: 999px; color: #536071; font-size: 11px; font-weight: 800; background: #fafbfc; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 38px; border: 1px solid #dfe4ea; border-radius: 12px; background: #fafbfc; box-shadow: 0 24px 55px rgba(7,18,35,.08); }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: #364152; font-size: 12px; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd7e1;
  border-radius: 5px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: white;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid #ffbd91; border-color: var(--orange); }
.contact-message { grid-column: 1 / -1; }
.contact-form textarea { resize: vertical; }
.contact-form .button { justify-self: start; border: 0; cursor: pointer; }
.contact-form > small { align-self: center; color: var(--muted); font-size: 10px; line-height: 1.5; }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; gap: 45px; }
  .hero { min-height: 0; }
  .proof-card { max-width: 680px; }
  .services { grid-template-columns: 1fr; }
  .results-layout { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .founder { grid-template-columns: .7fr 1.3fr; }
  .founder-proof { grid-column: 1 / -1; }
  .service-hero { grid-template-columns: 1fr; gap: 45px; }
  .service-hero aside { max-width: 650px; }
  .service-content { grid-template-columns: 1fr; gap: 55px; }
  .service-side-nav { position: static; }
  .service-faq { grid-template-columns: 1fr; gap: 40px; }
  .creative-example-heading { grid-template-columns: 1fr; gap: 24px; }
  .about-hero { grid-template-columns: 1fr; gap: 45px; }
  .about-hero-proof { max-width: 650px; }
  .about-story { grid-template-columns: 1fr; gap: 45px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .case-study-hero { grid-template-columns: 1fr; gap: 48px; }
  .case-study-preview { width: min(100%, 620px); }
  .case-metric-grid { grid-template-columns: repeat(3, 1fr); }
  .case-metric-grid article:nth-child(3) { border-right: 0; }
  .case-metric-grid article:nth-child(-n+3) { border-bottom: 1px solid #e1e6eb; }
  .case-narrative { grid-template-columns: 1fr; gap: 42px; }
  .case-solution-grid { grid-template-columns: repeat(2, 1fr); }
  .case-growth { grid-template-columns: 1fr; gap: 44px; }
  .case-recognition .shell { grid-template-columns: 1fr; gap: 46px; }
  .award-photo { justify-self: start; }
  .case-why > div { grid-template-columns: repeat(2, 1fr); }
  .booking-hero, .contact-hero { grid-template-columns: 1fr; gap: 42px; }
  .booking-hero aside, .contact-details { max-width: 650px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .insight-feature { align-items: flex-start; flex-direction: column; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .article-hero { min-height: 470px; }
}
@media (max-width: 720px) {
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 66px 0; }
  .nav { height: 76px; }
  .nav-cta { display: none; }
  .nav { gap: 16px; }
  .hero-grid { padding-block: 36px 60px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-copy h1 strong { white-space: normal; }
  .partner-row > div { width: 50%; margin-bottom: 18px; }
  .partner-row > div:nth-child(3) { padding-left: 0; border-left: 0; }
  .micro-proof { flex-direction: column; gap: 8px; }
  .button-row .button { width: 100%; }
  .proof-card { padding: 28px 18px; }
  .proof-stat { padding: 18px 16px; }
  .proof-stat b { font-size: 22px; }
  .brand-row { flex-wrap: wrap; justify-content: center; }
  .brand-logo { flex: 0 0 42%; height: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .section-intro h2 { font-size: 34px; }
  .case-grid { grid-template-columns: 1fr; }
  .case-card { min-height: 220px; }
  blockquote { grid-template-columns: 1fr; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .process-grid::before { top: 0; bottom: 0; left: 23px; right: auto; width: 1px; height: auto; }
  .process-grid article { padding-left: 70px; }
  .process-grid article > span { position: absolute; left: 0; }
  .process-grid h3 { margin-top: 2px; }
  .founder { grid-template-columns: 1fr; padding: 38px 26px; }
  .founder-badge { width: 170px; height: 200px; }
  .founder-proof { grid-column: auto; grid-template-columns: 1fr; }
  .founder-proof div { border-bottom: 1px solid #304058 !important; }
  .footer-features { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .footer-features div:nth-child(2) { border-right: 0; }
  .footer-services { grid-template-columns: 1fr; gap: 34px; }
  .footer-service-column nav { grid-template-columns: 1fr; }
  .footer-legal-row { align-items: flex-start; flex-direction: column; gap: 12px; }
  .service-hero { min-height: 0; padding-block: 58px 70px; }
  .service-hero h1 { font-size: 46px; }
  .service-hero aside span { min-height: 96px; padding: 20px 16px; }
  .service-copy h2, .service-inclusions h2, .service-faq h2, .service-cta h2 { font-size: 34px; }
  .creative-example-heading h2 { font-size: 34px; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .service-case .shell { grid-template-columns: 1fr; gap: 32px; }
  .service-case strong { padding: 24px 0 0; border-top: 1px solid #304057; border-left: 0; }
  .service-cta { align-items: flex-start; flex-direction: column; }
  .service-cta-actions { justify-content: flex-start; }
  .about-hero { min-height: 0; padding-block: 58px 70px; }
  .insights-hero { min-height: 0; padding-block: 58px 70px; }
  .insights-hero h1 { font-size: 45px; }
  .insight-feature { padding: 30px 24px; }
  .news-grid { grid-template-columns: 1fr; }
  .article-hero { min-height: 0; padding-block: 48px 64px; }
  .article-hero h1 { font-size: 46px; }
  .article-featured-image { margin-bottom: 42px; }
  .article-body { font-size: 16px; line-height: 1.75; }
  .article-body h2 { margin-top: 44px; font-size: 32px; }
  .article-body blockquote { padding-left: 20px; font-size: 22px; }
  .about-hero h1 { font-size: 45px; }
  .about-hero-proof span { min-height: 105px; padding: 20px 16px; }
  .about-story h2, .about-location h2, .testimonial-heading h2 { font-size: 34px; }
  .about-founder .shell { grid-template-columns: 1fr; gap: 44px; }
  .about-founder-image { width: 260px; }
  .about-founder h2 { font-size: 44px; }
  .about-location { grid-template-columns: 1fr; gap: 35px; }
  .takealot-service-visual { padding: 28px 20px; }
  .takealot-service-visual > div { grid-template-columns: 1fr; }
  .case-study-hero { min-height: 0; padding-block: 52px 65px; }
  .case-study-hero h1 { font-size: 44px; }
  .case-study-preview { height: auto; }
  .case-metric-grid { grid-template-columns: repeat(2, 1fr); }
  .case-metric-grid article { min-height: 125px; border-bottom: 1px solid #e1e6eb; }
  .case-metric-grid article:nth-child(2n) { border-right: 0; }
  .case-metric-grid article:nth-last-child(-n+2) { border-bottom: 0; }
  .case-narrative h2, .case-solution h2, .case-growth h2, .case-recognition h2, .case-why h2, .case-artwork h2 { font-size: 34px; }
  .case-solution-grid { grid-template-columns: 1fr; }
  .case-solution-grid article { min-height: 0; }
  .case-recognition { padding: 60px 0; }
  .award-photo { width: min(100%, 170px); }
  .case-why > div { grid-template-columns: 1fr; }
  .case-why span { min-height: 90px; }
  .case-artwork-heading { align-items: flex-start; flex-direction: column; }
  .booking-hero, .contact-hero { min-height: 0; padding-block: 54px 68px; }
  .booking-hero h1, .contact-hero h1 { font-size: 44px; }
  .calendly-frame iframe { height: 700px; }
  .contact-copy h2 { font-size: 38px; }
  .contact-form { grid-template-columns: 1fr; padding: 26px 20px; }
  .contact-message { grid-column: auto; }
  .contact-form > small { grid-column: 1 / -1; }
}
