:root {
  --teal-950: #052c2d;
  --teal-900: #073f40;
  --teal-800: #0b5152;
  --teal-700: #17696a;
  --aqua-100: #dff2ee;
  --aqua-200: #c9e9e3;
  --mist: #f2fbf8;
  --white: #fff;
  --orange: #ca6d17;
  --orange-bright: #e49145;
  --sand: #f4e9da;
  --ink: #123f40;
  --ink-muted: #547172;
  --line: rgba(7, 63, 64, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 20px 60px rgba(4, 50, 51, 0.12);
  --container: min(1240px, calc(100vw - 80px));
  --radius-s: 14px;
  --radius-m: 24px;
  --radius-l: 38px;
  --font: "Open Sans", "Helvetica Neue", Arial, sans-serif;
  --transition: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font);
  font-size: clamp(16px, 0.88vw, 18px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 980px;
  margin-bottom: 30px;
  font-size: clamp(3rem, 5.5vw, 5.9rem);
  line-height: 0.99;
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  line-height: 1.05;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.22;
}

p:last-child {
  margin-bottom: 0;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(100px, 11vw, 170px);
}

section[id] {
  scroll-margin-top: 72px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border-radius: 30px;
  background: var(--white);
  color: var(--teal-900);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin-bottom: 24px;
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #a9dbd3;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 26px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.button:hover,
.button:focus-visible {
  border-color: var(--orange-bright);
  background: var(--orange-bright);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 20px;
  font-size: 0.68rem;
}

.button--dark {
  border-color: var(--teal-900);
  background: var(--teal-900);
}

.button--dark:hover,
.button--dark:focus-visible {
  border-color: var(--teal-700);
  background: var(--teal-700);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform var(--transition);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--white);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  color: var(--white);
  transition: height var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  position: fixed;
  height: 76px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 44, 45, 0.94);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 32px;
}

.site-logo {
  display: block;
  width: 150px;
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding-block: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--orange-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  padding-top: 100px;
  background:
    linear-gradient(112deg, rgba(5, 44, 45, 0.98) 20%, rgba(7, 63, 64, 0.86) 67%, rgba(7, 63, 64, 0.72)),
    url("../images/hero-texture.jpg") center / cover;
  color: var(--white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(4, 40, 41, 0.55), transparent);
  content: "";
  pointer-events: none;
}

.hero__texture {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(to bottom, black 0, transparent 82%);
}

.hero__orb {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}

.hero__orb--one {
  top: 14%;
  right: -8vw;
  width: 43vw;
  height: 43vw;
}

.hero__orb--two {
  top: 27%;
  right: 4vw;
  width: 19vw;
  height: 19vw;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 690px;
  align-items: center;
  gap: 7vw;
  grid-template-columns: minmax(0, 1fr) 310px;
  padding-block: 82px 110px;
}

.hero__copy {
  max-width: 940px;
}

.hero__title-line {
  display: block;
  white-space: nowrap;
}

.hero__lead {
  max-width: 710px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero__proof {
  align-self: end;
  margin-bottom: 34px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-m);
  background: rgba(5, 44, 45, 0.35);
  backdrop-filter: blur(12px);
}

.hero__proof-label {
  color: #acd7d0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__pathway {
  padding: 0;
  margin: 24px 0;
  list-style: none;
}

.hero__pathway li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 1.1rem;
}

.hero__pathway li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.hero__pathway span {
  color: var(--orange-bright);
  font-size: 0.67rem;
  font-weight: 700;
}

.hero__proof > p:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.hero__foot {
  position: relative;
  z-index: 2;
  display: grid;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.72);
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
}

.hero__foot p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.authority {
  background: var(--aqua-200);
}

.authority__grid {
  display: grid;
  min-height: 200px;
  align-items: stretch;
  grid-template-columns: 1.55fr repeat(3, 1fr);
}

.authority__intro,
.metric {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 38px;
  border-left: 1px solid var(--line);
}

