/* ---------- Tokens ---------- */
:root {
  --green: #238c36;
  --green-dark: #1b6c2a;
  --green-light: #e9f6ec;
  --black: #111315;
  --grey-900: #1f2326;
  --grey-700: #4a5158;
  --grey-500: #7a8189;
  --grey-200: #e5e7ea;
  --grey-100: #f3f5f7;
  --white: #ffffff;

  --font-display: "Anton", "Helvetica Neue", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06), 0 2px 6px rgba(0,0,0,.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,.08);

  --max-w: 1100px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--green); }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.15; color: var(--black); }
h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: .02em; text-transform: uppercase; }
h2 { font-family: var(--font-display); font-size: clamp(1.9rem, 3.5vw, 2.8rem); letter-spacing: .015em; text-transform: uppercase; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1em; }

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

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 .8em;
}
.eyebrow-light { color: rgba(255,255,255,.85); }
.lead { font-size: 1.15rem; color: var(--grey-700); max-width: 60ch; }
.muted { color: var(--grey-500); }
.small { font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--grey-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand-mark { width: 40px; height: 40px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-line-1 { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; }
.brand-line-2 { font-size: .72rem; color: var(--grey-700); letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  color: var(--grey-900);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
}
.site-nav a:hover { color: var(--green-dark); }
.site-nav .nav-cta {
  background: var(--green);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
}
.site-nav .nav-cta:hover { background: var(--green-dark); color: white; }
@media (max-width: 720px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .brand-line-2 { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green); color: white; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: rgba(255,255,255,.12); color: white; }
.section-accent .btn-ghost,
.section:not(.section-dark):not(.section-accent) .btn-ghost {
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.section:not(.section-dark):not(.section-accent) .btn-ghost:hover {
  background: var(--green-light);
}
.btn-block { display: block; width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(720px, 92vh);
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url("assets/hero-1.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 60%, rgba(17,19,21,.85) 100%);
  z-index: -1;
}
.hero-content { padding: 120px 24px 100px; }
.hero h1 { color: white; margin-bottom: .15em; }
.hero .eyebrow { color: #b8e6c2; }
.hero-tagline { font-size: 1.25rem; max-width: 36ch; color: rgba(255,255,255,.92); }

/* ---------- Kick-off banner (time-sensitive, high-prominence) ---------- */
.kickoff {
  padding: 64px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 40%),
    radial-gradient(circle at 10% 110%, rgba(0,0,0,.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  position: relative;
}
.kickoff::before,
.kickoff::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
}
.kickoff::before { width: 220px; height: 220px; top: -80px; left: -80px; }
.kickoff::after { width: 380px; height: 380px; bottom: -180px; right: -120px; }
.kickoff-poster {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.kickoff-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin: 0 0 24px;
}
.kickoff-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ffeb3b;
  box-shadow: 0 0 0 0 rgba(255,235,59,.7);
  animation: kickoff-pulse 1.8s ease-out infinite;
}
@keyframes kickoff-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,235,59,.7); }
  70%  { box-shadow: 0 0 0 12px rgba(255,235,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,235,59,0); }
}
.kickoff-countdown { font-weight: 700; opacity: .9; }
.kickoff-poster h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: white;
  margin: 0 0 .35em;
}
.kickoff-h2-sub {
  display: inline-block;
  font-size: .55em;
  letter-spacing: .12em;
  color: rgba(255,255,255,.85);
}
.kickoff-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 28px;
  text-align: left;
}
.kickoff-info-block {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}
.kickoff-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #b8e6c2;
  margin: 0 0 6px;
}
.kickoff-when,
.kickoff-where { margin: 0; line-height: 1.35; }
.kickoff-when-big,
.kickoff-where-big {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: white;
}
.kickoff-when-time {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-top: 2px;
}
.kickoff-where-addr {
  display: block;
  font-size: .92rem;
  color: rgba(255,255,255,.85);
  margin-top: 4px;
}
.kickoff-blurb {
  font-size: 1.08rem;
  color: rgba(255,255,255,.92);
  max-width: 60ch;
  margin: 0 auto 28px;
}
.kickoff-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.kickoff-quick {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.kickoff-quick a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: white;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: background .15s, border-color .15s;
}
.kickoff-quick a:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  color: white;
}

