:root {
  --ink: #090909;
  --charcoal: #171717;
  --gray-900: #252525;
  --gray-700: #565656;
  --gray-500: #878787;
  --gray-300: #c8c8c8;
  --gray-200: #dedede;
  --gray-100: #f0f0ee;
  --paper: #f8f8f6;
  --white: #ffffff;
  --red: #ed1818;
  --red-dark: #c90f0f;
  --shell: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  isolation: isolate;
  overflow-x: hidden;
  position: relative;
}

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

button {
  font: inherit;
}

.shell {
  margin: 0 auto;
  max-width: var(--shell);
  padding-left: 28px;
  padding-right: 28px;
  width: 100%;
}

.skip-link {
  background: var(--red);
  color: var(--white);
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  transition: top .2s;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.animated-backdrop {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.backdrop-grid {
  background-image:
    linear-gradient(rgba(9, 9, 9, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 9, 9, .035) 1px, transparent 1px);
  background-size: 90px 90px;
  inset: -90px;
  opacity: .7;
  position: absolute;
  transform-origin: center;
  animation: grid-drift 26s linear infinite;
}

.glow {
  border-radius: 50%;
  filter: blur(18px);
  opacity: .22;
  position: absolute;
}

.glow-one {
  background: var(--red);
  height: 320px;
  right: -120px;
  top: 18%;
  width: 320px;
  animation: glow-float 18s ease-in-out infinite;
}

.glow-two {
  background: #111;
  bottom: 6%;
  height: 420px;
  left: -180px;
  opacity: .08;
  width: 420px;
  animation: glow-float 22s ease-in-out infinite reverse;
}

.signal-dot {
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(237, 24, 24, .08);
  height: 8px;
  position: absolute;
  width: 8px;
}

.signal-one {
  left: 8%;
  top: 30%;
  animation: signal-rise 13s ease-in-out infinite;
}

.signal-two {
  right: 16%;
  top: 58%;
  animation: signal-rise 16s ease-in-out infinite 1.5s;
}

.signal-three {
  left: 48%;
  top: 82%;
  animation: signal-rise 18s ease-in-out infinite 3s;
}

.utility-bar {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  color: #aaa;
  font-size: .68rem;
  letter-spacing: .03em;
}

.utility-inner {
  align-items: center;
  display: flex;
  height: 34px;
  justify-content: space-between;
}

.utility-inner > div {
  align-items: center;
  display: flex;
  gap: 16px;
}

.utility-inner a:hover {
  color: var(--white);
}

.utility-divider {
  background: #555;
  height: 12px;
  width: 1px;
}

.site-header {
  background: var(--ink);
  color: var(--white);
  position: relative;
  z-index: 30;
}

.header-inner {
  align-items: center;
  display: flex;
  height: 94px;
  justify-content: space-between;
}

.brand {
  display: block;
  height: auto;
  width: 190px;
}

.brand img {
  display: block;
  height: auto;
  width: 100%;
}

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

.main-nav > a {
  font-size: .78rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-contact) {
  padding: 12px 0;
  position: relative;
}

.main-nav > a:not(.nav-contact)::after {
  background: var(--red);
  bottom: 5px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s;
  width: 100%;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-contact {
  align-items: center;
  border: 1px solid #555;
  display: flex;
  gap: 24px;
  padding: 14px 17px;
  transition: background .2s, border-color .2s;
}

.nav-contact:hover {
  background: var(--red);
  border-color: var(--red);
}

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 10px;
  width: 44px;
}

.menu-toggle span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
  width: 24px;
}

.hero {
  background: var(--ink);
  color: var(--white);
  min-height: 690px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, .055) 50%),
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 220px 100%, 100% 120px;
  content: "";
  inset: -120px 0 0;
  opacity: .35;
  position: absolute;
  animation: hero-grid-slide 24s linear infinite;
}

.hero::after {
  background: radial-gradient(circle, rgba(237, 24, 24, .34), transparent 60%);
  content: "";
  height: 520px;
  position: absolute;
  right: -240px;
  top: -190px;
  width: 520px;
  animation: hero-pulse 8s ease-in-out infinite;
}

