/* ── DM Sans Font ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/nonprofitdemo/fonts/DMSans-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/nonprofitdemo/fonts/DMSans-Medium.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/nonprofitdemo/fonts/DMSans-Bold.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/nonprofitdemo/fonts/DMSans-Italic.woff2') format('woff2');
}

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

/* ── Tokens ── */
:root {
  --bg: #FAF6EC;
  --text: #2B1F14;
  --headline: #00614F;
  --cta: #00805E;
  --cta-hover: #4BA06E;
  --card-bg: rgba(179, 214, 128, 0.15);
  --accent: #F2E0B1;
  --radius: 14px;
  --radius-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Section label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--cta);
  border-radius: 2px;
}
.section-label--light {
  color: var(--accent);
}
.section-label--light::before {
  background: var(--accent);
}

/* ── Logo placeholder ── */
.logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--cta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.logo-placeholder--sm {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
  border-radius: 8px;
}

/* ══════════════════════════════
   NAV
   ══════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250, 246, 236, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(43, 31, 20, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--headline);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.88rem;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta):hover {
  color: var(--cta);
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cta);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  transition: background 0.25s, transform 0.25s;
}
.nav-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ══════════════════════════════
   HERO
   ══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 128, 94, 0.05) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
.hero-bg-shape--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(242, 224, 177, 0.2) 0%, transparent 70%);
  top: auto;
  bottom: -150px;
  right: auto;
  left: -100px;
}

.hero-content {
  padding-left: 25%;
  flex: 1;
  animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--headline);
  margin-bottom: 6px;
}
.hero-title em {
  font-style: italic;
  color: var(--cta);
}
.hero-title-line {
  display: block;
}

.hero-sub {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(43, 31, 20, 0.45);
  letter-spacing: 0.01em;
  margin-bottom: 36px;
}

.hero-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-detail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(43, 31, 20, 0.6);
}
.hero-detail svg {
  color: var(--cta);
  flex-shrink: 0;
  display: inline;
  stroke-width: 2.5;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-visual {
  flex-shrink: 0;
  width: 320px;
  margin-right: 8%;
  opacity: 0;
  animation: heroFadeUp 1s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.court-svg {
  filter: drop-shadow(0 20px 40px rgba(0, 97, 79, 0.06));
}

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
}
.btn--primary {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 128, 94, 0.2);
}
.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 128, 94, 0.25);
}
.btn--ghost {
  background: transparent;
  color: var(--headline);
  border: 2px solid rgba(0, 97, 79, 0.18);
}
.btn--ghost:hover {
  border-color: var(--cta);
  color: var(--cta);
  transform: translateY(-2px);
}
.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn--on-dark:hover {
  border-color: #fff;
  color: #fff;
}
.btn--large {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ══════════════════════════════
   TICKER
   ══════════════════════════════ */
.ticker {
  overflow: hidden;
  padding: 20px 0;
  background: var(--headline);
}
.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: tickerScroll 22s linear infinite;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--cta-hover);
  align-self: center;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════
   MISSION
   ══════════════════════════════ */
.mission {
  padding: 110px 48px;
}
.mission-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.mission-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--headline);
  max-width: 560px;
  margin-bottom: 44px;
}
.mission-heading em {
  font-style: italic;
  color: var(--cta);
}
.mission-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.mission-col p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(43, 31, 20, 0.65);
}

/* ══════════════════════════════
   IMPACT
   ══════════════════════════════ */
.impact {
  position: relative;
  padding: 88px 48px;
  background: var(--headline);
  overflow: hidden;
}
.impact-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}
.impact-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 160, 110, 0.12) 0%, transparent 70%);
  bottom: -300px;
  right: -200px;
  pointer-events: none;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.stat {
  text-align: center;
  padding: 28px 12px;
}
.stat-number {
  display: block;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}
.impact-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  font-family: Georgia, serif;
}

/* ══════════════════════════════
   PROGRAMS
   ══════════════════════════════ */
