/* ==========================================================================
   614 SPORTS — shared stylesheet
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #0a1730;
  --navy-800: #0f2044;
  --navy-700: #16305f;
  --red-600: #e0202f;
  --red-700: #b91826;
  --blue-400: #6fb2e8;
  --blue-300: #a9d2f2;
  --ink: #10182b;
  --paper: #f4f6f9;
  --white: #ffffff;
  --line: #e1e5ec;

  /* Type */
  --font-head: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --max-w: 1180px;
  --radius: 14px;
  --shadow-sm: 0 2px 10px rgba(10, 23, 48, 0.08);
  --shadow-md: 0 12px 30px rgba(10, 23, 48, 0.16);
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.02;
  margin: 0;
  color: var(--navy-900);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1rem; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--red-600);
  text-transform: uppercase;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue-400);
  outline-offset: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  line-height: 1;
}

.btn-primary {
  background: var(--red-600);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224, 32, 47, 0.35);
}
.btn-primary:hover { background: var(--red-700); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-outline-navy:hover {
  background: var(--navy-900);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  border-bottom: 3px solid var(--red-600);
}

.nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 50px;
  width: 50px;
}

.brand-text {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  line-height: 1;
}
.brand-text span { color: var(--red-600); }

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

.main-nav a {
  font-family: var(--font-head);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.main-nav a[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--red-600);
}

.nav-cta {
  margin-left: 6px;
}
.nav-cta .btn { padding: 10px 20px; font-size: 1rem; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy-900);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 20px;
    border-bottom: 3px solid var(--red-600);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-cta {
    margin: 12px 0 0;
  }
  .nav-cta .btn { width: 100%; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(10, 23, 48, 0.94) 0%, rgba(10, 23, 48, 0.88) 55%, var(--navy-900) 100%),
    url('assets/columbus-skyline.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.35) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 84px 24px 96px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

.hero-logo img {
  width: 190px;
  height: 190px;
}

.hero-headline {
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  color: var(--white);
}
.hero-headline .accent { color: var(--blue-300); }

.hero-sub {
  margin-top: 20px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-court-line {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 420px;
  height: 420px;
  border: 3px solid rgba(111, 178, 232, 0.18);
  border-radius: 50%;
  z-index: 0;
}

@media (max-width: 760px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 56px 20px 64px;
  }
  .hero-logo img { width: 120px; height: 120px; }
}

/* Page banner (interior pages) */
.page-banner {
  background: var(--navy-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
  z-index: 1;
}
.page-banner h1 { color: var(--white); }
.page-banner .sub {
  margin-top: 14px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 60ch;
}
.page-banner-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red-600) 0%, var(--red-600) 33%, var(--blue-400) 33%, var(--blue-400) 66%, var(--white) 66%);
  opacity: 0.9;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.section {
  padding: 80px 0;
}
.section-navy {
  background: var(--navy-900);
  color: var(--white);
}
.section-navy h2 { color: var(--white); }
.section-paper {
  background: var(--paper);
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head p {
  margin-top: 14px;
  font-size: 1.08rem;
  color: #48546e;
}
.section-navy .section-head p { color: rgba(255, 255, 255, 0.78); }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--navy-900);
}
.card:nth-child(2) { border-top-color: var(--red-600); }
.card:nth-child(3) { border-top-color: var(--blue-400); }

.card h3 { margin-bottom: 10px; }
.card p { color: #48546e; margin-bottom: 0; }

/* Rule cards (numbered — legitimate sequence) */
.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 760px) {
  .rule-grid { grid-template-columns: 1fr; }
}

.rule-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.rule-number {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
}
.rule-card:nth-child(even) .rule-number { background: var(--red-600); }

.rule-body h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.rule-body p { color: #48546e; margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 76px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 32, 47, 0.25), transparent 70%);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  margin: 16px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.06rem;
}
.checkmark {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 2px;
}

/* Two column layout */
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .form-card { padding: 26px 20px; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 620px) {
  .form-grid { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field.full { grid-column: 1 / -1; }

.field label {
  font-family: var(--font-head);
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
}
.field .req { color: var(--red-600); }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue-400);
  outline: none;
  box-shadow: 0 0 0 3px rgba(111, 178, 232, 0.25);
}

.field textarea { resize: vertical; min-height: 110px; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 26px;
}
.checkbox-row input { margin-top: 4px; }
.checkbox-row label { font-size: 0.98rem; color: #48546e; }

.form-note {
  font-size: 0.9rem;
  color: #6a7590;
  margin-top: 10px;
}

.confirmation {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.confirmation.is-visible { display: block; }
.confirmation .check-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--red-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 40px;
  max-width: 560px;
}
.contact-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row .label {
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  color: var(--navy-900);
  font-size: 1rem;
}
.contact-row .value {
  color: #48546e;
  font-size: 1.05rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
  border-top: 3px solid var(--red-600);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-brand img { height: 42px; width: 42px; }
.footer-brand span {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.03em;
}
.footer-tagline { max-width: 32ch; color: rgba(255, 255, 255, 0.62); }

.footer-heading {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.footer-links a:hover { color: var(--white); }

.footer-social a {
  .footer-social { display: grid; gap: 14px; }
.footer-social a { display: inline-flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.78); width: fit-content; }
.footer-social a:hover { color: var(--white); }
.social-icon { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: var(--white); transition: background-color 0.15s ease; }
.footer-social a:hover .social-icon { background: var(--red-600); }
}
.footer-social a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Utility */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
