@font-face {
  font-family: "Kapture Inter";
  src: url("fonts/inter-variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kapture Lato";
  src: url("fonts/lato-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kapture Lato";
  src: url("fonts/lato-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kapture Lato";
  src: url("fonts/lato-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kapture Raleway";
  src: url("fonts/raleway-600-900.woff2") format("woff2");
  font-weight: 600 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #070707;
  --ink: #161616;
  --muted: #777a80;
  --paper: #f7f7f8;
  --white: #ffffff;
  --line: #e4e4e7;
  --pink: #ee2b60;
  --max: 1180px;
  --font-title: "Kapture Raleway", Raleway, Arial, Helvetica, sans-serif;
  --font-heading: "Kapture Lato", Arial, Helvetica, sans-serif;
  --font-body: "Kapture Inter", Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

body.menu-is-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  height: 86px;
  min-height: 86px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  padding: 0 28px;
  color: var(--white);
  background: transparent;
  transition: color 0.2s ease;
}

.site-header.is-light {
  color: var(--white);
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  position: relative;
  display: block;
}

.brand img {
  width: 168px;
}

.custom-logo-link {
  display: block;
}

.custom-logo-link img {
  width: 168px;
  height: auto;
}

.menu-toggle {
  display: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  clip: auto;
  background: var(--white);
  color: var(--black);
  padding: 12px 18px;
}

.site-header a {
  color: inherit;
}

.primary-nav a,
.header-phone {
  transition: color 0.18s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--pink);
}

.header-button {
  transition: background 0.18s ease, color 0.18s ease;
}

.header-button:hover,
.header-button:focus-visible {
  background: var(--white);
  color: var(--black);
}
.primary-nav {
  display: flex;
  height: 100%;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 0;
}

.nav-item {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-item > a,
.primary-nav > a {
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 clamp(12px, 1.7vw, 28px);
}

.primary-nav a,
.header-phone,
.kicker,
.section-heading p,
.portfolio-card p,
.service-list span,
.hero-kicker {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.has-mega > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 86px;
  z-index: 9;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(240px, 0.55fr) minmax(360px, 0.9fr);
  min-height: 520px;
  border-top: 3px solid var(--pink);
  background: rgba(6, 9, 13, 0.97);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu > div {
  display: grid;
  align-content: start;
  gap: 26px;
  padding: 52px clamp(28px, 5vw, 72px);
}

.mega-menu > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mega-menu p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.34);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.mega-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  color: var(--pink);
}

.mega-menu img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: brightness(0.42) contrast(1.08);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-phone {
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.header-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 0 22px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 80px;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}

.hero-slideshow::before,
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-slideshow::before {
  background:
    radial-gradient(circle at 34% 50%, rgba(238, 43, 96, 0.2), transparent 30%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0.46) 48%, rgba(5, 5, 5, 0.78)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.68));
}

.hero-slideshow::after {
  background: rgba(0, 0, 0, 0.16);
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(0.22) contrast(1.04) brightness(0.68);
  transform: scale(1.04);
  transition: opacity 1.35s ease;
}

.slide.is-active {
  opacity: 1;
}

.slide {
  object-position: center center;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(900px, 100%);
  display: grid;
  gap: 22px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: var(--pink);
}

.hero-kicker span {
  display: none;
}

.hero-content h1 {
  margin: 0;
  max-width: 940px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
}

.hero-content h1 em {
  color: var(--pink);
  font-style: normal;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
}

.hero-seo {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 14px;
}

.primary-cta,
.secondary-cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 30px;
  font-family: var(--font-heading);
  font-weight: 900;
  letter-spacing: 0.04em;
}

.primary-cta {
  background: var(--pink);
  color: var(--white);
  transition: background 0.18s ease, color 0.18s ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  background: var(--white);
  color: var(--black);
}

