/* ========================================================================
   SOUTHERN OHIO SOLES — pages.css
   All public page sections: home hero, metrics band, how-it-works steps,
   rep spotlight, sponsor tiers, donate module, our work, our team,
   sponsors, donate page, contact, student reps, apply.
   ======================================================================== */


/* ========================================================================
   HOME PAGE — HERO
   ======================================================================== */

.home-hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.68) 100%),
    url('../assets/images/pexels-pok-rie-33563-3923721.jpg') center / cover no-repeat var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px; /* clear fixed nav */
}

/* Layered radial glows — sit above the photo/overlay, below the content */
.home-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 25%, rgba(30,92,53,0.45)  0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(61,90,71,0.18)  0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(30,92,53,0.28)  0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.home-hero__content--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero__logo {
  margin-bottom: 2rem;
}

.home-hero__h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: white;
  margin-bottom: 1.25rem;
  font-style: normal;
}

.home-hero__tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 2.25rem;
}

.home-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ---- Hero Right: Stat Cards ---- */

.home-hero__right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stat-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}

.hero-stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
}

.hero-stat-card__number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: white;
}

.hero-stat-card__number .accent { color: var(--orange-light); }

.hero-stat-card__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.4rem;
}

@media (max-width: 900px) {
  .home-hero__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .home-hero__right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .hero-stat-card { flex: 1; min-width: 180px; }
}

@media (max-width: 600px) {
  .home-hero { min-height: auto; }
  .home-hero__ctas { flex-direction: column; align-items: flex-start; }
  .home-hero__ctas .btn { width: 100%; justify-content: center; }
}


/* ========================================================================
   HOME PAGE — METRICS BAND
   ======================================================================== */

.metrics-band {
  background: var(--blue);
  padding: 3rem 0;
}

.metrics-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}

.metric-item {
  text-align: center;
  padding: 1.25rem 1rem;
  position: relative;
}

.metric-item + .metric-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}

.metric-item__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: white;
  line-height: 1;
}

.metric-item__number .accent { color: var(--orange-light); }

.metric-item__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.4rem;
}

@media (max-width: 700px) {
  .metrics-band__grid { grid-template-columns: repeat(2, 1fr); }
  .metric-item + .metric-item::before { display: none; }
  .metric-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .metric-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
}


/* ========================================================================
   HOME PAGE — HOW IT WORKS (5 Steps)
   ======================================================================== */

.steps-section { background: var(--cream); }

.steps-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.steps-section__header h2 { color: var(--navy); }
.steps-section__header p  { margin: 0.75rem auto 0; max-width: 540px; }

/* Single unified card containing all 5 steps */
.steps-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  box-shadow: var(--shadow-md);
}

.step {
  padding: 2.25rem 1.5rem;
  border-right: 1px solid var(--border-light);
  position: relative;
  transition: background 0.2s;
}

.step:last-child { border-right: none; }

/* Accent bar — scales in on hover */
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}

.step:hover { background: var(--blue-pale); }
.step:hover::before { transform: scaleX(1); }

/* Numbered circle */
.step__circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

.step:hover .step__circle {
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(61,90,71,0.1);
  transform: scale(1.1);
}

.step__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.step__desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.step:hover {
  background: linear-gradient(170deg, #edf4f0 0%, #f4f8f5 100%);
}

@media (max-width: 1000px) {
  .steps-card { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-light); }
  .step:last-child { border-bottom: none; }
  .step::before { height: 100%; width: 3px; right: auto; bottom: 0; transform: scaleY(0); transform-origin: top; }
  .step:hover::before { transform: scaleY(1); }
}


/* ========================================================================
   HOME PAGE — REP SPOTLIGHT
   ======================================================================== */

.rep-spotlight {
  background: var(--navy);
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

.rep-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}

.rep-spotlight__inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

/* Left visual card */
.rep-spotlight-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
}

.rep-spotlight-card__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  display: block;
}

.rep-stat-list { list-style: none; }

.rep-stat-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.875rem;
}

.rep-stat-list li:last-child { border-bottom: none; }
.rep-stat-list__key { color: rgba(255,255,255,0.55); font-weight: 400; }
.rep-stat-list__val { color: white; font-weight: 600; }

