:root {
  --ink: #111111;
  --text: #2f2f2f;
  --muted: #808080;
  --paper: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --line: #dedede;
  --green: #91c73e;
  --forest: #111111;
  --sage: #808080;
  --steel: #808080;
  --gold: #91c73e;
  --charcoal: #000000;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --container: min(100% - 48px, 1200px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

main,
section,
article,
div,
form {
  min-width: 0;
}

::selection {
  background: rgba(145, 199, 62, 0.28);
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 0 auto;
  padding: 12px max(24px, calc((100vw - 1200px) / 2));
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(18px);
  animation: headerSettle 520ms ease both;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 128px;
  height: 76px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1;
}

.brand img {
  width: 128px;
  height: 74px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms ease;
}

.brand:hover img {
  transform: translateY(-1px);
}

.brand::after {
  content: none;
}

.site-nav {
  display: flex;
  min-width: 0;
  justify-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--surface-soft);
  color: var(--ink);
}

.site-nav a:hover {
  transform: translateY(-1px);
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.nav-cta,
.button-primary {
  background: var(--green);
  color: #111;
}

.nav-cta:hover,
.button-primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-1px);
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost:hover,
.button-light:hover {
  border-color: var(--forest);
  transform: translateY(-1px);
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.section-pad {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(58px, 7vw, 96px) 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.5fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
  width: 100%;
  min-height: clamp(660px, 76vh, 820px);
  margin: 0;
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-top: clamp(76px, 8vw, 110px);
  padding-bottom: clamp(46px, 6vw, 78px);
  overflow: hidden;
  background: #000;
  color: #fff;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.38) 52%, rgba(0, 0, 0, 0.18)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3));
  content: "";
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0;
  transform: scale(1.05);
  animation: heroFade 18s infinite;
}

.hero-slide:nth-child(2) {
  animation-delay: 6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroFade {
  0%,
  28% {
    opacity: 0.52;
  }

  38%,
  100% {
    opacity: 0;
  }
}

.hero-copy,
.hero-proof {
  position: relative;
  z-index: 2;
}

.hero-copy {
  animation: heroContentUp 760ms ease 120ms both;
}

.hero-proof {
  animation: heroContentUp 760ms ease 260ms both;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 5.8rem);
  font-weight: 580;
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-intro {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}

.hero .eyebrow {
  color: var(--green);
}

.hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof,
.hero-media,
.page-hero-media,
.split-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(128, 128, 128, 0.22);
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.hero-proof {
  display: grid;
  gap: 16px;
  justify-items: end;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-media {
  min-height: clamp(480px, 52vw, 600px);
}

.hero-media::after,
.page-hero-media::after,
.split-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(480px, 52vw, 600px);
  object-fit: cover;
}

.hero-card {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(250px, 100%);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.hero-card span {
  color: var(--green);
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 650;
  line-height: 0.9;
}

.hero-card p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  line-height: 1.25;
}

.hero-card-large {
  left: auto;
  bottom: auto;
}

.hero-card-small {
  top: auto;
  right: auto;
}

.page-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  width: 100%;
  min-height: clamp(420px, 52vh, 580px);
  margin: 0;
  padding-right: max(24px, calc((100vw - 1200px) / 2));
  padding-left: max(24px, calc((100vw - 1200px) / 2));
  padding-top: clamp(74px, 8vw, 106px);
  padding-bottom: clamp(42px, 5vw, 66px);
  overflow: hidden;
  background: #000;
  color: #fff;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.56) 55%, rgba(0, 0, 0, 0.34)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.58));
  content: "";
}

.page-hero > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 760px;
  animation: heroContentUp 720ms ease 100ms both;
}

.page-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 4.3vw, 4.8rem);
  font-weight: 580;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
}

.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.36;
  transform: scale(1.03);
}

.quick-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: var(--container);
  margin: -26px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.quick-panel div {
  min-height: 108px;
  padding: 22px;
  background: var(--surface);
}