.secondary-cta {
  border: 1px solid rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.scroll-cue {
  position: absolute;
  bottom: 46px;
  width: 34px;
  height: 34px;
  border-right: 5px solid var(--white);
  border-bottom: 5px solid var(--white);
  transform: rotate(45deg);
}

.broadcast-section {
  background: var(--black);
  color: var(--white);
  padding: 86px 24px;
}

.broadcast-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.broadcast-section h2 {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.08;
  text-transform: uppercase;
}

.broadcast-section h2 em {
  color: var(--pink);
  font-style: normal;
}

.broadcast-section p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-body);
  font-size: 1.03rem;
  font-weight: 400;
  line-height: 1.72;
}

.broadcast-inner > p + p {
  margin-top: 22px;
}

.broadcast-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 46px;
}

.broadcast-points article {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 22px;
}

.broadcast-points h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.intro-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: 90px 24px;
  background:
    linear-gradient(90deg, rgba(247, 247, 248, 0.98), rgba(247, 247, 248, 0.85)),
    radial-gradient(circle at 0 40%, rgba(238, 43, 96, 0.13), transparent 26%),
    radial-gradient(circle at 100% 50%, rgba(0, 0, 0, 0.08), transparent 30%);
  text-align: center;
}

.intro-section h2,
.contact-section h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-title);
  font-size: clamp(1.55rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: 0.24em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-kicker,
.kicker,
.section-heading p {
  font-family: var(--font-heading);
}

.kicker,
.section-heading p {
  margin: 0;
  color: var(--muted);
}

.intro-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.intro-actions a,
.feature-copy a,
.contact-section a {
  min-width: 130px;
  border: 2px solid var(--ink);
  padding: 10px 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.intro-actions span {
  color: var(--muted);
  font-style: italic;
}

.portfolio-section,
.services-section,
.feature-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 90px 0;
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.4vw, 3.7rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  white-space: nowrap;
  text-transform: uppercase;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}

.portfolio-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.08);
}

.portfolio-card.large {
  transform: none;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  filter: grayscale(0.1) brightness(1.04);
}

.portfolio-card .photo-card-image {
  filter: grayscale(0.12) contrast(1.05) brightness(0.9);
}

.portfolio-card div {
  display: grid;
  align-content: start;
  padding: 0 4px 8px;
}

.portfolio-card h3,
.service-list h3,
.feature-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.35;
  text-transform: uppercase;
}

.portfolio-card h3 {
  font-size: 1.35rem;
}

