/* =====================
   MIAMI CHAMPIONSHIPS
   miamichampionships.com
   ===================== */

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

:root {
  --green:       #1B2E20;
  --green-dark:  #121F16;
  --green-mid:   #223827;
  --green-light: #2C4A33;
  --cream:       #F5E6D0;
  --cream-dim:   #D9CAB4;
  --gold:        #D4A830;
  --gold-light:  #E8C55A;
  --rose:        #D4736A;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--green-dark);
  color: var(--cream);
  line-height: 1.6;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-size: clamp(3.5rem, 8vw, 7.5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 0.95; }
h2 { font-size: clamp(2.8rem, 5.5vw, 5rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; }
h3 { font-size: 1.3rem; font-weight: 700; }

.section-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-tag.center {
  justify-content: center;
}
.section-tag.center::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.center { text-align: center; }

.section-intro {
  max-width: 680px;
  margin: 1rem auto 2.5rem;
  color: var(--cream-dim);
  font-size: 1.05rem;
  text-align: center;
  line-height: 1.75;
}

/* ---- LAYOUT ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }
.section { padding: 8rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-text p {
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--cream);
  cursor: pointer;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--cream); color: var(--green-dark); }

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

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(18, 31, 22, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 48, 0.2);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.logo { text-decoration: none; display: flex; align-items: center; gap: 0.6rem; }
.logo span { color: var(--gold); }
.nav-logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-weight: 700 !important;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(175deg, rgba(8,14,10,0.97) 0%, rgba(12,22,15,0.92) 50%, rgba(8,14,10,0.98) 100%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 119px,
      rgba(212,168,48,0.04) 119px,
      rgba(212,168,48,0.04) 120px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(212,168,48,0.04) 59px,
      rgba(212,168,48,0.04) 60px
    );
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(212,168,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 60%, rgba(28,60,36,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Hero logo watermark */
.hero-watermark {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(6rem, 12vw, 14rem);
  font-weight: 900;
  color: rgba(212,168,48,0.05);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.hero-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 700px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  color: var(--cream-dim);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-mission {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-mission-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.hero-mission-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-mission-text {
  font-size: 0.9rem;
  color: var(--cream-dim);
  font-weight: 500;
}
.hero-mission-divider {
  width: 1px;
  background: rgba(212,168,48,0.3);
  align-self: stretch;
  min-height: 36px;
}
@media (max-width: 600px) {
  .hero-mission-divider { display: none; }
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245,230,208,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--gold);
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(18,31,22,0.55);
  margin-top: 0.3rem;
}

/* ---- SECTION SEPARATORS ---- */
.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-tag.center { text-align: center; }

/* ---- SECTION BORDER TOPS ---- */
.tournament, .venue, .directors, .why-sponsor {
  border-top: 1px solid rgba(212,168,48,0.12);
}

/* ---- ABOUT ---- */
.about { background: var(--green); }
.about-img {
  height: 500px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-logo {
  text-align: center;
  opacity: 0.9;
}
.about-img-logo .big-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.05em;
  display: block;
}
.about-img-logo .big-logo span { color: var(--gold); }
.about-logo-img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; opacity: 0.85; }
.about-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.about-sub-logo {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: block;
  margin-top: 0.75rem;
  margin-bottom: 2rem;
}
.about-stat-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(212,168,48,0.2);
  padding-top: 1.5rem;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.about-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
}
.about-stat span {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.about-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(212,168,48,0.2);
}

/* ---- TOURNAMENT ---- */
.tournament { background: #0a0a08; }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.card {
  background: rgba(28,45,33,0.6);
  border: 1px solid rgba(212,168,48,0.15);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 2rem;
  border-radius: 0;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 0;
  background: var(--gold);
  opacity: 0.05;
  transition: height 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,48,0.5);
  background: rgba(40,65,47,0.7);
}
.card:hover::after { height: 100%; }
.card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.card h3 { margin-bottom: 0.75rem; color: var(--cream); }
.card p { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; opacity: 0.8; }

