/* ============================================================
   SALEM JUMP ROPE — styles.css
   Black & Gold Athletic Theme
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4A017;
  --gold-light: #F5C842;
  --gold-dark: #A07810;
  --black: #0A0A0A;
  --black-soft: #111111;
  --black-card: #181818;
  --dark-gray: #222222;
  --mid-gray: #444444;
  --light-gray: #888888;
  --border-gray: #2a2a2a;
  --white: #FFFFFF;
  --off-white: #F8F8F6;
  --text-light: #CCCCCC;
  --font-head: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Barlow', Arial, sans-serif;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(212,160,23,0.2);
  --transition: 0.2s ease;
  --max-width: 1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black-soft);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background-image: url("Images/merch/salem-jump-rope-shirt-logo.jpg");
  background-repeat: no-repeat;
  background-position: center 48%;
  background-size: min(72vw, 620px) auto;
  opacity: 0.045;
  mix-blend-mode: screen;
}

main { flex: 1; }

main,
.site-footer {
  position: relative;
  z-index: 2;
}

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

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

ul { list-style: none; }

/* ---- Screen reader only ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

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

.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.section-dark {
  background: var(--black-soft);
  padding: 80px 0;
}

.section-light {
  background: var(--off-white);
  color: var(--black);
  padding: 80px 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }

/* ---- Typography ---- */
h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gold { color: var(--gold); }
.eyebrow-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 48px;
}


/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

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

/* Logo */
.logo-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  display: flex;
  align-items: center;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}

.logo-rope-accent {
  display: block;
  width: 3px;
  height: 38px;
  background: var(--gold);
  border-radius: 2px;
}

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-city {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-team {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  padding: 8px 16px;
  margin-left: 6px;
}

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

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown-trigger { display: flex; align-items: center; gap: 4px; }

.arrow { font-size: 0.7rem; transition: transform var(--transition); }
.has-dropdown.open .arrow { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--black-card);
  border: 1px solid var(--border-gray);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  min-width: 200px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
  padding: 6px 0;
  z-index: 200;
}

.has-dropdown.open .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu button {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  padding: 10px 18px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.dropdown-menu button:hover,
.dropdown-menu button:focus-visible {
  background: rgba(212,160,23,0.12);
  color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   PAGE SYSTEM
============================================================ */
.page { display: none; }
.page.active { display: block; }


/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--black);
  min-height: 78vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 64px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,160,23,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(212,160,23,0.04) 0%, transparent 50%);
}

/* Rope line accents */
.hero-rope-lines { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.rope-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,160,23,0.3), transparent);
}
.rl-1 { top: 25%; left: 0; right: 0; transform: rotate(-3deg); }
.rl-2 { top: 55%; left: 0; right: 0; transform: rotate(1.5deg); }
.rl-3 { top: 80%; left: 0; right: 0; transform: rotate(-2deg); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

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

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
}

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

.hero-badge {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.badge-circle {
  width: 130px;
  height: 130px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.6;
}

.badge-year {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}


/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 13px 28px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--black); text-decoration: none; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); text-decoration: none; }

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); text-decoration: none; }

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover { background: var(--off-white); text-decoration: none; }

.btn-sm { padding: 8px 18px; font-size: 0.82rem; }


/* ============================================================
   MISSION STRIP
============================================================ */
.mission-strip {
  background: var(--gold);
  padding: 22px 24px;
}

.mission-text {
  font-family: var(--font-head);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  color: var(--black);
  text-align: center;
  letter-spacing: 0.02em;
  margin: 0;
}

.mission-text strong { font-weight: 900; }


/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--black-card);
  padding: 40px 24px;
  border-bottom: 1px solid var(--border-gray);
}

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

.stat-item { padding: 16px; }

.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
}


