/* ============================================
   WRSS P&C Association — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&family=Open+Sans:wght@400;600;700&display=swap');

:root {
  --forest-green: #0C4F2C;
  --pine-green: #1F7A3A;
  --sage-green: #6DAA77;
  --sunshine: #FBB814;
  --school-blue: #2EA3E6;
  --warm-grey: #F2F2F2;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #555555;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --transition: all 0.25s ease;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

/* ============================================
   NAVIGATION
   ============================================ */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--forest-green);
  border-bottom: 3px solid var(--sunshine);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav-brand-text { display: flex; flex-direction: column; }
.nav-brand-text span:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.nav-brand-text span:last-child {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--sunshine);
  letter-spacing: 0.04em;
}

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

.nav-links a, .nav-dropdown > span {
  color: rgba(255,255,255,0.9);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover, .nav-dropdown:hover > span {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.nav-links a.active {
  background: var(--sunshine);
  color: var(--forest-green);
}

.nav-dropdown { position: relative; }

.nav-dropdown > span {
  display: flex;
  align-items: center;
  gap: 4px;
  user-select: none;
}

.nav-dropdown > span.active {
  background: var(--sunshine);
  color: var(--forest-green);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  min-width: 220px;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu a {
  padding: 11px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--warm-grey); color: var(--pine-green); }

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

.nav-mobile {
  display: none;
  background: #083d22;
  padding: 16px 24px 28px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a.active { color: var(--sunshine); }
.nav-mobile .mobile-section-label {
  color: var(--sunshine);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 0 4px;
}

/* ============================================
   FOOTER
   ============================================ */
#site-footer {
  background: var(--forest-green);
  color: var(--white);
  padding: 60px 0 0;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sunshine);
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  line-height: 1.6;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  padding: 3px 0;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--sunshine); }

.footer-brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 14px;
  object-fit: cover;
}

.footer-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--white);
}

.footer-brand-tagline {
  font-style: italic;
  color: var(--sage-green) !important;
  margin-bottom: 20px !important;
}

.footer-btns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }

.footer-btn {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.78rem;
  transition: var(--transition);
  text-align: center;
}
.footer-btn-gold { background: var(--sunshine); color: var(--forest-green) !important; }
.footer-btn-gold:hover { background: #e0a50f; color: var(--forest-green) !important; }
.footer-btn-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85) !important;
}
.footer-btn-outline:hover { border-color: var(--white); color: var(--white) !important; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.7); display: inline; padding: 0; }
.footer-contact-item a:hover { color: var(--sunshine); }

.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.45); display: inline; padding: 0; }
.footer-bottom-links a:hover { color: var(--sunshine); }

/* ============================================
   COMMON LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-lg { padding: 96px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pine-green);
  margin-bottom: 10px;
}

.section-heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }
.text-white { color: var(--white); }
.text-gold { color: var(--sunshine); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 30px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  line-height: 1;
}

.btn-gold { background: var(--sunshine); color: var(--forest-green); }
.btn-gold:hover {
  background: #e0a50f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251,184,20,0.4);
}

.btn-green { background: var(--pine-green); color: var(--white); }
.btn-green:hover { background: var(--forest-green); transform: translateY(-2px); }

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.65);
  color: var(--white);
  background: transparent;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
}

.btn-outline-green {
  border: 2px solid var(--pine-green);
  color: var(--pine-green);
  background: transparent;
}
.btn-outline-green:hover { background: var(--pine-green); color: var(--white); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.85rem; }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-green);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,79,44,0.9) 48%, rgba(12,79,44,0.25) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.hero-inner { max-width: 580px; }

.hero-badge {
  display: inline-block;
  background: rgba(251,184,20,0.18);
  border: 1px solid rgba(251,184,20,0.6);
  color: var(--sunshine);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.7;
}

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

/* Page hero (smaller) */
.page-hero {
  min-height: 38vh;
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero .hero-content { padding: 60px 24px; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 3rem); color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 600px; }
.page-hero .page-hero-icon { font-size: 3.5rem; margin-bottom: 16px; }
.page-hero .hero-badge { margin-bottom: 16px; }

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown {
  display: flex;
  gap: 12px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}