/* ---- VENUE ---- */
.venue { background: var(--green-dark); }
.venue-img {
  height: 520px;
  background: linear-gradient(135deg, var(--green-dark), var(--green-light));
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-img-inner {
  text-align: center;
  opacity: 0.2;
}
.venue-img-inner .v-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.06em;
}
.venue-img-inner .v-logo span { color: var(--gold); }
.venue-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.v-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.75rem;
}

.venue-location {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}
.venue-features {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.venue-features li {
  color: var(--cream-dim);
  font-size: 0.95rem;
  padding-left: 1rem;
  position: relative;
}
.venue-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- PLAYERS ---- */
.players { background: var(--green-dark); }
.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.reason {
  border-left: 3px solid var(--rose);
  padding-left: 1.5rem;
}
.reason-num {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: rgba(212,168,48,0.15);
  display: block;
  margin-bottom: 0.5rem;
}
.reason h3 { margin-bottom: 0.75rem; color: var(--cream); }
.reason p { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; opacity: 0.8; }

/* ---- PAST SPONSORS / PARTNER GRID ---- */
.past-sponsors { background: var(--green-mid); }

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(212,168,48,0.1);
  border: 1px solid rgba(212,168,48,0.1);
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}
.partner-logo-box {
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  transition: background 0.2s;
}
.partner-logo-box:hover { background: var(--green); }
.partner-logo-box.featured { background: rgba(212,168,48,0.06); }
.partner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.partner-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

.sponsor-cta-line {
  text-align: center;
  color: var(--cream-dim);
  margin-top: 2.5rem;
  font-size: 0.95rem;
  opacity: 0.7;
}
.sponsor-cta-line a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.sponsor-cta-line a:hover { text-decoration: underline; }

