:root {
  --ink: #121416;
  --ink-soft: #343a40;
  --muted: #68717b;
  --line: #dce1e5;
  --paper: #f6f7f5;
  --white: #ffffff;
  --navy: #171b3f;
  --night: #0f1318;
  --steel: #27323a;
  --copper: #b86f2b;
  --copper-dark: #8c4a18;
  --blue-grey: #e7edf0;
  --shadow: 0 18px 45px rgba(12, 19, 26, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

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

@keyframes heroDrift {
  0% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.055) translate3d(-10px, -6px, 0);
  }

  100% {
    transform: scale(1.01) translate3d(0, 0, 0);
  }
}

@keyframes accentPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.team-card.reveal,
.service-card.reveal,
.mission-panel article.reveal,
.fact.reveal {
  transform: translateY(34px) scale(0.985);
}

.team-card.reveal.reveal-visible,
.service-card.reveal.reveal-visible,
.mission-panel article.reveal.reveal-visible,
.fact.reveal.reveal-visible {
  transform: translateY(0) scale(1);
}

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

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

  .hero-media,
  .team-card,
  .team-card img,
  .service-card,
  .mission-panel article,
  .expertise-list span,
  .button svg,
  .service-icon,
  .fact strong {
    animation: none;
    transition: none;
  }
}

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

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

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  display: none;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: calc(100% - 48px);
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(11, 15, 18, 0.78);
  color: var(--white);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 12, 15, 0.94);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 136px;
}

.brand img {
  width: 132px;
  height: auto;
  filter: invert(1);
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: var(--white);
  color: var(--ink);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: #e9edef;
  color: var(--ink);
}

.site-nav .nav-cta svg {
  width: 17px;
  height: 17px;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    image-set(
      url("../images/metco-industrial-hero.png") 1x
    )
    center right / cover no-repeat;
  transform: scale(1.01);
  animation: heroDrift 22s ease-in-out infinite;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.92) 0%, rgba(10, 13, 17, 0.82) 34%, rgba(10, 13, 17, 0.38) 66%, rgba(10, 13, 17, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 11, 14, 0.44), rgba(8, 11, 14, 0.2) 55%, rgba(8, 11, 14, 0.88));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86svh;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 92px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 72px;
  line-height: 0.96;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-subtitle {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 27px;
  font-weight: 700;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button svg {
  transition: transform 180ms ease;
}

.button:hover svg,
.button:focus-visible svg {
  transform: translateX(3px);
}

.button-primary {
  background: var(--copper);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--copper-dark);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), calc(100% - 48px));
  margin: -58px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.fact {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

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

.fact strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.15;
  transition: color 180ms ease;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.fact {
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.fact:hover {
  background: #fafafa;
  transform: translateY(-3px);
}

.fact:hover strong {
  color: var(--copper-dark);
}

.section {
  padding: 110px 0;
}

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

.section-dark {
  background:
    linear-gradient(180deg, #11161b 0%, #171d22 100%);
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section-heading h2,
.expertise-content h2,
.she-copy h2,
.contact-panel h2 {
  margin: 0;
  color: inherit;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 820;
  letter-spacing: 0;
}

.section-body p,
.she-copy p,
.contact-panel p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.78;
}

.section-body p + p {
  margin-top: 18px;
}

.section-dark .section-body p {
  color: rgba(255, 255, 255, 0.76);
}

.mission-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 0;
}

.mission-panel article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(13, 21, 28, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.mission-panel article:hover {
  transform: translateY(-5px);
  border-color: #cdd3d8;
  box-shadow: 0 18px 44px rgba(13, 21, 28, 0.11);
}

.mission-panel span {
  color: var(--copper-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.mission-panel p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 0;
}

.service-card {
  min-height: 286px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.12) 46%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 111, 43, 0.44);
  background: rgba(255, 255, 255, 0.07);
}

.service-card:hover::after {
  transform: translateX(120%);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: rgba(184, 111, 43, 0.15);
  color: #e4a05b;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.service-card:hover .service-icon {
  background: rgba(184, 111, 43, 0.24);
  transform: rotate(-4deg) scale(1.06);
}

.service-card h3 {
  margin: 24px 0 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

.expertise-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 60px;
  align-items: start;
  padding: 90px max(24px, calc((100% - var(--max)) / 2));
  background: var(--white);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.expertise-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 750;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.expertise-list span:hover {
  transform: translateY(-3px);
  border-color: #c6ccd1;
  background: #eef2f3;
}

.leadership-section {
  padding-top: 108px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--max), calc(100% - 48px));
  margin: 54px auto 0;
}

.team-card {
  position: relative;
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 26, 31, 0.1);
  background:
    linear-gradient(135deg, #12181d 0%, #1f2a31 58%, #151a1f 100%);
  box-shadow: var(--shadow);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms ease;
}

.team-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0) 0%, rgba(8, 11, 14, 0.14) 42%, rgba(255, 255, 255, 0.04) 100%),
    radial-gradient(circle at 84% 18%, rgba(184, 111, 43, 0.18), transparent 34%);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: var(--copper);
  z-index: 2;
  transform-origin: right;
  animation: accentPulse 3.8s ease-in-out infinite;
  transition: transform 240ms ease;
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(184, 111, 43, 0.28);
  box-shadow: 0 24px 58px rgba(12, 19, 26, 0.2);
}

