/* ═══════════════════════════════════════════════
   LA FENCING ACADEMY OF POMONA — Main Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --navy:      #0A1628;
  --navy-mid:  #0F2040;
  --navy-light:#162A50;
  --gold:      #C9A84C;
  --gold-light:#E2C16F;
  --gold-dark: #A88A38;
  --white:     #FFFFFF;
  --off-white: #F5F5F0;
  --gray:      #8A8FA0;
  --gray-light:#E8E8E8;
  --text:      #1A1A2E;
  --radius:    12px;
  --shadow:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.18);
  --transition:0.3s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.dark-section { background: var(--navy); color: var(--white); }
.center { text-align: center; }
.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: inherit;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
  text-align: center;
}
.dark-section .section-subtitle { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-full { width: 100%; text-align: center; }


/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.nav-nonprofit {
  background: var(--gold) !important;
  color: var(--navy) !important;
  border-radius: 50px !important;
  padding: 8px 18px !important;
}
.nav-nonprofit:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy);
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.75) 0%,
    rgba(10,22,40,0.55) 50%,
    rgba(10,22,40,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  font-style: italic;
  letter-spacing: 0.1em;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ── Hero Nonprofit CTA ── */
.hero-nonprofit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-nonprofit-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0;
  font-style: normal;
}
.btn-nonprofit {
  background: linear-gradient(135deg, #ffffff 0%, #f0e8d0 100%);
  color: var(--navy) !important;
  border: 3px solid var(--gold);
  border-radius: 50px;
  padding: 18px 44px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(201,168,76,0.25), 0 12px 36px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
  display: inline-block;
  animation: pulse-glow 2.5s ease-in-out infinite;
}
.btn-nonprofit:hover {
  background: var(--gold);
  color: var(--navy) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.3), 0 18px 48px rgba(201,168,76,0.5);
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 4px rgba(201,168,76,0.25), 0 12px 36px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 0 0 8px rgba(201,168,76,0.4),  0 12px 36px rgba(201,168,76,0.4); }
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-bottom: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%,100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(5px); }
}


/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--gold);
  padding: 40px 24px;
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat h3 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}
.stat p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.75;
  letter-spacing: 0.05em;
  font-family: 'Montserrat', sans-serif;
}


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 5px solid var(--white);
  box-shadow: var(--shadow);
}
.about-text p {
  color: #4A4A5A;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1rem;
}
.about-text .btn { margin-top: 12px; }


/* ════════════════════════════════════════
   GALLERY STRIP
════════════════════════════════════════ */
.gallery-strip {
  overflow: hidden;
  height: 200px;
  background: var(--navy-mid);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.gallery-track {
  display: flex;
  height: 100%;
  animation: scroll-gallery 30s linear infinite;
  width: max-content;
}
.gallery-track img {
  height: 200px;
  width: 300px;
  object-fit: cover;
  opacity: 0.75;
  transition: opacity var(--transition);
}
.gallery-track img:hover { opacity: 1; }
@keyframes scroll-gallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════════════════
   CLASSES
════════════════════════════════════════ */
.classes { background: var(--white); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
}
.card-featured:hover { transform: scale(1.03) translateY(-6px); }
.card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: inherit;
}
.card p {
  color: #5A5A6A;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}
.card-featured p { color: rgba(255,255,255,0.75); }
.card ul {
  margin-bottom: 28px;
}
.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  font-size: 0.9rem;
  color: #4A4A5A;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card ul li::before { content: "✓"; color: var(--gold); font-weight: 700; }
.card-featured ul li {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}

.classes-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-left: 5px solid var(--gold);
}
.classes-cta p {
  color: var(--white);
  font-size: 1.1rem;
  line-height: 1.6;
}
.classes-cta strong { color: var(--gold); }


/* ════════════════════════════════════════
   COACHES
════════════════════════════════════════ */
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.coach-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  transition: all var(--transition);
}
.coach-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.coach-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 3px solid var(--gold);
}
.coach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.coach-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.coach-title {
  font-size: 0.8rem;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.coach-card p:last-child {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ════════════════════════════════════════
   NEWS
════════════════════════════════════════ */
.news { background: var(--off-white); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img img { transform: scale(1.05); }
.news-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.news-body { padding: 28px; }
.news-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
  line-height: 1.4;
}
.news-body p {
  color: #5A5A6A;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.news-link {
  color: var(--gold-dark);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.news-link:hover { color: var(--gold); }


/* ════════════════════════════════════════
   NONPROFIT BANNER
════════════════════════════════════════ */
.nonprofit-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  padding: 80px 24px;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}
.nonprofit-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.nonprofit-text { color: var(--white); }
.nonprofit-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--gold);
}
.nonprofit-text p {
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 28px;
  font-size: 1rem;
  max-width: 550px;
}
.nonprofit-icon {
  font-size: 5rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-item a, .contact-item p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.6;
}
.contact-item a:hover { color: var(--gold); }
.contact-social h4 {
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.social-links { display: flex; gap: 16px; }
.social-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: color var(--transition);
}
.social-links a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  margin-top: 16px;
  padding: 14px;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  text-align: center;
}


/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #060D1A;
  padding: 64px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 8px;
}
.footer-brand p {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.footer-tagline {
  color: var(--gold) !important;
  font-style: italic;
  font-size: 0.9rem;
}
.footer-links h4, .footer-contact h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links h4 { margin-bottom: 16px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color var(--transition);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p, .footer-contact a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  display: block;
  margin-bottom: 8px;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.85rem;
}


/* ════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
════════════════════════════════════════ */
@media (max-width: 900px) {
  .section { padding: 80px 0; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -300px;
    width: 280px;
    height: 100vh;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 999;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid rgba(201,168,76,0.3);
    box-shadow: -8px 0 32px rgba(0,0,0,0.4);
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 0.9rem;
    padding: 12px 16px;
    width: 100%;
    border-radius: 8px;
  }
  .nav-nonprofit {
    margin-top: 12px;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    width: 100%;
  }

  /* Stats */
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { right: 0; bottom: -20px; width: 150px; height: 150px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 48px; }
  .card-featured { transform: none; }
  .card-featured:hover { transform: translateY(-6px); }

  /* Coaches */
  .coaches-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  /* News */
  .news-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Nonprofit */
  .nonprofit-content { flex-direction: column; text-align: center; }
  .nonprofit-text p { margin: 0 auto 28px; }
  .nonprofit-icon { display: none; }

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

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .classes-cta { flex-direction: column; text-align: center; padding: 32px; }
}


/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 600px)
════════════════════════════════════════ */
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .nav-logo span { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-scroll { display: none; }
  .stats-container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat h3 { font-size: 1.2rem; }
  .about-images { display: none; }
  .contact-form { padding: 28px 20px; }
  .gallery-strip { height: 140px; }
  .gallery-track img { height: 140px; width: 200px; }
  .btn-nonprofit {
    font-size: 0.9rem;
    padding: 16px 28px;
  }
}
