:root {
  --bg: #f7f9fc;
  --text: #152238;
  --muted: #5f6b7a;
  --primary: #183a6d;
  --primary-dark: #0f1c2e;
  --accent: #2e6fd8;
  --card: #ffffff;
  --border: #d9e2f0;
  --shadow: 0 8px 24px rgba(15, 28, 46, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(rgba(229, 233, 240, 0.5), #ffffff 560px) no-repeat,
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.7;
}

a {
  color: var(--accent);
}

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

.site-header {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 18px 0;
}

.header-container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand span {
  font-size: 22px;
  font-weight: 700;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

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

.nav a {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover {
  opacity: 0.72;
}

.utr-button,
.button {
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
}

.utr-button {
  background: #1d6cff;
  color: #ffffff;
  padding: 10px 16px;
}

.utr-button:hover {
  background: #1454d6;
}

.tennis-page {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: center;
  padding: 2rem 0 3rem;
}

.eyebrow,
.card-label,
.stat-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: #0f1219;
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

h2 {
  color: var(--primary);
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h3 {
  color: #0f1219;
  font-size: 1.55rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.bio {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 700px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.button {
  min-height: 48px;
  padding: 0.9rem 1.2rem;
}

.button.primary {
  background: var(--primary);
  color: #ffffff;
}

.button.primary:hover {
  background: #10284d;
}

.button.secondary {
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--primary);
}

.snapshot,
.section,
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.snapshot {
  overflow: hidden;
}

.snapshot img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.snapshot-body,
.section,
.stat-card {
  padding: 1.5rem;
}

.section {
  margin-top: 2rem;
}

.section p:last-child,
.stat-card p:last-child,
.snapshot-body p:last-child {
  margin-bottom: 0;
}

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

.stat-value {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}

.highlights-list {
  margin: 0;
  padding-left: 1.2rem;
}

.site-footer {
  color: var(--muted);
  padding: 2rem 1rem 5rem;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 860px) {
  body {
    font-size: 18px;
  }

  .header-container {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
    gap: 14px 22px;
  }

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

  h1 {
    font-size: 2.3rem;
  }

  h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 520px) {
  .header-container,
  .tennis-page {
    width: min(100% - 28px, 1100px);
  }

  .actions,
  .button,
  .utr-button {
    width: 100%;
  }
}
