/* =====================================================
   PENINSULA WRESTLING CLUB — Main Stylesheet
   Theme: Bold Athletic · Black & Gold
   ===================================================== */

:root {
  --gold: #F5A800;
  --gold-dark: #C98A00;
  --gold-light: #FFD166;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --mid: #2e2e2e;
  --white: #ffffff;
  --off-white: #f0ede8;
  --gray: #888888;
  --light-gray: #cccccc;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-height: 140px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.gold { color: var(--gold); }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10,10,10,0.97);
  border-bottom: 1px solid var(--mid);
  z-index: 999;
  backdrop-filter: blur(8px);
  overflow: visible;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}

.nav-logo {
  overflow: visible;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold);
  transition: border-color 0.2s;
}
.nav-logo:hover img { border-color: var(--gold-light); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

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

.nav-links a.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  padding: 8px 20px;
}
.nav-links a.nav-cta:hover { background: var(--gold-light); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(245,168,0,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(245,168,0,0.05) 0%, transparent 50%),
    var(--black);
}

/* Video background */
.hero-video {
  display: none;
}

/* Gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to top, rgba(10,10,10,0.5) 0%, transparent 50%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  max-width: 540px;
  color: var(--light-gray);
  margin-bottom: 28px;
  line-height: 1.7;
}

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

.hero-badge {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-badge .divider { color: var(--gold); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--mid);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 16px;
}

/* =====================================================
   PILLARS
   ===================================================== */
.pillars {
  padding: 48px 0;
  background: var(--dark);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
}

.pillars .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid);
}

.pillar {
  background: var(--dark);
  padding: 48px 36px;
}

.pillar-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.pillar h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.pillar p {
  color: var(--light-gray);
  line-height: 1.7;
  font-size: 15px;
}

/* =====================================================
   EXPANSION BANNER
   ===================================================== */
.expansion {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.expansion::before {
  content: 'HOOD RIVER';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(245,168,0,0.03);
  white-space: nowrap;
  pointer-events: none;
}

.expansion-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
}

.expansion-text h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  margin-bottom: 20px;
  color: var(--white);
}

.expansion-text p {
  color: var(--light-gray);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.expansion-stars .big-star {
  font-size: 120px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}

/* =====================================================
   QUOTE
   ===================================================== */
.quote-section {
  padding: 80px 0;
  background: var(--gold);
}

.quote-section blockquote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.2;
  color: var(--black);
  text-align: center;
  letter-spacing: 0.02em;
}

.quote-section blockquote cite {
  display: block;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 16px;
  color: rgba(0,0,0,0.6);
}

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background:
    radial-gradient(ellipse at 60% 0%, rgba(245,168,0,0.06) 0%, transparent 60%),
    var(--dark);
  border-bottom: 1px solid var(--mid);
}

.page-hero .hero-eyebrow {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1;
  color: var(--white);
}

/* =====================================================
   ABOUT PAGE
   ===================================================== */
.content-section {
  padding: 80px 0;
  background: var(--dark);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

.content-text h2 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
}

.content-text p {
  color: var(--light-gray);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 16px;
}

.content-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-left: 3px solid var(--gold);
  padding: 28px 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
}

.stat-label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
}

.values-section {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--mid);
}

.section-title {
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}

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

.value-item {
  background: var(--dark);
  padding: 40px 28px;
}

.value-item h4 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.value-item p {
  color: var(--light-gray);
  font-size: 14px;
  line-height: 1.7;
}

/* =====================================================
   FOUNDER PAGE
   ===================================================== */
.founder-section {
  padding: 80px 0;
  background: var(--dark);
}