.countdown-unit {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  text-align: center;
  min-width: 76px;
  backdrop-filter: blur(4px);
}

.countdown-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--sunshine);
  line-height: 1;
  display: block;
}

.countdown-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
}

/* ============================================
   HOMEPAGE — QUICK ACCESS CARDS
   ============================================ */
.quick-cards { background: var(--warm-grey); padding: 56px 0; }

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

.quick-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  border-bottom: 3px solid transparent;
}

.quick-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-bottom-color: var(--sunshine);
}

.quick-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.quick-card h3 { font-size: 1.05rem; color: var(--forest-green); margin-bottom: 8px; }
.quick-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.quick-card-arrow { margin-top: 16px; font-size: 1.1rem; color: var(--pine-green); font-weight: 700; }

/* ============================================
   WHAT WE DO
   ============================================ */
.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.what-card {
  padding: 32px;
  border-radius: var(--radius);
  border: 2px solid var(--warm-grey);
  transition: var(--transition);
}

.what-card:hover { border-color: var(--sage-green); box-shadow: var(--shadow); }
.what-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.what-card h3 { font-size: 1.15rem; color: var(--forest-green); margin-bottom: 12px; }
.what-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================
   IMPACT STRIP
   ============================================ */
.impact-strip { background: var(--forest-green); padding: 60px 0; }

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

.impact-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--sunshine);
  line-height: 1;
  margin-bottom: 8px;
}

.impact-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}

/* ============================================
   FEATURED EVENT SECTION
   ============================================ */
.featured-event {
  position: relative;
  padding: 80px 0;
  background: var(--forest-green);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.featured-event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(12,79,44,0.94) 55%, rgba(12,79,44,0.55) 100%);
}

.featured-event-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.featured-event-inner { max-width: 580px; }
.featured-event-inner h2 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.featured-event-inner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 6px; line-height: 1.7; }
.featured-event-note { color: var(--sunshine); font-size: 0.875rem; font-weight: 700; margin-top: 12px !important; }

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--warm-grey);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--warm-grey) 0%, #e8e8e8 100%);
  color: var(--text-muted);
  font-size: 2.5rem;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12,79,44,0.88) 0%, transparent 100%);
  color: var(--white);
  padding: 24px 12px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   SPONSORS
   ============================================ */
.sponsor-tier { margin-bottom: 36px; }

.sponsor-tier-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--warm-grey);
  color: var(--text-muted);
}