/* "btn-light" variant for use on green backgrounds */
.btn-light {
  background: white;
  color: var(--green-dark);
  border-color: white;
}
.btn-light:hover { background: #f5f5f5; color: var(--green-dark); }
.btn-ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,.7);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
  color: white;
  border-color: white;
}

@media (max-width: 720px) {
  .kickoff { padding: 48px 0; }
  .kickoff-info { grid-template-columns: 1fr; gap: 10px; }
  .kickoff-poster h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .kickoff::before, .kickoff::after { display: none; }
}

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 32px 0 64px; }
.section-dark {
  background: var(--black);
  color: rgba(255,255,255,.88);
}
.section-dark h2,
.section-dark h3 { color: white; }
.section-dark .lead { color: rgba(255,255,255,.78); }
.section-accent {
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
}
.section-accent h2, .section-accent h3 { color: white; }
.section-accent .btn-ghost { color: white; border-color: rgba(255,255,255,.8); }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* ---------- Prose two-col ---------- */
.prose.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
}
.prose p { margin: 0 0 1em; color: var(--grey-700); }
.section-dark .prose p { color: rgba(255,255,255,.82); }
@media (max-width: 720px) {
  .prose.two-col { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Seasons grid (two main season cards) ---------- */
.seasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 40px 0 32px;
}
.season-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.18);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg);
  padding: 28px 28px 22px;
}
.season-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b8e6c2;
  margin: 0 0 .5em;
}
.season-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: .15em;
}
.season-dates {
  color: rgba(255,255,255,.85);
  font-weight: 600;
  margin: 0 0 .8em;
}
.season-card p { color: rgba(255,255,255,.82); }
@media (max-width: 720px) {
  .seasons-grid { grid-template-columns: 1fr; }
}

/* ---------- Card grid ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 36px 0 16px;
}
.card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.card h3 { margin-bottom: .5em; color: white; }
.card p { color: rgba(255,255,255,.78); margin: 0; }
@media (max-width: 820px) {
  .card-grid { grid-template-columns: 1fr; }
}

/* ---------- Fixture table ---------- */
.fixture-wrap {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}
.fixture-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 1rem;
}
.fixture-table thead th {
  background: var(--grey-100);
  text-align: left;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-700);
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
}
.fixture-table tbody th,
.fixture-table tbody td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--grey-200);
  vertical-align: top;
}
.fixture-table tbody tr:last-child th,
.fixture-table tbody tr:last-child td { border-bottom: 0; }
.fixture-table tbody th {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: .04em;
  color: var(--green-dark);
  width: 80px;
}
.fixture-table tbody tr:hover {
  background: var(--green-light);
}
.fixture-table .tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 2px 8px;
  border-radius: 99px;
  margin-left: 8px;
  vertical-align: middle;
}
.fixture-source { margin-top: 18px; }
@media (max-width: 600px) {
  .fixture-table thead th,
  .fixture-table tbody th,
  .fixture-table tbody td { padding: 12px 12px; font-size: .92rem; }
  .fixture-table tbody th { width: 56px; font-size: .95rem; }
}

/* ---------- Photo grid ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.photo-grid figure { margin: 0; }
.photo-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 820px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  gap: 24px;
}
.steps > li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: white;
  background: rgba(255,255,255,.15);
  width: 64px; height: 64px;
  display: grid; place-items: center;
  border-radius: 50%;
}
.steps h3 { margin-bottom: .35em; }
.steps p { color: rgba(255,255,255,.92); }

/* ---------- Contact form ---------- */
.contact-form {
  margin-top: 28px;
  background: var(--grey-100);
  padding: 32px;
  border-radius: var(--radius-lg);
}
.field { display: block; margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  margin-bottom: 6px;
  color: var(--grey-900);
}
.field .optional { font-weight: 400; color: var(--grey-500); }
.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--grey-900);
  background: white;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(35,140,54,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,.75);
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 36px;
}
.footer-logo {
  width: 110px;
  border-radius: var(--radius);
  margin-bottom: 14px;
}
.site-footer h4 {
  color: white;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.site-footer a { color: #b8e6c2; }
.site-footer a:hover { color: white; }
.footer-bar {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
}
@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