.founder-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.founder-photo-placeholder {
  background: var(--dark-3);
  border: 2px dashed var(--mid);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.placeholder-inner {
  color: var(--gray);
  font-family: var(--font-head);
}

.placeholder-icon { font-size: 48px; margin-bottom: 12px; display: block; }

.founder-credentials {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cred-item {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--light-gray);
  padding: 10px 0;
  border-bottom: 1px solid var(--mid);
  display: flex;
  gap: 10px;
}

.founder-bio h2 {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  margin-bottom: 24px;
}

.founder-bio p {
  color: var(--light-gray);
  margin-bottom: 18px;
  line-height: 1.75;
  font-size: 16px;
}

.inline-quote {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(245,168,0,0.06);
}

.inline-quote cite {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 10px;
}

.founder-contact {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* =====================================================
   JOIN / FORM PAGE
   ===================================================== */
.form-section {
  padding: 80px 0;
  background: var(--dark);
}

.form-container {
  max-width: 720px;
}

.form-intro {
  margin-bottom: 40px;
  font-size: 17px;
  color: var(--light-gray);
  line-height: 1.7;
}

.interest-form {
  background: var(--dark-2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 48px;
}

.hidden { display: none; }

.form-section-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 32px 0 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--mid);
}
.form-section-label:first-child { margin-top: 0; }

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

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

.form-group.full-width { grid-column: 1 / -1; }

label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light-gray);
}

.req { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

select option { background: var(--dark-3); }

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

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

input::placeholder,
textarea::placeholder { color: var(--gray); }

.form-success {
  text-align: center;
  padding: 80px 40px;
  background: var(--dark-2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
}

.success-icon { font-size: 64px; margin-bottom: 20px; }

.success-inner h3 {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.success-inner p {
  color: var(--light-gray);
  margin-bottom: 32px;
  font-size: 18px;
}

/* =====================================================
   DONATE PAGE
   ===================================================== */
.donate-section {
  padding: 80px 0;
  background: var(--dark);
}

.donate-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.donate-why h2 {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--white);
  margin-bottom: 20px;
}

.donate-why p {
  color: var(--light-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}

.donate-list {
  list-style: none;
  margin-bottom: 32px;
}

.donate-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--mid);
  color: var(--light-gray);
  font-size: 15px;
}

.donate-list li::first-letter { color: var(--gold); }

.donate-card {
  background: var(--dark-2);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  padding: 40px;
}

.donate-card h3 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  margin-bottom: 28px;
}

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

.amount-btn {
  background: var(--dark-3);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.custom-amount {
  margin-bottom: 28px;
}

.custom-amount label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  display: block;
  margin-bottom: 10px;
}

.custom-input-wrap {
  position: relative;
}

.dollar-sign {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
}

.custom-input-wrap input {
  padding-left: 32px;
}

.stripe-placeholder {
  margin-bottom: 28px;
}

.btn-donate {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px;
}

.stripe-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray);
  margin-top: 10px;
}

.stripe-setup-note {
  text-align: center;
  font-size: 11px;
  color: var(--mid);
  margin-top: 6px;
}