.sponsor-tier-label.platinum { color: #8B6914; border-color: #d4af37; }
.sponsor-tier-label.gold { color: #B8860B; border-color: var(--sunshine); }
.sponsor-tier-label.silver { color: #5d6e7c; border-color: #b0bec5; }
.sponsor-tier-label.bronze { color: #8b5a2b; border-color: #cd853f; }
.sponsor-tier-label.friends { color: var(--pine-green); border-color: var(--sage-green); }

.sponsor-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}

.sponsor-card.platinum { border: 2px solid #d4af37; background: linear-gradient(135deg, #fffdf2 0%, #fff 100%); }
.sponsor-card.gold { border: 2px solid var(--sunshine); }
.sponsor-card.silver { border: 2px solid #b0bec5; }
.sponsor-card.bronze { border: 2px solid #cd853f; }

.sponsor-logo {
  width: 120px;
  height: 80px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.sponsor-logo-placeholder {
  width: 120px;
  height: 80px;
  border-radius: var(--radius-sm);
  background: var(--warm-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-shrink: 0;
  padding: 8px;
  line-height: 1.3;
}

.sponsor-info h3 { font-size: 1.1rem; color: var(--forest-green); margin-bottom: 4px; }
.sponsor-info p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2px; }

.sponsor-badge {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--pine-green);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.sponsor-badge.sold { background: var(--forest-green); }

.sponsors-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sponsors-friends-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.friend-chip {
  background: var(--warm-grey);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* ============================================
   SPONSORS STRIP (Homepage)
   ============================================ */
.sponsors-strip { background: var(--warm-grey); padding: 60px 0; }

/* ============================================
   NEWS CARDS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.news-card-img {
  height: 180px;
  background: var(--warm-grey);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.news-card-body { padding: 20px; }
.news-card-body .tag { margin-bottom: 10px; }
.news-card-date { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 8px; }
.news-card-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.news-card-excerpt { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.news-card-link { font-size: 0.875rem; font-weight: 700; color: var(--pine-green); }
.news-card-link:hover { text-decoration: underline; }

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.tag-green { background: var(--sage-green); color: var(--white); }
.tag-gold { background: var(--sunshine); color: var(--forest-green); }
.tag-blue { background: var(--school-blue); color: var(--white); }
.tag-red { background: #e53935; color: var(--white); }
.tag-purple { background: #8e44ad; color: var(--white); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: var(--forest-green); padding: 72px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 36px; max-width: 620px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { justify-content: center; }

/* ============================================
   RIDE PASS SECTION
   ============================================ */
.ride-pass-section { background: var(--sunshine); padding: 72px 0; }
.ride-pass-section .section-heading { color: var(--forest-green); }
.ride-pass-section .section-sub { color: rgba(12,79,44,0.72); }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  text-align: center;
  position: relative;
}

.pricing-card.featured { border: 3px solid var(--forest-green); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-green);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: var(--forest-green);
  line-height: 1;
  margin: 16px 0 4px;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-card.muted .pricing-price { color: var(--text-muted); }

.pricing-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }

.pricing-features { margin: 16px 0 24px; text-align: left; }
.pricing-features li {
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: "✓"; color: var(--pine-green); font-weight: 700; flex-shrink: 0; }
.pricing-card.muted .pricing-features li::before { color: var(--text-muted); }

.social-proof-bar {
  text-align: center;
  background: rgba(12,79,44,0.12);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest-green);
  max-width: 580px;
  margin: 0 auto;
}

/* ============================================
   RIDES GRID
   ============================================ */
.rides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ride-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 16px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--pine-green);
  transition: var(--transition);
}
.ride-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.ride-card-icon { font-size: 2rem; margin-bottom: 10px; }
.ride-card-img {
  width: calc(100% + 32px);
  margin: -22px -16px 14px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.ride-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ride-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--forest-green); margin-bottom: 6px; }
.ride-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

.storm-teaser {
  background: linear-gradient(135deg, var(--forest-green) 0%, #1a6b3a 100%);
  border-radius: var(--radius);
  padding: 0;
  text-align: center;
  margin-top: 28px;
  border: 3px solid var(--sunshine);
  position: relative;
  overflow: hidden;
}
.storm-teaser-img { width: 100%; height: 240px; overflow: hidden; }
.storm-teaser-img img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }
.storm-teaser h3 { color: var(--sunshine); font-size: 1.5rem; margin-bottom: 12px; padding-top: 28px; }
.storm-teaser p { color: rgba(255,255,255,0.88); font-size: 1rem; line-height: 1.6; max-width: 640px; margin: 0 auto 20px; padding: 0 32px; }
.storm-teaser .btn { margin-bottom: 32px; }

/* ============================================
   FOOD GRID
   ============================================ */
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.food-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: var(--transition);
}
.food-card:hover { box-shadow: var(--shadow-hover); }
.food-card-icon { font-size: 1.75rem; flex-shrink: 0; }
.food-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--forest-green); margin-bottom: 4px; }
.food-card p { font-size: 0.8rem; color: var(--text-muted); }

.food-status-banner {
  background: #fff3e0;
  border: 2px solid #ff9800;
  border-radius: var(--radius);
  padding: 18px 24px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.food-status-banner .icon { font-size: 1.5rem; flex-shrink: 0; }
.food-status-banner p { font-weight: 700; color: #e65100; font-size: 0.95rem; }

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

.internal-stall-chip {
  background: var(--warm-grey);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   STALLS PAGE
   ============================================ */
.stalls-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stall-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pine-green);
  transition: var(--transition);
}
.stall-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.stall-card-icon { font-size: 2rem; margin-bottom: 12px; }
.stall-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--forest-green); margin-bottom: 8px; }
.stall-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }
.stall-card .tag { margin-bottom: 4px; }
.stall-powered {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--school-blue);
  font-weight: 700;
}

