@import url('https://fonts.googleapis.com/css2?family=Anton&family=Poppins:wght@400;500;600;700&display=swap');

/* ── Design tokens ── */
:root {
  --bg:       #F4F2EC;
  --surface:  #FFFFFF;
  --navy:     #0C1E52;
  --red:      #CC1427;
  --gold:     #F5A01A;
  --text:     #0D1522;
  --muted:    #6B7A8E;
  --border:   rgba(12,30,82,0.13);
  --font-display: 'Anton', sans-serif;
  --font-body:    'Poppins', sans-serif;
}

/* ── Type scale ──────────────────────────────
   Anton (display only, 28 px minimum):
     28 px  team names, timeline titles, pillars
     36 px  section titles / mobile
     48 px  section titles / desktop
     64 px  page headers
     96 px  hero title / mobile
    140 px  hero title / desktop

   Poppins:
     12 px 700 uppercase  labels / eyebrows
     15 px 600            form labels, sub-labels
     17 px 400            body text
     19 px 500            lead / blockquote
───────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Nav ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  background: var(--navy);
}

.nav-logo img { height: 36px; width: auto; }

.nav-links { display: none; list-style: none; }

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: var(--navy);
  border-top: 3px solid var(--red);
  padding: 8px 0 20px;
  z-index: 99;
}

.nav-links.open li a {
  display: block;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 28px;
  color: #fff;
}

.nav-links.open li a:hover { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; }

.nav-cta { display: none; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/field-from-home.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.28) saturate(0.5);
  transform: scale(1.04);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,30,82,0.35) 0%, transparent 50%, rgba(6,9,15,0.65) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 900px; width: 100%; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 96px;
  line-height: 0.9;
  color: #fff;
}

.hero-title .year {
  display: block;
  color: var(--gold);
  font-size: 80px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 16px 0 28px;
}

.hero-sub strong { color: #fff; }

/* ── Countdown ── */
.countdown {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cd-unit {
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.18);
  padding: 14px 14px;
  min-width: 76px;
  text-align: center;
}

.cd-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: #fff;
  display: block;
}

.cd-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  display: block;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  min-height: 54px;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  cursor: pointer;
  border: none;
}

.btn-primary   { background: var(--red);  color: #fff; }
.btn-primary:hover { background: #e5172b; }

.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
.btn-secondary:hover { border-color: #fff; }

.btn-dark      { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #0f2668; }

.btn-outline   { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-white     { background: #fff; color: var(--red); }
.btn-white:hover { background: #f0eee8; }

/* ── Sections ── */
.section    { padding: 60px 20px; }
.section-sm { padding: 44px 20px; }

.section-dark { background: var(--navy); color: #fff; }
.section-red  { background: var(--red);  color: #fff; }

.wrap        { max-width: 1160px; margin: 0 auto; }
.wrap-narrow { max-width: 720px;  margin: 0 auto; }

/* ── Labels / eyebrows ── */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 10px;
}

.section-dark .section-label { color: var(--gold); }
.section-red  .section-label { color: rgba(255,255,255,0.7); }

/* ── Section titles ── */
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  line-height: 0.95;
  color: var(--navy);
  margin-bottom: 18px;
}

.section-dark .section-title { color: #fff; }
.section-red  .section-title { color: #fff; }

.section-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

.section-dark .section-body { color: rgba(255,255,255,0.65); }
.section-red  .section-body { color: rgba(255,255,255,0.8); }

/* ── Stats strip ── */
.stats-strip { background: var(--red); padding: 22px 20px; }

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: #fff;
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-top: 2px;
}

/* ── Photo strip ── */
.photo-strip {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.photo-strip::-webkit-scrollbar { display: none; }

.photo-strip-track {
  display: flex;
  gap: 3px;
}

.photo-strip-track img {
  width: 75vw;
  max-width: 320px;
  height: 260px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ── Photo split ── */
.photo-split {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.photo-split-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.photo-split-text {
  background: var(--navy);
  padding: 40px 24px;
  color: #fff;
}

/* ── Pillars ── */
.pillars {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 32px;
}

.pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  padding: 24px 22px;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--red);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 6px;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pillar-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Draft teaser ── */
.draft-teaser {
  background: var(--navy);
  padding: 40px 24px;
  position: relative;
  overflow: hidden;
}

.draft-teaser::after {
  content: '26';
  position: absolute;
  right: -20px;
  bottom: -40px;
  font-family: var(--font-display);
  font-size: 260px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}

.draft-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.draft-title {
  font-family: var(--font-display);
  font-size: 48px;
  color: #fff;
  line-height: 0.95;
  margin-bottom: 16px;
}

/* ── Quote ── */
.blockquote {
  border-left: 5px solid var(--red);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  padding: 24px 24px;
  background: var(--surface);
  margin: 36px 0;
}

.blockquote p {
  font-size: 19px;
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

.blockquote cite {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

/* ── Schedule info bar ── */
.sched-info {
  background: var(--navy);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.sched-info-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 3px;
  display: block;
}

.sched-info-val { font-size: 16px; font-weight: 600; color: #fff; }

.sched-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); flex-shrink: 0; }

/* ── Timeline ── */
.timeline { margin-top: 32px; }

.tl-item { padding: 22px 0; border-bottom: 1px solid var(--border); }
.tl-item:first-child { border-top: 1px solid var(--border); }

.tl-time {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  display: block;
}

.tl-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 6px;
}

.tl-desc { font-size: 16px; color: var(--muted); line-height: 1.65; }

/* ── Teams grid ── */
.teams-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  margin-top: 32px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  padding: 22px;
  transition: border-top-color 0.2s;
}

.team-card:hover { border-top-color: var(--red); }

.team-logo { width: 88px; height: 88px; object-fit: contain; margin-bottom: 12px; }

.team-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-captain {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.team-roster { list-style: none; }

.team-roster li {
  font-size: 15px;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.team-roster li:last-child { border-bottom: none; }

/* ── Rules ── */
.rules-section { margin-bottom: 44px; }

.rules-section h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--red);
}

.rule-list { list-style: none; }

.rule-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  line-height: 1.65;
}

.rule-list li::before { content: '—'; color: var(--red); flex-shrink: 0; }
.rule-list strong { color: var(--navy); font-weight: 700; }

/* ── Form ── */
.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}

.form-label .req { color: var(--red); margin-left: 3px; }

.form-input,
.form-select,
.form-textarea {
  background: #fff;
  border: 2px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  min-height: 52px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--navy); }

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8E' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 4px 0;
}

.form-checkbox input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-width: 22px;
  accent-color: var(--red);
  cursor: pointer;
  margin-top: 2px;
}

.form-checkbox-label { font-size: 16px; color: var(--muted); line-height: 1.5; }

.form-section-head {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--navy);
  padding-top: 16px;
  border-top: 2px solid var(--border);
  margin-top: 8px;
}

/* ── Signup layout ── */
.signup-layout { display: flex; flex-direction: column; gap: 28px; }
.signup-sidebar { display: flex; flex-direction: column; gap: 12px; }

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--navy);
  padding: 20px;
}

.info-card-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  display: block;
}

