/* ============================================================
   THE BASELINE COLLECTIVE -- Shared Design System
   Fonts: Cormorant Garamond (headings) + Outfit (body)
   Google Fonts link must be included in each HTML file.
   ============================================================ */

/* ----- CUSTOM PROPERTIES ----------------------------------- */
:root {
  --navy: #1b2a4a;
  --navy-deep: #0f1c33;
  --navy-light: #2a4170;
  --gold: #c9a55a;
  --gold-light: #dfc07a;
  --gold-muted: rgba(201, 165, 90, 0.15);
  --green: #3a5c44;
  --green-light: #4e7a5c;
  --green-muted: #d4e4d9;
  --cream: #f0ece3;
  --cream-warm: #e8e0d0;
  --black: #111111;
  --white: #ffffff;
  --text-dark: #111111;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
}


/* =============================================================
   1. RESET & BASE
   ============================================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


/* =============================================================
   2. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 72px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-shield {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-text .the {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.nav-logo-text .brand {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 10px 24px;
  transition: background 0.3s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--white);
}


/* =============================================================
   3. BUTTONS
   ============================================================= */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-outline-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-light:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-dark {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 16px 36px;
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}


/* =============================================================
   4. SECTION HELPERS
   ============================================================= */
section {
  padding: 100px 80px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 560px;
}


/* =============================================================
   5. PAGE HEADER
   ============================================================= */
.page-header {
  background: var(--navy);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201, 165, 90, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-header .section-eyebrow {
  justify-content: center;
}

.page-header-eyebrow {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-header .section-title {
  color: var(--cream);
  max-width: 700px;
}

.page-header .section-desc {
  color: rgba(240, 236, 227, 0.6);
  max-width: 520px;
  margin: 0 auto;
}


/* =============================================================
   6. CARDS
   ============================================================= */
.card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.card:hover::after {
  transform: scaleX(1);
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.card-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  transition: gap 0.3s ease;
}

.card-tag:hover {
  gap: 12px;
}

.card-tag svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}


/* =============================================================
   7. EVENT CARDS (Dark / Navy Backgrounds)
   ============================================================= */
.event-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 36px 32px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.event-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.event-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}

.event-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-pill {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}


/* =============================================================
   8. FEATURED EVENT
   ============================================================= */
.featured-event {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.featured-event-visual {
  position: relative;
  min-height: 400px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-event-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(201, 165, 90, 0.08));
  pointer-events: none;
}

.featured-event-content {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-content .section-eyebrow {
  color: var(--gold);
}

.featured-event-content .section-eyebrow::before {
  background: var(--gold);
}

.featured-event-content .section-title {
  color: var(--cream);
  font-size: clamp(28px, 3vw, 42px);
}

.featured-event-content .section-desc {
  color: rgba(240, 236, 227, 0.55);
}

.featured-event-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.featured-event-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.featured-event-detail-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  min-width: 80px;
}

.featured-event-detail-value {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}


/* =============================================================
   9. HERO
   ============================================================= */
.hero {
  background: var(--navy);
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 165, 90, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .section-title {
  color: var(--cream);
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 28px;
}

.hero-content .section-desc {
  color: rgba(240, 236, 227, 0.55);
  margin-bottom: 40px;
  max-width: 440px;
}

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

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-court {
  width: 100%;
  max-width: 480px;
  opacity: 0.12;
}

/* Hero stat strip */
.hero-stat-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3;
}

.hero-stat {
  padding: 28px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.4);
}


/* =============================================================
   10. ABOUT
   ============================================================= */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-title {
  color: var(--navy);
}

.about-text .section-desc {
  margin-bottom: 36px;
}

.about-visual {
  position: relative;
  min-height: 480px;
}

.about-visual-block {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
}

.about-visual-block::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 165, 90, 0.12);
}

.about-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--navy);
  padding: 28px 32px;
  max-width: 260px;
}

.about-accent-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
}

.about-accent-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.8;
}


/* =============================================================
   11. MARQUEE STRIP
   ============================================================= */
