/*
   TEAM VIRGINIA LACROSSE  |  Fall 2026
   Navy / Gold / White identity
*/

:root {
  --navy: #0b2341;
  --navy-hi: #143259;
  --navy-lo: #071930;
  --gold: #c9a227;
  --gold-hi: #e0b638;
  --gold-lo: #a4831e;
  --paper: #f5f2ea;
  --stone: #f3f4f6;
  --line: #dddddd;
  --ink: #1d2530;
  --ink-2: #4a5460;
  --white: #ffffff;

  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --container: 1200px;
  --pad-x: clamp(20px, 4vw, 40px);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.sr-only:focus {
  position: static; width: auto; height: auto; margin: 0; padding: 8px 12px;
  clip: auto; background: var(--gold); color: var(--navy);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Announce bar ---------- */
.announce {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
}
.announce__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px var(--pad-x);
  max-width: var(--container);
  margin: 0 auto;
}
.announce__label { display: flex; align-items: center; gap: 12px; }
.announce__dot {
  width: 8px; height: 8px; background: var(--navy); border-radius: 50%;
  animation: pulse 2s var(--ease-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.75); }
}
.announce__cta {
  color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 1px;
}

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px var(--pad-x);
  max-width: var(--container); margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--white);
}
.brand__mark {
  width: 42px; height: 42px; color: var(--gold); flex: none;
}
.brand__logo {
  width: 46px; height: 46px; flex: none;
  display: block;
}
.brand__text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--white);
}
.brand__tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: var(--gold);
  margin-top: 4px;
}

.nav {
  display: flex; align-items: center; gap: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
}
.nav a { color: var(--white); text-decoration: none; opacity: 0.85; transition: opacity 0.2s ease, color 0.2s ease; }
.nav a:hover { color: var(--gold); opacity: 1; }

.header__ctas { display: flex; align-items: center; gap: 10px; }

.menu-btn {
  display: none;
  background: transparent; border: 2px solid var(--white);
  color: var(--white); padding: 8px 10px;
  border-radius: 2px;
}
.menu-btn svg { width: 20px; height: 20px; display: block; }

@media (max-width: 960px) {
  .nav { display: none; }
  .header__ctas .btn--outline { display: none; }
  .menu-btn { display: inline-flex; }
}

/* Mobile nav sheet */
.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block; padding: 16px var(--pad-x);
  color: var(--white); text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:hover { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 18px;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--gold {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); }
.btn--outline {
  background: transparent; color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--navy); }
.btn--outline-navy {
  background: transparent; color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }
.btn--navy {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--lg { padding: 16px 24px; font-size: 15px; }
.btn--block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 70% center;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,35,65,0.94) 0%, rgba(11,35,65,0.70) 45%, rgba(11,35,65,0.30) 75%, rgba(11,35,65,0.05) 100%),
    linear-gradient(180deg, rgba(11,35,65,0.15) 0%, rgba(11,35,65,0.70) 100%);
}
@media (max-width: 720px) {
  .hero__media img { object-position: 38% center; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(11,35,65,0.55) 0%, rgba(11,35,65,0.55) 40%, rgba(11,35,65,0.92) 100%);
  }
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(80px, 12vw, 140px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
}
.eyebrow__dot {
  display: inline-block; width: 32px; height: 3px; background: var(--gold);
}
.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(52px, 9vw, 128px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--paper);
}
.hero__title span { display: block; }
.hero__title .accent { color: var(--gold); }
.hero__lede {
  max-width: 640px;
  margin: 28px 0 36px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 32px 40px;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 22px;
  max-width: 720px;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta dt {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 11px; color: var(--gold);
  margin-bottom: 4px;
}
.hero__meta dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 4px solid var(--navy);
}
.ticker__track {
  display: flex; gap: 40px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 14px;
  animation: ticker 30s linear infinite;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 40px; }
.ticker__dot { width: 10px; height: 10px; background: var(--navy); border-radius: 50%; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section--stone { background: var(--stone); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy .eyebrow { color: var(--gold); }

.section__head { max-width: 900px; margin: 0 auto clamp(48px, 6vw, 72px); text-align: center; }
.section__head--left { text-align: left; margin-left: 0; }
.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--navy);
}
.section--navy .h-display { color: var(--white); }
.h-display span { display: block; }
.h-display .accent { color: var(--gold); }
.h-intro {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-2);
}
.section--navy .h-intro { color: rgba(255,255,255,0.85); }

/* ---------- Teams grid (four rosters) ---------- */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .teams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .teams-grid { grid-template-columns: 1fr; } }
.teams-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) { .teams-grid--2 { grid-template-columns: 1fr; } }

.team-card {
  background: var(--white);
  border: 2px solid var(--navy);
  padding: 26px 22px 24px;
  display: flex; flex-direction: column;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px -12px rgba(11,35,65,0.35); }
