@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Mono:wght@400;500&family=Nunito:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F5F0E8;
  --red:      #8B1A1A;
  --red-light:#B22222;
  --navy:     #1C2B4A;
  --navy-mid: #2E4270;
  --gold:     #C8960C;
  --text:     #1C2B4A;
  --muted:    #4A5568;
  --border:   #C8B89A;
  --white:    #FEFCF8;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── NAVIGATION ── */
nav {
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo .logo-mark {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}

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

.nav-links a {
  display: block;
  padding: 0 1.25rem;
  height: 64px;
  line-height: 64px;
  color: #C8D4E8;
  text-decoration: none;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover { color: var(--cream); background: rgba(255,255,255,0.05); }
.nav-links a.active { color: var(--gold); border-bottom: 3px solid var(--gold); margin-bottom: -3px; }

.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.2s; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 3px solid var(--red);
  color: #8899BB;
  padding: 2.5rem 2rem;
  margin-top: auto;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-mark {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
}

.footer-tagline {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ── PAGE WRAPPER ── */
main { flex: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── PAGE HEADER BAND ── */
.page-header {
  background: var(--navy);
  padding: 4rem 2rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
}

.page-header-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  position: relative;
}

.page-header .subtitle {
  font-size: 1.05rem;
  color: #A8BBCC;
  margin-top: 1rem;
  font-style: italic;
  position: relative;
}

/* ── RULE DIVIDERS ── */
.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
  opacity: 0.5;
}

.rule-heavy {
  border-top: 3px double var(--border);
  opacity: 0.6;
}

/* ── SECTION LABEL ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── TYPOGRAPHY ── */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--red);
  line-height: 1.2;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
}

p { margin-bottom: 1rem; color: var(--muted); }
p:last-child { margin-bottom: 0; }

strong { color: var(--text); font-weight: 600; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: 0.15s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--cream);
}
.btn-primary:hover { background: var(--red-light); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--cream);
  color: var(--cream);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}
.btn-navy:hover { background: var(--navy-mid); }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

.card-red-top { border-top: 3px solid var(--red); }
.card-navy-top { border-top: 3px solid var(--navy); }
.card-gold-top { border-top: 3px solid var(--gold); }

/* ── UTILITY ── */
.text-center { text-align: center; }
.text-mono {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mt-8 { margin-top: 4rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }

.py-6 { padding-top: 3rem; padding-bottom: 3rem; }
.py-8 { padding-top: 4rem; padding-bottom: 4rem; }
.py-10 { padding-top: 5rem; padding-bottom: 5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); border-bottom: 2px solid var(--red); }
  .nav-links.open a { height: auto; line-height: 1; padding: 1rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links.open a.active { border-bottom: 1px solid rgba(255,255,255,0.05); border-left: 3px solid var(--gold); }
  .nav-burger { display: block; }
  nav { position: relative; }
}

/* ── PPPA ADDITIONS (logo, video, footer) ── */
.nav-inner { height: 112px; }
.nav-links a { height: 112px; line-height: 112px; }
.nav-logo img { height: 96px; width: auto; display: block; }

.footer-logo { height: 144px; width: auto; display: block; }

.footer-social {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border: 1px solid rgba(200,150,12,0.4);
  padding: 0.5rem 1rem;
  transition: 0.15s;
}
.footer-social:hover { border-color: var(--gold); background: rgba(200,150,12,0.08); }

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

@media (max-width: 720px) {
  .nav-links.open { top: 112px; }
  .nav-logo img { height: 64px; }
  .nav-inner { height: 80px; }
  .footer-logo { height: 96px; }
}

/* ── WHITE HEADER & FOOTER + WARMER NAV TYPE ── */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--red);
}

.nav-links { align-items: center; }

.nav-links a {
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav-links a:hover { color: var(--navy); background: rgba(28,43,74,0.04); }
.nav-links a.active { color: var(--red); border-bottom: 3px solid var(--red); }

.nav-burger span { background: var(--navy); }

/* Championship CTA nav item */
.nav-links a.nav-cta,
.nav-links a.nav-cta.active {
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  height: auto;
  line-height: 1;
  padding: 0.7rem 1.5rem;
  margin-left: 0.75rem;
  border-bottom: none;
}
.nav-links a.nav-cta:hover { background: var(--red-light); }

footer {
  background: var(--white);
  border-top: 3px solid var(--red);
  color: var(--muted);
}

.footer-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--red);
  opacity: 1;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: color 0.15s;
}
.footer-ig:hover { color: var(--red); }
.footer-ig svg { width: 30px; height: 30px; }

@media (max-width: 720px) {
  .nav-links.open { background: var(--white); border-bottom: 2px solid var(--red); }
  .nav-links.open a { border-bottom: 1px solid rgba(28,43,74,0.06); }
  .nav-links.open a.nav-cta { margin: 0.75rem 2rem; display: inline-block; }
}

