:root {
  --navy: #082f45;
  --deep: #052a3d;
  --blue: #075f8c;
  --orange: #ff7718;
  --gold: #e7af32;
  --ink: #173447;
  --muted: #5a7382;
  --line: #d6e3e8;
  --paper: #ffffff;
  --soft: #f4f8fa;
  --shadow: 0 20px 50px rgba(7, 47, 69, 0.12);
  --shadow-sm: 0 10px 28px rgba(7, 47, 69, 0.1);
  --radius: 12px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(8, 47, 69, 0.06);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(7, 47, 69, 0.1);
}

.brand img {
  width: 178px;
  height: auto;
  background: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  position: relative;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--soft);
  color: var(--orange);
  outline: none;
}

.site-nav a.is-active {
  color: var(--orange);
  background: rgba(255, 119, 24, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s ease;
}

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

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

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

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: min(740px, 86svh);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 46px 20px 140px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 119, 24, 0.1), transparent 28%),
    radial-gradient(circle at 80% 40%, rgba(7, 95, 140, 0.06), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 64%, #f8fbfc 100%);
}

.hero-glow {
  position: absolute;
  inset: 12% 20% auto;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(231, 175, 50, 0.12), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 20px;
  width: min(100%, 760px);
}

.hero-logo {
  width: clamp(230px, 27vw, 360px);
  height: auto;
  background: transparent;
  filter: drop-shadow(0 12px 24px rgba(8, 47, 69, 0.08));
}

.tagline {
  margin: 0;
  max-width: 760px;
  padding: 12px clamp(18px, 4vw, 46px);
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(90deg, var(--deep), #6a5130 53%, var(--orange));
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 14px 30px rgba(8, 47, 69, 0.18);
}

.hero h1 {
  margin: 36px 0 0;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.title-rule {
  width: min(360px, 70vw);
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
}

.profile-year {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #ff8a2e, var(--orange));
  box-shadow: 0 10px 24px rgba(255, 119, 24, 0.28);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: #fff;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(7, 47, 69, 0.16);
  outline: none;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 14px 32px rgba(255, 119, 24, 0.35);
}

/* ——— Waves ——— */

.cover-wave,
.footer-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 136px;
  overflow: hidden;
  pointer-events: none;
}

.cover-wave span,
.footer-wave span {
  position: absolute;
  left: 50%;
  width: 140vw;
  min-width: 1200px;
  border-radius: 50% 50% 0 0;
  transform: translateX(-50%);
}

.wave-orange {
  bottom: 42px;
  height: 122px;
  background: var(--orange);
}

.wave-blue {
  bottom: 14px;
  height: 108px;
  background: var(--blue);
  transform: translateX(-47%) rotate(-4deg);
}

.wave-deep {
  bottom: -52px;
  height: 112px;
  background: var(--deep);
}

/* ——— Sections ——— */

.section {
  padding: clamp(72px, 10vw, 118px) 0;
  position: relative;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.section-kicker {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  column-gap: 18px;
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--navy);
  text-transform: uppercase;
}

.section-kicker::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  border-radius: 2px;
}

.section-kicker span,
.section-kicker strong {
  grid-column: 1;
  line-height: 0.95;
}

.section-kicker span {
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0.01em;
}

.section-kicker strong {
  color: var(--orange);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.section-kicker.compact {
  margin-bottom: 14px;
}

.section-kicker.compact strong {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.lead {
  color: var(--navy);
  font-size: clamp(1.1rem, 2.1vw, 1.32rem);
  font-weight: 650;
  line-height: 1.55;
}

.about-section p,
.ceo-section p,
.section-intro {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
}

.section-intro {
  max-width: 840px;
  margin-bottom: 36px;
}

/* ——— Company facts ——— */

.company-facts {
  display: grid;
  gap: 0;
  padding: 8px 8px 8px 0;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  border-left: 5px solid var(--orange);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.fact {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.fact:last-child {
  border-bottom: 0;
}

.fact span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact strong {
  color: var(--navy);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}

/* ——— Vision / Mission ——— */

.statement-section {
  background:
    linear-gradient(180deg, var(--soft), #fff 70%);
}

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

.statement {
  position: relative;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.statement:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(7, 47, 69, 0.14);
}

.statement-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  box-shadow: 0 10px 22px rgba(8, 47, 69, 0.22);
}

.statement-icon svg {
  width: 28px;
  height: 28px;
}

.statement p {
  margin: 0;
  color: var(--muted);
}

/* ——— Values ——— */

.values-section {
  padding-top: 28px;
}

.values-grid,
.domain-grid,
.team-grid,
.logo-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.domain-card,
.team-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.value-card {
  position: relative;
  min-height: 172px;
  padding: 26px 24px 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

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

.value-index {
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.value-card h3,
.domain-card h3,
.team-card h3 {
  margin: 0 0 9px;
  color: var(--navy);
  line-height: 1.2;
}

.value-card h3 {
  font-size: 1.16rem;
  font-weight: 800;
}

.value-card p,
.domain-card p,
.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ——— Business domains ——— */

.business-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 85% 12%, rgba(255, 119, 24, 0.12), transparent 24%),
    radial-gradient(circle at 10% 80%, rgba(7, 95, 140, 0.08), transparent 28%),
    var(--soft);
}

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

.domain-card {
  position: relative;
  min-height: 168px;
  padding: 24px 22px 22px 28px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(8, 47, 69, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s ease;
}

.domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), var(--gold));
}

.domain-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 119, 24, 0.28);
  box-shadow: var(--shadow-sm);
}

.domain-card h3 {
  font-size: 1.04rem;
  font-weight: 800;
}

/* ——— CEO ——— */

