:root {
  --black: #000000;
  --charcoal: #111111;
  --accent: #ffffff;
  --accent-bright: #ffffff;
  --white: #ffffff;
  --gray: #9a9a9a;
  --line: rgba(255,255,255,0.14);
  --max-width: 1200px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }

body {
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

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

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

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

.logo {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  font-size: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.logo span { color: var(--white); }

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 70%, var(--black) 100%),
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.06), transparent 60%);
  padding: 140px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 2px, transparent 2px 40px);
  pointer-events: none;
}

.hero-eyebrow {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 14px;
  margin-bottom: 0;
}

.hero h1 {
  font-size: clamp(48px, 11vw, 130px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.hero h1 .accent {
  color: var(--white);
  -webkit-text-stroke: 1px var(--white);
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: clamp(20px, 4vw, 34px);
  color: var(--white);
  margin-bottom: 20px;
}

.hero p.lead {
  max-width: 560px;
  margin: 0 0 36px;
  color: var(--gray);
  font-size: 17px;
}

.btn {
  display: inline-block;
  padding: 16px 38px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  background: transparent;
  cursor: pointer;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn.solid {
  background: var(--white);
  color: var(--black);
}

.btn.solid:hover {
  background: transparent;
  color: var(--white);
}

.btn-row {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* Sections */
.section {
  padding: 110px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.section.alt { background: var(--charcoal); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-eyebrow {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
}

.section-header p {
  color: var(--gray);
  max-width: 560px;
  margin: 16px auto 0;
}

/* Grids */
.grid {
  display: grid;
  gap: 28px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  border-color: var(--white);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.card p { color: var(--gray); font-size: 15px; }

.stat-card {
  text-align: center;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 36px 20px;
}

.stat-card .num {
  font-weight: 900;
  font-size: 48px;
  color: var(--white);
}

.stat-card .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

/* Player card */
.player-card {
  position: relative;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}

.player-photo {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1d1d1d, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.player-number {
  font-weight: 900;
  font-size: 90px;
  color: rgba(255,255,255,0.16);
}

.player-info { padding: 20px; }

.player-info .pos {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.player-info h3 {
  font-size: 22px;
  margin: 6px 0 4px;
}

.player-info .meta {
  color: var(--gray);
  font-size: 13px;
}

/* Schedule table */
.schedule-list { display: flex; flex-direction: column; gap: 0; }

.schedule-row {
  display: grid;
  grid-template-columns: 100px 1fr auto 120px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.schedule-row .date {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.schedule-row .opp { font-size: 18px; font-weight: 600; }
.schedule-row .opp .vs { color: var(--gray); font-weight: 400; font-size: 13px; margin-right: 8px; }

.schedule-row .loc { color: var(--gray); font-size: 13px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--white);
  color: var(--white);
  text-align: center;
}

.tag.win { border-color: var(--white); color: var(--white); }
.tag.loss { border-color: var(--gray); color: var(--gray); }

/* Gallery */
.gallery-item {
  aspect-ratio: 1;
  background: linear-gradient(160deg, #1d1d1d, #000000);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.gallery-item:hover { border-color: var(--white); color: var(--white); }

/* Forms */
.form-grid {
  display: grid;
  gap: 20px;
  max-width: 620px;
  margin: 0 auto;
}

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

input, textarea, select {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--white);
}

textarea { resize: vertical; min-height: 140px; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 32px;
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a, .footer-grid p { color: var(--gray); font-size: 14px; }
.footer-grid a:hover { color: var(--white); }

.footer-bottom {
  text-align: center;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* Heavily blurred photo backdrop behind the Venue section (same schema as the hero) */
.courts-bg { position: relative; isolation: isolate; }
.courts-bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url('../courts-background.webp') center/cover no-repeat;
  filter: blur(28px) brightness(.36) saturate(.7); transform: scale(1.15);
}

/* Same blurred backdrop using background.JPG */
.bg-jpg { position: relative; isolation: isolate; }
.bg-jpg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: url('../background.JPG') center/cover no-repeat;
  filter: blur(28px) brightness(.36) saturate(.7); transform: scale(1.15);
}

/* Centered logo under the Thank You note */
.thanks-logo { display: block; margin: 32px auto 0; height: 56px; width: auto; }

/* Address → Google Maps link */
.maps-link { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.maps-link:hover { color: var(--white); }

/* Footer logo on the left */
.footer-left { display: flex; align-items: center; gap: 14px; }
.footer-logo { height: 26px; width: auto; display: block; }

.site-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer-row a { color: var(--gray); }
.site-footer-row a:hover { color: var(--white); }
@media (max-width: 600px) {
  .site-footer-row { justify-content: center; text-align: center; }
}

/* Page header (non-home pages) */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.05), transparent 60%);
}

.page-hero .section-eyebrow { color: var(--white); }

.page-hero h1 {
  font-size: clamp(40px, 8vw, 90px);
  font-weight: 900;
  color: var(--white);
}

.page-hero p {
  color: var(--gray);
  max-width: 600px;
  margin: 18px auto 0;
}

/* Sponsorship tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}

.tier-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.tier-card:hover { border-color: var(--white); transform: translateY(-4px); }

.tier-card.featured {
  border-color: var(--white);
  box-shadow: 0 0 0 1px var(--white);
}

.tier-card .tier-name {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 24px;
  color: var(--white);
}

.tier-card .tier-price {
  font-weight: 900;
  font-size: 44px;
  color: var(--white);
  margin: 6px 0 2px;
}

.tier-card .tier-logo {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 22px;
}

.tier-includes {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  margin-bottom: 14px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-features li {
  font-size: 14px;
  color: var(--white);
  padding-left: 26px;
  position: relative;
  line-height: 1.45;
}

.tier-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  font-weight: 700;
}

/* Long-form sponsorship prose */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { color: var(--gray); margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose p.sign { color: var(--white); font-weight: 700; }
.prose ul { color: var(--gray); margin: 0 0 18px; padding-left: 22px; }
.prose ul li { margin-bottom: 8px; }

/* Event facts block */
.event-meta { list-style: none; max-width: 620px; margin: 30px auto 0; text-align: left; }
.event-meta li { padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); color: var(--white); font-size: 15px; }
.event-meta li b {
  display: block; color: var(--gray); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px;
}

/* Sponsorship comparison table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tier-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.tier-table th, .tier-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: center; font-size: 14px; vertical-align: middle;
}
.tier-table thead th { border-bottom: 2px solid rgba(255,255,255,0.4); }
.tier-table thead .tier-h {
  display: block; font-weight: 900; font-size: 20px; color: var(--white); text-transform: uppercase;
}
.tier-table thead .tier-pr { display: block; color: var(--gray); font-size: 13px; font-weight: 400; margin-top: 2px; }
.tier-table th:first-child, .tier-table td:first-child {
  text-align: left; color: var(--white); font-weight: 600; width: 32%; min-width: 220px;
}
.tier-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.tier-table .yes { color: var(--white); font-weight: 700; }
.tier-table .no { color: rgba(255,255,255,0.2); }

/* Interactive tier picker */
.tier-select { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.tier-opt {
  font-family: inherit; text-align: left; cursor: pointer; color: var(--white);
  background: var(--charcoal); border: 1px solid rgba(255,255,255,0.14); padding: 22px 20px;
  display: flex; flex-direction: column; gap: 2px; position: relative; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}
.tier-opt:hover { border-color: var(--white); transform: translateY(-5px); }
.tier-opt:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.tier-opt .o-name { font-weight: 900; text-transform: uppercase; letter-spacing: .05em; font-size: 19px; }
.tier-opt .o-price { font-weight: 900; font-size: 34px; line-height: 1.05; }
.tier-opt .o-logo { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; margin-top: 8px; }
.tier-opt .o-badge {
  position: absolute; top: 12px; right: 12px; font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,.4); padding: 3px 7px; color: var(--gray);
}
.tier-opt.selected {
  border-color: #fff;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 0 0 2px #fff, 0 22px 55px rgba(0,0,0,.55);
}

/* Metallic, reflective finishes for each tier */
.tier-opt.copper   { background: linear-gradient(135deg,#5e2b13,#b06a38 26%,#e8a373 48%,#bd7843 64%,#7a3d1e 90%); border-color: rgba(0,0,0,.28); color: #fff; }
.tier-opt.silver   { background: linear-gradient(135deg,#9a9a9a,#dcdcdc 26%,#ffffff 48%,#c4c4c4 64%,#8f8f8f 90%); border-color: rgba(0,0,0,.22); color: #15120c; }
.tier-opt.gold     { background: linear-gradient(135deg,#b8901f,#e6c64e 26%,#fff3bf 48%,#d8af33 64%,#a87d18 90%); border-color: rgba(0,0,0,.24); color: #1c1405; }
.tier-opt.platinum { background: linear-gradient(135deg,#a7abb0,#dfe3e7 26%,#ffffff 48%,#cacdd2 64%,#9aa0a6 90%); border-color: rgba(0,0,0,.22); color: #15120c; }

.tier-opt.copper .o-name, .tier-opt.copper .o-price { text-shadow: 0 1px 3px rgba(0,0,0,.45); }
.tier-opt.silver .o-name, .tier-opt.silver .o-price,
.tier-opt.gold .o-name, .tier-opt.gold .o-price,
.tier-opt.platinum .o-name, .tier-opt.platinum .o-price { text-shadow: 0 1px 1px rgba(255,255,255,.5); }

.tier-opt.copper .o-logo { color: rgba(255,255,255,.82); }
.tier-opt.silver .o-logo, .tier-opt.gold .o-logo, .tier-opt.platinum .o-logo { color: rgba(0,0,0,.6); }

.tier-opt.copper .o-badge { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.55); }
.tier-opt.silver .o-badge, .tier-opt.gold .o-badge, .tier-opt.platinum .o-badge { color: rgba(0,0,0,.72); border-color: rgba(0,0,0,.4); }

/* reflective light sweep on hover / select */
.tier-opt::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,.55) 48%, transparent 64%);
  transform: translateX(-130%); transition: transform .7s ease;
}
.tier-opt:hover::after, .tier-opt.selected::after { transform: translateX(130%); }

/* Detail panel */
.tier-detail { background: var(--charcoal); border: 1px solid rgba(255,255,255,0.16); padding: 34px; }
.td-top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 18px;
  border-bottom: 1px solid rgba(255,255,255,.14); padding-bottom: 20px; margin-bottom: 24px;
  animation: tdpop .32s ease both; }
.td-name { font-weight: 900; text-transform: uppercase; font-size: 28px; letter-spacing: .03em; }
.td-price { font-weight: 900; font-size: 26px; }
.td-logo { color: var(--gray); font-size: 14px; }
.td-logo b { color: var(--white); }
.td-count { margin-left: auto; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray); }
.td-perks { list-style: none; display: grid; gap: 13px; }
.td-perks li { position: relative; padding-left: 30px; font-size: 15px; color: var(--white); animation: perkin .4s ease both; }
.td-perks li.locked { color: rgba(255,255,255,.34); }
.td-perks li::before { content: "\2713"; position: absolute; left: 0; top: 1px; font-weight: 900; color: var(--white); }
.td-perks li.locked::before { content: "\2014"; color: rgba(255,255,255,.3); font-weight: 400; }
.td-cta { margin-top: 28px; }
@keyframes perkin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes tdpop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .td-perks li, .td-top { animation: none; } }

@media (max-width: 760px) {
  .tier-select { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tier-opt { padding: 16px 15px; }
  .tier-opt .o-price { font-size: 27px; }
  /* stack the badge above the name so it can't overlap on narrow cards */
  .tier-opt .o-badge { position: static; order: -1; align-self: flex-start; margin-bottom: 8px; }
  .tier-detail { padding: 24px 20px; }
  .td-count { margin-left: 0; flex-basis: 100%; }
  .td-cta .btn { display: block; text-align: center; }
}

/* Responsive */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* collapse nav to a hamburger before the 7 links start to crowd */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  /* center the logo on mobile, keep the hamburger on the right */
  .nav { justify-content: flex-end; }
  .logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }

  .section { padding: 72px 0; }
  .section-header { margin-bottom: 44px; }
}

@media (max-width: 700px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .tier-grid { grid-template-columns: 1fr; }
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: left;
  }
  .section { padding: 60px 0; }
  .page-hero { padding: 130px 0 60px; }
}