.marquee {
  background: var(--green);
  overflow: hidden;
  padding: 18px 0;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee-item span {
  color: var(--gold);
  margin-right: 40px;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* =============================================================
   12. HORIZON / COMING SOON
   ============================================================= */
.horizon {
  background: var(--green);
  text-align: center;
}

.horizon .section-eyebrow {
  justify-content: center;
  color: var(--gold);
}

.horizon .section-eyebrow::before {
  background: var(--gold);
}

.horizon .section-title {
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  max-width: 620px;
}

.horizon .section-desc {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 56px;
}

.horizon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.horizon-item {
  background: rgba(255, 255, 255, 0.06);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.3s ease;
}

.horizon-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.horizon-item-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.horizon-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.horizon-item-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}


/* =============================================================
   13. JOIN
   ============================================================= */
.join {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.join-left {
  background: var(--navy);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-left .section-eyebrow {
  color: var(--gold);
}

.join-left .section-eyebrow::before {
  background: var(--gold);
}

.join-left .section-title {
  color: var(--cream);
}

.join-left .section-desc {
  color: rgba(240, 236, 227, 0.55);
}

.join-perks {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.join-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(240, 236, 227, 0.7);
}

.join-perk::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
}

.join-right {
  background: var(--cream);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--gold);
}

.join-right .section-title {
  color: var(--navy);
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 12px;
}

.join-right .section-desc {
  color: var(--text-mid);
  margin-bottom: 36px;
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.join-form input,
.join-form select {
  width: 100%;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(27, 42, 74, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.join-form input::placeholder {
  color: rgba(27, 42, 74, 0.4);
}

.join-form input:focus,
.join-form select:focus {
  background: var(--white);
  border-color: var(--gold);
}

.join-form .btn-gold {
  background: var(--navy);
  color: var(--cream);
  margin-top: 8px;
}

.join-form .btn-gold:hover {
  background: var(--navy-deep);
}


/* =============================================================
   14. FOOTER
   ============================================================= */
.footer {
  background: var(--black);
  padding: 80px 80px 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .nav-logo-text {
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  padding: 5px 0;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.footer-copy {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}


/* =============================================================
   15. FADE-UP ANIMATION
   ============================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }


/* =============================================================
   16. RESPONSIVE -- 1024px
   ============================================================= */
@media (max-width: 1024px) {
  section {
    padding: 72px 40px;
  }

  .nav {
    padding: 0 32px;
  }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 140px 40px 80px;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }

  .hero-stat-strip {
    position: relative;
    grid-template-columns: repeat(4, 1fr);
  }

  .hero-stat {
    padding: 20px 16px;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    min-height: 360px;
  }

  /* Featured Event */
  .featured-event {
    grid-template-columns: 1fr;
  }

  .featured-event-visual {
    min-height: 280px;
  }

  .featured-event-content {
    padding: 48px 40px;
  }

  /* Horizon */
  .horizon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Join */
  .join {
    grid-template-columns: 1fr;
  }

  .join-left,
  .join-right {
    padding: 72px 40px;
  }

  /* Footer */
  .footer {
    padding: 60px 40px 0;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  /* Nav links hide, hamburger shows */
  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  /* Hero grid */
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid .hero-visual {
    display: none;
  }

  /* About preview */
  .about-preview {
    padding: 72px 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Featured event section */
  .featured-event-section {
    padding: 72px 40px;
  }

  .featured-event-card {
    grid-template-columns: 1fr;
  }

  /* Offerings */
  .offerings-preview {
    padding: 72px 40px;
  }

  .offerings-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Join CTA */
  .join-grid {
    grid-template-columns: 1fr;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .program-featured {
    grid-column: span 2;
  }

  /* Who */
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Events */
  .featured-card {
    grid-template-columns: 1fr;
  }

  .event-series {
    padding: 72px 40px;
  }

  .series-grid {
    grid-template-columns: 1fr 1fr;
  }

  .past-events {
    padding: 72px 40px;
  }

  .past-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 56px 40px;
  }

  /* About page */
  .our-story {
    padding: 72px 40px;
  }

  .stats {
    padding: 60px 40px;
  }

  .our-values {
    padding: 72px 40px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .the-vision {
    padding: 72px 40px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-sidebar {
    border-left: none;
    border-top: 2px solid var(--gold);
    padding-left: 0;
    padding-top: 40px;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}


/* =============================================================
   16b. RESPONSIVE -- 640px
   ============================================================= */
@media (max-width: 640px) {
  section {
    padding: 56px 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .page-header {
    padding: 120px 20px 56px;
    min-height: 280px;
  }

  /* Hero */
  .hero {
    padding: 120px 20px 40px;
  }

  .hero-stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-gold,
  .hero-actions .btn-outline-light {
    text-align: center;
  }

  /* Cards */
  .card {
    padding: 32px 24px;
  }

  /* Event cards */
  .event-card {
    padding: 28px 24px;
  }

  /* Horizon */
  .horizon-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-visual {
    min-height: 280px;
  }

  .about-accent {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
  }

  /* Featured Event */
  .featured-event-content {
    padding: 36px 20px;
  }

  /* Join */
  .join-left,
  .join-right {
    padding: 56px 20px;
  }

  /* Footer */
  .footer {
    padding: 48px 20px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 24px 0;
  }

  /* Buttons full width on mobile */
  .btn-gold,
  .btn-outline-light,
  .btn-outline-dark {
    width: 100%;
    text-align: center;
  }

  /* Section helpers */
  .section-title {
    font-size: clamp(28px, 7vw, 42px);
  }

  .section-desc {
    font-size: 15px;
  }

  /* Hero buttons */
  .hero-buttons {
    flex-direction: column;
  }

  /* About preview */
  .about-preview {
    padding: 56px 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-visual-box {
    min-height: 280px;
  }

  .about-accent-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
  }

  /* Featured event section */
  .featured-event-section {
    padding: 56px 20px;
  }

  .featured-event-card {
    grid-template-columns: 1fr;
  }

  .featured-event-left,
  .featured-event-right {
    padding: 36px 24px;
  }

  /* Offerings */
  .offerings-preview {
    padding: 56px 20px;
  }

  .offerings-grid {
    grid-template-columns: 1fr;
  }

  /* Join CTA */
  .join-grid {
    grid-template-columns: 1fr;
  }

  .join-grid .join-left,
  .join-grid .join-right {
    padding: 56px 20px;
  }

  /* Programs */
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-featured {
    grid-column: span 1;
    display: block;
  }

  .program-featured .program-visual {
    min-height: 200px;
  }

  /* Who */
  .who-grid {
    grid-template-columns: 1fr;
  }

  /* Events featured */
  .featured-card {
    grid-template-columns: 1fr;
  }

  .featured-card-left {
    padding: 36px 24px;
  }

  .featured-card-right {
    padding: 36px 24px;
  }

  /* Event Series */
  .event-series {
    padding: 56px 20px;
  }

  .series-grid {
    grid-template-columns: 1fr;
  }

  /* Past Events */
  .past-events {
    padding: 56px 20px;
  }

  .past-grid {
    grid-template-columns: 1fr;
  }

  /* CTA Banner */
  .cta-banner {
    padding: 48px 20px;
  }

  /* About page */
  .our-story {
    padding: 56px 20px;
  }

  .stats {
    padding: 48px 20px;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-box {
    padding: 32px 24px;
  }

  .our-values {
    padding: 56px 20px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .the-vision {
    padding: 56px 20px;
  }

  /* Contact */
  .contact-form-section {
    padding: 56px 20px 72px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .location-section {
    padding: 56px 20px;
  }

  /* Footer grid */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  /* Hamburger visible */
  .hamburger {
    display: flex;
  }
}


/* =============================================================
   UTILITY CLASSES
   ============================================================= */
/* =============================================================
   17. NAV INNER (index.html / contact.html wrapper)
   ============================================================= */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


/* =============================================================
   18. HAMBURGER (alternate class used by some pages)
   ============================================================= */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav-links open state (index/contact pages) */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 20px 28px;
  gap: 16px;
  border-bottom: 1px solid rgba(201, 165, 90, 0.2);
  z-index: 999;
}


/* =============================================================
   19. GENERIC .btn BASE & .btn-full
   ============================================================= */
.btn {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  padding: 16px 36px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-navy:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
}


/* =============================================================
   20. EYEBROW (alternate class used by index.html)
   ============================================================= */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.eyebrow-center {
  justify-content: center;
}


/* =============================================================
   21. HERO GRID LAYOUT (index.html variant)
   ============================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(240, 236, 227, 0.55);
  margin-bottom: 40px;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image-container {
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 480px;
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,42,74,0.4) 0%, rgba(27,42,74,0.15) 100%);
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 10px 20px;
  white-space: nowrap;
  border: 1px solid rgba(201,165,90,0.3);
}

.hero-court-graphic {
  width: 100%;
  max-width: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.hero-court-graphic .court-svg {
  width: 100%;
  opacity: 0.12;
}


/* =============================================================
   22. COURT SVG UTILITY
   ============================================================= */
.court-svg {
  width: 100%;
}

.court-svg-sm {
  width: 80%;
  margin: 0 auto;
}


/* =============================================================
   23. MARQUEE DOT
   ============================================================= */
.marquee-dot {
  color: var(--gold);
  padding: 0 20px;
  font-size: 14px;
  flex-shrink: 0;
}


/* =============================================================
   24. ABOUT PREVIEW (index.html)
   ============================================================= */
.about-preview {
  background: var(--white);
  padding: 100px 80px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-content .section-title {
  color: var(--navy);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.about-visual-box {
  width: 100%;
  min-height: 400px;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-stack {
  width: 100%;
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-accent-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: var(--cream);
  padding: 20px 24px;
  max-width: 220px;
  border-left: 2px solid var(--gold);
}

.about-accent-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 0;
}


/* =============================================================
   25. FEATURED EVENT SECTION (index.html variant)
   ============================================================= */
.featured-event-section {
  background: var(--navy);
  padding: 80px 80px 100px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-event-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
}

.featured-event-left {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-sub {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.featured-event-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.featured-event-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
}

.featured-event-right {
  padding: 52px 44px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-event-right .featured-event-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.featured-event-right .featured-event-details li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.featured-event-right .featured-event-details li:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.detail-value {
  font-size: 16px;
  font-weight: 400;
  color: var(--cream);
}

.featured-event-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-top: 24px;
  transition: color 0.3s ease;
}

.featured-event-all-link:hover {
  color: var(--gold-light);
}

/* ── GREEN EVENT VARIANT ── */
.featured-event-green {
  background: #1e3a28;
}
.featured-event-green .eyebrow {
  color: var(--cream);
}
.featured-event-green .eyebrow::before {
  background: #8fbc8f;
}
.featured-event-flyer {
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
}
.event-flyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* =============================================================
   26. OFFERINGS PREVIEW (index.html)
   ============================================================= */
.offerings-preview {
  background: var(--cream);
  padding: 100px 80px;
}

.section-title-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.offering-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offering-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.offering-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.offering-card:hover::after {
  transform: scaleX(1);
}

.offering-icon {
  width: 48px;
  height: 48px;
  color: var(--green);
  margin-bottom: 24px;
}

.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.offering-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}

.offerings-cta {
  text-align: center;
  margin-top: 48px;
}


/* =============================================================
   27. HORIZON CARDS (index.html variant)
   ============================================================= */
.horizon-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}

.horizon-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 44px 28px;
  text-align: center;
  transition: background 0.3s ease;
}

.horizon-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

.horizon-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.5);
}

.horizon-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.horizon-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: inline-block;
  margin-top: 8px;
}


/* =============================================================
   28. JOIN CTA (index.html variant)
   ============================================================= */
.join-cta {
  padding: 0;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.join-cta .join-left,
.join-grid .join-left {
  background: var(--navy);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.join-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(240, 236, 227, 0.55);
  margin-bottom: 32px;
}

.join-cta .join-perks li,
.join-grid .join-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(240, 236, 227, 0.7);
  padding: 8px 0;
}

.perk-check {
  flex-shrink: 0;
  color: var(--gold);
}

.join-cta .join-right,
.join-grid .join-right {
  background: var(--cream);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.join-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(27, 42, 74, 0.12);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.form-group input::placeholder {
  color: rgba(27, 42, 74, 0.4);
}

.form-group input:focus,
.form-group select:focus {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--navy);
  outline: none;
}


/* =============================================================
   29. FOOTER GRID (index.html / contact.html variant)
   ============================================================= */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.35);
  max-width: 280px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}


/* =============================================================
   30. ABOUT PAGE SPECIFIC SECTIONS
   ============================================================= */
.our-story {
  background: var(--cream);
  padding: 100px 80px;
}

.our-story-inner {
  max-width: 800px;
  margin: 0 auto;
}

.our-story .section-eyebrow {
  justify-content: center;
}

.our-story-prose {
  margin-top: 32px;
}

.our-story-prose p {
  font-size: 17px;
  line-height: 1.9;
  font-weight: 300;
  color: var(--text-mid);
  margin-bottom: 24px;
  text-align: center;
}

.our-story-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto 0;
}

/* Stats */
.stats {
  background: var(--white);
  padding: 80px 80px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 2px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-box {
  flex: 1;
  text-align: center;
  padding: 48px 36px;
  background: var(--cream);
  transition: transform 0.3s, box-shadow 0.3s;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.06);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Our Values */
.our-values {
  background: var(--cream);
  padding: 100px 80px;
}

.our-values-header {
  text-align: center;
  margin-bottom: 56px;
}

.our-values-header .section-eyebrow {
  justify-content: center;
}

.our-values-header .section-title {
  margin-top: 12px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.08);
}

.value-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}

.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.value-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

/* The Vision */
.the-vision {
  background: var(--navy);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.the-vision::before {
  content: 'MORE THAN TENNIS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.the-vision .section-eyebrow {
  justify-content: center;
  color: var(--gold-light);
}

.the-vision .section-eyebrow::before {
  display: none;
}

.the-vision .section-title {
  color: var(--cream);
  margin: 12px auto 24px;
}

.the-vision .section-desc {
  color: rgba(240, 236, 227, 0.55);
  margin: 0 auto 48px;
  text-align: center;
  max-width: 600px;
}


/* =============================================================
   31. CTA BANNER
   ============================================================= */
.cta-banner {
  background: var(--cream);
  padding: 72px 80px;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.cta-banner-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
}


/* =============================================================
   32. PROGRAMS PAGE SPECIFIC
   ============================================================= */
.programs {
  background: var(--cream);
}

.programs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 40px;
}

.programs-header-left .section-title {
  margin-top: 12px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.program-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}

.program-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.program-card:hover::after {
  transform: scaleX(1);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.08);
}

.program-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 24px;
}

.program-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

.program-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.program-body {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.program-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}

.program-tag:hover {
  color: var(--gold);
}

.program-tag svg {
  transition: transform 0.2s;
}

.program-card:hover .program-tag svg {
  transform: translateX(3px);
}

/* Featured program card */
.program-featured {
  grid-column: span 2;
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.program-featured::after {
  display: none;
}

.program-featured .program-content {
  padding: 52px 44px;
}

.program-featured .program-num {
  color: rgba(201, 165, 90, 0.5);
}

.program-featured .program-title {
  color: var(--cream);
  font-size: 28px;
}

.program-featured .program-body {
  color: rgba(240, 236, 227, 0.55);
}

.program-featured .program-tag {
  color: var(--gold-light);
}

.program-visual {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.tini-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.tini-circle::before {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(201, 165, 90, 0.1);
}

.tini-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.3;
}


/* =============================================================
   33. WHO IT'S FOR (programs.html)
   ============================================================= */
.who {
  background: var(--white);
}

.who-header {
  text-align: center;
  margin-bottom: 56px;
}

.who-header .section-eyebrow {
  justify-content: center;
}

.who-header .section-eyebrow::before {
  display: none;
}

.who-header .section-title {
  margin-top: 12px;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.who-card {
  background: var(--cream);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  border-top: 2px solid transparent;
}

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

.who-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
}

.who-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.who-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}


/* =============================================================
   34. EVENTS PAGE SPECIFIC
   ============================================================= */
.featured-card {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 17, 17, 0.15);
}

.featured-card-left {
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.featured-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}

.featured-card-desc {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(240, 236, 227, 0.55);
  margin-bottom: 32px;
}

.featured-card-right {
  background: var(--navy-light);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.detail-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201, 165, 90, 0.12);
}

.detail-block:first-child {
  padding-top: 0;
}

.detail-block:last-of-type {
  border-bottom: none;
}

.featured-limited {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  margin-top: 24px;
}

/* Event Series */
.event-series {
  background: var(--navy);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.event-series::before {
  content: 'THE BASELINE COLLECTIVE';
  position: absolute;
  top: -15px;
  right: -20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 110px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  white-space: nowrap;
  letter-spacing: 0.04em;
  pointer-events: none;
}

.event-series .section-eyebrow {
  color: var(--gold-light);
}

.event-series .section-eyebrow::before {
  background: var(--gold-light);
}

.event-series .section-title {
  color: var(--cream);
  margin-bottom: 56px;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.series-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 44px 36px;
  border: 1px solid rgba(201, 165, 90, 0.1);
  transition: all 0.3s;
}

.series-card:hover {
  background: rgba(201, 165, 90, 0.06);
  border-color: rgba(201, 165, 90, 0.25);
}

.series-icon {
  margin-bottom: 20px;
}

.series-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.series-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 14px;
}

.series-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(240, 236, 227, 0.5);
  font-weight: 300;
}

.series-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(201, 165, 90, 0.12);
}

