@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --paper: #EFEDE4;      /* chalk dust */
  --ink: #1C2333;        /* mat navy */
  --royal: #2247C7;      /* royal blue */
  --gold: #C9A227;       /* medal gold */
  --charcoal: #2A2A28;
  --line: rgba(28, 35, 51, 0.14);
  --max: 46rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--royal);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
a:hover { color: var(--gold); }

h1, h2, h3 {
  font-family: 'Oswald', 'Arial Narrow', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.9rem, 5vw, 2.7rem); letter-spacing: 0.03em; }
h2 { font-size: 1.35rem; margin-top: 2.4em; }
h3 { font-size: 1.05rem; letter-spacing: 0.06em; color: var(--royal); }

p { margin: 0 0 1.15em; }

/* Signature: singlet stripe — a skewed maroon/gold band used as a section marker,
   echoing the racer stripe on a wrestling singlet */
.stripe {
  height: 10px;
  width: 100%;
  background: linear-gradient(90deg, var(--royal) 0 55%, var(--gold) 55% 100%);
  transform: skewX(-18deg);
  transform-origin: left;
  margin: 0;
}

.hero-banner {
  width: 100%;
  height: clamp(140px, 26vw, 260px);
  overflow: hidden;
}
.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

header.site {
  padding: 1.4rem 1.5rem 0;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1rem;
}

nav.main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  padding-bottom: 1.1rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
}

nav.main a {
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.main a:hover,
nav.main a[aria-current="page"] {
  color: var(--royal);
  border-bottom-color: var(--royal);
}

main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.4rem 1.5rem 3rem;
}

main > .stripe {
  max-width: var(--max);
  margin: 0 auto;
}

blockquote {
  margin: 1.8em 0;
  padding: 0.9em 1.3em;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 39, 0.09);
  font-style: italic;
  color: var(--ink);
}
blockquote cite {
  display: block;
  margin-top: 0.5em;
  font-family: 'IBM Plex Mono', monospace;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--royal);
}

.list-plain { padding-left: 1.2em; margin: 0 0 1.15em; }
.list-plain li { margin-bottom: 0.4em; }

.curriculum-section { margin-top: 2.4em; }
.curriculum-section ul { margin: 0.5em 0 1.3em 1.2em; padding: 0; }
.curriculum-section li { margin-bottom: 0.35em; }
.curriculum-section ul ul { margin-top: 0.35em; margin-bottom: 0.6em; font-size: 0.95em; color: #4a4a46; }

.resource, .wrestler {
  margin-bottom: 1.1em;
  padding-bottom: 1.1em;
  border-bottom: 1px solid var(--line);
}
.resource:last-child, .wrestler:last-child { border-bottom: none; }
.resource a, .wrestler a { font-family: 'Oswald', sans-serif; font-size: 1.05rem; text-transform: none; letter-spacing: 0; }
.resource p, .wrestler p { margin: 0.2em 0 0; color: #4a4a46; font-size: 0.95rem; }

footer.site {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 2.6rem;
  border-top: 1px solid var(--line);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: #55554f;
}
footer.site .towns { text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6em; }
footer.site a { color: var(--royal); }

.hero-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--royal);
  margin-bottom: 0.6em;
}

@media (max-width: 480px) {
  nav.main { gap: 1rem; font-size: 0.85rem; }
}