/* Right: heading + benefit tiles */
.rep-spotlight__right h2 { color: white; }
.rep-spotlight__right > p { color: rgba(255,255,255,0.65); margin-top: 0.75rem; }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.benefit-tile {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.benefit-tile:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,98,42,0.35);
  transform: translateY(-2px);
}

.benefit-tile__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(61,90,71,0.14);
  border-radius: var(--radius-sm);
  margin: 0 auto 0.75rem;
}

.benefit-tile__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange-light);
  stroke-width: 1.5;
}

.benefit-tile__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}

@media (max-width: 900px) {
  .rep-spotlight__inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 500px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ========================================================================
   HOME PAGE — SPONSOR TIERS PREVIEW
   ======================================================================== */

.sponsors-preview { background: var(--cream); }

.sponsors-preview__header {
  text-align: center;
  margin-bottom: 2rem;
}

.sponsors-preview__header h2 { color: var(--navy); }
.sponsors-preview__header p  { margin: 0.75rem auto 0; max-width: 500px; }

.tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.tier-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s;
}

.tier-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tier-card--gold {
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  transform: scale(1.025);
}
.tier-card--gold:hover   { transform: scale(1.025) translateY(-4px); }
.tier-card--silver       { border-top: 4px solid var(--silver); }
.tier-card--bronze       { border-top: 4px solid var(--bronze); }

.tier-card__header {
  padding: 1.25rem 1.5rem 1rem;
  border-bottom: 1px solid var(--border-light);
}

.tier-card__tier-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.tier-card--gold   .tier-card__tier-label { color: var(--gold); }
.tier-card--silver .tier-card__tier-label { color: var(--silver); }
.tier-card--bronze .tier-card__tier-label { color: var(--bronze); }

.tier-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  text-align: center;
}

.tier-card__body {
  padding: 1.5rem 1.75rem;
}

.tier-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.tier-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tier-benefits li {
  font-size: 0.83rem;
  color: var(--text-mid);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  line-height: 1.45;
}

.tier-benefits li:last-child { border-bottom: none; }

/* CSS check icon — no emoji */
.tier-benefits li::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--forest);
  flex-shrink: 0;
  margin-top: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='none' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 4l2.5 2.5L9 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.tier-card__footer {
  padding: 0.75rem 1.5rem 1.25rem;
}

@media (max-width: 800px) {
  .tier-cards-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .tier-card--gold { transform: none; }
  .tier-card--gold:hover { transform: translateY(-4px); }
}


/* ========================================================================
   HOME PAGE — DONATE MODULE
   ======================================================================== */

.donate-module {
  background: transparent;
  position: relative;
  overflow: hidden;
}

.donate-module__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.donate-module__img-col {
  display: flex;
  align-items: stretch;
  min-height: 0;
}

.donate-module__img-col .donate-img:hover {
  transform: scale(1.02);
}

.donate-module__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.donate-module__left { text-align: center; }
.donate-module__left h2 { color: white; margin-bottom: 0; }
.donate-module__left p  { color: rgba(255,255,255,0.7); margin-top: 0; }

.donate-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.donate-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

/* One-time / Monthly toggle */
.freq-toggle {
  display: flex;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 3px;
  margin-bottom: 1.5rem;
}