.programs {
  padding: 110px 48px;
}
.programs-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.programs-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.programs-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  max-width: 560px;
  margin-bottom: 48px;
}
.programs-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.program-card {
  position: relative;
  padding: 36px 28px 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(43, 31, 20, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 97, 79, 0.07), 0 4px 12px rgba(0, 0, 0, 0.02);
}
.program-age-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--accent);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.program-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}
.program-time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cta);
  margin-bottom: 2px;
}
.program-dates {
  font-size: 0.8rem;
  color: rgba(43, 31, 20, 0.45);
  margin-bottom: 14px;
}
.program-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 18px;
  flex: 1;
}
.program-skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.program-skills li {
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--card-bg);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--headline);
}
.program-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cta);
  transition: color 0.25s;
}
.program-link:hover {
  color: var(--cta-hover);
}

/* ══════════════════════════════
   WHAT TO BRING
   ══════════════════════════════ */
.bring {
  padding: 88px 48px;
  background: linear-gradient(180deg, rgba(179, 214, 128, 0.06) 0%, var(--bg) 100%);
}
.bring-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.bring-text h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--headline);
  line-height: 1.25;
  margin-bottom: 16px;
}
.bring-text p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
}
.bring-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bring-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.bring-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bring-check svg {
  display: inline;
}

/* ══════════════════════════════
   BEGINNERS
   ══════════════════════════════ */
.beginners {
  padding: 72px 48px;
}
.beginners-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.beginners-ball {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}
.beginners-inner h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 14px;
}
.beginners-inner p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 10px;
}
.beginners-note {
  font-size: 0.82rem !important;
  font-style: italic;
  color: rgba(43, 31, 20, 0.4) !important;
  font-family: Georgia, serif;
}

/* ══════════════════════════════
   TEAM
   ══════════════════════════════ */
.team {
  padding: 110px 48px;
  background: #fff;
}
.team-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.team-heading {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.team-intro {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  max-width: 540px;
  margin-bottom: 48px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.team-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(43, 31, 20, 0.06);
  background: var(--bg);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.team-card:hover {
  transform: translateY(-3px);
}
.team-avatar {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--headline);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.team-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 4px;
}
.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cta);
  margin-bottom: 4px;
}
.team-exp {
  font-size: 0.75rem;
  color: rgba(43, 31, 20, 0.4);
  margin-bottom: 12px;
  min-height: 1em;
}
.team-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.55);
}

/* ══════════════════════════════
   SPONSORS
   ══════════════════════════════ */
.sponsors {
  padding: 88px 48px;
}
.sponsors-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.sponsors-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 40px;
}
.sponsors-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.sponsor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sponsor-logo-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(43, 31, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(43, 31, 20, 0.25);
  letter-spacing: 0.03em;
}
.sponsor-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* ══════════════════════════════
   VOLUNTEER CTA
   ══════════════════════════════ */
.volunteer-section {
  position: relative;
  padding: 100px 48px;
  background: var(--headline);
  text-align: center;
  overflow: hidden;
}
.volunteer-shape {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 160, 110, 0.1) 0%, transparent 60%);
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.volunteer-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}
.volunteer-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.volunteer-inner p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
}
.volunteer-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   REGISTER CTA
   ══════════════════════════════ */
.register-section {
  padding: 100px 48px;
  text-align: center;
  position: relative;
}
.register-inner {
  max-width: 540px;
  margin: 0 auto;
}
.register-ball {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.register-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 16px;
}
.register-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 28px;
}
.register-note {
  font-size: 0.85rem !important;
  color: rgba(43, 31, 20, 0.45) !important;
  margin-top: 20px !important;
}
.register-note a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════
   FOOTER
   ══════════════════════════════ */
.footer {
  padding: 64px 48px 36px;
  background: #1a3d34;
}
.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 44px;
}
.footer-brand strong {
  display: block;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 6px;
}
.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
  max-width: 340px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 0;
  margin: 0;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--cta-hover);
}
.footer-social-text {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s;
}
.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

/* ══════════════════════════════
   RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 900px) {
  .nav { padding: 14px 24px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    background: var(--bg);
    padding: 48px 32px;
    transition: right 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open { right: 0; }
  .nav-toggle { display: flex; }

  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
    min-height: auto;
  }
  .hero-content {
    padding-left: 24px;
    max-width: 100%;
  }
  .hero-visual {
    width: 100%;
    max-width: 280px;
    margin: 32px auto 0;
  }

  .mission { padding: 72px 24px; }
  .mission-columns { grid-template-columns: 1fr; gap: 20px; }

  .impact { padding: 64px 24px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .programs { padding: 72px 24px; }
  .programs-grid--3 { grid-template-columns: 1fr; }

  .bring { padding: 64px 24px; }
  .bring-inner { grid-template-columns: 1fr; gap: 32px; }

  .team { padding: 72px 24px; }
  .team-grid { grid-template-columns: 1fr; }

  .sponsors { padding: 64px 24px; }

  .volunteer-section { padding: 72px 24px; }
  .register-section { padding: 72px 24px; }

  .footer { padding: 48px 24px 28px; }
  .footer-links { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand { flex-direction: column; }
}

@media (max-width: 540px) {
  .impact-grid { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════
   SUBPAGE HERO
   ══════════════════════════════ */