/* ── Location section ── */
.location-grid { display: flex; flex-direction: column; gap: 32px; }

.location-card { background: var(--navy); padding: 24px; color: #fff; }

.location-row {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 16px;
  color: #fff;
}

.location-row-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  min-width: 68px;
  flex-shrink: 0;
  padding-top: 2px;
}

/* ── Page header ── */
.page-header {
  padding: 100px 20px 52px;
  text-align: center;
  background: var(--surface);
  border-bottom: 3px solid var(--red);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: attr(data-word);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  font-family: var(--font-display);
  font-size: clamp(80px, 22vw, 220px);
  color: rgba(12,30,82,0.04);
  white-space: nowrap;
  pointer-events: none;
}

.page-header-logo {
  height: 96px;
  width: auto;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.page-header .section-title  { color: var(--navy); margin-bottom: 12px; position: relative; z-index: 1; }
.page-header .section-body   { color: var(--muted); margin: 0 auto; position: relative; z-index: 1; }
.page-header .section-label  { color: var(--red); position: relative; z-index: 1; }

/* ── Logo brand strip (homepage) ── */
.brand-strip {
  background: var(--surface);
  padding: 40px 20px 32px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.brand-strip img {
  height: 110px;
  width: auto;
  margin: 0 auto;
}

/* ── Footer ── */
.site-footer { background: var(--navy); padding: 48px 20px 28px; }

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-brand img { height: 32px; margin-bottom: 10px; }
.footer-brand p   { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.6; }

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin: 8px 0; }

.footer-col a {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  max-width: 1160px;
  margin: 20px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-bottom p  { font-size: 14px; color: rgba(255,255,255,0.3); }

.archive-link {
  font-size: 13px;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s;
}

.archive-link:hover { color: rgba(255,255,255,0.55); }

/* ── Tablet 640 px ── */
@media (min-width: 640px) {
  .hero-title      { font-size: 128px; }
  .hero-title .year { font-size: 104px; }

  .photo-strip-track img {
    width: 45vw;
    max-width: 380px;
    height: 280px;
  }

  .photo-split {
    flex-direction: row;
  }

  .photo-split-img {
    width: 45%;
    height: auto;
    min-height: 320px;
    flex-shrink: 0;
  }

  .photo-split-text { flex: 1; }

  .pillars { flex-direction: row; }
  .teams-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Desktop 1024 px ── */
@media (min-width: 1024px) {
  .site-nav { padding: 0 40px; height: 64px; }
  .nav-logo img { height: 40px; }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: static;
    background: none;
    border: none;
    padding: 0;
  }

  .nav-links li a {
    display: inline;
    padding: 0;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.7);
    transition: color 0.18s;
  }

  .nav-links a:hover,
  .nav-links a.active { color: #fff; }

  .nav-toggle { display: none; }

  .nav-cta {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 18px;
    background: var(--red);
    color: #fff;
    padding: 10px 24px;
    min-height: 42px;
    transition: background 0.18s;
  }

  .nav-cta:hover { background: #e5172b; }

  .hero-title       { font-size: 160px; }
  .hero-title .year { font-size: 128px; }

  .section-title    { font-size: 52px; }
  .draft-title      { font-size: 64px; }

  .photo-strip-track {
    min-width: 0;
  }

  .photo-strip-track img {
    width: auto;
    max-width: none;
    flex: 1;
    height: 320px;
  }

  .photo-split-img { width: 50%; }

  .section    { padding: 88px 40px; }
  .section-sm { padding: 60px 40px; }

  .signup-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 44px;
    align-items: start;
  }

  .signup-sidebar { position: sticky; top: 80px; }

  .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .footer-inner  { flex-direction: row; justify-content: space-between; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }

  .teams-grid   { grid-template-columns: repeat(3, 1fr); }
  .draft-teaser { padding: 52px 64px; }
  .page-header  { padding: 140px 40px 80px; }
}