.authority__intro {
  padding-left: 0;
  border-left: 0;
}

.authority__intro .eyebrow {
  margin-bottom: 11px;
}

.authority__intro > p:last-child {
  max-width: 390px;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-900);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.metric span {
  max-width: 170px;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.gap-section {
  background: var(--mist);
}

.split-intro {
  display: grid;
  gap: clamp(60px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
}

.split-intro h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.split-intro__body {
  max-width: 640px;
  padding-top: 54px;
}

.split-intro__body > p {
  color: var(--ink-muted);
}

.split-intro__body .large-copy {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  line-height: 1.5;
}

.callout {
  display: grid;
  align-items: start;
  padding-top: 32px;
  margin-top: 42px;
  border-top: 1px solid var(--line);
  gap: 18px;
  grid-template-columns: 34px 1fr;
}

.callout span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.8rem;
}

.callout p {
  margin: 0;
  color: var(--teal-900);
  font-size: 1rem;
  font-weight: 600;
}

.expertise {
  background: var(--white);
}

.section-heading {
  display: grid;
  align-items: end;
  gap: 70px;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.55fr);
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--ink-muted);
}

.service-pathway {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: #eaf6f2;
  transition: color var(--transition);
}

.service-card:first-child {
  border-left: 1px solid var(--line);
}

.service-card__visual {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-position: center;
  background-size: cover;
  filter: saturate(0.8);
  transform: scale(1.01);
  transition: opacity 350ms ease, filter 350ms ease, transform 650ms ease;
}

.service-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(234, 246, 242, 0.15), rgba(234, 246, 242, 0.68));
  content: "";
}

.service-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 460px;
  flex-direction: column;
  padding: 32px 27px 38px;
}

.service-card__number {
  margin-bottom: auto;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 20px;
  font-size: clamp(1.25rem, 1.7vw, 1.75rem);
}

.service-card__content > p:last-child {
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-card:hover,
.service-card:focus-within {
  color: var(--white);
}

.service-card:hover .service-card__visual,
.service-card:focus-within .service-card__visual {
  opacity: 1;
  filter: saturate(1);
  transform: scale(1.025);
}

.service-card:hover .service-card__visual::after,
.service-card:focus-within .service-card__visual::after {
  background: linear-gradient(to bottom, rgba(5, 44, 45, 0.15), rgba(5, 44, 45, 0.88));
}

.service-card:hover .service-card__number,
.service-card:focus-within .service-card__number {
  color: #ffc28a;
}

.service-card:hover .service-card__content > p:last-child,
.service-card:focus-within .service-card__content > p:last-child {
  color: rgba(255, 255, 255, 0.8);
}

.approach {
  position: relative;
  overflow: hidden;
  background: var(--teal-950);
  color: var(--white);
  isolation: isolate;
}

.approach::before {
  position: absolute;
  z-index: 1;
  top: -240px;
  left: -160px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.approach__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(72px, 6vw, 150px);
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1fr);
}

.approach__media {
  position: absolute;
  z-index: 0;
  inset: 0 auto 0 0;
  width: min(54vw, 980px);
  overflow: hidden;
  background: #271914 url("../images/big-cat-poster.jpg") 62% center / cover;
}

.approach__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 44, 45, 0.4) 0%, rgba(5, 44, 45, 0.5) 42%, rgba(5, 44, 45, 0.98) 96%, var(--teal-950) 100%),
    linear-gradient(0deg, var(--teal-950) 0%, rgba(5, 44, 45, 0.26) 28%, rgba(5, 44, 45, 0.3) 72%, var(--teal-950) 100%);
  content: "";
  pointer-events: none;
}

.approach__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(0.78) contrast(0.92);
  opacity: 0.74;
}

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

.approach__intro h2 {
  max-width: 820px;
  font-size: clamp(2.3rem, 3.7vw, 4rem);
}

.approach__intro > p:last-child {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
}