@media (max-width: 800px) {
  .comp-row { grid-template-columns: 1fr !important; }
}

/* ── FINAL SIZE ADJUSTMENTS ── */
.footer-tagline {
  font-size: 4.2rem;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1;
}

.nav-logo img { height: 144px; }
.nav-inner { height: 168px; }
.nav-links a { height: 168px; line-height: 168px; }
.nav-links a.nav-cta { height: auto; line-height: 1; }

@media (max-width: 720px) {
  .nav-logo img { height: 96px; }
  .nav-inner { height: 120px; }
  .nav-links.open { top: 120px; }
  .footer-tagline { font-size: 2.4rem; }
  .footer-inner { flex-direction: column; text-align: center; gap: 1.5rem; }
}

/* ── COMPACT HEADER & FOOTER ── */
.nav-logo img { height: 72px; }
.nav-inner { height: 84px; }
.nav-links a { height: 84px; line-height: 84px; }
.nav-links a.nav-cta { height: auto; line-height: 1; }

footer { padding: 1.25rem 2rem; }
.footer-logo { height: 72px; }
.footer-tagline {
  font-size: 2.8rem;
  font-style: normal;
}

@media (max-width: 720px) {
  .nav-logo img { height: 56px; }
  .nav-inner { height: 68px; }
  .nav-links.open { top: 68px; }
  .footer-logo { height: 56px; }
  .footer-tagline { font-size: 1.8rem; }
}

/* ── LOGO & TAGLINE V2 ── */
.nav-logo img { height: 144px; }
.nav-inner { height: 156px; }
.nav-links a { height: 156px; line-height: 156px; }
.nav-links a.nav-cta { height: auto; line-height: 1; }

.footer-logo { height: 144px; }
.footer-tagline { font-size: 1.4rem; }

/* Narrower page-header headlines */
.page-header h1 {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .nav-logo img { height: 88px; }
  .nav-inner { height: 100px; }
  .nav-links.open { top: 100px; }
  .footer-logo { height: 88px; }
  .footer-tagline { font-size: 1.1rem; }
}

/* ── COMPACT BARS, TRIMMED LOGO ── */
/* Logo PNG is now cropped to its artwork; ~68px displays the artwork
   at the same visual size as the old padded 144px version. */
.nav-logo img { height: 68px; }
.nav-inner { height: 80px; }
.nav-links a { height: 80px; line-height: 80px; }
.nav-links a.nav-cta { height: auto; line-height: 1; }

footer { padding: 0.9rem 2rem; }
.footer-logo { height: 68px; }

/* Wider headline buffer: two lines instead of three */
.page-header h1 { max-width: 820px; }

@media (max-width: 720px) {
  .nav-logo img { height: 52px; }
  .nav-inner { height: 64px; }
  .nav-links.open { top: 64px; }
  .footer-logo { height: 52px; }
}

/* ── HALVED SECTION PADDING ── */
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }

.page-header { padding: 2rem 2rem 1.75rem; }
.rule { margin: 1.5rem 0; }

/* ── HEADER BAND PADDING UP 50%, LOGOS AT 75% ── */
.page-header { padding: 3rem 2rem 2.6rem; }

.nav-logo img { height: 51px; }
.nav-inner { height: 64px; }
.nav-links a { height: 64px; line-height: 64px; }
.nav-links a.nav-cta { height: auto; line-height: 1; }

.footer-logo { height: 51px; }

@media (max-width: 720px) {
  .nav-logo img { height: 40px; }
  .nav-inner { height: 52px; }
  .nav-links.open { top: 52px; }
  .footer-logo { height: 40px; }
}

/* ── SOFTER TYPE: NUNITO REPLACES DM MONO ── */
.btn {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 4px;
}

.section-label,
.page-header-label {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.text-mono {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── EVENT METRIC LINE (championship cards) ── */
.event-metric {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 0.15rem;
  margin-bottom: 0.5rem;
}

/* ── FOOTER LEFT GROUP ── */
.footer-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

@media (max-width: 720px) {
  .footer-left { flex-direction: column; gap: 0.5rem; }
}

/* ── FOOTER: TRUE-CENTERED TAGLINE ── */
/* Three-column grid: logo left, tagline dead center of the 1100px
   container (same container the pages use), Instagram right. */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.footer-inner .footer-logo { justify-self: start; }
.footer-inner .footer-tagline { justify-self: center; text-align: center; }
.footer-inner .footer-ig { justify-self: end; }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 0.75rem; }
  .footer-inner .footer-logo,
  .footer-inner .footer-ig { justify-self: center; }
}