/* ============================================================
   FEATURE CARDS (Home)
============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover, .feature-card:focus-visible {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.feature-card:hover::before, .feature-card:focus-visible::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.feature-card h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.feature-link {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ============================================================
   TWO COL LAYOUT
============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.col-text h2 { margin-bottom: 16px; }
.col-text p { color: var(--mid-gray); }
.col-text .check-list li, .col-text ul li { color: var(--mid-gray); }

.section-light .two-col .col-text h2 { color: var(--black); }
.section-light .two-col .col-text p { color: #333; }


/* ============================================================
   IMAGE PLACEHOLDERS
============================================================ */
.image-placeholder {
  background: #E8E8E8;
  border: 2px dashed #CCC;
  border-radius: var(--radius-lg);
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.image-placeholder.large { min-height: 340px; }

.img-ph-inner {
  text-align: center;
}

.img-ph-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.img-ph-inner p {
  font-size: 0.85rem;
  color: #888;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}


/* ============================================================
   PILL TAGS
============================================================ */
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.pill {
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-dark);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 100px;
}

.section-light .pill {
  background: rgba(160,120,16,0.1);
  color: var(--gold-dark);
  border-color: rgba(160,120,16,0.25);
}


/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: var(--black);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 64px 24px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.section-light .cta-banner {
  border-radius: var(--radius-lg);
}

.section-light .cta-banner h2 { color: var(--white); }


/* ============================================================
   PAGE MINI HERO
============================================================ */
.page-hero-mini {
  background: var(--black);
  padding: 70px 24px 56px;
  border-bottom: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.page-hero-mini::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,160,23,0.06) 0%, transparent 70%);
}

.page-hero-mini .container { position: relative; z-index: 1; }

.page-hero-mini h1 { color: var(--white); margin-bottom: 12px; }

.page-hero-mini p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0;
}


/* ============================================================
   COACH CARDS
============================================================ */
.coach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.coach-photo {
  background: #E0E0E0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.coach-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coach-photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #999;
  font-size: 0.8rem;
}

.coach-photo-ph span { font-size: 2.5rem; }

.coach-body { padding: 22px 22px 26px; }

.coach-role {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.coach-card h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 8px;
}

.coach-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.6;
}

.coach-focus {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding-left: 10px;
  margin-top: 8px;
}


/* ============================================================
   CAPTAIN CARDS
============================================================ */
.captain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.captain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition);
}

.captain-card:hover { transform: translateY(-4px); }

.captain-photo {
  background: #DDDAD0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.captain-photo-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #888;
  font-size: 0.8rem;
}

.captain-photo-ph span { font-size: 2.8rem; }

.captain-body { padding: 18px 16px 22px; }

.captain-card h3 { font-size: 1.15rem; color: var(--black); margin-bottom: 4px; }

.captain-grade {
  font-size: 0.8rem;
  color: var(--light-gray);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 600;
}

.captain-quote {
  font-size: 0.87rem;
  color: #555;
  font-style: italic;
  border-top: 1px solid #EEE;
  padding-top: 10px;
  margin-top: 8px;
}


/* ============================================================
   ACES SECTION
============================================================ */
.ace-intro-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  border-left: 5px solid var(--gold);
}

.ace-intro-card h2 { color: var(--gold); margin-bottom: 12px; }

.ace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.ace-card {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow var(--transition);
  position: relative;
}

.ace-card::before {
  content: '★';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  line-height: 28px;
}

.ace-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }

.ace-card h3 { font-size: 1.1rem; color: var(--black); margin-bottom: 4px; }
.ace-year { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--gold-dark); margin-bottom: 6px; }
.ace-category { font-size: 0.8rem; color: #777; }


/* ============================================================
   HISTORY / TIMELINE
============================================================ */
.history-intro {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 56px;
  max-width: 720px;
}

.history-intro p { margin-bottom: 16px; }

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.4;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-year {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-desc { font-size: 0.93rem; color: #444; }


/* ============================================================
   SPONSORSHIP LEVELS
============================================================ */
.sponsor-levels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.sponsor-level-card {
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  border: 2px solid transparent;
}

.sponsor-level-card.gold-rope {
  background: var(--black);
  border-color: var(--gold);
  color: var(--white);
}

.sponsor-level-card.team {
  background: #F8F4E8;
  border-color: #CBA015;
}

.sponsor-level-card.clinic {
  background: #F5F5F5;
  border-color: #CCC;
}

.sponsor-level-card.community {
  background: #F0F8F0;
  border-color: #AAD;
}

.sponsor-level-icon { font-size: 2rem; margin-bottom: 10px; }
.sponsor-level-card h3 { margin-bottom: 6px; }
.sponsor-level-card.gold-rope h3 { color: var(--gold); }
.sponsor-perks { font-size: 0.88rem; color: #555; margin-top: 10px; text-align: left; }
.sponsor-level-card.gold-rope .sponsor-perks { color: var(--text-light); }
.sponsor-perks li { padding: 3px 0; }
.sponsor-perks li::before { content: '✓ '; color: var(--gold); }

.sponsor-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.sponsor-logo-ph {
  background: #F0F0F0;
  border: 2px dashed #CCC;
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  font-size: 0.8rem;
  color: #AAA;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}


/* ============================================================
   MENTORSHIP VALUES
============================================================ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}

.value-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.value-icon { font-size: 2.2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--text-light); margin: 0; }


/* ============================================================
   CLINIC CARDS
============================================================ */
.clinic-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.clinic-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.clinic-card.spring {
  background: linear-gradient(135deg, #1a1a00, #2a2500);
  border: 2px solid var(--gold);
}

.clinic-card.fall {
  background: linear-gradient(135deg, #0a0a0a, #1a1000);
  border: 2px solid rgba(212,160,23,0.4);
}

.clinic-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.clinic-card h2 { color: var(--white); margin-bottom: 10px; }

.clinic-date, .clinic-time {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 6px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
}

.clinic-card p { color: var(--text-light); margin-bottom: 20px; }


/* ============================================================
   INFO BLOCKS
============================================================ */
.info-block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-block {
  background: var(--white);
  border: 1px solid #E5E5E5;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
}

.info-block h3 {
  color: var(--black);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  font-size: 1rem;
}

.info-block ul { list-style: none; padding: 0; }
.info-block li {
  padding: 5px 0;
  font-size: 0.9rem;
  color: #444;
  border-bottom: 1px solid #F0F0F0;
  padding-left: 18px;
  position: relative;
}
.info-block li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-size: 0.8rem;
}


/* ============================================================
   SCHEDULE GRID (Clinic)
============================================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.schedule-day {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.day-header {
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 12px 16px;
  text-align: center;
}

.day-item {
  padding: 10px 14px;
  font-size: 0.85rem;
  color: #444;
  border-bottom: 1px solid #F0F0F0;
  line-height: 1.5;
}

.day-item strong { color: var(--black); }
.day-item:last-child { border-bottom: none; }


/* ============================================================
   TRYOUT SKILLS CHECKLIST
============================================================ */
.skills-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 48px;
}

.skill-check-item {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.skill-check-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  color: var(--black);
  font-weight: 700;
}


/* ============================================================
   PAYMENT PLACEHOLDER
============================================================ */
.payment-placeholder {
  background: #FFF8E1;
  border: 2px dashed #CBA015;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 48px;
}

.payment-icon { font-size: 2.5rem; margin-bottom: 12px; }
.payment-placeholder h3 { color: var(--black); margin-bottom: 10px; }
.payment-placeholder p { color: #555; font-size: 0.93rem; }
.payment-placeholder strong { color: var(--black); }

/* ---- ACES sponsor spotlight ---- */
.ace-sponsor-spotlight {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 32px;
  align-items: center;
  margin: 32px 0 40px;
  padding: 28px;
  background: var(--black);
  color: var(--white);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.ace-sponsor-logo-wrap {
  background: var(--white);
  border: 1px solid rgba(212,160,23,0.35);
  padding: 18px;
  min-height: 230px;
  display: grid;
  place-items: center;
}

.ace-sponsor-logo-wrap img {
  max-height: 220px;
  object-fit: contain;
}

.ace-sponsor-spotlight h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.ace-sponsor-spotlight p:not(.eyebrow-label) {
  color: var(--text-light);
}

.sponsor-logo-card {
  min-height: 180px;
  padding: 18px;
  background: var(--white);
  border: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sponsor-logo-card img {
  max-height: 110px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
}

.sponsor-logo-card h3 {
  color: var(--black);
  margin-bottom: 2px;
}

.sponsor-logo-card p {
  color: var(--gold-dark);
  font-weight: 700;
  margin: 0;
}

.sponsor-amount {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  margin: 4px 0;
}

.sponsor-tagline {
  color: #666;
  font-style: italic;
  margin-bottom: 16px;
}

/* ---- Culture and owner update tools ---- */
.culture-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.culture-stage,
.owner-panel {
  background: var(--white);
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 24px;
}

.culture-stage h3 {
  color: var(--black);
  margin-bottom: 12px;
}

.generated-request-wrap {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.generated-request-wrap label {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
}

.generated-request-wrap textarea {
  width: 100%;
  min-height: 180px;
  border: 1px solid #ccc;
  padding: 14px;
  font: 0.95rem/1.5 var(--font-body);
  resize: vertical;
}


/* ============================================================
   LEARN — SUB TABS
============================================================ */
.sub-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #E0E0E0;
  margin-bottom: 40px;
}

.sub-tab {
  background: none;
  border: none;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #888;
  padding: 12px 22px;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--transition);
}

.sub-tab.active {
  color: var(--black);
  border-bottom-color: var(--gold);
}

.sub-tab:hover { color: var(--black); }

.learn-panel { display: none; }
.learn-panel.active { display: block; }


/* ============================================================
   TUTORIAL CARDS
============================================================ */
.tutorial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.tutorial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform var(--transition);
}

.tutorial-card:hover { transform: translateY(-3px); }

.tutorial-thumb {
  background: #E5E2D8;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 2.5rem;
  color: #AAA;
}

.coming-soon-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--black);
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.tutorial-body { padding: 18px 18px 22px; }
.tutorial-card h3 { font-size: 1.05rem; color: var(--black); margin-bottom: 6px; }

.difficulty-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.difficulty-badge.beginner { background: #E8F5E9; color: #2E7D32; }
.difficulty-badge.intermediate { background: #FFF3E0; color: #E65100; }
.difficulty-badge.advanced { background: #FCE4EC; color: #C62828; }

.tutorial-card p { font-size: 0.87rem; color: #555; margin: 0; }


/* ============================================================
   WORKOUT CARDS
============================================================ */
.workout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.workout-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-top: 4px solid var(--gold);
}

.workout-level {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.workout-card h3 { color: var(--black); font-size: 1.1rem; margin-bottom: 14px; }

.workout-block { margin-bottom: 10px; }
.workout-block-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 2px;
}
.workout-block-content { font-size: 0.88rem; color: #444; }


/* ============================================================
   PROGRAM CARDS
============================================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.program-card {
  background: var(--white);
  border: 1px solid #E0E0E0;
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: box-shadow var(--transition);
}

.program-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.program-icon { font-size: 2rem; }
.program-card h3 { font-size: 1rem; color: var(--black); }
.program-card p { font-size: 0.85rem; color: #666; margin: 0; }
.program-card .btn { margin-top: auto; }


/* ============================================================
   FITNESS CARDS
============================================================ */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--gold);
}

.benefit-icon { font-size: 2rem; margin-bottom: 14px; }
.benefit-card h3 { color: var(--black); margin-bottom: 8px; font-size: 1.05rem; }
.benefit-card p { font-size: 0.9rem; color: #555; margin: 0; }

.fitness-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.fitness-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
}

.fitness-card h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 10px; }
.fitness-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 14px; }
.fitness-duration {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.program-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.program-type-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.program-type-card h3 { color: var(--black); margin-bottom: 10px; }
.program-type-card p { color: #555; font-size: 0.9rem; margin-bottom: 18px; }


/* ============================================================
   STORE
============================================================ */
.store-merch-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(360px, 1.18fr);
  align-items: stretch;
  gap: 0;
  background: var(--black);
  border: 1px solid rgba(212,160,23,0.5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}

.store-merch-copy {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-merch-copy h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.store-merch-copy p:not(.eyebrow-label) {
  color: var(--text-light);
  margin-bottom: 26px;
}

.store-merch-copy .btn {
  align-self: flex-start;
}

.store-merch-media {
  min-height: 360px;
  background: var(--black-card);
}

.store-merch-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.store-notice {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  margin-bottom: 48px;
  border: 1px solid var(--gold);
}

.store-notice-icon { font-size: 3rem; margin-bottom: 16px; }
.store-notice h2 { color: var(--gold); margin-bottom: 12px; }
.store-notice p { color: var(--text-light); margin-bottom: 24px; }

.store-notify-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.store-notify-form input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius);
  background: var(--black-card);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.store-notify-form input::placeholder { color: #555; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  transition: transform var(--transition);
}

.product-card:hover { transform: translateY(-4px); }

.product-image {
  background: #EDEAE0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: #BBB;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-body { padding: 18px 16px 20px; }
.product-card h3 { font-size: 1rem; color: var(--black); margin-bottom: 5px; }
.product-card p { font-size: 0.85rem; color: #666; margin-bottom: 10px; }

.product-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 14px;
}

.product-card .btn { width: 100%; opacity: 0.7; cursor: not-allowed; }


/* ============================================================
   CONTACT
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
}

.contact-info h2 { color: var(--black); margin-bottom: 24px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 2px;
}

.contact-item p { color: #555; font-size: 0.92rem; margin: 0; }

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 7px 14px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition);
}

.social-link:hover { background: var(--dark-gray); text-decoration: none; color: var(--gold); }

.contact-form-wrap h2 { color: var(--black); margin-bottom: 24px; }


/* ============================================================
   FAQ
============================================================ */
.faq-section { padding-top: 48px; }
.faq-section h2 { color: var(--black); margin-bottom: 32px; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid #E5E5E5;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-question:hover { color: var(--gold-dark); }

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 18px;
  font-size: 0.93rem;
  color: #444;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }


/* ============================================================
   BOOK — EVENT TYPES
============================================================ */
.event-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.event-type-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid var(--border-gray);
  transition: border-color var(--transition);
}

.event-type-card:hover { border-color: var(--gold); }

.event-type-icon { font-size: 1.8rem; margin-bottom: 10px; }
.event-type-card h3 { font-size: 0.95rem; color: var(--gold); margin-bottom: 6px; }
.event-type-card p { font-size: 0.83rem; color: var(--text-light); margin: 0; }


/* ============================================================
   CHECK LIST & STEPS LIST
============================================================ */
.check-list, .steps-list {
  padding: 0;
  list-style: none;
  margin: 16px 0;
}

.check-list li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.93rem;
  color: #444;
  border-bottom: 1px solid #F0F0F0;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 700;
}

.steps-list { list-style: decimal; padding-left: 22px; }

.steps-list li {
  padding: 6px 0;
  font-size: 0.93rem;
  color: #444;
  padding-left: 8px;
}

.section-dark .check-list li { color: var(--text-light); border-color: var(--border-gray); }


/* ============================================================
   FORMS
============================================================ */
.form-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  margin-top: 56px;
}

.form-section h2 { color: var(--black); margin-bottom: 8px; }

.form-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 28px;
  padding: 12px 16px;
  background: #F5F5F5;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.skip-form { display: flex; flex-direction: column; gap: 18px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #DDD;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212,160,23,0.12);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D32F2F;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #BBB; }

.form-group 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' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.checkbox-group { flex-direction: row; align-items: flex-start; gap: 10px; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.checkbox-label input[type="checkbox"] { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--gold-dark); }
.checkbox-label span { font-size: 0.88rem; color: #444; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 400; }

.form-success {
  padding: 14px 18px;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  border-radius: var(--radius);
  color: #2E7D32;
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}

.form-success.visible { display: block; }

.field-error {
  font-size: 0.8rem;
  color: #D32F2F;
  margin-top: 2px;
}


/* ============================================================
   PORTAL / COMING SOON
============================================================ */
.coming-soon-block {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  border: 1px solid var(--gold);
}

.cs-icon { font-size: 3rem; margin-bottom: 20px; }
.coming-soon-block h2 { color: var(--gold); margin-bottom: 16px; }
.coming-soon-block p { color: var(--text-light); }

.portal-list {
  list-style: none;
  text-align: left;
  max-width: 380px;
  margin: 20px auto;
}

.portal-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-light);
  font-size: 0.93rem;
  border-bottom: 1px solid var(--border-gray);
}

.portal-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }


/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--black);
  border-top: 3px solid var(--gold);
  margin-top: auto;
}

.footer-top { padding: 60px 24px 48px; }

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

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 14px;
}

.logo-city-sm {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
}

.logo-team-sm {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-brand p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 20px; }

.footer-brand .social-links { margin-top: 0; }
.footer-brand .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark-gray);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background var(--transition);
}
.footer-brand .social-links a:hover { background: var(--gold); color: var(--black); }

