/* ============================================================
   HOLIDAY HOOPS CLASSIC — Holiday Editorial Design System
   Palette: Forest Green / Crimson / Champagne Gold / Cream
   ============================================================ */

:root {
  /* Color tokens — holiday palette */
  --green-900: #0f2e1c;
  --green-800: #163d26;
  --green-700: #1a4d2e;
  --green-600: #235e3a;
  --green-100: #d9e6dd;
  --green-50:  #eef4f0;

  --crimson-900: #6f140f;
  --crimson-800: #8a1a14;
  --crimson-700: #a8201a;
  --crimson-600: #b8342e;

  --gold-700: #876338;
  --gold-600: #c39a6b;
  --gold-500: #d4a574;
  --gold-400: #ddb691;
  --gold-100: #f4e6d4;

  --cream:    #fefcf7;
  --cream-2:  #faf6ec;
  --paper:    #ffffff;

  --ink:      #2a2a2a;
  --ink-soft: #4a4a4a;
  --ink-mute: #6e6e6e;
  --rule:     #e6dfce;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-eyebrow: 'Source Sans 3', sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-20: 80px;
  --s-24: 96px;

  --shadow-sm: 0 1px 2px rgba(15, 46, 28, 0.06);
  --shadow-md: 0 6px 18px rgba(15, 46, 28, 0.10);
  --shadow-lg: 0 18px 40px rgba(15, 46, 28, 0.14);
  --transition: 240ms cubic-bezier(.2,.7,.2,1);
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--crimson-700); }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
p  { margin: 0 0 var(--s-4); }

.eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--crimson-700);
  margin-bottom: var(--s-3);
  display: inline-block;
}
.eyebrow--gold { color: var(--gold-700); }
.eyebrow--cream { color: var(--gold-400); }

.lede { font-size: 1.2rem; color: var(--ink-soft); line-height: 1.6; max-width: 62ch; }

/* Layout */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--s-6); }
.container--narrow { max-width: 860px; }
section { padding: var(--s-20) 0; }
@media (max-width: 720px) { section { padding: var(--s-16) 0; } }

/* ============== HEADER ============== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: rgba(254, 252, 247, 0.92);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) var(--s-6);
  max-width: 1180px;
  margin: 0 auto;
}
.brand {
  display: flex; align-items: center; gap: var(--s-3);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-900);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.brand__logo { width: 52px; height: 52px; object-fit: contain; }
.brand__mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-700);
  display: grid; place-items: center;
  color: var(--gold-500);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--gold-500);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__small {
  font-family: var(--font-eyebrow);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson-700);
  font-weight: 600;
}

.nav { display: flex; align-items: center; gap: var(--s-6); }
.nav a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.nav a:hover { color: var(--green-700); }
.nav .btn { padding: 10px 18px; font-size: 0.9rem; }
.nav .btn--crimson { color: var(--cream); }
@media (max-width: 720px) {
  .nav .nav-link { display: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}
.btn--primary {
  background: var(--green-700);
  color: var(--cream);
  border: 1px solid var(--green-700);
}
.btn--primary:hover {
  background: var(--green-800);
  color: var(--gold-500);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--crimson {
  background: var(--crimson-700);
  color: var(--cream);
  border: 1px solid var(--crimson-700);
}
.btn--crimson:hover {
  background: var(--crimson-800);
  color: var(--gold-400);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--ghost {
  background: transparent;
  color: var(--green-700);
  border: 1px solid var(--green-700);
}
.btn--ghost:hover {
  background: var(--green-700);
  color: var(--cream);
}
.btn--gold {
  background: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-500);
  color: var(--green-900);
}

/* ============== HERO ============== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--green-900) 0%, var(--green-800) 100%);
  color: var(--cream);
  overflow: hidden;
  padding: var(--s-24) 0 var(--s-20);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='%23d4a574' fill-opacity='0.045'><circle cx='15' cy='15' r='1.5'/><circle cx='75' cy='45' r='1'/><circle cx='105' cy='15' r='1.2'/><circle cx='45' cy='90' r='1'/><circle cx='95' cy='95' r='1.5'/><circle cx='25' cy='65' r='0.8'/></g></svg>");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-16);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s-12); }
}
.hero__eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.8rem;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: var(--s-4);
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; height: 1px; width: 32px; background: var(--gold-500); opacity: 0.6;
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 1.05;
  margin-bottom: var(--s-6);
  font-weight: 700;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-500);
  font-weight: 400;
}
.hero__lede {
  font-size: 1.2rem;
  color: rgba(254, 252, 247, 0.82);
  margin-bottom: var(--s-8);
  max-width: 56ch;
  line-height: 1.6;
}
.hero__cta { display: flex; gap: var(--s-4); flex-wrap: wrap; }

.hero__card {
  background: var(--cream);
  color: var(--ink);
  padding: var(--s-8) var(--s-8);
  border: 1px solid var(--gold-500);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.hero__card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson-700), var(--gold-500), var(--green-700));
}
.hero__card-eyebrow {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--crimson-700);
  margin-bottom: var(--s-3);
}
.hero__card-title {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  font-size: 1.4rem;
  margin-bottom: var(--s-4);
  color: var(--green-900);
}
.hero__card-list {
  list-style: none; padding: 0; margin: 0 0 var(--s-6);
}
.hero__card-list li {
  display: flex; justify-content: space-between;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--rule);
  font-size: 0.95rem;
}
.hero__card-list li:last-child { border-bottom: none; }
.hero__card-list strong { color: var(--green-800); font-weight: 600; }

/* ============== EVENTS / TOURNAMENTS ============== */
.events { background: var(--cream-2); }
.section-head { text-align: center; margin-bottom: var(--s-12); }
.section-head .lede { margin: 0 auto; }