.hero-motion {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.hero-motion span {
  background: linear-gradient(90deg, transparent, rgba(237, 24, 24, .75), transparent);
  height: 1px;
  left: -35%;
  position: absolute;
  width: 35%;
}

.hero-motion span:nth-child(1) {
  top: 27%;
  animation: scan-line 9s linear infinite;
}

.hero-motion span:nth-child(2) {
  top: 53%;
  animation: scan-line 12s linear infinite 2s;
}

.hero-motion span:nth-child(3) {
  top: 76%;
  animation: scan-line 10s linear infinite 4s;
}

.hero-layout {
  align-items: stretch;
  display: grid;
  grid-template-columns: 1.5fr .75fr;
  min-height: 620px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 800px;
  padding: 90px 70px 90px 0;
}

.kicker {
  align-items: center;
  border: 1px solid rgba(9, 9, 9, .12);
  border-radius: 999px;
  color: var(--gray-700);
  display: inline-flex;
  font-size: .64rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: .13em;
  margin-bottom: 24px;
  padding: 9px 13px;
  position: relative;
  text-transform: uppercase;
}

.kicker::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 6px;
  width: 6px;
}

.kicker-light {
  border-color: rgba(255, 255, 255, .18);
  color: #a1a1a1;
}

h1,
h2 {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 500;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(4.4rem, 8.5vw, 8rem);
  line-height: .88;
}

h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lede {
  color: #b2b2b2;
  font-size: 1.06rem;
  line-height: 1.75;
  margin: 36px 0 40px;
  max-width: 600px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 28px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: .78rem;
  font-weight: 700;
  gap: 34px;
}

.button-red {
  background: var(--red);
  padding: 17px 20px;
  transition: background .2s;
}

.button-red:hover {
  background: var(--red-dark);
}

.button-quiet {
  border-bottom: 1px solid #777;
  padding: 8px 0;
}

.hero-feature {
  align-self: end;
  background: var(--red);
  min-height: 465px;
  overflow: hidden;
  padding: 46px 40px;
  position: relative;
}

.hero-feature::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, .14) 42% 43%, transparent 43% 100%);
  content: "";
  inset: -40%;
  opacity: .6;
  position: absolute;
  animation: feature-sweep 13s linear infinite;
}

.feature-label {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 70px;
  text-transform: uppercase;
}

.hero-feature h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.13;
  position: relative;
  z-index: 1;
}

.hero-feature > a {
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  bottom: 42px;
  font-size: .75rem;
  font-weight: 700;
  left: 40px;
  padding-bottom: 5px;
  position: absolute;
  z-index: 1;
}

.hero-feature > a span {
  margin-left: 25px;
}

.feature-index {
  bottom: -45px;
  color: rgba(0, 0, 0, .14);
  font-family: "Inter", sans-serif;
  font-size: 13rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -20px;
}

.feature-index span {
  color: rgba(255, 255, 255, .35);
}

.hero-rule {
  background: linear-gradient(to right, var(--red) 18%, #444 18%);
  bottom: 0;
  height: 7px;
  left: 0;
  position: absolute;
  width: 100%;
}

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

.intro-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: .35fr 1.65fr;
}

.section-label {
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  gap: 16px;
  padding-bottom: 18px;
  position: relative;
}

.section-label span {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  font-size: .62rem;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.section-label p {
  color: var(--gray-700);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.intro-content h2,
.section-top h2,
.focus-intro h2,
.approach-statement h2,
.leader-copy h2,
.contact-heading h2 {
  font-size: clamp(3.1rem, 6vw, 5.8rem);
  letter-spacing: -.05em;
  line-height: 1;
  position: relative;
}

.intro-columns {
  display: grid;
  gap: 55px;
  grid-template-columns: 1fr 1fr;
  margin-top: 55px;
}

.intro-columns p {
  color: var(--gray-700);
  font-size: .98rem;
  line-height: 1.8;
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  background:
    radial-gradient(circle at 78% 18%, rgba(237, 24, 24, .18), transparent 28%),
    linear-gradient(115deg, transparent 0 55%, rgba(255, 255, 255, .04) 55% 56%, transparent 56%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  animation: dark-field 18s ease-in-out infinite;
}

.section-dark > .shell {
  position: relative;
  z-index: 1;
}

.section-top {
  align-items: flex-end;
  display: flex;
  gap: 70px;
  justify-content: space-between;
  position: relative;
}

.section-top > p {
  color: #999;
  border-left: 1px solid rgba(255, 255, 255, .18);
  line-height: 1.75;
  max-width: 390px;
  padding-left: 26px;
}

.service-grid {
  background: #3c3c3c;
  border: 1px solid #3c3c3c;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 75px;
}

.service-item {
  background: var(--charcoal);
  min-height: 520px;
  padding: 36px;
  position: relative;
  transition: background .25s, transform .25s;
}

.service-item + .service-item {
  border-left: 0;
}

.service-item:hover {
  background: #212121;
  transform: translateY(-8px);
}

.service-heading {
  align-items: flex-start;
  display: flex;
  justify-content: flex-end;
}

.service-heading svg {
  fill: none;
  height: 38px;
  stroke: var(--red);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 38px;
}

.service-item h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  margin: 58px 0 22px;
}

.service-item p {
  color: #999;
  font-size: .88rem;
  line-height: 1.75;
}

.service-item ul {
  color: #b8b8b8;
  display: grid;
  gap: 10px;
  font-size: .76rem;
  line-height: 1.55;
  list-style: none;
  margin-top: 22px;
  padding-bottom: 0;
}

.service-item li {
  padding-left: 18px;
  position: relative;
}

.service-item li::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  top: .55em;
  width: 5px;
}

.featured-service {
  grid-column: span 3;
  min-height: 330px;
}

.featured-service h3 {
  max-width: 560px;
}

.featured-service p {
  max-width: 760px;
}

.featured-service ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 780px;
}