.approach__steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach__steps li {
  display: grid;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line-light);
  gap: 30px;
  grid-template-columns: 50px 1fr;
}

.approach__steps li:last-child {
  border-bottom: 1px solid var(--line-light);
}

.approach__steps > li > span {
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 700;
}

.approach__steps h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.6vw, 2.5rem);
}

.approach__steps p {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.64);
}

.work {
  background: var(--sand);
}

.section-heading--work {
  grid-template-columns: 1fr auto;
}

.featured-project {
  display: grid;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-l);
  background: var(--white);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
}

.featured-project__image {
  position: relative;
  min-height: 580px;
  overflow: hidden;
}

.featured-project__image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 44, 45, 0.68));
  content: "";
}

.featured-project__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms ease;
}

.featured-project:hover .featured-project__image img {
  transform: scale(1.025);
}

.featured-project__image > p {
  position: absolute;
  z-index: 1;
  bottom: 27px;
  left: 31px;
  margin: 0;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-project__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 76px);
}

.featured-project__content h3 {
  margin-bottom: 28px;
  font-size: clamp(2.1rem, 3.5vw, 3.7rem);
  line-height: 1.08;
}

.featured-project__summary {
  margin-bottom: 38px;
  color: var(--ink-muted);
  font-size: 1.03rem;
}

.project-facts {
  margin: 0 0 38px;
}

.project-facts > div {
  display: grid;
  padding-block: 13px;
  border-top: 1px solid var(--line);
  gap: 16px;
  grid-template-columns: 90px 1fr;
}

.project-facts > div:last-child {
  border-bottom: 1px solid var(--line);
}

.project-facts dt {
  color: var(--ink-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
}

.featured-project__content .button {
  align-self: flex-start;
}

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

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--white);
  box-shadow: 0 10px 35px rgba(4, 50, 51, 0.07);
}

.project-card a {
  display: block;
  height: 100%;
  padding: 18px 18px 34px;
}

.project-card__image {
  height: 330px;
  overflow: hidden;
  margin-bottom: 28px;
  border-radius: calc(var(--radius-m) - 7px);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card .eyebrow,
.project-card h3 {
  max-width: 83%;
  margin-left: 14px;
}

.project-card h3 {
  margin-bottom: 0;
}

.project-card__arrow {
  position: absolute;
  right: 34px;
  bottom: 35px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--aqua-200);
  color: var(--teal-900);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.project-card:hover .project-card__arrow {
  background: var(--orange);
  color: var(--white);
  transform: translate(3px, -3px);
}

.partners {
  padding-block: clamp(100px, 11vw, 160px);
  background: var(--mist);
}

.partners__row {
  display: grid;
  align-items: start;
  gap: 10vw;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
}

.partner-copy h2 {
  max-width: 750px;
}

.partner-copy > p {
  max-width: 660px;
  margin-bottom: 32px;
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.partner-types {
  padding-top: 17px;
  counter-reset: partner-type;
}

.partner-types p {
  display: grid;
  align-items: baseline;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 1.02rem;
}

.partner-types p:last-child {
  border-bottom: 1px solid var(--line);
}

.partner-types p::before {
  counter-increment: partner-type;
  color: var(--orange);
  content: "0" counter(partner-type);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: logo-marquee 42s linear infinite;
}

.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}

.logo-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}

.logo-marquee__item {
  display: grid;
  width: 178px;
  height: 150px;
  flex: 0 0 178px;
  place-items: center;
}

.logo-marquee__item img {
  width: auto;
  max-width: 142px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.68;
}

@keyframes logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

.insights {
  background: var(--white);
}

.insight-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.24fr 0.76fr;
  grid-template-rows: repeat(2, 1fr);
}

.insight-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--mist);
  transition: transform var(--transition), box-shadow var(--transition);
}

.insight-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.insight-card > a {
  display: flex;
  height: 100%;
  flex-direction: column;
}

.insight-card--feature {
  min-height: 645px;
  grid-row: 1 / 3;
}