.quick-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-panel a,
.quick-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.25;
  font-weight: 560;
  overflow-wrap: anywhere;
}

.quick-panel a + a {
  margin-top: 4px;
}

.statement h2,
.split-copy h2,
.section-heading h2,
.capability-copy h2,
.faq-copy h2,
.page-grid > div > h2 {
  max-width: 820px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.4vw, 3.9rem);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-grid-image {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.page-grid-image img {
  width: 100%;
  height: 305px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 220ms ease, transform 260ms ease;
}

.page-grid-image:hover img {
  filter: grayscale(0);
  transform: scale(1.02);
}

.statement-grid,
.team-grid,
.value-grid,
.client-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.statement-grid {
  margin-top: 34px;
}

.statement-grid article,
.team-card,
.content-panel,
.value-card,
.detail-card,
.client-card,
.contact-card,
.capability-list article,
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.statement-grid article:hover,
.team-card:hover,
.content-panel:hover,
.value-card:hover,
.detail-card:hover,
.client-card:hover,
.contact-card:hover,
.capability-list article:hover {
  border-color: rgba(145, 199, 62, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.team-card,
.content-panel,
.value-card,
.detail-card,
.client-card,
.contact-card {
  padding: clamp(22px, 2.4vw, 30px);
}

.statement-grid article {
  overflow: hidden;
  padding: 0;
}

.statement-grid article img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 220ms ease, transform 260ms ease;
}

.statement-grid article:hover img {
  filter: grayscale(0.35);
  transform: scale(1.025);
}

.statement-grid article span,
.statement-grid article h3,
.statement-grid article p {
  display: block;
  margin-right: clamp(22px, 2.4vw, 30px);
  margin-left: clamp(22px, 2.4vw, 30px);
}

.statement-grid article span {
  margin-top: 22px;
}

.statement-grid article p {
  margin-bottom: clamp(22px, 2.4vw, 30px);
}

.statement-grid article,
.team-card,
.value-card,
.client-card {
  min-height: 210px;
}

.value-card {
  min-height: 240px;
}

.value-image {
  overflow: hidden;
  padding: 0;
  min-height: 240px;
}

.value-image img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 220ms ease, transform 260ms ease;
}

.value-image:hover img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.statement-grid span,
.service-card span,
.value-card span,
.detail-card span,
.client-card span {
  color: var(--green);
  font-weight: 650;
}

.statement-grid h3,
.service-card h3,
.team-card h3,
.capability-list h3,
.value-card h3,
.detail-card h3,
.client-card h3 {
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 580;
  line-height: 1.12;
}

.statement-grid p,
.service-card p,
.split-copy p,
.capability-copy p,
.capability-list p,
.team-card p,
.team-card span,
.content-panel p,
.content-panel li,
.detail-card p,
.detail-card li,
.client-card p,
.contact-card p,
.faq-answer,
.site-footer p {
  color: var(--muted);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 66px);
  align-items: center;
}

.split-image {
  min-height: clamp(390px, 42vw, 500px);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: clamp(390px, 42vw, 500px);
  object-fit: cover;
  transition: transform 420ms ease, filter 260ms ease;
}

.split-image:hover img {
  transform: scale(1.025);
}

.split-copy p,
.capability-copy p {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: 1.03rem;
}

.choice-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.choice-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.choice-list span {
  color: var(--gold);
}

.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.service-card {
  display: grid;
  grid-column: span 3;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover {
  border-color: rgba(145, 199, 62, 0.62);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2);
  transition: filter 220ms ease, transform 260ms ease;
}

.service-card:hover img {
  filter: grayscale(0);
  transform: scale(1.025);
}

.service-card div {
  padding: 22px;
}

.featured-card {
  grid-column: span 3;
}

.accent-card {
  display: flex;
  min-height: 100%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--charcoal);
  color: #fff;
}

.accent-card div {
  display: grid;
  align-content: end;
  min-height: 100%;
}

.accent-card h3 {
  color: #fff;
}

.accent-card p,
.accent-card span {
  color: rgba(255, 255, 255, 0.72);
}