.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}
@media (max-width: 820px) { .event-grid { grid-template-columns: 1fr; } }

.event-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-12) var(--s-8);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.event-card--thanksgiving::before { background: var(--gold-600); }
.event-card--christmas::before { background: var(--crimson-700); }

.event-card__date {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--crimson-700);
  font-style: italic;
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.event-card--thanksgiving .event-card__date { color: var(--gold-700); }

.event-card h3 {
  font-size: 1.85rem;
  margin-bottom: var(--s-4);
}
.event-card__meta {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin: var(--s-6) 0;
  padding: var(--s-4) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.event-card__meta-row {
  display: flex; justify-content: space-between;
  font-size: 0.92rem;
}
.event-card__meta-row span:first-child {
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
}
.event-card__meta-row span:last-child {
  color: var(--green-800);
  font-weight: 600;
}

/* ============== FEATURES ============== */
.features { background: var(--cream); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-12);
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .feature-grid { grid-template-columns: 1fr; } }

.feature {
  text-align: left;
}
.feature__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: grid; place-items: center;
  margin-bottom: var(--s-4);
  border: 1px solid var(--green-100);
}
.feature h3 {
  color: var(--green-900);
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
}
.feature p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0;
}

/* ============== VENUE STRIP ============== */
.venue-strip {
  background: var(--green-900);
  color: var(--cream);
  padding: var(--s-16) 0;
}
.venue-strip__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
@media (max-width: 820px) { .venue-strip__grid { grid-template-columns: 1fr; } }
.venue-strip h2 { color: var(--cream); }
.venue-strip p { color: rgba(254, 252, 247, 0.82); }
.venue-strip__address {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: var(--s-2);
}
.venue-strip__map {
  background: var(--green-800);
  border: 1px solid var(--gold-700);
  padding: var(--s-8);
  text-align: center;
}
.venue-strip__map h3 {
  font-size: 1.1rem;
  color: var(--gold-500);
  font-style: italic;
  margin-bottom: var(--s-3);
  font-weight: 400;
}