.page-hero {
  padding: 160px 48px 72px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(179, 214, 128, 0.06) 100%);
}
.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 10px;
  line-height: 1.15;
}
.page-hero-sub {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(43, 31, 20, 0.5);
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  max-width: 480px;
  margin: 0 auto;
}

/* Hero perks list */
.hero-perks-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.hero-perks-list li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cta);
  position: relative;
  padding-left: 18px;
}
.hero-perks-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Registration perks */
.reg-perks {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.reg-perk {
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--card-bg);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--headline);
}

/* ══════════════════════════════
   FORMS (shared)
   ══════════════════════════════ */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.form-req {
  color: #c0392b;
}
.form-optional {
  font-weight: 400;
  color: rgba(43, 31, 20, 0.4);
}
.form-hint {
  font-weight: 400;
  font-size: 0.8rem;
  color: rgba(43, 31, 20, 0.4);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(43, 31, 20, 0.12);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(0, 128, 94, 0.08);
}
.form-group textarea {
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(43, 31, 20, 0.3);
}

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

.form-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-radio-group--inline {
  flex-direction: row;
  gap: 20px;
}
.form-radio,
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
}
.form-radio input,
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cta);
  flex-shrink: 0;
}
.form-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ══════════════════════════════
   REGISTRATION FORM
   ══════════════════════════════ */
.reg-form-section {
  padding: 60px 48px 100px;
}
.reg-form-inner {
  max-width: 640px;
  margin: 0 auto;
}

.reg-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: default;
  padding: 0 8px;
}
.reg-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  border: 2px solid rgba(43, 31, 20, 0.12);
  color: rgba(43, 31, 20, 0.3);
  background: #fff;
  transition: all 0.3s;
}
.reg-step.active .reg-step-num {
  background: var(--cta);
  border-color: var(--cta);
  color: #fff;
}
.reg-step.completed .reg-step-num {
  background: var(--card-bg);
  border-color: var(--cta-hover);
  color: var(--cta);
}
.reg-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(43, 31, 20, 0.35);
  transition: color 0.3s;
}
.reg-step.active .reg-step-label {
  color: var(--cta);
}
.reg-step.completed .reg-step-label {
  color: var(--cta-hover);
}
.reg-step-line {
  width: 32px;
  height: 2px;
  background: rgba(43, 31, 20, 0.08);
  flex-shrink: 0;
  margin-bottom: 20px;
}

.reg-panel {
  display: none;
}
.reg-panel.active {
  display: block;
  animation: panelFade 0.35s ease;
}
@keyframes panelFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reg-panel h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(43, 31, 20, 0.06);
}
.reg-nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Waiver box */
.waiver-box {
  padding: 24px;
  background: rgba(179, 214, 128, 0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(43, 31, 20, 0.06);
  margin-bottom: 24px;
}
.waiver-box p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
}

/* Confirm box */
.confirm-box {
  text-align: center;
  padding: 40px 24px;
  background: rgba(179, 214, 128, 0.06);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.confirm-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
}
.confirm-note {
  margin-top: 12px;
  font-size: 0.82rem !important;
  color: rgba(43, 31, 20, 0.4) !important;
}
.confirm-note a {
  color: var(--cta);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════
   SPONSOR PAGE
   ══════════════════════════════ */
.current-sponsors {
  padding: 88px 48px;
}
.current-sponsors-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.current-sponsors-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.current-sponsors-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  max-width: 520px;
  margin: 0 auto 40px;
}
.sponsor-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.sponsor-card {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(43, 31, 20, 0.06);
  text-align: center;
  transition: transform 0.3s;
}
.sponsor-card:hover {
  transform: translateY(-3px);
}
.sponsor-card-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--card-bg);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(43, 31, 20, 0.2);
}
.sponsor-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}
.sponsor-card-address {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(43, 31, 20, 0.5);
  margin-bottom: 14px;
}
.sponsor-card-note {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cta);
  margin: 0;
}
.current-sponsors-cta-text {
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(43, 31, 20, 0.45);
  font-family: Georgia, serif;
  margin-top: 8px;
}