.services-section {
  padding-top: 120px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-list article {
  min-height: 280px;
  display: grid;
  align-content: start;
  gap: 18px;
  background: var(--white);
  padding: 30px;
}

.service-list span {
  color: var(--pink);
}

.service-list h3 {
  font-size: 1.28rem;
}

.service-list p,
.feature-copy p,
.feature-copy dd {
  margin: 0;
  color: var(--muted);
}

.feature-section {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 42px;
  align-items: center;
}

.feature-media {
  background: var(--white);
  padding: 18px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.08);
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.feature-copy {
  position: relative;
  display: grid;
  gap: 22px;
}

.feature-copy button {
  position: absolute;
  top: -42px;
  right: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 2rem;
}

.feature-copy h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.feature-copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.feature-copy dt {
  display: inline;
  font-weight: 900;
}

.feature-copy dd {
  display: inline;
  margin-left: 4px;
}

.feature-copy a,
.contact-section a {
  justify-self: start;
}

.contact-section {
  min-height: 72vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  padding: 90px 24px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.contact-section a {
  border-color: var(--white);
  color: var(--white);
  justify-self: center;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 28px;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(260px, 1fr) minmax(260px, 0.85fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.footer-brand img {
  width: 190px;
}

.footer-brand {
  grid-column: 1;
  grid-row: 1;
}

.footer-address {
  grid-column: 1;
  grid-row: 1;
  margin: 70px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.65;
}

.footer-nav,
.footer-contact {
  position: relative;
  display: grid;
  align-content: start;
  gap: 13px;
  padding-top: 34px;
}

.footer-nav {
  grid-column: 2;
  grid-row: 1;
}

.footer-contact {
  grid-column: 3;
  grid-row: 1;
}

.footer-nav::before,
.footer-contact::before {
  position: absolute;
  top: 0;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-nav::before {
  content: "Explore";
}

.footer-contact::before {
  content: "Talk to Kapture";
}

.footer-nav a,
.footer-contact a,
.footer-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.footer-nav a,
.footer-contact a {
  text-decoration: none;
}

.footer-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--pink);
}

.footer-inner p {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.75rem;
  text-align: left;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    grid-column: 2;
    display: grid;
    gap: 4px;
    width: 42px;
    height: 42px;
    place-content: center;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
  }

  .menu-toggle > span:not(.screen-reader-text) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: fixed;
    inset: 86px 0 auto;
    display: none;
    height: calc(100vh - 86px);
    overflow-y: auto;
    align-content: start;
    background: rgba(5, 5, 5, 0.99);
    padding: 24px;
  }

  .site-header.menu-open .primary-nav {
    display: grid;
  }

  .nav-item,
  .nav-item > a,
  .primary-nav > a {
    height: auto;
  }

  .nav-item {
    display: grid;
  }

  .nav-item > a,
  .primary-nav > a {
    min-height: 58px;
    padding: 0;
  }

  .mega-menu {
    position: static;
    display: none;
    min-height: 0;
    grid-template-columns: 1fr;
    border-top-width: 1px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .has-mega.is-open .mega-menu {
    display: grid;
  }

  .mega-menu > div {
    padding: 24px 0;
  }

  .mega-menu > div + div {
    border-left: 0;
  }

  .mega-menu > img {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .portfolio-grid,
  .service-list,
  .feature-section,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .broadcast-points {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 42px;
    padding-top: 54px;
  }

  .footer-brand,
  .footer-address,
  .footer-nav,
  .footer-contact {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-address {
    margin-top: -24px;
  }

  .portfolio-card.large {
    transform: none;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .brand img {
    width: 142px;
  }

  .custom-logo-link img {
    width: 142px;
  }

  .primary-nav {
    top: 64px;
    height: calc(100vh - 64px);
  }

  .hero {
    padding: 110px 18px 70px;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }

  .hero-actions,
  .primary-cta,
  .secondary-cta {
    width: 100%;
  }

  .intro-section h2,
  .contact-section h2 {
    letter-spacing: 0.18em;
  }

  .intro-actions {
    flex-direction: column;
  }

  .section-heading h2 {
    letter-spacing: 0.22em;
  }
}

/* Homepage restructure */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--black);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-strip div {
  min-height: 166px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  color: var(--pink);
  font-family: var(--font-title);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.stats-strip span,
.trust-strip span {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-services,
.sector-section {
  background: var(--black);
  color: var(--white);
  padding: 126px max(24px, calc((100vw - var(--max)) / 2));
}

.home-section-copy {
  width: min(880px, 100%);
  margin-bottom: 68px;
}

.home-section-copy .kicker,
.why-copy .kicker,
.trust-section .kicker,
.contact-section .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
}

.home-section-copy .kicker span,
.why-copy .kicker span,
.trust-section .kicker span,
.contact-section .kicker span {
  display: none;
}

.home-section-copy h2,
.why-copy h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2.5rem, 5vw, 6.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-section-copy h2 em,
.why-copy h2 em {
  color: var(--pink);
  font-style: normal;
}

.home-section-copy > p:last-child,
.why-copy > p,
.sector-grid p,
.service-tile span,
.broadcast-section p,
.contact-section > p {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.72;
}

.service-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: var(--black);
  gap: 2px;
}

.service-tile {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  padding: clamp(28px, 4vw, 56px);
}

.service-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) brightness(0.58) contrast(1.08);
  transform: scale(1.02);
}

.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 11, 0.1), rgba(5, 7, 11, 0.82)),
    linear-gradient(90deg, rgba(5, 7, 11, 0.58), rgba(5, 7, 11, 0.1));
}

.service-tile > div {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
}