.insight-card--feature .insight-card__image {
  height: 370px;
  overflow: hidden;
}

.insight-card--feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.insight-card--feature:hover img {
  transform: scale(1.025);
}

.insight-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 38px;
}

.insight-card__content h3 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(1.6rem, 2.5vw, 2.65rem);
}

.insight-card__content .text-link {
  margin-top: auto;
}

.insight-card--podcast {
  border: 0;
  background: var(--teal-900);
  color: var(--white);
}

.insight-card--podcast > a {
  flex-direction: row;
  align-items: stretch;
}

.insight-card--podcast .insight-card__content {
  position: relative;
  z-index: 1;
  padding-left: 170px;
}

.insight-card--podcast h3 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 2.2vw, 2.3rem);
}

.insight-card--podcast .insight-card__content > p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

.podcast-mark {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 38px;
  display: flex;
  height: 120px;
  align-items: center;
  gap: 8px;
  transform: translateY(-50%);
}

.podcast-mark i {
  display: block;
  width: 8px;
  border-radius: 5px;
  background: var(--orange-bright);
}

.podcast-mark i:nth-child(1),
.podcast-mark i:nth-child(5) {
  height: 36px;
}

.podcast-mark i:nth-child(2),
.podcast-mark i:nth-child(4) {
  height: 72px;
}

.podcast-mark i:nth-child(3) {
  height: 112px;
}

.insight-card--event > a {
  justify-content: center;
  padding: 38px;
}