.inline-label {
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 20px;
}

.focus-grid {
  display: grid;
  gap: 95px;
  grid-template-columns: .9fr 1.1fr;
  margin-top: 70px;
}

.focus-intro h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.focus-intro p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-top: 36px;
  max-width: 500px;
}

.focus-list {
  border-top: 1px solid var(--gray-300);
}

.focus-list > div {
  align-items: center;
  border-bottom: 1px solid var(--gray-300);
  display: grid;
  gap: 25px;
  grid-template-columns: 55px 1fr;
  min-height: 92px;
}

.focus-list span {
  color: var(--red);
  font-size: .65rem;
}

.focus-list h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.focus-list p {
  color: var(--gray-700);
  font-size: .88rem;
  line-height: 1.7;
  margin-top: 8px;
}

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

.value-grid article {
  background: var(--ink);
  color: white;
  min-height: 230px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.value-grid article::after {
  background: radial-gradient(circle, rgba(237, 24, 24, .25), transparent 65%);
  content: "";
  height: 180px;
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
}

.value-grid span {
  color: var(--red);
  font-size: .65rem;
  font-weight: 700;
}

.value-grid h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 58px;
}

.value-grid p {
  color: #aaa;
  font-size: .86rem;
  line-height: 1.7;
  margin-top: 14px;
}

.approach {
  background: var(--ink);
  color: var(--white);
  padding: 130px 0;
  position: relative;
  overflow: hidden;
}

.approach::before {
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(255, 255, 255, .055) 50%, transparent 50.15%),
    radial-gradient(circle at 10% 80%, rgba(237, 24, 24, .18), transparent 26%);
  background-size: 160px 100%, auto;
  content: "";
  inset: 0;
  opacity: .65;
  pointer-events: none;
  position: absolute;
  animation: approach-lines 28s linear infinite;
}

.approach > .shell {
  position: relative;
  z-index: 1;
}

.approach-layout {
  display: grid;
  gap: 110px;
  grid-template-columns: .9fr 1.1fr;
}

.approach-statement > p:last-child {
  color: #969696;
  line-height: 1.8;
  margin-top: 40px;
  max-width: 520px;
}

.approach-steps {
  border-top: 1px solid #444;
}

.approach-step {
  border-bottom: 1px solid #444;
  display: grid;
  gap: 28px;
  grid-template-columns: 52px 1fr;
  padding: 32px 0;
}

.approach-step > span {
  color: var(--red);
  font-size: .65rem;
  padding-top: 5px;
}

.approach-step h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.approach-step p {
  color: #888;
  font-size: .86rem;
  line-height: 1.7;
}

.leader-profile {
  align-items: center;
  display: grid;
  gap: clamp(44px, 6vw, 80px);
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  margin-top: 65px;
}