.service-tile p {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.service-tile h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(2rem, 3.8vw, 4.4rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.service-tile span {
  display: block;
  max-width: 540px;
}

.service-tile a,
.sector-grid a {
  display: inline-flex;
  margin-top: 28px;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-tile a::after,
.sector-grid a::after {
  content: " →";
}

.cta-tile {
  background: var(--ink);
}

.cta-tile::after {
  display: none;
}

.cta-tile h3 {
  color: var(--white);
}

.cta-tile a {
  min-height: 58px;
  align-items: center;
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  padding: 0 28px;
  transition: background 0.18s ease, color 0.18s ease;
}

.cta-tile a:hover {
  background: var(--white);
  color: var(--black);
}

.sector-section {
  background: var(--ink);
}

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

.sector-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(3, 6, 10, 0.74);
  padding: 34px;
}

.sector-grid article.is-highlighted {
  border-color: rgba(238, 43, 96, 0.7);
}

.sector-grid h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.sector-grid p {
  margin: 0;
  font-size: 0.98rem;
}

.trust-section {
  background: #f4f4f2;
  padding: 72px 24px 86px;
  color: var(--ink);
  text-align: center;
}

.trust-section .kicker {
  justify-content: center;
  margin-bottom: 38px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.trust-strip span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(0, 0, 0, 0.46);
  padding: 0 24px;
}

.why-section {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: start;
  background: #f8f8f7;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2));
}

.why-media {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black);
}

.why-media img {
  width: 100%;
  min-height: 720px;
  object-fit: cover;
  filter: brightness(0.84) contrast(1.04);
}

.why-copy h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 5.2rem);
}

.why-copy > p {
  color: rgba(22, 22, 22, 0.62);
  margin: 0 0 58px;
}

.why-copy ol {
  display: grid;
  gap: 34px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
  counter-reset: proof;
}

.why-copy li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  counter-increment: proof;
}

.why-copy li::before {
  content: counter(proof);
  color: var(--pink);
  font-family: var(--font-title);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.why-copy li > div {
  min-width: 0;
}

.why-copy strong,
.why-copy li span {
  display: block;
}

.why-copy strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
}

.why-copy li span {
  color: rgba(22, 22, 22, 0.62);
  font-size: 1rem;
  line-height: 1.7;
}

.why-copy .primary-cta {
  width: fit-content;
}

.contact-section {
  min-height: 56vh;
  background: var(--black);
}

.contact-section .kicker {
  justify-content: center;
}

.contact-section h2 {
  max-width: 1020px;
}

.contact-section > p {
  max-width: 720px;
  margin: 0;
  text-align: center;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.contact-actions .primary-cta,
.contact-actions .secondary-cta {
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.floating-cta {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(238, 43, 96, 0.34);
  font-family: var(--font-heading);
  font-weight: 900;
}

.floating-cta span {
  padding: 0 22px;
}

.floating-cta b {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 18px;
  font-size: 1.4rem;
}

.floating-cta:hover {
  background: var(--white);
  color: var(--black);
}

.page-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 96px;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.46) contrast(1.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 70%, rgba(238, 43, 96, 0.24), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.48) 58%, rgba(5, 5, 5, 0.74)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.76));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
}

.page-hero h1 {
  margin: 22px 0;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(3rem, 5.4vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}

.page-hero h1 em {
  display: block;
  color: var(--pink);
  font-style: normal;
  max-width: 880px;
  margin-top: 16px;
  font-size: 0.48em;
  line-height: 1.05;
}

.page-hero p:not(.hero-kicker) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.66;
}

.contact-page .page-hero {
  min-height: 64vh;
  padding-bottom: 72px;
}

.contact-page .page-hero > div {
  width: min(920px, 100%);
}

.contact-page .page-hero h1 {
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.contact-page .page-hero h1 em {
  max-width: 760px;
  font-size: 0.42em;
}

.page-content {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(420px, 0.52fr);
  gap: clamp(42px, 7vw, 100px);
  background: #f8f8f7;
  padding: 126px max(24px, calc((100vw - var(--max)) / 2));
}

.page-intro .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
}

.page-intro .kicker span {
  display: none;
}