.insight-card--event h3 {
  max-width: 510px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

.insight-card--event > a > p:not(.eyebrow):not(.event-place) {
  max-width: 520px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.event-place {
  margin-bottom: 9px;
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(120px, 14vw, 210px);
  background: var(--teal-950) url("../images/sunrise-poster.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.contact-cta::before,
.contact-cta::after {
  position: absolute;
  z-index: 1;
  content: "";
}

.contact-cta::before {
  inset: 0;
  background: linear-gradient(110deg, rgba(3, 31, 32, 0.93), rgba(5, 44, 45, 0.64));
}

.contact-cta::after {
  right: -10%;
  bottom: -55%;
  width: 50vw;
  height: 50vw;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.contact-cta__media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.contact-cta__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta__texture {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px);
  background-size: 90px 90px;
}

.contact-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.contact-cta h2 {
  margin-bottom: 30px;
  font-size: clamp(2.5rem, 4.6vw, 4.9rem);
  line-height: 1.04;
}

.contact-cta__inner > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 auto 38px;
  color: rgba(255, 255, 255, 0.69);
  font-size: 1.1rem;
}

.site-footer {
  padding-block: 85px 28px;
  background: #031f20;
  color: var(--white);
}

.site-footer__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.5fr 0.65fr 0.95fr 0.8fr;
}

.footer-brand img {
  width: 175px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 350px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.93rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column a,
.footer-column address {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-style: normal;
  line-height: 1.7;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--orange-bright);
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.footer-column .social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.82);
  place-items: center;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.footer-column .social-links a:hover,
.footer-column .social-links a:focus-visible {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.social-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.social-links rect,
.social-links circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-label {
  margin-bottom: 13px;
  color: #94c8c0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__bottom p {
  margin: 0;
}

.content-shell {
  max-width: 760px;
  padding-top: 100px;
}

.content-shell h1 {
  color: var(--teal-900);
  font-size: clamp(2.8rem, 5vw, 5rem);
}

@media (min-width: 1800px) {
  html {
    font-size: 18px;
  }

  :root {
    --container: min(1680px, calc(100vw - 160px));
  }

  .section {
    padding-block: clamp(150px, 9vw, 210px);
  }

  .site-header {
    height: 112px;
  }

  .site-logo {
    width: 175px;
  }

  .hero {
    min-height: min(1080px, 100svh);
    padding-top: 112px;
  }

  .hero__inner {
    min-height: 810px;
    gap: 7.5vw;
    grid-template-columns: minmax(0, 1fr) 360px;
    padding-block: 95px 125px;
  }

  .hero__copy {
    max-width: 1140px;
  }

  .hero__lead {
    max-width: 820px;
  }

  .hero__proof {
    padding: 36px;
  }

  .authority__grid {
    min-height: 235px;
  }

  .approach__media {
    width: min(56vw, 1120px);
  }
}

@media (min-width: 2400px) {
  html {
    font-size: 20px;
  }

  :root {
    --container: min(2040px, calc(100vw - 240px));
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 410px;
  }

  .hero__copy {
    max-width: 1320px;
  }
}

@media (max-width: 1120px) {
  :root {
    --container: min(1240px, calc(100vw - 48px));
  }

  .site-nav {
    gap: 18px;
  }

  .hero__inner {
    gap: 45px;
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .authority__grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
  }

  .authority__intro,
  .metric {
    padding: 28px;
  }

  .featured-project {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.85fr);
  }

  .insight-card--podcast .insight-card__content {
    padding-left: 140px;
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 48px, 760px);
  }

  .site-header {
    height: 84px;
  }

  .site-header.is-scrolled {
    height: 72px;
  }

  .site-logo {
    position: relative;
    z-index: 55;
    width: 132px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 55;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 0;
    margin-left: auto;
    cursor: pointer;
  }

  .menu-toggle__label {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .menu-toggle__icon {
    position: relative;
    display: block;
    width: 24px;
    height: 16px;
  }

  .menu-toggle__icon i {
    position: absolute;
    right: 0;
    display: block;
    width: 24px;
    height: 1px;
    background: currentColor;
    transition: transform var(--transition), top var(--transition);
  }

  .menu-toggle__icon i:first-child {
    top: 3px;
  }

  .menu-toggle__icon i:last-child {
    top: 12px;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child {
    top: 7px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 50;
    inset: 0;
    display: flex;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    visibility: hidden;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: clamp(125px, 18vh, 175px) 24px 48px;
    overflow-y: auto;
    background: var(--teal-950);
    opacity: 0;
    overscroll-behavior: contain;
    pointer-events: none;
    transition: opacity var(--transition), visibility var(--transition);
  }

  body.menu-open .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    width: 100%;
    max-width: 720px;
    padding: 17px 0;
    margin-inline: auto;
    border-bottom: 1px solid var(--line-light);
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding-top: 84px;
  }

  .hero__title-line {
    display: inline;
    white-space: normal;
  }

  .hero__inner {
    min-height: 730px;
    align-items: center;
    gap: 50px;
    grid-template-columns: 1fr;
    padding-block: 65px 55px;
  }

  .hero__copy {
    padding-top: 40px;
  }

  .hero__proof {
    width: min(100%, 520px);
    align-self: auto;
    margin-bottom: 0;
  }

  .hero__orb--one {
    top: 26%;
    right: -40%;
    width: 100vw;
    height: 100vw;
  }

  .hero__orb--two {
    top: 35%;
    right: -8%;
    width: 45vw;
    height: 45vw;
  }

  .hero__foot {
    grid-template-columns: repeat(2, 1fr);
  }

  .authority__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .authority__intro {
    min-height: 150px;
    grid-column: 1 / -1;
  }

  .metric:first-of-type {
    border-left: 0;
  }

  .split-intro,
  .approach__grid {
    gap: 55px;
    grid-template-columns: 1fr;
  }

  .split-intro__body {
    max-width: none;
    padding-top: 0;
  }

  .section-heading {
    align-items: start;
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 630px;
  }

  .service-pathway {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .service-card__content {
    min-height: 420px;
  }

  .approach__intro {
    position: static;
  }

  .approach__media {
    inset: 0 0 auto;
    width: 100%;
    height: 760px;
  }

  .approach__media::after {
    background:
      linear-gradient(0deg, var(--teal-950) 0%, rgba(5, 44, 45, 0.5) 42%, rgba(5, 44, 45, 0.68) 100%),
      linear-gradient(90deg, rgba(5, 44, 45, 0.5), rgba(5, 44, 45, 0.24));
  }

  .approach__media video {
    object-position: 61% center;
    opacity: 0.62;
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .featured-project__image {
    min-height: 460px;
  }

  .project-card__image {
    height: 260px;
  }

  .partners__row {
    gap: 65px;
    grid-template-columns: 1fr;
  }

  .logo-marquee__item {
    width: 160px;
    flex-basis: 160px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .insight-card--feature {
    min-height: 590px;
    grid-row: auto;
  }

  .site-footer__grid {
    grid-template-columns: 1.3fr repeat(2, 1fr);
  }

  .footer-address {
    grid-column: 2;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 48px);
    --radius-l: 25px;
    --radius-m: 19px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.45rem, 11.4vw, 3.55rem);
  }

  h2,
  .approach__intro h2 {
    font-size: clamp(2rem, 8.8vw, 2.85rem);
  }

  .section {
    padding-block: 88px;
  }

  .site-header__inner {
    gap: 14px;
  }

  .site-logo {
    width: 120px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    gap: 48px;
    padding-block: 86px 56px;
  }

  .hero__copy {
    padding-top: 0;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .hero__proof {
    padding: 24px;
  }

  .hero__foot {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .hero__foot p {
    padding-block: 11px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .authority__intro,
  .metric {
    min-height: 142px;
    padding: 28px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .authority__intro {
    border-top: 0;
  }

  .metric span {
    max-width: 270px;
  }

  .service-pathway {
    border-top: 0;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:first-child,
  .service-card:nth-child(3) {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-m);
  }

  .service-card__visual {
    opacity: 1;
  }

  .service-card__visual::after {
    background: linear-gradient(to bottom, rgba(5, 44, 45, 0.18), rgba(5, 44, 45, 0.9));
  }

  .service-card__content {
    min-height: 380px;
    color: var(--white);
  }

  .service-card__number {
    color: #ffc28a;
  }

  .service-card__content > p:last-child {
    color: rgba(255, 255, 255, 0.8);
  }

  .approach__steps li {
    gap: 18px;
    grid-template-columns: 35px 1fr;
  }

  .approach__media {
    height: 680px;
  }

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

  .featured-project__image {
    min-height: 330px;
  }

  .featured-project__content {
    padding: 35px 25px 40px;
  }

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

  .project-card__image {
    height: 250px;
  }

  .project-card .eyebrow,
  .project-card h3 {
    max-width: 78%;
    margin-left: 8px;
  }

  .project-card__arrow {
    right: 25px;
    bottom: 30px;
  }

  .logo-marquee {
    margin-top: 65px;
  }

  .logo-marquee__group {
    gap: 20px;
    padding-right: 20px;
  }

  .logo-marquee__item {
    width: 140px;
    height: 124px;
    flex-basis: 140px;
  }

  .logo-marquee__item img {
    max-width: 118px;
    max-height: 50px;
  }

  .insight-card--feature {
    min-height: 540px;
  }

  .insight-card--feature .insight-card__image {
    height: 280px;
  }

  .insight-card__content,
  .insight-card--event > a {
    padding: 27px;
  }

  .insight-card--podcast {
    min-height: 390px;
  }

  .insight-card--podcast .insight-card__content {
    justify-content: flex-end;
    padding: 150px 27px 30px;
  }

  .podcast-mark {
    top: 85px;
    left: 30px;
    height: 100px;
    transform: none;
  }

  .contact-cta {
    text-align: left;
  }

  .contact-cta__inner > p:not(.eyebrow) {
    margin-left: 0;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }

  .footer-address {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

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

  .logo-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .logo-marquee__track {
    animation: none;
  }

  .logo-marquee__group[aria-hidden="true"] {
    display: none;
  }
}