.page-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.content-panel h2,
.detail-card h2,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.36rem, 1.7vw, 1.9rem);
  font-weight: 560;
  line-height: 1.1;
}

.content-panel ul,
.detail-card ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 19px;
}

.value-grid,
.client-grid {
  gap: 16px;
}

.client-logos-section {
  padding-top: 0;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 138px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.05);
}

.client-logo img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.03);
}

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

.detail-card.feature {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--charcoal);
  color: #fff;
}

.detail-card.feature h2 {
  color: #fff;
}

.detail-card.feature p,
.detail-card.feature li,
.detail-card.feature span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.contact-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.contact-card a {
  color: var(--muted);
  font-weight: 400;
}

.contact-form-column {
  display: grid;
  gap: 16px;
}

.contact-form-media {
  height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contact-form-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map {
  grid-column: 1 / -1;
}

.map-frame {
  width: 100%;
  height: clamp(320px, 42vw, 460px);
  overflow: hidden;
  background: var(--surface-soft);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 400;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a6a6a6;
  font-weight: 400;
}

.contact-form select option {
  color: var(--muted);
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(145, 199, 62, 0.24);
  border-color: var(--green);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  width: var(--container);
  padding-top: 0;
  padding-bottom: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.07);
}

.metric {
  min-height: 210px;
  padding: clamp(24px, 3vw, 32px);
  background: var(--charcoal);
  color: #fff;
}

.metric:nth-child(2) {
  background: var(--green);
  color: #111;
}

.metric:nth-child(2) span {
  color: rgba(17, 17, 17, 0.68);
}

.metric:nth-child(3) {
  background: var(--muted);
}

.metric strong {
  display: block;
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  font-weight: 560;
  line-height: 0.95;
}

.metric span {
  display: block;
  max-width: 270px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.capability-list {
  display: grid;
  gap: 12px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
}

.capability-list span {
  color: var(--gold);
  font-size: clamp(1.9rem, 2.6vw, 3rem);
  font-weight: 650;
  line-height: 1;
}

.management {
  padding-top: 0;
}

.team-card {
  display: grid;
  align-content: start;
  gap: 4px;
  overflow: hidden;
  padding: 0;
}

.avatar {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface-soft);
  color: var(--green);
  font-weight: 650;
}

.team-photo-frame {
  display: block;
  width: 100%;
  height: 380px;
  margin: 0 0 24px;
  overflow: hidden;
  background: var(--surface-soft);
  line-height: 0;
}

.team-photo {
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

.team-placeholder {
  display: grid;
  place-items: center;
}

.team-placeholder .avatar {
  width: 118px;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line);
  font-size: 1.45rem;
}

.team-card h3,
.team-card p,
.team-card span {
  margin-right: clamp(22px, 2.4vw, 30px);
  margin-left: clamp(22px, 2.4vw, 30px);
}

.team-card h3 {
  margin-top: 0;
}

.team-card p {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 600;
}

.team-card span {
  display: block;
  margin-bottom: clamp(22px, 2.4vw, 30px);
}

.trust-strip {
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  background: var(--charcoal);
  color: #fff;
  font-size: clamp(1.08rem, 1.8vw, 1.9rem);
  font-weight: 600;
  white-space: nowrap;
}

.trust-track {
  display: flex;
  width: max-content;
  gap: clamp(36px, 6vw, 86px);
  padding-left: clamp(24px, 4vw, 52px);
  animation: trustMarquee 24s linear infinite;
}

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

.trust-track span:nth-child(even) {
  color: var(--green);
}

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

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

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, padding-left 180ms ease;
}

.faq-item:hover {
  color: var(--green);
  padding-left: 8px;
}

.faq-item span {
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 560;
}

.faq-item strong {
  color: var(--green);
  font-size: 1.55rem;
  line-height: 1;
}