/* ---- SPONSORS ---- */
.sponsors { background: var(--green-mid); }
.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  align-items: start;
}
.tier {
  padding: 2.5rem 2rem;
  border-radius: 0;
  border: 1px solid rgba(212,168,48,0.1);
  border-top: 2px solid rgba(212,168,48,0.2);
  background: rgba(18,31,22,0.8);
  transition: transform 0.25s, border-color 0.25s;
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(212,168,48,0.35);
}
.tier.gold {
  background: rgba(212,168,48,0.07);
  border-color: var(--gold);
  border-top-width: 3px;
  transform: scale(1.02);
}
.tier.gold:hover { transform: scale(1.02) translateY(-4px); }
.tier.platinum {
  background: rgba(28,48,34,0.9);
  border-color: rgba(245,230,208,0.2);
}
.tier h3 { color: var(--cream); margin-bottom: 0.5rem; }
.tier-price {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.tier-level {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.partnership-cta-box {
  margin-top: 4rem;
  background: rgba(212,168,48,0.05);
  border: 1px solid rgba(212,168,48,0.2);
  border-top: 2px solid var(--gold);
  border-radius: 0;
  padding: 3rem;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.partnership-cta-box p {
  color: var(--cream-dim);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.partnership-cta-box strong { color: var(--cream); }
.partnership-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.tier ul {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.tier ul li {
  color: var(--cream-dim);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  opacity: 0.85;
}
.tier ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.tier-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}
.tier-badge.best {
  background: var(--gold);
  color: var(--green-dark);
}
.tier-note {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  opacity: 0.65;
}

/* ---- CONTACT ---- */
.contact { background: #0a0a08; }
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--green);
  border: 1px solid rgba(245,230,208,0.12);
  color: var(--cream);
  padding: 0.9rem 1.2rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,230,208,0.35); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form select option { background: var(--green); }

/* ---- FOOTER ---- */
.footer {
  background: var(--green-dark);
  border-top: 1px solid rgba(212,168,48,0.15);
  padding: 4rem 0 2rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.footer-brand p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  margin-top: 0.75rem;
  line-height: 1.6;
  opacity: 0.6;
}
.footer-logo-img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; margin-bottom: 0.5rem; }
.footer-logo-mark {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--cream);
}
.footer-logo-mark span { color: var(--gold); }
.footer-logo-mark .fp { color: var(--rose); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.6;
  transition: color 0.2s, opacity 0.2s;
}
.footer-links a:hover { color: var(--gold); opacity: 1; }

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-social a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.6;
  transition: color 0.2s, opacity 0.2s;
}
.footer-social a:hover { color: var(--rose); opacity: 1; }
.footer-social-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
  opacity: 1 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(245,230,208,0.06);
  padding-top: 2rem;
  text-align: center;
}
.footer-bottom p { color: var(--cream-dim); font-size: 0.8rem; opacity: 0.4; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse { direction: ltr; }
  .about-img, .venue-img { height: 260px; }
  .nav-links { display: none; }
  .stats-bar { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .tier.gold { transform: scale(1); }
  .footer-inner { flex-direction: column; }
  .hero-watermark { display: none; }
}

/* ---- DIRECTORS ---- */
.directors { background: #0a0a08; }
.director-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.director-card {
  background: var(--green-dark);
  border: 1px solid rgba(245,230,208,0.08);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
  border-radius: 2px;
}
.director-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.director-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.director-name { color: var(--cream); margin-bottom: 0.25rem; font-size: 1.4rem; }
.director-title { color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; }
.director-bio { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75; opacity: 0.85; }

/* ---- POINTS SYSTEM ---- */
.points { background: var(--green-dark); }
.points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.points-table { width: 100%; border-collapse: collapse; }
.points-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(212,168,48,0.3);
}
.points-table td { padding: 0.85rem 1rem; color: var(--cream-dim); font-size: 0.95rem; border-bottom: 1px solid rgba(245,230,208,0.06); }
.points-table tr:first-child td { color: var(--cream); font-weight: 700; }
.points-table .pts { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; font-size: 1.05rem; }
.masters-box {
  background: var(--green);
  border: 1px solid rgba(212,168,48,0.25);
  border-left: 4px solid var(--gold);
  padding: 2rem;
  border-radius: 2px;
}
.masters-box h3 { color: var(--cream); margin-bottom: 0.75rem; }
.masters-box p { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.75; opacity: 0.85; margin-bottom: 0.75rem; }
.masters-date { color: var(--gold); font-weight: 700; font-size: 1.05rem; }

/* ---- GOAL BAR ---- */
.goal-bar-wrap { margin-bottom: 3rem; }
.goal-bar-label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; color: var(--cream-dim); font-size: 0.9rem; font-weight: 600; }
.goal-amount { color: var(--cream); font-family: 'Playfair Display', serif; font-size: 1.1rem; }
.goal-sep { color: var(--gold); }
.goal-bar-track { height: 10px; background: rgba(245,230,208,0.1); border-radius: 5px; overflow: hidden; margin-bottom: 0.75rem; }
.goal-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 5px; transition: width 1s ease; min-width: 0; }
.goal-note { text-align: center; color: var(--cream-dim); font-size: 0.85rem; opacity: 0.6; }

/* ---- UTR CALLOUT ---- */
.utr-callout {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  margin-top: 3rem; padding: 2rem 2.5rem;
  background: var(--green); border: 1px solid rgba(212,168,48,0.2);
  border-left: 4px solid var(--gold); border-radius: 2px; flex-wrap: wrap;
}
.utr-text h3 { color: var(--cream); margin-bottom: 0.5rem; }
.utr-text p { color: var(--cream-dim); font-size: 0.95rem; line-height: 1.7; opacity: 0.85; max-width: 600px; }