.donate-tiers {
  border-top: 1px solid var(--mid);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.tier-amount {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  min-width: 70px;
}

.tier-label {
  font-size: 14px;
  color: var(--gray);
}

/* =====================================================
   CONTACT STRIP
   ===================================================== */
.contact-strip {
  background: var(--dark-2);
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  padding: 32px 0;
}

.contact-strip-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.contact-label {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-item span:not(.contact-label),
.contact-item a {
  font-size: 15px;
  color: var(--light-gray);
  transition: color 0.2s;
}

.contact-item a:hover { color: var(--gold); }

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

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  height: 128px;
  width: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--mid);
  opacity: 0.6;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .pillars .container { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .content-aside { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 140px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-photo-placeholder { aspect-ratio: 1/1; max-width: 300px; }
  .donate-grid { grid-template-columns: 1fr; }
  .expansion-inner { grid-template-columns: 1fr; }
  .expansion-stars { display: none; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--mid);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .values-grid { grid-template-columns: 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .interest-form { padding: 28px 20px; }
  .hero h1 { font-size: 64px; }
}

/* =====================================================
   PROMO VIDEO SECTION
   ===================================================== */
.promo-video-section {
  background: var(--black);
  padding: 48px 0 48px;
  border-bottom: 1px solid var(--mid);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow behind the video */
.promo-video-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(245,168,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.promo-video-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.promo-eyebrow {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.promo-video-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

.promo-video-wrapper {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  /* Gold border frame */
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.promo-video-wrapper::before,
.promo-video-wrapper::after {
  content: '★';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold);
  opacity: 0.4;
  z-index: 2;
  pointer-events: none;
}
.promo-video-wrapper::before { left: 0; }
.promo-video-wrapper::after  { right: 0; }

.promo-video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--dark-2);
}

.promo-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.promo-video-footer {
  text-align: center;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

@media (max-width: 600px) {
  .promo-video-wrapper::before,
  .promo-video-wrapper::after { display: none; }
  .promo-video-section { padding: 56px 0 52px; }
}

/* =====================================================
   LARGER NAV LOGO
   ===================================================== */
.nav-logo img {
  height: 128px !important;
  width: 128px !important;
}

/* =====================================================
   CALENDAR SECTION
   ===================================================== */
.calendar-section {
  background: var(--dark);
  padding: 80px 0;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
}

.calendar-header {
  text-align: center;
  margin-bottom: 40px;
}

.calendar-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  color: var(--white);
}

.calendar-wrapper {
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-2);
  min-height: 700px;
}

.calendar-wrapper iframe {
  display: block;
  filter: invert(1) hue-rotate(180deg) brightness(0.85) contrast(0.9);
  width: 100%;
  height: 700px;
  border: none;
}

@media (max-width: 768px) {
  .calendar-wrapper {
    min-height: 500px;
  }
  .calendar-wrapper iframe {
    height: 500px;
    /* Switch to agenda/list view on mobile by overriding the embed URL via CSS isn't possible,
       but we can at least give it more vertical space */
  }
}

.calendar-footer {
  text-align: center;
  margin-top: 24px;
}

/* =====================================================
   FOUNDER VIDEO — no top padding repeat
   ===================================================== */
.founder-video-section {
  border-top: 1px solid var(--mid);
  padding-top: 72px;
}

/* =====================================================
   LEGACY / ATHLETE SECTION
   ===================================================== */
.legacy-section {
  background: var(--black);
  padding: 80px 0 100px;
  border-top: 1px solid var(--mid);
}

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

.legacy-header h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.legacy-intro {
  color: var(--light-gray);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Top elite tier — 3 cards */
.legacy-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--mid);
  margin-bottom: 48px;
}

.legacy-elite-card {
  background: var(--dark);
  padding: 40px 32px;
  position: relative;
}

.legacy-elite-card.college::after {
  content: '↓ scroll';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

.legacy-elite-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.legacy-elite-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mid);
}

.legacy-elite-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-3);
}

.legacy-elite-card ul::-webkit-scrollbar { width: 4px; }
.legacy-elite-card ul::-webkit-scrollbar-track { background: var(--dark-3); }
.legacy-elite-card ul::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.legacy-elite-card ul li {
  font-size: 15px;
  color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.gold-tag {
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 8px;
  border-radius: 2px;
}

/* Tabs */
.legacy-tabs-container {
  background: var(--dark);
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.legacy-tabs-container::after {
  content: '↓ scroll to see more';
  display: block;
  text-align: center;
  padding: 10px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.5;
  border-top: 1px solid var(--mid);
  background: var(--dark);
}

.legacy-tabs {
  display: flex;
  border-bottom: 1px solid var(--mid);
}

.legacy-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 18px 24px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}

.legacy-tab:hover { color: var(--white); }

.legacy-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
  background: rgba(245,168,0,0.04);
}

.legacy-tab-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  padding: 8px 0;
  max-height: 360px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-3);
}