.faq-answer {
  display: none;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.faq-answer.is-open {
  display: block;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(150px, 0.7fr) minmax(190px, 0.85fr) minmax(210px, 0.8fr);
  gap: clamp(28px, 5vw, 46px);
  width: 100%;
  margin: 0;
  padding: clamp(34px, 5vw, 56px) max(24px, calc((100vw - 1200px) / 2)) 24px;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(145, 199, 62, 0.08), rgba(255, 255, 255, 0)),
    var(--charcoal);
  color: #fff;
}

.site-footer img {
  width: 144px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.78);
  overflow-wrap: anywhere;
}

.site-footer a:hover {
  color: #fff;
}

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

.copyright {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes headerSettle {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroContentUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 10px 18px;
  }

  .brand {
    min-width: 112px;
    height: 66px;
  }

  .brand img {
    width: 112px;
    height: 64px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    gap: 7px;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    place-content: center;
  }

  .menu-toggle::before,
  .menu-toggle::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-header.is-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 4px;
    padding-top: 10px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .site-header.is-open .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 13px 12px;
    border-radius: var(--radius);
  }

  .site-header.is-open .nav-cta {
    display: inline-flex;
    grid-column: 1 / -1;
    width: 100%;
  }

  .hero,
  .page-hero,
  .split-feature,
	  .capabilities,
	  .faq,
	  .section-heading,
	  .page-grid,
	  .contact-body {
	    grid-template-columns: 1fr;
	  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.52)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.6));
  }

  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
  }

  .hero-card {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 480px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 100%;
  }

  .quick-panel,
  .statement-grid,
  .team-grid,
  .metrics {
    grid-template-columns: 1fr;
  }

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

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

  .featured-card {
    grid-column: span 2;
  }

  .value-grid,
  .client-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .detail-card.feature {
    grid-column: auto;
  }

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

@media (max-width: 680px) {
  :root {
    --container: min(100% - 28px, 1200px);
  }

  .site-header {
    top: 0;
    width: 100%;
  }

  .brand {
    min-width: 94px;
    height: 58px;
  }

  .brand img {
    width: 94px;
    height: 56px;
    padding: 0;
  }

  .section-pad {
    padding: 52px 0;
  }

  .hero,
  .page-hero {
    padding-top: 62px;
  }

  .hero h1,
  .page-hero h1,
  .statement h2,
  .split-copy h2,
  .section-heading h2,
  .capability-copy h2,
  .faq-copy h2,
  .page-grid > div > h2 {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
    line-height: 1.03;
  }

  .hero-intro,
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .page-hero-media,
  .page-hero-media img {
    min-height: 100%;
  }

  .hero-card {
    width: min(190px, calc(100% - 32px));
    padding: 14px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-card {
    width: 100%;
  }

  .hero-card-small {
    top: 16px;
    right: 16px;
  }

  .hero-card-large {
    left: 16px;
    bottom: 16px;
  }

  .quick-panel {
    margin-top: -18px;
  }

  .quick-panel div {
    min-height: auto;
    padding: 18px;
  }

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

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo {
    min-height: 118px;
    padding: 18px;
  }

  .page-grid-image img {
    height: 240px;
  }

  .team-photo-frame {
    height: 320px;
  }

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

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .capability-list article {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 180px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  :root {
    --container: min(100% - 22px, 1200px);
  }

  .site-header {
    padding: 8px 12px;
  }

  .brand {
    min-width: 84px;
    height: 52px;
  }

  .brand img {
    width: 84px;
    height: 50px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero,
  .page-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero h1,
  .page-hero h1,
  .statement h2,
  .split-copy h2,
  .section-heading h2,
  .capability-copy h2,
  .faq-copy h2,
  .page-grid > div > h2 {
    font-size: clamp(1.95rem, 11vw, 3rem);
  }

  .hero-card span {
    font-size: 2.2rem;
  }

  .statement-grid article img,
  .service-card {
    min-height: 0;
  }

  .service-card {
    grid-template-rows: 190px 1fr;
  }

  .value-card,
  .value-image,
  .value-image img {
    min-height: 210px;
  }

  .client-logo-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-right: 16px;
    padding-left: 16px;
  }
}