.ceo-section {
  background: var(--paper);
}

.leadership-layout {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 7vw, 88px);
}

.portrait-panel {
  position: relative;
  padding: 14px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--orange), var(--navy));
  box-shadow: var(--shadow);
}

.portrait-panel::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 119, 24, 0.25);
  pointer-events: none;
  z-index: -1;
}

.portrait-panel img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  border: 10px solid #fff;
  background: #0a1a24;
  display: block;
}

.ceo-section h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(1.55rem, 3.5vw, 2.35rem);
  font-weight: 900;
  line-height: 1.15;
}

/* ——— Team & consultants ——— */

.team-section {
  background: var(--soft);
}

.consultants-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

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

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

.team-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(8, 47, 69, 0.09);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(8, 47, 69, 0.14);
}

.team-photo {
  position: relative;
  /* Match cutout studio black so edge fringing never shows as grey */
  background: #000;
  overflow: hidden;
  isolation: isolate;
}

.team-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: top center;
  /* Crop residual PDF edge noise just outside the subject */
  transform: scale(1.03);
  transform-origin: top center;
  backface-visibility: hidden;
  transition: transform 0.45s var(--ease);
}

.team-card:hover .team-photo img {
  transform: scale(1.07);
}

.team-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}

.team-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 20px 22px;
  background: #fff;
}

.team-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
}

.team-card .role {
  margin-bottom: 10px;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}

.team-card-vacant {
  min-height: 0;
  border-style: dashed;
  border-color: rgba(8, 47, 69, 0.16);
  box-shadow: none;
  justify-content: center;
  background: transparent;
}

.team-card-vacant:hover {
  transform: none;
  box-shadow: none;
}

.team-card-vacant .team-body {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.55);
}

.team-card-vacant .role {
  margin-bottom: 4px;
}

.team-card-vacant p:last-child {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Customers ——— */

.customers-section {
  background: #fff;
}

.logo-grid {
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  align-items: stretch;
  gap: 14px;
}

.logo-tile {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 47, 69, 0.05);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.2s ease;
}

.logo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(7, 95, 140, 0.22);
  box-shadow: var(--shadow-sm);
}

.logo-tile img {
  width: 100%;
  height: 84px;
  object-fit: contain;
}

/* Logos exported on pure black (e.g. NTS mark) read better on a soft tile */
.logo-tile img[alt*="NTS"] {
  background: #0a0a0a;
  border-radius: 8px;
  padding: 10px;
  height: 84px;
  box-sizing: border-box;
}

/* ——— Contact ——— */

.contact-section {
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 119, 24, 0.16), transparent 28%),
    radial-gradient(circle at 88% 70%, rgba(7, 95, 140, 0.35), transparent 32%),
    linear-gradient(135deg, #052a3d 0%, #083d58 48%, #0a5578 100%);
}

.contact-section .section-kicker,
.contact-section .section-kicker span {
  color: #fff;
}

.contact-section .section-kicker strong {
  color: var(--orange);
}

.contact-section .section-intro {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

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

.contact-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 80px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s var(--ease);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg, #ff8a2e, var(--orange));
  box-shadow: 0 8px 18px rgba(255, 119, 24, 0.3);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-item p {
  margin: 4px 0 0;
  color: #fff;
  overflow-wrap: anywhere;
  font-weight: 600;
}

.contact-item-emails a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.contact-item-emails a:hover,
.contact-item-emails a:focus-visible {
  color: var(--gold);
  outline: none;
}

.email-sep {
  opacity: 0.5;
}

a.contact-item:hover,
a.contact-item:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
  outline: none;
}

/* ——— Footer ——— */

.site-footer {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 54px 20px 150px;
  background: #fff;
  text-align: center;
}

.footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.footer-inner > p:first-child {
  margin: 0;
  color: var(--orange);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
}

.footer-inner img {
  width: 180px;
  height: auto;
  margin: 4px auto 0;
  background: transparent;
}

.footer-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

/* ——— Reveal motion ——— */

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

.js-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

  .js-ready .reveal,
  .js-ready .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .team-photo img,
  .team-card:hover .team-photo img {
    transform: scale(1.03);
    transition: none;
  }

  .statement:hover,
  .value-card:hover,
  .domain-card:hover,
  .team-card:hover,
  .logo-tile:hover,
  .button:hover {
    transform: none;
  }
}

/* ——— Responsive ——— */

@media (max-width: 1100px) {
  .logo-grid {
    grid-template-columns: repeat(3, minmax(100px, 1fr));
  }
}

@media (max-width: 980px) {
  :root {
    --header-h: 66px;
  }

  .site-header {
    min-height: var(--header-h);
  }

  .brand img {
    width: 150px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
    min-height: 44px;
  }

  .two-column,
  .leadership-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .statement-grid,
  .values-grid,
  .domain-grid,
  .team-grid,
  .consultants-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .portrait-panel {
    max-width: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 16px;
  }

  .hero {
    min-height: 88svh;
    padding-top: 42px;
    padding-bottom: 138px;
  }

  .hero h1 {
    margin-top: 28px;
  }

  .tagline {
    width: min(100%, 420px);
    border-radius: 10px;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: min(100%, 290px);
  }

  .section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .statement-grid,
  .values-grid,
  .domain-grid,
  .team-grid,
  .consultants-grid {
    grid-template-columns: 1fr;
  }

  .section-kicker {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .section-kicker::after {
    width: 100%;
  }

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

  .logo-tile {
    min-height: 104px;
    padding: 12px;
  }

  .logo-tile img {
    height: 72px;
  }

  .contact-item {
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 14px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .contact-icon svg {
    width: 20px;
    height: 20px;
  }
}