.series-pill {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 165, 90, 0.1);
  padding: 5px 14px;
}

.series-pill--green {
  color: var(--green-light);
  background: rgba(58, 92, 68, 0.2);
}

/* Past Events */
.past-events {
  background: var(--cream);
  padding: 100px 80px;
}

.past-events .section-eyebrow {
  margin-bottom: 16px;
}

.past-events .section-title {
  margin-bottom: 48px;
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.past-card {
  background: var(--white);
  padding: 36px 32px;
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}

.past-card:hover {
  border-bottom-color: var(--green);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(17, 17, 17, 0.08);
}

.past-card-icon {
  margin-bottom: 16px;
}

.past-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.past-card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-mid);
  font-weight: 300;
}

.past-card-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  display: block;
}


/* =============================================================
   35. CONTACT PAGE SPECIFIC
   ============================================================= */
.contact-form-section {
  background: var(--cream);
  padding: 80px 40px 100px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--navy);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--cream-warm);
  border-radius: 0;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231b2a4a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.7;
}

.form-field .optional-tag {
  font-size: 10px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--text-light);
  margin-left: 6px;
}

.contact-submit {
  width: 100%;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 18px 36px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.form-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

/* Contact Sidebar */
.contact-sidebar {
  border-left: 2px solid var(--gold);
  padding-left: 40px;
}

.sidebar-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.sidebar-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.sidebar-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

.sidebar-perk svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-divider {
  height: 1px;
  background: var(--cream-warm);
  margin: 28px 0;
}

.sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}

.sidebar-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}

.sidebar-links a:hover {
  color: var(--gold);
}

.sidebar-connect {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-connect a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  transition: color 0.3s ease;
}

.sidebar-connect a:hover {
  color: var(--gold);
}

.sidebar-connect svg {
  flex-shrink: 0;
}

/* Location Section */
.location-section {
  background: var(--white);
  padding: 80px 40px;
  text-align: center;
}

.location-inner {
  max-width: 640px;
  margin: 0 auto;
}

.location-section .section-eyebrow {
  justify-content: center;
}

.location-section .section-title {
  margin-bottom: 16px;
}

.location-section .section-desc {
  margin: 0 auto;
  max-width: 560px;
}


/* =============================================================
   36. FOOTER ALTERNATE CLASSES (about/programs/events pages)
   ============================================================= */
.footer-shield {
  width: 40px;
  border-radius: 4px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(240, 236, 227, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-socials {
  display: flex;
  gap: 24px;
}

.footer-socials a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 236, 227, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: var(--gold);
}


/* =============================================================
   37. SECTION-TITLE STRONG
   ============================================================= */
.section-title strong {
  font-weight: 600;
}


/* =============================================================
   UTILITY CLASSES
   ============================================================= */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mt-0  { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

.mb-0  { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