.team-card__badge {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-lo);
  margin-bottom: 6px;
}
.team-card__grad {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 56px;
  line-height: 1;
  color: var(--navy);
  margin: 0;
}
.team-card__label {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 13px;
  color: var(--navy);
  margin-top: 4px;
}
.team-card__meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
}
.team-card__meta strong { color: var(--navy); font-weight: 600; }
.team-card__openings {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-dk, #8f6f14);
}
.team-card__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.18);
}
.team-card__stats {
  margin: 14px 0 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: 0.06em;
  font-size: 15px;
  color: var(--navy);
  flex: 1;
}
.team-card__cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 12px 14px;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}
.team-card__cta:hover { background: var(--gold); color: var(--navy); }
.team-card__cta--primary {
  background: var(--gold);
  color: var(--navy);
  margin-top: 20px;
}
.team-card__cta--primary:hover { background: var(--navy); color: var(--white); }
.team-card__cta--secondary {
  margin-top: 8px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.team-card__cta--secondary:hover { background: var(--navy); color: var(--white); }
.team-card__note {
  margin: 8px 0 0;
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* ---------- Program details (data rows like the email) ---------- */
.details {
  max-width: 900px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
}
.details__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}
.details__row:last-child { border-bottom: none; }
.details__label {
  background: var(--stone);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 13px;
  color: var(--navy);
  border-right: 4px solid var(--gold);
}
.details__value {
  padding: 20px 26px;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.details__value strong { color: var(--navy); }
@media (max-width: 640px) {
  .details__row { grid-template-columns: 1fr; }
  .details__label { border-right: none; border-bottom: 3px solid var(--gold); padding: 14px 18px; }
  .details__value { padding: 16px 18px; }
}

/* ---------- Tournament cards ---------- */
.tournaments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 720px) { .tournaments { grid-template-columns: 1fr; } }

.tournament {
  background: var(--white);
  border: 2px solid var(--navy);
  border-top: 6px solid var(--gold);
  padding: 28px 26px 26px;
}
.tournament__num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 10px;
}
.tournament__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 14px;
}
.tournament__meta {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}
.tournament__meta strong { color: var(--navy); font-weight: 600; }
.tournament__meta div { display: flex; align-items: center; gap: 10px; }
.tournament__meta div + div { margin-top: 6px; }
.tournament__meta svg { width: 16px; height: 16px; flex: none; color: var(--gold); }

/* ---------- Director card ---------- */
.director {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  padding: 40px;
}
@media (max-width: 720px) {
  .director { grid-template-columns: 1fr; padding: 28px; gap: 24px; text-align: center; }
}
.director__avatar {
  width: 200px; height: 200px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 78px;
  letter-spacing: 0.04em;
  border: 4px solid var(--gold);
  margin: 0 auto;
}
.director__photo {
  width: 240px; height: 300px;
  margin: 0 auto;
  overflow: hidden;
  border: 4px solid var(--gold);
  background: var(--navy);
}
.director__photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.director__crest {
  width: 240px; height: 240px;
  margin: 0 auto;
  display: grid; place-items: center;
  background: var(--navy);
  border: 4px solid var(--gold);
  padding: 24px;
}
.director__crest img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
@media (max-width: 720px) {
  .director__photo, .director__crest { width: 200px; height: 200px; }
}
.director__eyebrow {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 12px; color: var(--gold-lo);
  margin-bottom: 6px;
}
.director__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 1;
  color: var(--navy);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.director__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.director__bio {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
.director__creds {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 8px;
}
.director__creds li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
}
.director__creds li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.director__quote {
  margin: 0 0 22px;
  padding: 20px 22px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 1.55;
  color: var(--navy);
}
.director__quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.director__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}
@media (max-width: 720px) {
  .director__actions { justify-content: center; }
}

/* ---------- Focus pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.pillars--4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}
@media (max-width: 1024px) { .pillars--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } .pillars--4 { grid-template-columns: 1fr; } }
.pillar__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 14px;
}
.pillar__icon svg { width: 100%; height: 100%; }
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  padding: 28px 26px;
}
.section--navy .pillar {
  background: var(--navy-hi);
  border-color: rgba(255,255,255,0.1);
  border-top-color: var(--gold);
}
.pillar__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.pillar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section--navy .pillar__title { color: var(--white); }
.pillar__body {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
.section--navy .pillar__body { color: rgba(255,255,255,0.82); }

/* ---------- Photo band ---------- */
.photoband {
  padding: 0;
  background: var(--navy);
}
.photoband__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: var(--navy);
}
.photoband__cell {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.photoband__cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.photoband__cell:hover img { transform: scale(1.03); }
@media (max-width: 720px) {
  .photoband__grid { grid-template-columns: 1fr; }
}

/* ---------- Final CTA ---------- */
.cta-band {
  background: var(--gold);
  color: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}
.cta-band .h-display { color: var(--navy); }
.cta-band .cta-band__lede {
  max-width: 680px;
  margin: 20px auto 20px;
  font-size: 18px;
  line-height: 1.55;
}
.cta-band__funnel {
  max-width: 720px;
  margin: 0 auto 30px;
  padding: 12px 18px;
  display: inline-block;
  background: rgba(11,35,65,0.06);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 13px;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary > span {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  transition: transform 0.2s ease;
}
.faq__item[open] summary > span { transform: rotate(45deg); }
.faq__item p {
  margin: 0 4px 24px;
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px var(--pad-x) 24px;
  border-top: 6px solid var(--gold);
}
.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (max-width: 820px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  margin: 0 0 14px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer a { color: rgba(255,255,255,0.82); text-decoration: none; }
.footer a:hover { color: var(--gold); }
.footer__brand-block p {
  margin: 12px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 320px;
}
.footer__legal {
  max-width: var(--container);
  margin: 24px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
}
@media (max-width: 640px) {
  .footer__legal { flex-direction: column; text-align: center; }
}

/* STATS STRIP */
.stats {
  background: var(--navy);
  padding: 56px 0;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stats__item { color: #fff; }
.stats__num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1;
  color: var(--gold);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.stats__label {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  margin: 0;
}
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { padding: 40px 0; }
}