.freq-btn {
  flex: 1;
  padding: 0.55rem;
  border: none;
  background: transparent;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.freq-btn.active {
  background: white;
  color: var(--navy);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

/* Preset amount grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.amount-btn {
  padding: 0.6rem 0.25rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.amount-btn:hover { border-color: var(--orange); color: var(--orange); }

.amount-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

/* Custom amount */
.custom-amount-wrap {
  position: relative;
  margin-bottom: 1.25rem;
}

.custom-amount-wrap .currency {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
  pointer-events: none;
}

.custom-amount-input {
  width: 100%;
  padding: 0.7rem 0.9rem 0.7rem 1.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.custom-amount-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(61,90,71,0.1);
}

.donate-card__fees {
  margin-bottom: 1.25rem;
}

.donate-card__submit { width: 100%; }

.donate-success {
  display: none;
  text-align: center;
  padding: 1.25rem;
  background: #D1FAE5;
  border-radius: var(--radius-md);
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--forest);
  font-weight: 600;
}

@media (max-width: 800px) {
  .donate-module__inner { grid-template-columns: 1fr; gap: 2rem; }
  .donate-module__img-col { min-height: 260px; }
}

@media (max-width: 480px) {
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ========================================================================
   OUR WORK PAGE
   ======================================================================== */

.narrative-section { background: var(--warm-white); }

.narrative-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  font-weight: 400;
  max-width: 72ch;
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item:last-child { margin-bottom: 0; }

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

.timeline-item__year {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.03em;
  margin-bottom: 0.3rem;
}

.timeline-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}

.timeline-item__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Detailed 5-step process section */
.process-detail { background: var(--cream); }

.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.process-step-item__num {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.process-step-item__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.process-step-item__desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.process-step-item__note {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}


/* ========================================================================
   OUR WORK PAGE — WHERE WE SERVE MAP
   ======================================================================== */

.where-we-serve { background: var(--warm-white); }

.where-we-serve__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.where-we-serve__map-wrap {
  display: flex;
  justify-content: center;
}

.ohio-map {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 32px rgba(15,31,61,0.1));
}

.county-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.county-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}

.county-list__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

.expansion-note {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--border-light);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
}

.expansion-note p {
  font-size: 0.875rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .where-we-serve__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ohio-map { max-width: 320px; }
}


/* ========================================================================
   OUR TEAM PAGE
   ======================================================================== */

/* Letter avatars */
.avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

.avatar--lg { width: 72px; height: 72px; font-size: 1.8rem; background: var(--navy); }
.avatar--md { width: 56px; height: 56px; font-size: 1.4rem; background: var(--navy-mid); }
.avatar--sm { width: 44px; height: 44px; font-size: 1.1rem; background: var(--navy); }
.avatar--founder { background: var(--orange) !important; }

/* Leadership section */
.leadership-section { background: var(--warm-white); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.leader-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.leader-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.leader-card--founder { border-top: 3px solid var(--orange); }

.leader-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.leader-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.leader-card__role {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 0.1rem;
}

.leader-card__bio {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ======================================================================== */
/* TEAM MEMBER CARDS                                                         */
/* ======================================================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.team-card__photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1e2e23 0%, #2a3d31 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.team-card__body {
  padding: 1.1rem 1rem 1.4rem;
}

.team-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}

.team-card__role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  color: var(--text-mid);
  font-weight: 500;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.team-card__link {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  border: 1px solid var(--blue);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  transition: background 0.18s, color 0.18s;
}

.team-card__link:hover {
  background: var(--blue);
  color: white;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 580px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* ======================================================================== */
/* TEAM MEMBER BIO PAGES                                                     */
/* ======================================================================== */

.bio-section {
  background: var(--warm-white);
}

.bio-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4.5rem;
  align-items: start;
}

.bio-photo {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: var(--shadow-md);
}

.bio-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1e2e23 0%, #2a3d31 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  box-shadow: var(--shadow-md);
}

.bio-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: gap 0.18s;
}

.bio-back:hover { gap: 0.7rem; }

.bio-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  line-height: 1.15;
}

.bio-role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.bio-divider {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.bio-text p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}

.bio-text p:last-child { margin-bottom: 0; }

@media (max-width: 720px) {
  .bio-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bio-photo-placeholder { aspect-ratio: 3/2; font-size: 3rem; }
}

/* Student reps section */
.reps-section { background: var(--cream); }

/* District filter buttons */
.district-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 2rem 0;
}

.filter-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}

.filter-btn:hover { border-color: var(--blue-mid); color: var(--blue-mid); }

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

/* Rep cards */
.reps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
}

.rep-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}

.rep-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.rep-card__avatar { margin: 0 auto 1rem; }

.rep-card__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}

.rep-card__role-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.rep-card__district {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-mid);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.rep-card.hidden { display: none; }


/* ========================================================================
   SPONSORS PAGE — FULL
   ======================================================================== */