.team-card:hover img,
.team-card:focus-within img {
  transform: scale(1.035);
}

.team-card:hover::before,
.team-card:focus-within::before {
  transform: scaleX(1.5);
}

.team-info {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
  min-width: 0;
  padding: 42px 30px 30px;
  color: var(--white);
}

.team-info p {
  margin: 0 0 14px;
  color: #e4a05b;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.team-info h3 {
  margin: 0;
  max-width: 320px;
  min-height: 2.16em;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.team-info h3 span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.she-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: center;
  padding: 96px max(24px, calc((100% - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(18, 20, 22, 0.9), rgba(18, 20, 22, 0.82)),
    url("../images/metco-industrial-hero.png") center / cover no-repeat;
  color: var(--white);
}

.she-copy p {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

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

.she-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.she-list svg {
  flex: 0 0 auto;
  color: #e4a05b;
}

.contact-section {
  padding: 110px 24px 56px;
  background: var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 54px;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-top: 18px;
}

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

.contact-methods a,
.contact-methods p {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0;
  padding: 14px;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 720;
}

.contact-methods a:hover,
.contact-methods a:focus-visible {
  border-color: #c6ccd1;
  background: #eef1f2;
}

.contact-methods svg {
  flex: 0 0 auto;
  color: var(--copper-dark);
}

.contact-methods p:last-child {
  grid-column: 1 / -1;
}

.legal-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: min(var(--max), 100%);
  margin: 22px auto 0;
}

.legal-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px max(24px, calc((100% - var(--max)) / 2));
  background: var(--night);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 126px;
  filter: invert(1);
}

.site-footer p {
  margin: 0;
  max-width: 620px;
  text-align: right;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: 60px;
  }

  .hero-subtitle {
    font-size: 24px;
  }

  .quick-facts,
  .mission-panel,
  .service-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .expertise-band,
  .she-section,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 15px;
  }

  .site-header {
    inset: 10px 12px auto;
    width: calc(100% - 24px);
    padding: 10px;
  }

  .brand {
    min-width: 126px;
  }

  .brand img {
    width: 122px;
  }

  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 35;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% + 8px) 0 auto auto;
    z-index: 34;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    width: min(360px, calc(100vw - 24px));
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: #090c0f;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 25;
    background: rgba(8, 11, 14, 0.58);
    backdrop-filter: blur(3px);
  }

  .site-nav a {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    margin-top: 6px;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-media {
    background-position: center right 36%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 11, 14, 0.95) 0%, rgba(8, 11, 14, 0.8) 58%, rgba(8, 11, 14, 0.42) 100%),
      linear-gradient(180deg, rgba(8, 11, 14, 0.35), rgba(8, 11, 14, 0.72));
  }

  .hero-inner {
    min-height: 82svh;
    width: calc(100% - 32px);
    padding: 110px 0 72px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 21px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 330px;
  }

  .quick-facts {
    width: calc(100% - 32px);
    margin-top: -34px;
    grid-template-columns: 1fr;
  }

  .fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section {
    padding: 76px 0;
  }

  .section-grid,
  .mission-panel,
  .service-grid,
  .team-grid {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-grid {
    gap: 26px;
  }

  .section-heading h2,
  .expertise-content h2,
  .she-copy h2,
  .contact-panel h2 {
    font-size: 32px;
  }

  .section-body p,
  .she-copy p,
  .contact-panel p {
    font-size: 16px;
  }

  .mission-panel,
  .service-grid,
  .team-grid {
    margin-top: 36px;
  }

  .mission-panel article,
  .service-card {
    min-height: auto;
    padding: 22px;
  }

  .expertise-band,
  .she-section {
    padding: 72px 16px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .team-card,
  .team-card img {
    min-height: 0;
  }

  .team-card {
    grid-template-columns: minmax(112px, 35%) minmax(0, 65%);
  }

  .team-card img {
    min-height: 260px;
  }

  .team-info {
    padding: 28px 22px 22px;
  }

  .team-info h3 {
    font-size: clamp(22px, 7vw, 30px);
  }

  .contact-section {
    padding: 76px 16px 42px;
  }

  .contact-panel {
    padding: 24px;
    gap: 28px;
  }

  .contact-methods {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer p {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 42px;
  }

  .section-heading h2,
  .expertise-content h2,
  .she-copy h2,
  .contact-panel h2 {
    font-size: 29px;
  }

  .team-card,
  .team-card img {
    min-height: 0;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 330px;
    min-height: 330px;
  }

  .team-info {
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media,
  .team-card,
  .team-card img,
  .team-card::before,
  .service-card,
  .service-card::after,
  .mission-panel article,
  .expertise-list span,
  .button svg,
  .service-icon,
  .fact,
  .fact strong {
    animation: none;
    transition: none;
    transform: none;
  }
}