.alert-full {
  background: #ffebee;
  border: 2px solid #e53935;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 36px;
}
.alert-full h3 { font-size: 1rem; color: #c62828; margin-bottom: 6px; }
.alert-full p { font-size: 0.875rem; color: #c62828; }

.cta-box-green {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%);
  border-radius: var(--radius);
  padding: 44px;
  text-align: center;
  color: var(--white);
  margin-top: 48px;
}
.cta-box-green h2 { color: var(--white); margin-bottom: 12px; }
.cta-box-green p { color: rgba(255,255,255,0.85); margin-bottom: 24px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-box-green .btn-group { justify-content: center; }

/* ============================================
   INFO CARDS (Tuckshop / Uniform)
   ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.05rem;
  color: var(--forest-green);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--warm-grey);
}

.info-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }

.info-list { margin-top: 8px; }
.info-list li {
  padding: 7px 0;
  font-size: 0.875rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--warm-grey);
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-list li:last-child { border-bottom: none; }
.info-list li::before { content: "✓"; color: var(--pine-green); font-weight: 700; flex-shrink: 0; }

.order-steps { margin-top: 12px; }
.order-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--warm-grey);
}
.order-step:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--pine-green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text { font-size: 0.875rem; color: var(--text-dark); line-height: 1.5; padding-top: 4px; }

.order-cta { margin-top: 16px; }

.info-note {
  background: var(--warm-grey);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.shop-cta-section {
  background: var(--warm-grey);
  padding: 48px 0;
  text-align: center;
}

.shop-cta-section p { font-size: 0.875rem; color: var(--text-muted); margin-top: 12px; }

/* ============================================
   GET INVOLVED
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-col h3 { font-size: 1.3rem; color: var(--forest-green); margin-bottom: 16px; }
.why-col p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }

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

.pathway-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--pine-green);
  transition: var(--transition);
}
.pathway-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.pathway-card:nth-child(1) { border-color: var(--forest-green); }
.pathway-card:nth-child(3) { border-color: var(--sage-green); }

.pathway-icon { font-size: 3rem; margin-bottom: 20px; }
.pathway-card h3 { font-size: 1.15rem; color: var(--forest-green); margin-bottom: 8px; }
.pathway-time {
  display: inline-block;
  background: var(--warm-grey);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.pathway-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }

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

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.benefit-card-icon { font-size: 2rem; margin-bottom: 10px; }
.benefit-card h3 { font-size: 0.85rem; font-weight: 700; color: var(--forest-green); }

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

.faq-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question:hover { background: var(--warm-grey); }
.faq-question.open { background: var(--forest-green); color: var(--white); }
.faq-arrow { transition: transform 0.25s ease; font-size: 1.1rem; flex-shrink: 0; margin-left: 16px; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 18px 24px;
  background: var(--warm-grey);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer.open { display: block; }

.community-quote {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%);
  border-radius: var(--radius);
  padding: 52px 48px;
  text-align: center;
}
.community-quote blockquote {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  max-width: 700px;
  margin: 0 auto 20px;
}
.community-quote cite { color: var(--sunshine); font-size: 0.85rem; font-weight: 700; font-style: normal; }

/* ============================================
   CONTACT
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 44px;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 { font-size: 1.4rem; color: var(--forest-green); margin-bottom: 8px; }
.contact-form-card p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 28px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}
.form-group label.required::after { content: " *"; color: #e53935; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pine-green);
  box-shadow: 0 0 0 3px rgba(31,122,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-detail-card h3 { font-size: 1rem; color: var(--forest-green); margin-bottom: 16px; }

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--warm-grey);
  font-size: 0.875rem;
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.contact-detail-label { font-weight: 700; color: var(--text-dark); display: block; font-size: 0.78rem; margin-bottom: 2px; }
.contact-detail-value { color: var(--text-muted); }
.contact-detail-value a { color: var(--pine-green); }
.contact-detail-value a:hover { text-decoration: underline; }

.meeting-info-card {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--pine-green) 100%);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--white);
}
.meeting-info-card h3 { color: var(--sunshine); margin-bottom: 10px; }
.meeting-info-card p { color: rgba(255,255,255,0.85); font-size: 0.875rem; line-height: 1.7; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 28px;
}

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

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pine-green);
}
.value-card:nth-child(2) { border-color: var(--sunshine); }
.value-card:nth-child(3) { border-color: var(--sage-green); }
.value-card h3 { font-size: 1rem; color: var(--forest-green); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FUNDRAISING
   ============================================ */
.impact-header {
  background: linear-gradient(135deg, var(--forest-green) 0%, #155e32 100%);
  padding: 60px 0;
  text-align: center;
}
.impact-header .big-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--sunshine);
  line-height: 1;
  margin-bottom: 8px;
}
.impact-header p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }
.impact-header .sub-note { font-size: 0.875rem; color: rgba(255,255,255,0.6); margin-top: 16px; }

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