.leader-mark {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 72% 28%, rgba(237, 24, 24, .16), transparent 28%),
    linear-gradient(135deg, #071a2b, #0b0b0b 68%);
  border: 1px solid rgba(9, 9, 9, .12);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 360px;
  min-height: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.leader-mark::after {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  content: "";
  height: 80%;
  position: absolute;
  width: 80%;
  animation: ring-breathe 6s ease-in-out infinite;
}

.leader-mark::before {
  background: linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 38%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: 2;
}

.leader-mark img {
  display: block;
  height: 92%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  position: relative;
  width: auto;
  z-index: 1;
}

.leader-copy {
  align-self: center;
  padding: 0;
}

.profile-label {
  color: var(--gray-700);
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  margin-bottom: 20px;
  padding: 0;
  text-transform: uppercase;
}

.leader-copy h2 {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
}

.credentials {
  color: var(--red);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.65;
  margin-top: 13px;
}

.leader-bio {
  color: var(--gray-700);
  line-height: 1.85;
  margin-top: 32px;
  max-width: 620px;
}

.section-soft {
  background: var(--gray-100);
  padding: 120px 0;
}

.perspectives-top > p {
  color: var(--gray-700);
  border-left-color: rgba(9, 9, 9, .18);
}

.perspective-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr 1fr 1fr;
  margin-top: 70px;
}

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

.perspective-card {
  background: var(--white);
  border-top: 5px solid var(--ink);
  min-height: 380px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform .25s;
}

.perspective-card::before {
  background: linear-gradient(120deg, transparent, rgba(237, 24, 24, .08), transparent);
  content: "";
  height: 100%;
  left: -120%;
  position: absolute;
  top: 0;
  transform: skewX(-16deg);
  width: 80%;
  transition: left .5s ease;
}

.perspective-card:hover {
  transform: translateY(-7px);
}

.perspective-card:hover::before {
  left: 130%;
}

.featured-perspective {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.card-type {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.perspective-card h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.16;
  margin-top: 65px;
}

.client-card {
  min-height: 250px;
}

.client-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 70px;
}

.client-marquee {
  background:
    linear-gradient(90deg, var(--gray-100), transparent 12%, transparent 88%, var(--gray-100)),
    white;
  border-bottom: 1px solid rgba(9, 9, 9, .12);
  border-top: 1px solid rgba(9, 9, 9, .12);
  margin-top: 70px;
  overflow: hidden;
  padding: 28px 0;
  position: relative;
}

.client-track {
  align-items: center;
  animation: client-scroll 34s linear infinite;
  display: flex;
  gap: 22px;
  width: max-content;
}

.client-marquee:hover .client-track {
  animation-play-state: paused;
}

.client-logo-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(9, 9, 9, .1);
  display: flex;
  flex: 0 0 230px;
  height: 150px;
  justify-content: center;
  padding: 26px;
}

.client-logo-card img {
  display: block;
  max-height: 92px;
  max-width: 170px;
  object-fit: contain;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 11px));
  }
}

.profile-download {
  background: var(--gray-100);
  overflow: hidden;
  padding: 105px 0;
  position: relative;
}

.profile-download::before {
  background:
    radial-gradient(circle at 86% 20%, rgba(237, 24, 24, .18), transparent 24%),
    linear-gradient(90deg, rgba(9, 9, 9, .04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(9, 9, 9, .04) 1px, transparent 1px);
  background-size: auto, 70px 70px, 70px 70px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.download-card {
  align-items: flex-end;
  background: var(--white);
  border: 1px solid rgba(9, 9, 9, .12);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  overflow: hidden;
  padding: clamp(34px, 6vw, 70px);
  position: relative;
  z-index: 1;
}

.download-card h2 {
  font-size: clamp(3rem, 5.6vw, 5.4rem);
  letter-spacing: -.05em;
  line-height: .98;
  margin-top: 18px;
}

.download-copy p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
}

.download-button {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: inline-flex;
  font-size: .78rem;
  font-weight: 800;
  gap: 18px;
  letter-spacing: .04em;
  min-height: 56px;
  padding: 0 24px;
  text-transform: uppercase;
}

.download-button span {
  font-size: 1rem;
}

.perspective-card > a {
  bottom: 28px;
  font-size: .7rem;
  font-weight: 700;
  position: absolute;
}

.perspective-card > a span {
  color: var(--red);
  margin-left: 12px;
}

.featured-perspective > a span {
  color: var(--white);
}

.contact {
  background: var(--charcoal);
  color: var(--white);
  padding: 125px 0;
  position: relative;
  overflow: hidden;
}

.contact::before {
  background:
    radial-gradient(circle at 82% 16%, rgba(237, 24, 24, .26), transparent 24%),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, .04) 48% 49%, transparent 49%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  animation: contact-shift 16s ease-in-out infinite;
}