/* ---- RANKINGS PAGE ---- */
.rankings-section { background: var(--green-dark); padding: 6rem 0; }
.rankings-updated {
  text-align: center;
  color: var(--cream-dim);
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 3rem;
}
.rankings-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--green);
  border: 1px solid rgba(212,168,48,0.15);
  border-radius: 2px;
  color: var(--cream-dim);
  font-size: 1.05rem;
  opacity: 0.7;
}
.rankings-table-wrap { margin-bottom: 4rem; }
.rankings-table-wrap h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.2rem; letter-spacing: 0.1em; text-transform: uppercase; }
.rankings-table { width: 100%; border-collapse: collapse; }
.rankings-table th {
  text-align: left; padding: 0.75rem 1rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid rgba(212,168,48,0.3); background: var(--green);
}
.rankings-table td { padding: 0.9rem 1rem; color: var(--cream-dim); font-size: 0.95rem; border-bottom: 1px solid rgba(245,230,208,0.06); }
.rankings-table tr:hover td { background: rgba(245,230,208,0.03); }
.rankings-table .rank-num { color: var(--gold); font-weight: 700; font-family: 'Playfair Display', serif; }
.rankings-table .pts-total { color: var(--cream); font-weight: 700; }

@media (max-width: 768px) {
  .director-cards { grid-template-columns: 1fr; }
  .points-grid { grid-template-columns: 1fr; gap: 2rem; }
  .utr-callout { flex-direction: column; }
}

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--green-mid); }
.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}
.testimonial-card {
  background: var(--green-dark);
  border: 1px solid rgba(245,230,208,0.08);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
}
.testimonial-card.featured-testimonial {
  border: 1px solid rgba(212,168,48,0.3);
  border-top: 3px solid var(--gold);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  margin-bottom: 1rem;
}
.testimonial-quote {
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245,230,208,0.08);
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border: 1px solid rgba(212,168,48,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.author-initials {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold);
}
.author-name {
  color: var(--cream);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.author-title {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .testimonial-cards { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
/* JS handles initial state and transitions; CSS just provides the visible state */
.clip-reveal, .fade-up {
  will-change: transform, opacity;
}

/* Navbar scrolled state */
.navbar.scrolled {
  background: rgba(10, 18, 12, 0.98) !important;
  border-bottom-color: rgba(212, 168, 48, 0.35);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Mobile nav open */
@media (max-width: 768px) {
  .nav-mobile-toggle { display: block; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--green-dark);
    border-top: 1px solid rgba(212,168,48,0.15);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
}

/* ---- FOOTER EMAIL ---- */
.footer-email { margin-top: 0.5rem !important; }
.footer-email a { color: var(--gold); text-decoration: none; font-size: 0.85rem; opacity: 0.8; }
.footer-email a:hover { opacity: 1; }

/* ---- WHY-CARD NUMBER ---- */
.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 0.75rem;
  line-height: 1;
}

/* ---- TIER BADGE FEATURED ---- */
.tier-badge-featured {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
}

/* ---- NAV SPONSOR CTA ---- */
.nav-cta-sponsor {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  border: none !important;
  font-weight: 700 !important;
}
.nav-cta-sponsor:hover {
  background: var(--gold-light) !important;
}

/* ---- STATS BAR (5 stats) ---- */
.stats-bar { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ---- WHY SPONSOR SECTION ---- */
.why-sponsor {
  background: #0a0a08;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
}
.why-card {
  background: var(--green-dark);
  border: 1px solid rgba(212, 168, 48, 0.2);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, transform 0.3s;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}
.demo-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--green-dark);
  border: 1px solid rgba(212, 168, 48, 0.3);
  border-radius: 12px;
  padding: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.demo-stat {
  text-align: center;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.demo-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.demo-stat span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
}
.demo-divider {
  width: 1px;
  height: 48px;
  background: rgba(212, 168, 48, 0.25);
}
@media (max-width: 768px) {
  .demo-divider { display: none; }
  .demo-stat { padding: 0.5rem 1rem; }
}
