:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #ffffff;
  --text: #121212;
  --muted: #5d5a54;
  --accent: #d63a2f;
  --border: #d8d2c8;
  --shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
  --max-width: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #1a1a1a;
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 999px;
  font-size: 0.85rem;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: var(--surface);
}

.button.secondary {
  border: 1px solid var(--text);
  color: var(--text);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

main {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.section {
  padding: 2.75rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
  padding-top: 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 1rem;
  max-width: 10ch;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  margin-bottom: 0.75rem;
  max-width: 16ch;
}

.hero-text,
.section-copy,
.feature-list p,
.tier-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.home-section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.9rem 0 0;
}

.home-section-links a {
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid transparent;
}

.home-section-links a:hover,
.home-section-links a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.hero-stats li {
  padding: 0.9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: stretch;
}

.hero-card {
  overflow: hidden;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  transform: translateY(-1px);
}

.hero-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  min-height: 240px;
}

.trust-bar {
  margin-top: 2.4rem;
  padding: 1.1rem 1.25rem;
  background: #000000;
  border: 1px solid #2a2a2a;
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.trust-label {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.logo-row img {
  max-height: 40px;
  width: auto;
  max-width: 132px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
}

.logo-row span {
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
  background: var(--surface-2);
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.95rem;
  background: var(--surface);
  font-weight: 600;
  box-shadow: var(--shadow);
}

.coverage-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  height: 3.2rem;
  min-height: 3.2rem;
}

.coverage-item img {
  width: auto;
  height: 2.2rem;
  max-height: 2.2rem;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.coverage-item > span {
  display: inline-block;
  flex: 1;
  font-weight: 700;
  line-height: 1.2;
  white-space: normal;
}

.coverage-item-text-only {
  justify-content: center;
  text-align: center;
}

.coverage-item-dark {
  background: #111111;
  color: #ffffff;
}

.coverage-item-dark > span {
  color: #ffffff;
}

.coverage-item-dark img {
  filter: brightness(1.15);
}

.coverage-item-nationals {
  background: #0f172a;
  color: #ffffff;
}

.coverage-item-nationals > span {
  color: #ffffff;
}

.coverage-item-nationals img {
  height: 2.2rem;
  max-height: 2.2rem;
  filter: brightness(1.2) contrast(1.05);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-list article,
.tier-card,
.sample-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.feature-list article {
  padding: 1.15rem;
}

.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.sample-card {
  overflow: hidden;
}

.sample-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.sample-card img {
  aspect-ratio: 4 / 3;
  object-position: center top;
  position: relative;
  z-index: 1;
}

#sample-coverage .sample-card img[src*="wizards%20summer%20league%202.jpg"],
#sample-coverage .sample-card img[src*="Mystics%20media%20day.jpg"] {
  transform: scale(1.2);
  transform-origin: center 18%;
  object-position: center 18%;
}

.caption,
.hero-caption {
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  background: var(--surface);
  position: relative;
  z-index: 2;
}

.caption h3,
.hero-caption h3 {
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
  display: block;
  line-height: 1.15;
}

.caption p,
.caption span {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-link {
  margin-top: 1rem;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.tier-card {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.tier-card .button {
  margin-top: auto;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
  padding-top: 3rem;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 0.8rem;
  font: inherit;
  background: var(--surface-2);
}

.contact-email a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 960px) {
  .hero,
  .coverage-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .sample-grid,
  .tier-grid,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-nav {
    width: 100%;
    order: 3;
  }

  .hero-stats,
  .hero-grid,
  .sample-grid,
  .tier-grid,
  .feature-list,
  .coverage-list {
    grid-template-columns: 1fr;
  }

  .hero-card-large,
  .hero-card-wide {
    grid-column: span 1;
  }

  h1 {
    max-width: none;
  }
}

.site-footer {
  margin-top: 2rem;
  background: #1a1a1a;
  color: #ffffff;
  border-top: 1px solid #2a2a2a;
}

.site-footer-inner {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  align-items: center;
  justify-content: space-between;
}

.site-footer-inner p {
  margin: 0;
  color: #d6d6d6;
  font-size: 0.9rem;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer-nav a {
  color: #ffffff;
  font-size: 0.9rem;
}

.site-footer-nav a:hover,
.site-footer-nav a:focus-visible {
  color: var(--accent);
}

.subpage-main {
  width: min(980px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.4rem 0 3.2rem;
}

.subpage-hero {
  margin-top: 1rem;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.subpage-hero-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.subpage-hero-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center top;
}

.subpage-hero-card img[src*="Nationals%202.jpg"],
.subpage-hero-card img[src*="WNBA%20opener.jpg"] {
  object-position: center center;
}

.subpage-hero-card img[src*="Nationals%202.jpg"] {
  object-position: center 28%;
}

.subpage-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  margin-top: 1rem;
}

.subpage-section p {
  margin: 0.6rem 0 0;
}

.subpage-section ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

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

.leadership-flow {
  display: grid;
  gap: 1rem;
}

.leadership-bio {
  padding: 0.25rem 0;
}

.leadership-shared-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.leadership-shared-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 35%;
}

.leadership-shared-photo figcaption {
  padding: 0.7rem 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
}

.subpage-form {
  display: grid;
  gap: 0.8rem;
}

.subpage-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.subpage-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

.subpage-form input,
.subpage-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  font: inherit;
  background: var(--surface-2);
}

@media (max-width: 720px) {
  .site-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .subpage-grid,
  .subpage-form-grid,
  .subpage-hero-grid {
    grid-template-columns: 1fr;
  }
}