.contact > .shell {
  position: relative;
  z-index: 1;
}

.contact-heading {
  border-bottom: 1px solid #414141;
  padding-bottom: 65px;
  position: relative;
}

.contact-heading h2 {
  max-width: 920px;
}

.contact-form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid #414141;
  display: grid;
  gap: 50px;
  grid-template-columns: .78fr 1.22fr;
  margin-top: 65px;
  padding: clamp(28px, 5vw, 55px);
}

.form-intro span {
  color: var(--red);
  display: block;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .14em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.form-intro h3 {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.1;
}

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

.contact-form label {
  color: #a7a7a7;
  display: grid;
  font-size: .65rem;
  font-weight: 800;
  gap: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, .06);
  border: 1px solid #4a4a4a;
  border-radius: 0;
  color: var(--white);
  font: inherit;
  letter-spacing: normal;
  min-height: 52px;
  outline: none;
  padding: 14px 16px;
  text-transform: none;
  transition: border-color .2s ease, background .2s ease;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--red) 50%),
    linear-gradient(135deg, var(--red) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
}

.contact-form option {
  background: var(--charcoal);
  color: var(--white);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: rgba(255, 255, 255, .09);
  border-color: var(--red);
}

.form-message {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  grid-column: 2;
  margin-top: 4px;
}

.form-actions button {
  border: 0;
  cursor: pointer;
  font-size: .75rem;
  font-weight: 900;
  min-height: 54px;
  padding: 0 22px;
  text-transform: uppercase;
}

.form-actions button:first-child {
  background: var(--red);
  color: var(--white);
}

.form-actions button:first-child span {
  margin-left: 12px;
}

.form-whatsapp {
  background: #25d366;
  color: #06170d;
}

.form-note {
  color: #8e8e8e;
  font-size: .72rem;
  grid-column: 2;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  gap: 75px;
  grid-template-columns: .75fr 1.25fr;
  margin-top: 65px;
}

.contact-information {
  border-top: 1px solid #414141;
}

.contact-row {
  border-bottom: 1px solid #414141;
  display: grid;
  gap: 30px;
  grid-template-columns: 90px 1fr;
  padding: 24px 0;
}

.contact-row > span {
  color: #777;
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-row a {
  font-size: .82rem;
  line-height: 1.65;
}

.contact-row a:hover {
  color: var(--red);
}

.map-panel {
  background: #222;
  min-height: 410px;
  overflow: hidden;
  position: relative;
}

.map-panel iframe {
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.08);
  height: 100%;
  min-height: 410px;
  width: 100%;
}

.map-marker {
  background: var(--red);
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 28px rgba(237, 24, 24, .42);
  height: 34px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -100%) rotate(-45deg);
  width: 34px;
  z-index: 3;
}

.map-marker::before {
  background: white;
  border-radius: 50%;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
}

.map-marker::after {
  animation: marker-pulse 1.9s ease-out infinite;
  border: 2px solid rgba(237, 24, 24, .65);
  border-radius: 50%;
  content: "";
  height: 58px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 58px;
}

@keyframes marker-pulse {
  0% {
    opacity: .8;
    transform: translate(-50%, -50%) rotate(45deg) scale(.55);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(45deg) scale(1.35);
  }
}

@keyframes grid-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(90px, 90px, 0);
  }
}

@keyframes glow-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-34px, 28px, 0) scale(1.08);
  }
}

@keyframes signal-rise {
  0%, 100% {
    opacity: .12;
    transform: translate3d(0, 0, 0);
  }
  45% {
    opacity: .72;
    transform: translate3d(22px, -34px, 0);
  }
}

@keyframes hero-grid-slide {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(120px);
  }
}

@keyframes hero-pulse {
  0%, 100% {
    opacity: .38;
    transform: scale(.94);
  }
  50% {
    opacity: .72;
    transform: scale(1.08);
  }
}

@keyframes scan-line {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(390%);
    opacity: 0;
  }
}

@keyframes feature-sweep {
  0% {
    transform: translate3d(-10%, -10%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(10%, 10%, 0) rotate(360deg);
  }
}

@keyframes dark-field {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-28px, 18px, 0);
  }
}

