/* ==========================================================================
   MAGNUS SPORTS — Stylesheet
   Design system: black / bone / gold. Condensed athletic display type,
   Inter for reading, Space Mono for scoreboard-style data & labels.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* Color */
  --black: #0a0a0b;
  --black-2: #131315;
  --black-3: #1b1b1e;
  --line-on-dark: rgba(255, 255, 255, 0.12);
  --line-on-dark-strong: rgba(255, 255, 255, 0.22);
  --text-on-dark: #f4f1ea;
  --text-on-dark-muted: rgba(244, 241, 234, 0.62);

  --bone: #f2efe6;
  --bone-2: #eae5d8;
  --card: #ece6d8;
  --ink: #14130f;
  --ink-muted: rgba(20, 19, 15, 0.6);
  --line-on-light: rgba(20, 19, 15, 0.12);

  --gold: #c6a15b;
  --gold-light: #e4c98a;
  --gold-dim: #8a7140;

  /* Type */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius-sm: 2px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 800; letter-spacing: 0.01em; line-height: 0.98; text-transform: uppercase; }
p { margin: 0; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--gold); color: var(--black); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.skip-link:focus { left: 1rem; top: 1rem; }

html:not(.is-ready) body { opacity: 0; }
body {
  opacity: 1;
  transition: opacity 0.5s ease;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold-dim);
}
.eyebrow--light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: color 0.35s var(--ease), border-color 0.35s var(--ease);
  isolation: isolate;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  z-index: -1;
}
.btn:hover::before,
.btn:focus-visible::before { transform: scaleX(1); }
.btn svg { width: 15px; height: 15px; transition: transform 0.35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold {
  color: var(--gold-light);
}
.btn--gold:hover { color: var(--black); }

.btn--dark {
  color: var(--ink);
}
.btn--dark:hover { color: var(--bone); }

.btn--ghost {
  color: var(--bone);
}
.btn--ghost:hover { color: var(--black); }

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transition: opacity 0.2s ease;
}
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(198, 161, 91, 0.55);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.2s ease, border-color 0.25s ease;
}
.cursor-ring.is-active {
  width: 56px; height: 56px;
  border-color: var(--gold);
}
body.cursor-enabled { cursor: none; }
body.cursor-enabled a,
body.cursor-enabled button { cursor: none; }

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.35rem 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  padding: 0.85rem 0;
  background: rgba(10, 10, 11, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-on-dark);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--bone);
}
.brand-mark {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand-name span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  color: var(--gold);
  margin-top: 2px;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-primary a {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-primary a:hover,
.nav-primary a[aria-current="page"] {
  color: var(--bone);
}
.nav-primary a:hover::after,
.nav-primary a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line-on-dark-strong);
  border-radius: var(--radius-sm);
  color: var(--bone);
}
.nav-toggle .bars { position: relative; width: 18px; height: 12px; }
.nav-toggle .bars span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: currentColor; transition: transform 0.3s var(--ease), opacity 0.3s ease, top 0.3s var(--ease);
}
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 5px; }
.nav-toggle .bars span:nth-child(3) { top: 10px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 5px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 5px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 10vw, 3.4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--bone);
  display: inline-block;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line-on-dark);
}
.mobile-nav .btn { margin-top: 2rem; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transform: scale(1.08);
  will-change: transform;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,9,0.55) 0%, rgba(8,8,9,0.15) 32%, rgba(8,8,9,0.35) 62%, rgba(8,8,9,0.92) 100%),
    linear-gradient(90deg, rgba(8,8,9,0.88) 0%, rgba(8,8,9,0.35) 46%, rgba(8,8,9,0.1) 70%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 0 clamp(3rem, 8vw, 6rem);
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 760px;
}
.hero-title {
  font-size: clamp(2.8rem, 7.2vw, 6rem);
  color: var(--bone);
}
.hero-title .accent { color: var(--gold); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: inline-block; }

.hero-copy {
  max-width: 460px;
  color: var(--text-on-dark-muted);
  font-size: 1.02rem;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.hero-scroll-cue {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.scroll-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollcue 1.9s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

.hero-stats {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 7vw, 5.5rem);
  z-index: 1;
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
}
.hero-stat { text-align: left; }
.hero-stat .num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--gold-light);
  font-weight: 700;
}
.hero-stat .label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 0.2rem;
}

/* ---------- Section shells ---------- */
.section { padding: var(--section-y) 0; }
.section--dark { background: var(--black); color: var(--bone); }
.section--bone { background: var(--bone); }
.section--card { background: var(--bone-2); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-head h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
}
.section-head .lede {
  font-size: 1.02rem;
  color: var(--ink-muted);
  max-width: 54ch;
}
.section--dark .section-head .lede { color: var(--text-on-dark-muted); }

.section-head.center { align-items: center; text-align: center; margin-inline: auto; }