.sponsors-full { background: var(--warm-white); }

/* Reuses .tier-card from sponsors preview */
.tier-benefits--full li { font-size: 0.875rem; padding: 0.55rem 0; }

.sponsors-cta {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.sponsors-cta h3 { color: var(--navy); margin-bottom: 0.75rem; }
.sponsors-cta p  { max-width: 480px; margin: 0 auto 1.75rem; }


/* ========================================================================
   DONATE PAGE
   ======================================================================== */

.donate-page { background: var(--cream); }

.donate-page__inner {
  max-width: 580px;
  margin: 0 auto;
}

.donation-impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.impact-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.impact-item__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.02em;
  line-height: 1;
}

.impact-item__desc {
  font-size: 0.8rem;
  color: var(--text-mid);
  margin-top: 0.4rem;
  line-height: 1.5;
}

.donate-page .donate-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

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


/* ========================================================================
   CONTACT PAGE
   ======================================================================== */

.contact-page { background: var(--warm-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-card {
  background: var(--blue-pale);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-card__icon {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card__icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: white;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.contact-info-card__value {
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info-card__value a {
  color: var(--navy);
  font-weight: 500;
}

.contact-info-card__value a:hover { color: var(--orange); }

/* Counselor callout */
.counselor-callout {
  background: var(--orange-pale);
  border: 1px solid rgba(61,90,71,0.16);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.counselor-callout__title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.counselor-callout p {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-submit-msg {
  display: none;
  background: #D1FAE5;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--forest);
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ========================================================================
   STUDENT REPS PAGE
   ======================================================================== */

/* Blurred photo hero */
.reps-hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

.reps-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reps-hero__left h1     { color: white; }
.reps-hero__left > p    { color: rgba(255,255,255,0.68); margin-top: 1rem; max-width: 480px; }

.reps-hero__ctas {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Eligibility card */
.eligibility-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.eligibility-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.checklist__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: rgba(46,138,80,0.25);
  border: 1px solid rgba(46,138,80,0.5);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist__check::after {
  content: '';
  display: block;
  width: 10px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath fill='none' stroke='%232E8A50' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 4l2.5 2.5L9 1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Benefits section */
.reps-benefits { background: var(--cream); }

.reps-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--blue-light);
}

.benefit-card__num {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 0.01em;
  margin-bottom: 0.75rem;
  display: block;
}

.benefit-card__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}

.benefit-card__desc {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Apply CTA section */
.reps-apply-cta {
  background: linear-gradient(160deg, #0a1610 0%, #111d15 55%, #0d1912 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reps-apply-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(30,92,53,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.reps-apply-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.reps-apply-cta h2 { color: white; }
.reps-apply-cta > .reps-apply-cta__inner p { color: rgba(255,255,255,0.68); margin: 1rem 0 2rem; }

.btn-group {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .reps-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .reps-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .reps-benefits-grid { grid-template-columns: 1fr; }
  .reps-hero { padding: 5rem 0 3rem; }
}


/* ========================================================================
   APPLY PAGE
   ======================================================================== */

.apply-section { background: var(--cream); }

.apply-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
}

/* Deadline banner — flush top of card */
.apply-deadline {
  background: var(--blue);
  color: white;
  padding: 1.4rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.apply-deadline__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.2rem;
}

.apply-deadline__date {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.apply-deadline__note {
  font-family: 'Poppins', sans-serif;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.5);
  text-align: right;
  flex-shrink: 0;
}

/* Card body */
.apply-card__body {
  padding: 2.25rem 2.5rem 2.5rem;
}

/* Requirements heading */
.apply-requirements__heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 1.1rem;
}

/* Requirement list */
.apply-req-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0;
}

.apply-req-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}

.apply-req-item:first-child { padding-top: 0; }
.apply-req-item:last-child { border-bottom: none; }

.apply-req-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 0.42rem;
}

.apply-req-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.apply-req-content strong {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.apply-req-content span {
  font-family: 'Poppins', sans-serif;
  font-size: 0.815rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* CTA block */
.apply-cta {
  text-align: center;
  padding: 2rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.apply-cta__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.apply-cta__btn {
  display: inline-block;
  text-decoration: none;
}



/* ========================================================================
   REP ACCORDIONS
   ======================================================================== */

/* ── Rep sections (flat, always visible) ── */

.rep-sections {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.rep-section__heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.rep-section__title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.rep-section__rule {
  display: block;
  flex: 1;
  height: 1px;
  background: var(--border);
}

.rep-section--alumni .rep-section__title {
  color: var(--text-mid);
}

/* Responsive grids */
.rep-grid {
  display: grid;
  gap: 0.85rem;
}

.rep-grid--2 { grid-template-columns: repeat(2, 1fr); }
.rep-grid--3 { grid-template-columns: repeat(3, 1fr); }
.rep-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .rep-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .rep-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .rep-grid--2,
  .rep-grid--3,
  .rep-grid--4 { grid-template-columns: 1fr; }
}

/* District card */
.rep-district-block {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.25rem 0.9rem;
}

.rep-district-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.rep-section--alumni .rep-district-label {
  color: var(--text-light);
}

/* Individual rep rows */
.rep-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.rep-row:first-of-type { padding-top: 0; }
.rep-row:last-child { border-bottom: none; padding-bottom: 0; }

.rep-row__initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.rep-row__initials--lead {
  background: var(--blue);
  color: white;
}

.rep-row__initials--alumni {
  background: #e8e8e8;
  color: #999;
}

.rep-row__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  flex: 1;
}

.rep-section--alumni .rep-row__name {
  color: var(--text-mid);
  font-weight: 500;
}

.rep-row__role {
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
}

.rep-row__years {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
  text-align: right;
}

/* ========================================================================
   VISUAL POLISH — ANIMATIONS, DEPTH, MICRO-INTERACTIONS
   Enhancement layer applied over existing component styles.
   ======================================================================== */


/* ---- HOME HERO: display headline -------------------------------------- */

.home-hero__h1 {
  font-style: normal;
}




/* ---- HOME HERO: staggered entrance animations ------------------------- */

.home-hero__logo    { animation: fadeUp 0.8s 0.05s cubic-bezier(0.22,1,0.36,1) both; }
.home-hero .eyebrow { animation: fadeUp 0.8s 0.18s cubic-bezier(0.22,1,0.36,1) both; }
.home-hero__h1      { animation: fadeUp 0.8s 0.30s cubic-bezier(0.22,1,0.36,1) both; }
.home-hero__tagline { animation: fadeUp 0.8s 0.40s cubic-bezier(0.22,1,0.36,1) both; }
.home-hero__ctas    { animation: fadeUp 0.8s 0.50s cubic-bezier(0.22,1,0.36,1) both; }


/* ---- METRICS BAND: editorial, larger numbers -------------------------- */

.metric-item__number {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
}

.metric-item__number::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.32);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}



/* ---- BENEFIT TILES (home rep spotlight): tactile hover ---------------- */

.benefit-tile {
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.benefit-tile:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px rgba(61,90,71,0.18);
}

.benefit-tile__icon {
  width: 42px;
  height: 42px;
  transition: background 0.25s, transform 0.25s;
}

.benefit-tile:hover .benefit-tile__icon {
  background: rgba(61,90,71,0.22);
  transform: translateY(-2px) scale(1.1);
}


/* ---- SPONSOR TIERS: Gold card ----------------------------------------- */

.tier-card--gold {
  background: linear-gradient(150deg, #ffffff 0%, #fdfbf0 100%);
}

/* Silver: cool-green tint */
.tier-card--silver {
  background: linear-gradient(150deg, #ffffff 0%, #f0f6f2 100%);
}

/* Bronze: warm parchment */
.tier-card--bronze {
  background: linear-gradient(150deg, #ffffff 0%, #fdf7ef 100%);
}


/* ---- BENEFIT CARDS (reps page): left border + large background number - */

.benefit-card {
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s, background 0.25s;
}

.reps-benefits-grid {
  counter-reset: bcard;
}

.benefit-card {
  counter-increment: bcard;
}

.benefit-card::after {
  content: "0" counter(bcard);
  position: absolute;
  bottom: -1rem;
  right: 0.75rem;
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: 6rem;
  color: rgba(15,31,61,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.benefit-card:hover {
  border-left-color: var(--orange);
  transform: translateY(-3px) translateX(2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.09), -2px 0 0 var(--orange);
}


/* ---- ELIGIBILITY CARD (reps hero): richer shadow ---------------------- */

.eligibility-card {
  box-shadow: 0 24px 64px rgba(0,0,0,0.32), 0 2px 8px rgba(0,0,0,0.18);
  border-color: rgba(255,255,255,0.16);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.eligibility-card:hover {
  border-color: rgba(61,90,71,0.2);
  box-shadow: 0 28px 72px rgba(0,0,0,0.36), 0 0 0 1px rgba(61,90,71,0.16);
}


/* ---- REPS PAGE: staggered entrance animations ------------------------- */

.reps-hero__left .eyebrow { animation: fadeUp 0.8s 0.05s cubic-bezier(0.22,1,0.36,1) both; }
.reps-hero__left h1       { animation: fadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.reps-hero__left > p      { animation: fadeUp 0.8s 0.25s cubic-bezier(0.22,1,0.36,1) both; }
.reps-hero__ctas          { animation: fadeUp 0.8s 0.35s cubic-bezier(0.22,1,0.36,1) both; }
.eligibility-card         { animation: fadeUp 0.8s 0.20s cubic-bezier(0.22,1,0.36,1) both; }


/* ---- REPS CTA SECTION: atmosphere + depth ----------------------------- */

.reps-apply-cta {
  overflow: hidden;
}

.reps-apply-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(61,90,71,0.11) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.reps-apply-cta__inner {
  position: relative;
  z-index: 1;
}


/* ---- INTERIOR PAGE HEROES: entrance animations ------------------------ */

.page-hero__inner .eyebrow { animation: fadeUp 0.8s 0.05s cubic-bezier(0.22,1,0.36,1) both; }
.page-hero__inner h1       { animation: fadeUp 0.8s 0.15s cubic-bezier(0.22,1,0.36,1) both; }
.page-hero__inner p        { animation: fadeUp 0.8s 0.25s cubic-bezier(0.22,1,0.36,1) both; }


/* ---- FOOTER: subtle gradient hairline at top ------------------- */

.footer {
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(61,90,71,0.18) 20%,
    rgba(61,90,71,0.4) 50%,
    rgba(61,90,71,0.18) 80%,
    transparent 100%
  );
}


/* ========================================================================
   MOBILE RESPONSIVE ADDITIONS
   ======================================================================== */

/* Metrics band: collapse to single column on very small phones */
@media (max-width: 480px) {
  .metrics-band__grid {
    grid-template-columns: 1fr;
  }
  .metric-item:nth-child(odd) { border-right: none; }
}

/* Team grid: single column on very small phones */
@media (max-width: 400px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* Apply, Contact, Sponsors: reduce inner card padding on mobile */
@media (max-width: 600px) {
  .apply-card__body   { padding: 1.75rem 1.25rem 2rem; }
  .apply-deadline     { padding: 1.25rem 1.5rem; }
  .contact-form-card  { padding: 1.5rem; }
  .sponsors-cta       { padding: 2rem 1.5rem; }
  .reps-hero__left > p { max-width: none; }
}


/* ========================================================================
   COMPREHENSIVE MOBILE OVERRIDES (max-width: 768px)
   All mobile-only fixes appended here. Desktop styles are untouched.
   ======================================================================== */

@media (max-width: 768px) {

  /* ---- HOME HERO ---- */
  .home-hero { min-height: auto; padding: 3rem 0; }
  .home-hero__logo img { height: 100px !important; }
  .home-hero__h1 { font-size: 2rem !important; }
  .home-hero__ctas { flex-direction: row !important; flex-wrap: nowrap; gap: 0.75rem; justify-content: center; align-items: center; }
  .home-hero__ctas .btn { flex: 1; justify-content: center; width: auto !important; min-width: 0; }

  /* ---- FOUNDING STORY / WHO WE ARE ---- */
  .founding-story-grid { grid-template-columns: 1fr !important; min-height: auto !important; }
  .founding-story-img  { display: none !important; }
  .founding-story-text { padding: 2rem 1.5rem !important; }

  /* ---- METRICS BAND ---- */
  .metrics-band__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .metric-item__number { font-size: 1.75rem; }

  /* ---- STEPS SECTION (Our Process) ---- */
  .steps-section { padding-top: 1rem !important; }
  .steps-section__header { margin-bottom: 1.5rem; }
  .steps-card { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-light); padding: 1.25rem 1rem; }
  .step:last-child { border-bottom: none; }

  /* ---- REP SPOTLIGHT SECTION ---- */
  .rep-section-grid { grid-template-columns: 1fr !important; }
  .rep-section-img  { display: none !important; }
  .rep-section-text { padding: 2rem 1.5rem !important; }

  /* ---- SPONSOR TIERS PREVIEW ---- */
  .tier-cards-grid { grid-template-columns: 1fr !important; gap: 1rem; }

  /* ---- DONATE MODULE ---- */
  .donate-module__inner { flex-direction: column; gap: 1.5rem; }
  .donate-module__img-col { display: none !important; }
  .donate-module__right { width: 100%; }
  .donate-card { padding: 1.5rem 1rem; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .amount-btn  { padding: 0.6rem 0.25rem; font-size: 0.85rem; }
  .donate-card__submit { width: 100%; }

  /* ---- PAGE HEROES (interior pages) ---- */
  .page-hero { padding: 7rem 0 2rem; }
  .reps-hero { padding-top: 7rem; }
  .page-hero__inner h1 { font-size: 2rem !important; }
  .page-hero__inner p  { font-size: 0.95rem; }

  /* ---- PROCESS DETAIL (our-work.html) ---- */
  .process-detail { padding: 2.5rem 0; }
  .process-steps-list { gap: 1.5rem; }
  .process-step-item { flex-direction: column; gap: 0.5rem; }
  .process-step-item__num { font-size: 1.5rem; }

  /* ---- COUNTY MAP ---- */
  .county-map-layout { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .county-map-wrap { max-width: 100%; }
  .county-popup { width: calc(100% - 2rem); max-width: none; }

  /* ---- SPONSORS PAGE ---- */
  .sponsors-full .tier-cards-grid { grid-template-columns: 1fr !important; }
  .tier-card { padding: 1.25rem; }
  .sponsors-cta { text-align: center; padding: 1.5rem; }
  .sponsors-cta .btn-group { flex-direction: column; align-items: stretch; }
  .sponsors-cta .btn-group .btn { width: 100%; justify-content: center; }

  /* ---- OUR TEAM ---- */
  .team-grid { grid-template-columns: 1fr 1fr !important; }
  .team-card img { max-height: 200px; object-fit: cover; }

  /* ---- STUDENT REPS ---- */
  .reps-hero__inner { flex-direction: column; gap: 1.5rem; }
  .reps-hero__left  { padding: 2rem 1.5rem 0; }
  .eligibility-card { margin: 0 1rem 2rem; }
  .reps-benefits-grid { grid-template-columns: 1fr !important; gap: 1rem; }
  .benefit-card { padding: 1.25rem; }
  .rep-sections { gap: 2rem; }
  .rep-grid { grid-template-columns: 1fr !important; }
  .rep-grid--2,
  .rep-grid--3,
  .rep-grid--4 { grid-template-columns: 1fr !important; }

  /* ---- APPLY PAGE ---- */
  .apply-card { padding: 0; border-radius: 12px; overflow: hidden; }
  .apply-deadline { padding: 1rem 1.25rem; }
  .apply-card__body { padding: 1.5rem 1.25rem; }
  .apply-req-list { gap: 1rem; }
  .apply-cta { margin-top: 1.5rem; }
  .apply-cta__btn { width: 100%; justify-content: center; }

  /* ---- CONTACT PAGE ---- */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-card { padding: 1.5rem; }

  /* ---- DONATE PAGE ---- */
  .donate-page-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .donate-page .donate-card { padding: 1.5rem 1rem; }

}