/* Tiers */
.tiers {
  padding: 88px 48px;
  background: #fff;
}
.tiers-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.tiers-inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.tiers-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  max-width: 520px;
  margin: 0 auto 44px;
}
.tiers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.tier-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius);
  cursor: pointer;
  perspective: 600px;
}
.tier-front,
.tier-back {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  backface-visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.tier-front {
  background: var(--bg);
  border: 2px solid rgba(0, 128, 94, 0.12);
}
.tier-back {
  background: var(--headline);
  color: #fff;
  transform: rotateY(180deg);
}
.tier-card:hover .tier-front,
.tier-card:focus .tier-front {
  transform: rotateY(-180deg);
}
.tier-card:hover .tier-back,
.tier-card:focus .tier-back {
  transform: rotateY(0deg);
}
.tier-front h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 8px;
}
.tier-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cta);
}
.tier-hint {
  font-size: 0.72rem;
  color: rgba(43, 31, 20, 0.35);
  margin-top: 12px;
  font-style: italic;
  font-family: Georgia, serif;
}
.tier-back h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--accent);
}
.tier-back p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.tiers-disclaimer {
  padding: 24px;
  background: rgba(242, 224, 177, 0.2);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(242, 224, 177, 0.4);
}
.tiers-disclaimer p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(43, 31, 20, 0.55);
  text-align: left;
}

/* Sponsor contact form */
.sponsor-contact {
  padding: 88px 48px;
}
.sponsor-contact-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.sponsor-contact-inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.sponsor-contact-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 36px;
}
.sponsor-form,
.volunteer-form {
  text-align: left;
}

/* ══════════════════════════════
   VOLUNTEER FORM
   ══════════════════════════════ */
.vol-form-section {
  padding: 60px 48px 100px;
}
.vol-form-inner {
  max-width: 600px;
  margin: 0 auto;
}
.vol-form-inner h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(43, 31, 20, 0.06);
}

/* ══════════════════════════════
   CONTACT PAGE
   ══════════════════════════════ */
.contact-section {
  padding: 60px 48px 100px;
}
.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 12px;
}
.contact-info > p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 32px;
}
.contact-detail {
  margin-bottom: 24px;
}
.contact-detail h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(43, 31, 20, 0.4);
  margin-bottom: 6px;
}
.contact-detail a,
.contact-detail p {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.contact-detail a {
  color: var(--cta);
}
.contact-social-text {
  font-size: 0.85rem;
  color: rgba(43, 31, 20, 0.5);
  line-height: 1.6;
}
.contact-form {
  text-align: left;
}

/* ══════════════════════════════
   TEAM PAGE
   ══════════════════════════════ */
.team-page {
  padding: 60px 48px 80px;
}
.team-page-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.team-cta {
  padding: 88px 48px;
  background: linear-gradient(180deg, rgba(179, 214, 128, 0.06) 0%, var(--bg) 100%);
  text-align: center;
}
.team-cta-inner {
  max-width: 540px;
  margin: 0 auto;
}
.team-cta h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--headline);
  margin-bottom: 14px;
}
.team-cta p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(43, 31, 20, 0.6);
  margin-bottom: 32px;
}
.team-cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ══════════════════════════════
   SUBPAGE RESPONSIVE
   ══════════════════════════════ */
@media (max-width: 900px) {
  .page-hero { padding: 130px 24px 56px; }
  .reg-form-section,
  .vol-form-section { padding: 48px 24px 72px; }
  .sponsor-contact { padding: 64px 24px; }
  .current-sponsors { padding: 64px 24px; }
  .tiers { padding: 64px 24px; }
  .tiers-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-cards { grid-template-columns: 1fr; }
  .contact-section { padding: 48px 24px 72px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-page { padding: 48px 24px 64px; }
  .team-cta { padding: 64px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .reg-step-label { display: none; }
}

@media (max-width: 540px) {
  .tiers-grid { grid-template-columns: 1fr; }
  .hero-perks-list { flex-direction: column; align-items: center; }
}