.page-intro h2 {
  margin: 18px 0 24px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4.6vw, 5.4rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.page-intro p {
  margin: 0;
  color: rgba(22, 22, 22, 0.66);
  font-size: 1.05rem;
  line-height: 1.75;
}

.page-proof {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.page-proof li {
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  gap: 20px;
  background: var(--white);
  padding: 30px;
}

.page-proof span {
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.page-proof strong {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
}

.contact-form-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: start;
  background: var(--paper);
  padding: 120px max(24px, calc((100vw - var(--max)) / 2));
}

.contact-form-intro {
  position: sticky;
  top: 126px;
}

.contact-form-intro .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
}

.contact-form-intro .kicker span {
  display: none;
}

.contact-form-intro h2 {
  margin: 20px 0 24px;
  color: var(--ink);
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-form-intro > p:not(.kicker) {
  margin: 0;
  color: rgba(22, 22, 22, 0.64);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contact-details {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.contact-details a,
.contact-details p {
  display: grid;
  gap: 5px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  padding: 20px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-details span {
  color: var(--pink);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-details a:hover {
  color: var(--pink);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 22px;
  border-top: 4px solid var(--pink);
  background: var(--white);
  padding: clamp(30px, 5vw, 58px);
  box-shadow: 0 26px 70px rgba(7, 7, 7, 0.09);
}

.form-field {
  display: grid;
  gap: 9px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  padding: 12px 0;
  font: inherit;
  line-height: 1.45;
  transition: border-color 0.18s ease;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(22, 22, 22, 0.38);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-consent input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--pink);
}

.form-consent label {
  color: rgba(22, 22, 22, 0.64);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.form-submit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.form-submit button {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  background: var(--pink);
  color: var(--white);
  padding: 0 26px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s ease;
}

.form-submit button span {
  margin-left: 12px;
  font-size: 1.15rem;
}

.form-submit button:hover,
.form-submit button:focus-visible {
  background: var(--black);
}

.form-status {
  flex: 1 1 260px;
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.5;
}

.page-related {
  background: var(--black);
  color: var(--white);
  padding: 86px max(24px, calc((100vw - var(--max)) / 2));
}

.page-related .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--pink);
}

.page-related .kicker span {
  display: none;
}

.page-related div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.page-related a {
  min-height: 130px;
  display: flex;
  align-items: center;
  background: rgba(3, 6, 10, 0.8);
  color: var(--white);
  padding: 26px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-related a:hover {
  color: var(--pink);
}

.dynamic-positioning {
  display: grid;
  grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}

.dynamic-positioning h2,
.dynamic-editorial h2,
.dynamic-capabilities h2,
.dynamic-page-cta h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.dynamic-positioning h2 {
  font-size: clamp(2.7rem, 5vw, 5.8rem);
}

.dynamic-positioning h2 em {
  display: block;
  color: var(--pink);
  font-style: normal;
}

.dynamic-positioning p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.8;
}

.dynamic-positioning p + p {
  margin-top: 28px;
}

.dynamic-editorial {
  background: var(--black);
  color: var(--white);
  padding: 116px max(24px, calc((100vw - 920px) / 2));
}

.dynamic-editorial .kicker,
.dynamic-capabilities .kicker,
.dynamic-page-cta .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
}

.dynamic-editorial .kicker span,
.dynamic-capabilities .kicker span,
.dynamic-page-cta .kicker span {
  display: none;
}

.dynamic-editorial h2 {
  margin: 22px 0 34px;
  font-size: clamp(2.5rem, 4.2vw, 4.9rem);
}

.dynamic-editorial > p:not(.kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.04rem;
  line-height: 1.85;
}

.dynamic-editorial > p + p {
  margin-top: 26px;
}

.dynamic-capabilities {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  background: var(--paper);
}

.dynamic-capabilities-media {
  min-height: 720px;
  overflow: hidden;
}

.dynamic-capabilities-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05);
}

.dynamic-capabilities-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(64px, 8vw, 130px);
}

.dynamic-capabilities h2 {
  margin: 22px 0 26px;
  color: var(--ink);
  font-size: clamp(2.5rem, 4.2vw, 5rem);
}