.project-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.project-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.project-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.project-card h3 { font-size: 0.95rem; font-weight: 700; color: var(--forest-green); margin-bottom: 8px; }
.project-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

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

.event-history-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--pine-green);
  transition: var(--transition);
}
.event-history-card:hover { box-shadow: var(--shadow-hover); }
.event-history-card .event-icon { font-size: 2rem; margin-bottom: 12px; }
.event-history-card h3 { font-size: 1rem; font-weight: 700; color: var(--forest-green); margin-bottom: 8px; }
.event-history-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.warrigala-callout {
  background: linear-gradient(135deg, var(--sunshine) 0%, #e6a810 100%);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.warrigala-callout-text h3 { font-size: 1.3rem; color: var(--forest-green); margin-bottom: 8px; }
.warrigala-callout-text p { font-size: 0.95rem; color: rgba(12,79,44,0.72); }

/* ============================================
   EVENT INFO STRIP
   ============================================ */
.event-info-strip { background: var(--warm-grey); padding: 40px 0; }
.event-info-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.event-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.event-info-card .eic-icon { font-size: 2rem; margin-bottom: 8px; }
.event-info-card .eic-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 4px; }
.event-info-card .eic-value { font-size: 0.95rem; font-weight: 700; color: var(--forest-green); }

/* ============================================
   ENTERTAINMENT
   ============================================ */
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ent-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--sage-green);
  transition: var(--transition);
}
.ent-card:hover { box-shadow: var(--shadow-hover); }
.ent-card-icon { font-size: 2.5rem; margin-bottom: 12px; }
.ent-card h3 { font-size: 1rem; font-weight: 700; color: var(--forest-green); margin-bottom: 8px; }
.ent-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .quick-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .rides-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .event-info-cards { grid-template-columns: repeat(2, 1fr); }
  .internal-stalls-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .what-we-do-grid { grid-template-columns: 1fr 1fr; }
  .sponsors-grid-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .event-history-grid { grid-template-columns: 1fr 1fr; }
  .entertainment-grid { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero { min-height: 70vh; }
  .hero-overlay { background: rgba(12,79,44,0.82); }

  .what-we-do-grid,
  .gallery-grid,
  .stalls-grid,
  .pathway-grid,
  .info-grid,
  .why-grid,
  .contact-layout,
  .values-grid,
  .event-history-grid,
  .entertainment-grid { grid-template-columns: 1fr; }

  .news-grid { grid-template-columns: 1fr 1fr; }
  .food-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section { padding: 48px 0; }
  .section-lg { padding: 64px 0; }

  .warrigala-callout { flex-direction: column; text-align: center; }
  .impact-header .big-number { font-size: 4rem; }
}

@media (max-width: 540px) {
  .quick-cards-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .rides-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .internal-stalls-grid { grid-template-columns: 1fr 1fr; }
  .event-info-cards { grid-template-columns: 1fr 1fr; }

  .hero h1 { font-size: 1.8rem; }
  .countdown { gap: 8px; }
  .countdown-unit { min-width: 64px; padding: 10px 12px; }
  .countdown-number { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .cta-box-green .btn-group { flex-direction: column; align-items: center; }
}