.footer-links-col h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.footer-links-col ul { list-style: none; padding: 0; }
.footer-links-col li { margin-bottom: 6px; }
.footer-links-col button {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color var(--transition);
  text-align: left;
}
.footer-links-col button:hover { color: var(--gold); }

.footer-contact h4 {
  color: var(--gold);
  margin-bottom: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.footer-contact p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 6px; }

.footer-bottom {
  border-top: 1px solid var(--border-gray);
  padding: 18px 24px;
}

.footer-bottom p {
  text-align: center;
  color: var(--mid-gray);
  font-size: 0.82rem;
  margin: 0;
}


/* ============================================================
   CHATBOT
============================================================ */
.chatbot-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.chatbot-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 12px 20px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(212,160,23,0.4);
  transition: all var(--transition);
}

.chatbot-trigger:hover { background: var(--gold-light); transform: translateY(-2px); }

.chat-icon { font-size: 1.1rem; }

.chatbot-window {
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 500px;
}

.chatbot-window[hidden] { display: none; }

.chatbot-header {
  background: var(--black);
  color: var(--white);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold);
}

.chatbot-header h3 {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.chatbot-header p { font-size: 0.75rem; color: var(--text-light); margin: 0; }

.chatbot-close {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1.1rem;
  padding: 4px;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.chatbot-close:hover { color: var(--white); }

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-msg p { margin: 0; }

.chat-msg.bot {
  background: #F0F0F0;
  color: var(--black);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
}

.chat-msg.user {
  background: var(--gold);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

.chatbot-topics {
  padding: 8px 12px 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-top: 1px solid #EEE;
}

.topic-btn {
  background: #F5F5F5;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 0.78rem;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  transition: all var(--transition);
  white-space: nowrap;
}

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

.chatbot-input-row {
  display: flex;
  border-top: 1px solid #EEE;
}

#chatbotInput {
  flex: 1;
  padding: 12px 14px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

#chatbotSend {
  background: var(--gold);
  border: none;
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0 18px;
  cursor: pointer;
  transition: background var(--transition);
}
#chatbotSend:hover { background: var(--gold-light); }


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: span 1; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .program-types { grid-template-columns: 1fr; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-stage-grid { grid-template-columns: 1fr; }
  .store-merch-feature { grid-template-columns: 1fr; }
  .store-merch-copy { padding: 36px 32px; }
}

@media (max-width: 768px) {
  /* Nav Mobile */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 20px 0;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 99;
    border-top: 1px solid var(--border-gray);
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-menu > li { width: 100%; }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 24px;
    font-size: 1.05rem;
    border-radius: 0;
    text-align: left;
  }

  .nav-link.nav-cta {
    margin: 8px 24px;
    width: calc(100% - 48px);
    text-align: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-top: none;
    background: rgba(255,255,255,0.04);
    border-radius: 0;
    padding: 0;
    display: none;
  }

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

  .dropdown-menu button { padding: 12px 24px 12px 40px; }

  /* Hero */
  .hero { min-height: 80vh; padding: 60px 24px 80px; }
  .hero-badge { display: none; }

  /* Grids */
  .feature-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .clinic-cards { grid-template-columns: 1fr; }
  .info-block-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .program-types { grid-template-columns: 1fr; }
  .ace-sponsor-spotlight { grid-template-columns: 1fr; }
  .brand-logo-img { width: 42px; height: 42px; }
  .store-merch-media,
  .store-merch-media img { min-height: 300px; }

  /* Form */
  .form-section { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-contact { grid-column: 1 / -1; }

  /* Chatbot */
  .chatbot-window { width: calc(100vw - 40px); }
  .chatbot-container { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-dark, .section-light { padding: 56px 0; }
  h1 { font-size: 2.4rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .sub-tabs { flex-wrap: wrap; }
  .sub-tab { font-size: 0.82rem; padding: 10px 14px; }
  body::before {
    background-size: 82vw auto;
    opacity: 0.035;
  }
  .store-merch-copy { padding: 28px 22px; }
  .store-merch-copy .btn { width: 100%; }
  .store-notice { padding: 36px 22px; }
}