/* ============== DIVISIONS ============== */
.divisions { background: var(--cream-2); }
.division-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-top: var(--s-8);
}
@media (max-width: 820px) { .division-grid { grid-template-columns: 1fr; } }
.division {
  background: var(--paper);
  padding: var(--s-6);
  border-left: 3px solid var(--green-700);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.division--gold { border-left-color: var(--gold-600); }
.division--crimson { border-left-color: var(--crimson-700); }
.division h4 {
  font-size: 1.15rem;
  margin-bottom: var(--s-2);
  font-style: italic;
  color: var(--green-900);
}
.division p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ============== CTA STRIP ============== */
.cta-strip {
  background: var(--crimson-800);
  background-image:
    linear-gradient(135deg, var(--crimson-900) 0%, var(--crimson-700) 100%);
  color: var(--cream);
  text-align: center;
  padding: var(--s-16) var(--s-6);
}
.cta-strip h2 {
  color: var(--cream);
  margin-bottom: var(--s-4);
}
.cta-strip h2 em { color: var(--gold-500); font-style: italic; font-weight: 400; }
.cta-strip p {
  color: rgba(254, 252, 247, 0.88);
  max-width: 56ch;
  margin: 0 auto var(--s-8);
  font-size: 1.1rem;
}

/* ============== FORM ============== */
.form-page {
  padding: var(--s-16) 0;
  background: var(--cream);
}
.form-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: var(--s-12);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson-700), var(--gold-500), var(--green-700));
}
@media (max-width: 720px) { .form-card { padding: var(--s-8); } }
.form-row { margin-bottom: var(--s-6); }
.form-row--split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
@media (max-width: 600px) { .form-row--split { grid-template-columns: 1fr; } }
label {
  display: block;
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  background: var(--cream);
  border-radius: 2px;
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.12);
  background: var(--paper);
}
textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
fieldset { border: none; padding: 0; margin: 0 0 var(--s-6); }
legend {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}
.radio-group { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .radio-group { grid-template-columns: 1fr; } }
.radio-tile {
  border: 1px solid var(--rule);
  padding: var(--s-4);
  cursor: pointer;
  background: var(--cream);
  transition: all var(--transition);
  display: flex; align-items: flex-start; gap: 10px;
}
.radio-tile input { margin-top: 4px; accent-color: var(--green-700); }
.radio-tile:hover { border-color: var(--green-700); }
.radio-tile strong { display: block; color: var(--green-900); font-weight: 600; margin-bottom: 2px; }
.radio-tile small { color: var(--ink-mute); font-size: 0.85rem; }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--green-900);
  color: rgba(254, 252, 247, 0.78);
  padding: var(--s-16) 0 var(--s-8);
  font-size: 0.9rem;
}
.site-footer h2 {
  font-family: var(--font-eyebrow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-500);
  margin: 0 0 var(--s-4);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-8);
  margin-bottom: var(--s-12);
}
@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
@media (max-width: 540px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(254, 252, 247, 0.78); }
.site-footer a:hover { color: var(--gold-500); }
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: var(--s-3);
  font-style: italic;
}
.site-footer__brand em { color: var(--gold-500); font-style: italic; }
.site-footer__bottom {
  border-top: 1px solid rgba(212, 165, 116, 0.18);
  padding-top: var(--s-6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.82rem;
  color: rgba(254, 252, 247, 0.55);
}

/* ============== UTILITY ============== */
.divider {
  display: flex; align-items: center; gap: var(--s-4);
  margin: var(--s-12) auto;
  max-width: 320px;
  color: var(--gold-600);
}
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--gold-600); opacity: 0.5;
}
.divider svg { width: 24px; height: 24px; opacity: 0.7; }

.success-message {
  background: var(--green-50);
  border-left: 3px solid var(--green-700);
  padding: var(--s-6);
  color: var(--green-900);
  font-size: 0.95rem;
}

/* ============== OLD-SITE GRAPHICS ============== */
.hero__logo { width: 200px; height: auto; margin-bottom: var(--s-6); padding: 14px; background: var(--cream); border: 2px solid var(--gold-500); border-radius: 50%; box-shadow: var(--shadow-lg); }
@media (max-width: 720px) { .hero__logo { width: 150px; } }
.event-card__badge { width: 140px; height: 140px; object-fit: contain; margin-bottom: var(--s-4); }
.photo-band { margin: var(--s-12) 0 0; }
.photo-band img { width: 100%; height: clamp(220px, 34vw, 420px); object-fit: cover; box-shadow: var(--shadow-md); }
.venue-strip__photo { width: 100%; height: auto; margin-bottom: var(--s-6); }
.memories { background: var(--paper); }
.memories__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-8); margin-top: var(--s-12); }
@media (max-width: 820px) { .memories__grid { grid-template-columns: 1fr; } }
.memories figure { margin: 0; }
.memories figure img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; box-shadow: var(--shadow-md); }
.memories figcaption { font-family: var(--font-display); font-style: italic; color: var(--ink-soft); margin-top: var(--s-3); }
.memories__banner { width: 100%; height: auto; margin-top: var(--s-12); }
.sponsors { background: var(--cream-2); padding: var(--s-12) 0; text-align: center; }
.sponsors__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: var(--s-8) var(--s-12); margin-top: var(--s-6); }
.sponsors__row img { height: 72px; width: auto; object-fit: contain; }
@media (max-width: 540px) { .sponsors__row img { height: 56px; } }

/* ============== CLEANUP PASS ============== */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--green-900); color: var(--cream); padding: 10px 16px; }
.skip-link:focus { left: 16px; top: 16px; color: var(--cream); }
:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; }
.hero__proof { margin: var(--s-6) 0 0; font-size: 0.95rem; color: rgba(254, 252, 247, 0.7); }
.faq { background: var(--cream-2); }
.faq details { background: var(--paper); border: 1px solid var(--rule); margin-bottom: var(--s-3); }
.faq summary { cursor: pointer; padding: var(--s-4) var(--s-6); font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--green-900); list-style: none; display: flex; justify-content: space-between; gap: var(--s-4); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--crimson-700); font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 var(--s-6) var(--s-4); margin: 0; color: var(--ink-soft); }