.legacy-tab-content::-webkit-scrollbar { width: 4px; }
.legacy-tab-content::-webkit-scrollbar-track { background: var(--dark-3); }
.legacy-tab-content::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.athlete-name {
  padding: 12px 24px;
  font-size: 14px;
  color: var(--light-gray);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.athlete-name:hover {
  background: rgba(245,168,0,0.04);
  color: var(--white);
}

.athlete-school {
  font-size: 12px;
  color: var(--gray);
  font-style: italic;
}

@media (max-width: 900px) {
  .legacy-top { grid-template-columns: 1fr; }
  .legacy-tabs { flex-direction: column; }
  .legacy-tab { text-align: left; border-bottom: none; border-left: 3px solid transparent; }
  .legacy-tab.active { border-left-color: var(--gold); border-bottom-color: transparent; }
}

@media (max-width: 600px) {
  .legacy-tab-content { grid-template-columns: 1fr 1fr; }
  .calendar-wrapper iframe { height: 450px; }
}

/* =====================================================
   FOUNDER PHOTOS
   ===================================================== */
.founder-photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.founder-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
  object-fit: cover;
  display: block;
}

.founder-photo-vintage {
  aspect-ratio: 4/3;
  filter: grayscale(100%) contrast(1.05);
}

.founder-photo-honor {
  aspect-ratio: 4/3;
}

/* =====================================================
   DONATE PHOTO
   ===================================================== */
.donate-photo {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--mid);
  object-fit: cover;
  aspect-ratio: 4/3;
  margin-bottom: 24px;
  display: block;
}

/* =====================================================
   FURTHER READING
   ===================================================== */
.further-reading {
  background: var(--dark);
  border-top: 1px solid var(--mid);
  padding: 20px 0;
}

.further-reading p {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

.further-reading a {
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.further-reading a:hover {
  color: var(--gold);
}

/* =====================================================
   LEGACY BOTTOM ROW (HS State + HS All-Americans)
   ===================================================== */
.legacy-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--mid);
  margin-top: 2px;
}

.legacy-elite-card.hs-state::after,
.legacy-elite-card.hs-aa::after {
  content: '↓ scroll';
  position: absolute;
  bottom: 12px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  pointer-events: none;
}

@media (max-width: 900px) {
  .legacy-bottom { grid-template-columns: 1fr; }
}

/* Calendar responsive switching */
.cal-mobile { display: none !important; }
.cal-desktop { display: block !important; }

@media (max-width: 768px) {
  .cal-desktop { display: none !important; }
  .cal-mobile { display: block !important; }
  .calendar-wrapper { min-height: 500px; }
  .calendar-wrapper iframe.cal-mobile { height: 500px; }
}

/* =====================================================
   IN THE NEWS
   ===================================================== */
.news-section {
  background: var(--dark);
  padding: 80px 0 100px;
  border-top: 1px solid var(--mid);
}

.news-header {
  text-align: center;
  margin-bottom: 52px;
}

.news-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1;
  color: var(--white);
}

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

.news-card {
  background: var(--dark-2);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: background 0.2s;
  position: relative;
}