.dynamic-capabilities-copy > p:not(.kicker) {
  margin: 0;
  color: rgba(22, 22, 22, 0.64);
  font-size: 1.04rem;
  line-height: 1.75;
}

.dynamic-capabilities ul {
  display: grid;
  gap: 24px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.dynamic-capabilities li {
  position: relative;
  color: var(--ink);
  padding-left: 26px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.dynamic-capabilities li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.dynamic-page-cta {
  display: grid;
  justify-items: center;
  background: var(--ink);
  color: var(--white);
  padding: 112px 24px 126px;
  text-align: center;
}

.dynamic-page-cta h2 {
  max-width: 900px;
  margin: 24px 0;
  font-size: clamp(2.8rem, 5.3vw, 6rem);
}

.dynamic-page-cta > p:not(.kicker) {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.dynamic-page-cta > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.dynamic-page-cta .secondary-cta {
  border-color: rgba(255, 255, 255, 0.38);
}

.primary-nav > a.is-current {
  color: var(--pink);
}

.case-studies-page {
  background: var(--paper);
}

.case-studies-intro {
  padding: 190px max(24px, calc((100vw - var(--max)) / 2)) 84px;
  background: var(--black);
  color: var(--white);
}

.case-studies-intro .kicker,
.case-studies-cta .kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--pink);
}

.case-studies-intro .kicker span,
.case-studies-cta .kicker span {
  display: none;
}

.case-studies-intro h1 {
  max-width: 980px;
  margin: 26px 0 30px;
  font-family: var(--font-title);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.case-studies-intro h1 em,
.case-studies-cta h2 em {
  display: block;
  color: var(--pink);
  font-style: normal;
}

.case-studies-intro > p:not(.kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.75;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.case-filters button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-filters button:hover,
.case-filters button:focus-visible,
.case-filters button.is-active {
  border-color: var(--pink);
  background: var(--pink);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #d9dadd;
}

.case-card {
  position: relative;
  min-height: 670px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.case-card[hidden] {
  display: none;
}

.case-card-featured,
.case-card-wide {
  grid-column: 1 / -1;
  min-height: 780px;
}

.case-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.06);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.case-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-items: end;
  color: inherit;
}

.case-card-link > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.06);
  transition: transform 0.55s ease, filter 0.55s ease;
}

.case-card-link:hover > img {
  transform: scale(1.025);
  filter: brightness(0.68) contrast(1.06);
}

.case-card-link .case-card-copy {
  position: relative;
  z-index: 2;
}

.case-study-hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 160px max(24px, calc((100vw - var(--max)) / 2)) 90px;
}

.case-study-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}

.case-study-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.15), rgba(7, 7, 7, 0.9));
}