/* ---------- Mission ---------- */
.mission {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: end;
}
.mission-statement {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
  line-height: 1.05;
}
.mission-statement .accent { color: var(--gold-dim); }
.mission-body {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.mission-body p {
  color: var(--ink-muted);
  font-size: 1.02rem;
  max-width: 46ch;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-on-light);
  border-left: 1px solid var(--line-on-light);
}
.service-card {
  position: relative;
  padding: clamp(2rem, 3vw, 2.6rem) clamp(1.4rem, 2vw, 1.9rem);
  border-right: 1px solid var(--line-on-light);
  border-bottom: 1px solid var(--line-on-light);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  overflow: hidden;
  transition: background 0.4s var(--ease);
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 0;
  background: var(--black);
  transition: height 0.45s var(--ease);
  z-index: 0;
}
.service-card:hover::before,
.service-card:focus-within::before { height: 100%; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dim);
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.service-card:hover .service-icon { color: var(--gold-light); transform: translateY(-3px); }
.service-icon svg { width: 100%; height: 100%; }
.service-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-muted);
  transition: color 0.4s var(--ease);
}
.service-card:hover .service-index { color: var(--text-on-dark-muted); }
.service-card h3 {
  font-size: 1.4rem;
  transition: color 0.4s var(--ease);
}
.service-card:hover h3 { color: var(--bone); }
.service-card p {
  font-size: 0.94rem;
  color: var(--ink-muted);
  transition: color 0.4s var(--ease);
}
.service-card:hover p { color: var(--text-on-dark-muted); }

/* ---------- Approach split ---------- */
.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}
.approach-copy {
  background: var(--black);
  color: var(--bone);
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5.5rem) var(--gutter);
}
.approach-copy-inner { max-width: 460px; display: flex; flex-direction: column; gap: 1.5rem; }
.approach-copy h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
.approach-copy p { color: var(--text-on-dark-muted); font-size: 1rem; }
.approach-media { position: relative; overflow: hidden; }
.approach-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 340px;
  transition: transform 1.2s var(--ease);
}
.approach-media:hover img { transform: scale(1.06); }
.approach-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,11,0.35), transparent 40%);
}

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  background: var(--black);
  color: var(--bone);
  text-align: center;
  padding: clamp(4.5rem, 10vw, 8rem) var(--gutter);
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(circle at 50% 30%, rgba(198,161,91,0.16), transparent 60%);
  pointer-events: none;
}
.cta-banner-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  max-width: 16ch;
}
.cta-banner .eyebrow { justify-content: center; }
.cta-banner .eyebrow::after { display: none; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black-2);
  color: var(--text-on-dark-muted);
  padding: clamp(3rem, 6vw, 5rem) 0 1.75rem;
  border-top: 1px solid var(--line-on-dark);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line-on-dark);
}
.footer-brand { display: flex; flex-direction: column; gap: 1.1rem; max-width: 320px; }
.footer-brand .brand { color: var(--bone); }
.footer-brand p { font-size: 0.9rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a, .footer-col address {
  font-size: 0.92rem;
  font-style: normal;
  color: var(--text-on-dark-muted);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold-light); }
.social-row { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-on-dark-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }
.social-row svg { width: 15px; height: 15px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.75rem;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom .made { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.06em; }

/* ==========================================================================
   Reveal / scroll animation utility classes
   ========================================================================== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="fade"] { transform: none; }
[data-reveal-group] > * { transition-delay: calc(var(--i, 0) * 90ms); }

/* ==========================================================================
   BIO PAGE
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  overflow: hidden;
}
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06);
}
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,9,0.75) 0%, rgba(8,8,9,0.35) 40%, rgba(8,8,9,0.96) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: clamp(7rem, 16vw, 10rem) 0 clamp(2.5rem, 6vw, 4rem);
  width: 100%;
}
.page-hero-content .container { max-width: 760px; display: flex; flex-direction: column; gap: 1.4rem; }
.page-hero h1 {
  font-size: clamp(2.6rem, 6.6vw, 5rem);
  color: var(--bone);
}
.page-hero p {
  color: var(--text-on-dark-muted);
  max-width: 52ch;
  font-size: 1.02rem;
}

.team-grid {
  display: grid;
  gap: clamp(1.5rem, 2.4vw, 2.25rem);
}
.team-grid--leadership { grid-template-columns: repeat(3, 1fr); }
.team-grid--staff { grid-template-columns: repeat(4, 1fr); }

.person-card {
  background: var(--card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-on-light);
}
.person-photo {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--black-3);
}
.person-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(45%) contrast(1.03);
  transform: scale(1.01);
  transition: transform 0.9s var(--ease), filter 0.6s ease;
}
.person-card:hover .person-photo img {
  transform: scale(1.07);
  filter: grayscale(0%) contrast(1.05);
}
.person-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.5));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.person-card:hover .person-photo::after { opacity: 1; }
.person-body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; gap: 0.65rem; }
.person-body h3 { font-size: 1.3rem; letter-spacing: 0.01em; }
.person-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.person-role::after { content: ''; width: 20px; height: 1px; background: var(--line-on-light); }
.person-bio { font-size: 0.9rem; color: var(--ink-muted); }

.team-grid--leadership .person-card { --i: 0; }

.section-divider {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}
.section-divider .eyebrow::after { display: none; }
.section-divider .rule { flex: 1; height: 1px; background: var(--line-on-light); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid--leadership { grid-template-columns: repeat(2, 1fr); }
  .team-grid--staff { grid-template-columns: repeat(2, 1fr); }
  .mission { grid-template-columns: 1fr; gap: 2.5rem; }
  .approach { grid-template-columns: 1fr; }
  .approach-media { min-height: 360px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-col:last-child { grid-column: span 1; }
}

@media (max-width: 720px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { max-width: 100%; grid-column: span 2; }
  .hero-stats { position: static; margin-top: 2.5rem; }
  .hero-content .container { max-width: 100%; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .team-grid--leadership { grid-template-columns: 1fr; }
  .team-grid--staff { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero { align-items: flex-end; }
  .hero-cta-row { gap: 1.25rem; }
}