.news-card:hover {
  background: var(--dark-3, #1a1a1a);
}

.news-card:hover h3 {
  color: var(--gold);
}

.news-card-featured {
  grid-column: span 3;
  background: #111;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}

.news-card-featured h3 {
  font-size: 22px;
}

.news-card-video {
  border-left: 3px solid var(--gold);
}

.news-tag {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.news-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  transition: color 0.2s;
}

.news-card p {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.6;
  flex: 1;
}

.news-source {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: auto;
}

/* =====================================================
   FOOTER SOCIAL
   ===================================================== */
.footer-social {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

@media (max-width: 900px) {
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card-featured { grid-column: span 2; flex-direction: column; }
}

@media (max-width: 600px) {
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { grid-column: span 1; }
  .footer-social { flex-direction: column; gap: 12px; }
}

/* =====================================================
   GEAR PAGE
   ===================================================== */
.gear-section {
  background: var(--black);
  padding: 80px 0 100px;
}

.gear-intro {
  text-align: center;
  color: var(--light-gray);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 52px;
  line-height: 1.7;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--mid);
  max-width: 800px;
  margin: 0 auto 40px;
}

.gear-card {
  background: var(--dark);
  padding: 48px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  text-decoration: none;
  transition: background 0.2s;
}

.gear-card:hover {
  background: var(--dark-2);
}

.gear-card:hover h3 {
  color: var(--gold);
}

.gear-card-icon {
  font-size: 40px;
  flex-shrink: 0;
}

.gear-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gear-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  transition: color 0.2s;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gear-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

.gear-link {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.gear-note {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.gear-note p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.gear-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .gear-grid { grid-template-columns: 1fr; }
  .gear-card { flex-direction: column; }
}

/* =====================================================
   NAV DROPDOWN
   ===================================================== */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-gray);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active { color: var(--white); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #111;
  border: 1px solid var(--mid);
  border-radius: var(--radius);
  list-style: none;
  min-width: 180px;
  overflow: hidden;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.nav-dropdown-menu.open {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-bottom: 1px solid var(--mid);
}

.nav-dropdown-menu li:last-child a {
  border-bottom: none;
}

.nav-dropdown-menu li a:hover {
  color: var(--gold);
  background: rgba(245,168,0,0.06);
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    border: none;
    border-radius: 0;
    background: rgba(255,255,255,0.04);
    box-shadow: none;
    min-width: 0;
  }
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }
}

/* =====================================================
   WAIVER FORM
   ===================================================== */
.waiver-section {
  background: var(--black);
  padding: 80px 0 100px;
}

.waiver-intro {
  max-width: 680px;
  margin: 0 auto 48px;
  text-align: center;
}

.waiver-intro p {
  color: var(--light-gray);
  font-size: 16px;
  line-height: 1.75;
}

.waiver-form {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--mid);
}

.waiver-group {
  background: var(--dark);
  padding: 40px 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.waiver-group-legal {
  background: #0d0d0d;
}

.waiver-group-title {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mid);
}

.waiver-row {
  display: grid;
  gap: 16px;
}

.waiver-row-1 { grid-template-columns: 1fr; }
.waiver-row-2 { grid-template-columns: 1fr 1fr; }
.waiver-row-3 { grid-template-columns: 1fr 1fr 1fr; }

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

.waiver-field label {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.req { color: var(--gold); }

.waiver-field input,
.waiver-field select,
.waiver-field textarea {
  background: var(--dark-2, #111);
  border: 1px solid var(--mid);
  border-radius: 4px;
  color: var(--white);
  font-family: var(--font-body, 'Barlow', sans-serif);
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

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

.waiver-field select {
  appearance: none;
  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 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.waiver-field textarea {
  resize: vertical;
  min-height: 90px;
}

.waiver-legal-text {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--mid);
  border-radius: 4px;
  padding: 24px 28px;
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.8;
}

.waiver-legal-text p { margin-bottom: 12px; }

.waiver-legal-text ol {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waiver-legal-text li { font-size: 13px; }

.waiver-checkbox-field {
  margin-top: 4px;
}

.waiver-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px !important;
  color: var(--light-gray) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.waiver-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.waiver-submit {
  background: var(--dark);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.waiver-submit-note {
  font-size: 13px;
  color: var(--gray);
  text-align: center;
}

.waiver-submit-note a {
  color: var(--gold);
  text-decoration: underline;
}

@media (max-width: 700px) {
  .waiver-group { padding: 28px 20px 24px; }
  .waiver-row-2 { grid-template-columns: 1fr; }
  .waiver-row-3 { grid-template-columns: 1fr 1fr; }
  .waiver-submit { padding: 28px 20px; }
}