.case-study-hero > div {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.case-study-hero h1,
.error-page h1,
.wordpress-index h1 {
  margin: 22px 0;
  font-family: var(--font-title);
  font-size: clamp(3.2rem, 7vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.case-study-hero > div > p:last-child {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.case-study-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
}

.case-study-meta > div {
  display: grid;
  gap: 8px;
  padding: 34px 24px;
  border-left: 1px solid var(--line);
}

.case-study-meta > div:last-child {
  border-right: 1px solid var(--line);
}

.case-study-meta span {
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-study-content,
.wordpress-page-content,
.wordpress-index > section {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0;
}

.case-study-content h2,
.wordpress-page-content h2,
.wordpress-index h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.case-study-content p,
.wordpress-page-content p {
  color: rgba(22, 22, 22, 0.72);
  font-size: 1.05rem;
}

.wordpress-index,
.error-page {
  min-height: 75vh;
  padding-top: 120px;
}

.error-page {
  display: grid;
  align-content: center;
  background: var(--black);
  color: var(--white);
  padding: 150px max(24px, calc((100vw - var(--max)) / 2));
}

.form-honeypot {
  position: absolute;
  left: -10000px;
}

.form-status.is-success {
  color: #176a3a;
}

@media (max-width: 760px) {
  .case-study-meta {
    grid-template-columns: 1fr;
  }

  .case-study-meta > div {
    border-right: 1px solid var(--line);
  }
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(3, 5, 8, 0.24) 50%, rgba(3, 5, 8, 0.94));
}

.case-card:hover > img {
  transform: scale(1.025);
  filter: brightness(0.68) contrast(1.06);
}

.case-card-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: clamp(32px, 5vw, 74px);
}

.case-card-copy > p {
  margin: 0 0 16px;
  color: var(--pink);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.case-card-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 4.9rem);
  font-weight: 900;
  line-height: 0.96;
  text-transform: uppercase;
}

.case-card-copy > span {
  display: block;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.7;
}

.case-card-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.case-card-copy li {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-studies-cta {
  display: grid;
  justify-items: center;
  padding: 116px 24px 130px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.case-studies-cta h2 {
  max-width: 920px;
  margin: 24px 0;
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 5.8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.case-studies-cta > p:not(.kicker) {
  max-width: 660px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

@media (max-width: 980px) {
  .stats-strip,
  .service-tiles,
  .sector-grid,
  .why-section,
  .page-content,
  .page-related div,
  .dynamic-positioning,
  .dynamic-capabilities,
  .contact-form-section {
    grid-template-columns: 1fr;
  }

  .contact-form-intro {
    position: static;
  }

  .dynamic-capabilities-media {
    min-height: 520px;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .case-card-featured,
  .case-card-wide {
    grid-column: auto;
  }

  .why-media {
    position: relative;
    top: auto;
  }

  .why-media img {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-services,
  .sector-section,
  .why-section {
    padding: 86px 18px;
  }

  .service-tile {
    min-height: 420px;
    padding: 28px;
  }

  .sector-grid article {
    min-height: 220px;
    padding: 26px;
  }

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

  .dynamic-positioning,
  .dynamic-editorial,
  .dynamic-capabilities-copy,
  .dynamic-page-cta {
    padding: 78px 18px;
  }

  .dynamic-capabilities-media {
    min-height: 380px;
  }

  .contact-form-section {
    padding: 78px 18px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .case-studies-intro {
    padding: 132px 18px 68px;
  }

  .case-card,
  .case-card-featured,
  .case-card-wide {
    min-height: 540px;
  }

  .case-card-copy {
    padding: 28px 22px;
  }
}

/* Mobile readability and horizontal-overflow safeguards. */
@media (max-width: 680px) {
  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    background: var(--black);
  }

  body {
    position: relative;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    overflow-x: hidden;
    overscroll-behavior-x: none;
    background: var(--black);
  }

  main,
  .site-footer {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  main,
  main > section,
  .hero-content,
  .home-section-copy,
  .service-tile > div,
  .why-copy,
  .broadcast-inner,
  .contact-form,
  .page-content,
  .dynamic-positioning,
  .dynamic-editorial,
  .dynamic-capabilities-copy {
    min-width: 0;
    max-width: 100%;
  }

  .section-heading h2,
  .intro-section h2,
  .contact-section h2,
  .hero-content h1,
  .home-section-copy h2,
  .why-copy h2,
  .service-tile h3,
  .case-studies-intro h1,
  .case-studies-cta h2 {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-heading h2 {
    font-size: clamp(1.75rem, 10vw, 2.7rem);
    letter-spacing: 0.08em;
    line-height: 1.08;
  }

  .intro-section h2,
  .contact-section h2 {
    letter-spacing: 0.08em;
    line-height: 1.22;
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    letter-spacing: 0.02em;
    line-height: 1;
  }

  .hero-subtitle,
  .hero-seo,
  .home-section-copy > p:last-child,
  .service-tile span,
  .sector-grid p,
  .broadcast-section p,
  .contact-section > p {
    color: rgba(255, 255, 255, 0.86);
  }

  .trust-strip span {
    color: rgba(0, 0, 0, 0.68);
    letter-spacing: 0.16em;
    padding-inline: 16px;
  }

  .stats-strip span {
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.16em;
  }

  .primary-cta,
  .secondary-cta,
  .cta-tile a {
    max-width: 100%;
    padding-inline: 20px;
    text-align: center;
  }

  .floating-cta {
    max-width: calc(100vw - 28px);
  }
}