@keyframes approach-lines {
  0% {
    background-position: 0 0, center;
  }
  100% {
    background-position: 160px 0, center;
  }
}

@keyframes ring-breathe {
  0%, 100% {
    opacity: .45;
    transform: scale(.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes contact-shift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(24px, -18px, 0);
  }
}

footer {
  background: #050505;
  color: var(--white);
  padding: 70px 0 25px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
}

.footer-brand .brand {
  width: 230px;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links span {
  color: #666;
  font-size: .63rem;
  letter-spacing: .12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.footer-links a {
  font-size: .76rem;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid #282828;
  color: #666;
  display: flex;
  font-size: .66rem;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 24px;
}

.footer-bottom a {
  color: #aaa;
}

.footer-bottom a span {
  color: var(--red);
  margin-left: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1040px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: 1.25fr .75fr;
  }

  .hero-copy {
    padding-right: 45px;
  }

  .service-item {
    min-height: 470px;
    padding: 28px;
  }

  .approach-layout,
  .focus-grid {
    gap: 65px;
  }
}

@media (max-width: 860px) {
  .utility-inner > div a:first-child,
  .utility-divider {
    display: none;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 3;
  }

  .main-nav {
    align-items: stretch;
    background: var(--ink);
    flex-direction: column;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 104px 28px 35px;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translateY(-12px);
    transition: opacity .2s, transform .2s;
    width: 100%;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-contact) {
    border-top: 1px solid #333;
    font-size: .9rem;
    padding: 18px 0;
  }

  .nav-contact {
    justify-content: space-between;
    margin-top: 18px;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-layout {
    grid-template-columns: 1fr;
    padding-bottom: 60px;
  }

  .hero-copy {
    padding: 80px 0 70px;
  }

  .hero-feature {
    min-height: 360px;
  }

  .intro-layout,
  .approach-layout,
  .leader-profile,
  .contact-grid,
  .contact-form,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .leader-profile {
    max-width: 560px;
  }

  .leader-mark {
    max-width: 320px;
  }

  .leader-mark img {
    height: 92%;
  }

  .leader-copy {
    padding: 0;
  }

  .section-label:not(.inline-label) {
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 20px;
  }

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

  .service-item {
    min-height: 360px;
  }

  .featured-service {
    grid-column: auto;
  }

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

  .service-item h3 {
    margin-top: 55px;
  }

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

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

  .perspective-card {
    min-height: 320px;
  }

  .client-logo-card {
    flex-basis: 200px;
    height: 132px;
  }

  .leader-mark {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  .utility-inner {
    font-size: .6rem;
  }

  .utility-inner > div {
    display: none;
  }

  .header-inner {
    height: 78px;
  }

  .brand {
    width: 164px;
  }

  .brand img {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(3.65rem, 18vw, 5rem);
  }

  .hero-copy {
    padding-top: 65px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-feature {
    min-height: 390px;
    padding: 34px 28px;
  }

  .hero-feature > a {
    bottom: 35px;
    left: 28px;
  }

  .section,
  .section-dark,
  .section-soft,
  .approach,
  .profile-download,
  .contact {
    padding-bottom: 85px;
    padding-top: 85px;
  }

  .intro-layout {
    gap: 45px;
  }

  .intro-content h2,
  .section-top h2,
  .focus-intro h2,
  .approach-statement h2,
  .leader-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .intro-columns {
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .section-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
  }

  .download-card {
    align-items: flex-start;
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .service-grid,
  .perspective-grid,
  .client-marquee {
    margin-top: 50px;
  }

  .client-track {
    animation-duration: 24s;
  }

  .service-item {
    min-height: 400px;
    padding: 25px;
  }

  .focus-grid,
  .leader-profile,
  .contact-grid,
  .contact-form {
    gap: 50px;
    margin-top: 48px;
  }

  .focus-list h3 {
    font-size: 1.25rem;
  }

  .approach-layout {
    gap: 65px;
  }

  .leader-mark {
    max-width: 280px;
  }

  .leader-copy {
    padding: 0;
  }

  .form-actions,
  .form-note {
    grid-column: auto;
  }

  .profile-label {
    font-size: .6rem;
    line-height: 1.5;
  }

  .leader-bio {
    margin-top: 24px;
  }

  .contact-row {
    gap: 12px;
    grid-template-columns: 1fr;
  }

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

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }

  .footer-main,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 45px;
  }

  .footer-links {
    gap: 65px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
