/* ============================================================
   WILD SOULS PATHWAYS — Main Stylesheet
   wildsoulspathways.org
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --forest:      #2C3E2D;
  --earth:       #5C4A1E;
  --tan:         #7A6A4F;
  --lttan:       #C4B49A;
  --pale-green:  #EAF0E8;
  --cream:       #F5EFE6;
  --near-black:  #1A1A1A;
  --white:       #FFFFFF;

  --font-main: Georgia, 'Times New Roman', serif;
  --font-mono: 'Courier New', Courier, monospace;

  --max-width: 1080px;
  --reading-width: 720px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--cream);
  color: var(--near-black);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--earth); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--forest); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-main);
  font-weight: bold;
  line-height: 1.25;
  color: var(--forest);
}

h1 { font-size: 2.4rem; letter-spacing: 0.04em; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--earth); }
h4 { font-size: 1.1rem; font-style: italic; color: var(--forest); }

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

em, i { font-style: italic; color: var(--tan); }

.small { font-size: 0.85rem; color: var(--tan); }
.uppercase { text-transform: uppercase; letter-spacing: 0.12em; }
.centered { text-align: center; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.reading {
  max-width: var(--reading-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: var(--forest);
  color: var(--cream);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark p { color: rgba(245,239,230,0.92); }
.section--dark a { color: var(--lttan); }
.section--dark a:hover { color: var(--cream); }
.section--dark em { color: rgba(245,239,230,0.78); }

.section--pale-green { background: var(--pale-green); }
.section--cream { background: var(--cream); }
.section--earth { background: var(--earth); color: var(--cream); }
.section--earth h1,
.section--earth h2,
.section--earth h3 { color: var(--cream); }
.section--earth p { color: rgba(245,239,230,0.95); }

/* ── RULE / DIVIDER ─────────────────────────────────────────── */
.rule {
  border: none;
  border-top: 1px solid var(--lttan);
  margin: 2rem 0;
}
.rule--heavy {
  border-top-width: 2px;
  border-color: var(--forest);
}

/* ── NAVIGATION ─────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--cream);
  border-bottom: 1px solid var(--lttan);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(44,62,45,0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-logo-text {
  font-size: 0.9rem;
  font-weight: bold;
  color: var(--forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.65rem;
  color: var(--tan);
  font-weight: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: bold;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--earth); }
.nav-links a.active { color: var(--earth); border-bottom: 1px solid var(--earth); }

.nav-donate {
  font-size: 0.75rem !important;
  letter-spacing: 0.12em;
  border: 1.5px solid var(--earth) !important;
  padding: 0.4rem 1rem;
  border-radius: 2px;
  color: var(--earth) !important;
}
.nav-donate:hover {
  background: var(--earth);
  color: var(--cream) !important;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest);
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--forest);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: bold;
}
.mobile-menu a:hover { color: var(--lttan); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ── SUB-NAV ─────────────────────────────────────────────────── */
.sub-nav {
  background: var(--pale-green);
  border-bottom: 1px solid var(--lttan);
  margin-top: 72px;
}
.sub-nav-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 2rem;
  overflow-x: auto;
}
.sub-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
  padding-bottom: 2px;
}
.sub-nav a:hover,
.sub-nav a.active {
  color: var(--earth);
  border-bottom: 1px solid var(--earth);
}

/* ── PAGE HERO ───────────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 72px;
}

.page-hero--short {
  min-height: 50vh;
}

.page-hero--program {
  min-height: 60vh;
  background: var(--forest);
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,62,45,0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
}

.hero-content h1 {
  color: var(--cream);
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
}

.hero-content p {
  color: rgba(245,239,230,0.88);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--cream {
  background: var(--cream);
  color: var(--forest);
  border-color: var(--cream);
}
.btn--cream:hover {
  background: transparent;
  color: var(--cream);
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--forest);
}

.btn--forest {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.btn--forest:hover {
  background: transparent;
  color: var(--forest);
}

.btn--outline-earth {
  background: transparent;
  color: var(--earth);
  border-color: var(--earth);
}
.btn--outline-earth:hover {
  background: var(--earth);
  color: var(--cream);
}

/* ── PROGRAM CARDS ───────────────────────────────────────────── */
.program-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.program-card {
  padding: 5rem 4rem;
  text-align: center;
}
.program-card--fk { background: var(--pale-green); }
.program-card--13m { background: var(--cream); }

.program-card img {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  object-fit: contain;
}

.program-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--forest);
}

.program-card p {
  font-size: 0.95rem;
  color: var(--tan);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.program-card a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  border-bottom: 1px solid var(--lttan);
  padding-bottom: 2px;
}
.program-card a:hover {
  color: var(--forest);
  border-color: var(--forest);
}

/* ── VOW BLOCK ───────────────────────────────────────────────── */
.vow-block {
  background: var(--forest);
  padding: 4rem 3rem;
  text-align: center;
  border-top: 3px solid var(--lttan);
  border-bottom: 3px solid var(--lttan);
  margin: 3rem 0;
}

.vow-block blockquote {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.vow-block cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lttan);
  font-style: normal;
}

/* ── PULL QUOTE ──────────────────────────────────────────────── */
.pull-quote {
  text-align: center;
  padding: 3rem 2rem;
}
.pull-quote p {
  font-size: 1.4rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}
.pull-quote .rule { max-width: 120px; margin: 1.5rem auto; }

/* ── THREE PILLARS ───────────────────────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem 0;
}

.pillar {
  text-align: center;
}
.pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.pillar h3 {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--tan);
  line-height: 1.8;
}

/* ── MOVEMENTS / TIMELINE ────────────────────────────────────── */
.movements {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.movement {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--lttan);
  text-align: center;
}
.movement:last-child { border-right: none; }
.movement:nth-child(odd) { background: var(--pale-green); }
.movement:nth-child(even) { background: var(--cream); }

.movement-season {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lttan);
  margin-bottom: 0.5rem;
  display: block;
}

.movement h3 {
  font-size: 1rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  color: var(--forest);
}

.movement p {
  font-size: 0.85rem;
  color: var(--tan);
  line-height: 1.7;
}

/* ── CALENDAR TABLE ──────────────────────────────────────────── */
.calendar-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 2rem 0;
}

.calendar-table thead tr {
  background: var(--forest);
  color: var(--cream);
}
.calendar-table thead th {
  padding: 0.9rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: bold;
}

.calendar-table tbody tr:nth-child(odd) { background: var(--pale-green); }
.calendar-table tbody tr:nth-child(even) { background: var(--cream); }

.calendar-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--lttan);
  vertical-align: top;
  color: var(--near-black);
}

.calendar-table td:first-child {
  font-weight: bold;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  white-space: nowrap;
}
.calendar-table td:nth-child(2) {
  font-weight: bold;
  color: var(--earth);
  white-space: nowrap;
}
.calendar-table td:nth-child(3) {
  font-style: italic;
  color: var(--tan);
  font-size: 0.85rem;
}

/* ── MENTOR CARDS ────────────────────────────────────────────── */
.mentor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  padding: 2rem 0;
}

.mentor-card {
  text-align: center;
}

.mentor-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--pale-green);
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--lttan);
  overflow: hidden;
  font-size: 3rem;
}

.mentor-card h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.mentor-card .role {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--earth);
  margin-bottom: 0.75rem;
  display: block;
}

.mentor-card p {
  font-size: 0.85rem;
  color: var(--tan);
  line-height: 1.75;
}

/* ── DONATION TIERS ──────────────────────────────────────────── */
.donation-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.donation-tier {
  background: var(--cream);
  border: 1px solid var(--lttan);
  border-top: 4px solid var(--forest);
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
}

.tier-amount {
  font-size: 2rem;
  font-weight: bold;
  color: var(--forest);
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.tier-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: bold;
  display: block;
  margin-bottom: 1rem;
}

.tier-desc {
  font-size: 0.85rem;
  color: var(--tan);
  line-height: 1.7;
}

/* ── IMAGE SECTION ───────────────────────────────────────────── */
.image-section {
  position: relative;
  height: 420px;
  overflow: hidden;
}

.image-section .hero-bg {
  filter: brightness(0.75);
}

.image-section-text {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--cream);
  z-index: 2;
}

.image-section-text p {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.8);
  margin: 0;
}

/* ── NOT-THIS ────────────────────────────────────────────────── */
.not-this {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.not-this-item {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(196,180,154,0.3);
  text-align: center;
}
.not-this-item:last-child { border-right: none; }
.not-this-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lttan);
  display: block;
  margin-bottom: 0.75rem;
}
.not-this-item h3 {
  font-size: 1.1rem;
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.75rem;
}
.not-this-item p {
  font-size: 0.9rem;
  color: rgba(196,180,154,0.85);
  line-height: 1.75;
}

/* ── BOARD MEMBER ────────────────────────────────────────────── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.board-member {
  text-align: center;
}
.board-member h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.2rem;
}
.board-member .title {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--earth);
  display: block;
  margin-bottom: 0.75rem;
}
.board-member p {
  font-size: 0.9rem;
  color: var(--tan);
  line-height: 1.75;
}

/* ── PROGRAM LOGO HERO ───────────────────────────────────────── */
.program-hero {
  background: var(--forest);
  padding: 5rem 2rem;
  text-align: center;
  margin-top: 72px;
}
.program-hero img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  margin: 0 auto 2rem;
}
.program-hero h1 {
  color: var(--cream);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.program-hero p {
  color: var(--lttan);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── ROLES LIST ──────────────────────────────────────────────── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.role-item {
  background: var(--pale-green);
  border-left: 3px solid var(--lttan);
  padding: 1.2rem 1.5rem;
}
.role-name {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--earth);
  font-weight: bold;
  display: block;
  margin-bottom: 0.3rem;
}
.role-item p {
  font-size: 0.88rem;
  color: var(--tan);
  line-height: 1.65;
  margin: 0;
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-center {
  text-align: center;
  padding: 6rem 2rem;
}
.contact-center img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 0 auto 2rem;
}
.contact-email {
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--earth);
  display: block;
  margin: 1.5rem 0 0.5rem;
}
.contact-address {
  font-size: 0.9rem;
  color: var(--tan);
  font-style: italic;
  line-height: 1.8;
}

/* ── INVITATION SECTION ──────────────────────────────────────── */
.invitation-block {
  background: var(--pale-green);
  border: 1px solid var(--lttan);
  border-left: 4px solid var(--forest);
  padding: 2.5rem 3rem;
  margin: 2rem 0;
  border-radius: 2px;
}
.invitation-block p {
  font-size: 1.05rem;
  color: var(--forest);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.invitation-block p:last-child { margin-bottom: 0; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(196,180,154,0.3);
  margin-bottom: 2rem;
}

.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-logos img {
  height: 70px;
  width: auto;
  opacity: 0.9;
}

.footer-nav h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lttan);
  margin-bottom: 1rem;
  font-style: normal;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 0.4rem; }
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(245,239,230,0.88);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--cream); }

.footer-org h4 {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lttan);
  margin-bottom: 1rem;
  font-style: normal;
}
.footer-org p {
  font-size: 0.82rem;
  color: rgba(245,239,230,0.82);
  line-height: 1.8;
  margin-bottom: 0.3rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(196,180,154,0.85);
  margin: 0;
}

/* ── SCROLL ANIMATIONS ───────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITIES ───────────────────────────────────────────────── */
.text-forest { color: var(--forest); }
.text-earth { color: var(--earth); }
.text-tan { color: var(--tan); }
.text-cream { color: var(--cream); }
.text-lttan { color: var(--lttan); }

.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }


/* ── OUR ROOTS TEACHER GRID — MOBILE ────────────────────────── */
.teacher-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--lttan);
  align-items: start;
}
.teacher-row:last-child { border-bottom: none; }
.teacher-row-dark {
  border-bottom-color: rgba(196,180,154,0.25);
}

/* ── PRINT STYLES ────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .sub-nav, .hero-buttons { display: none !important; }
  .section { padding: 1rem 0; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .calendar-table td, .calendar-table th { border: 1px solid #ccc; }
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  html { font-size: 16px; }
  .movements { grid-template-columns: 1fr 1fr; }
  .donation-tiers { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; gap: 2rem; }
  .mentor-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .not-this { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .program-cards { grid-template-columns: 1fr; }
  .teacher-row { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
  .teacher-row .teacher-icon { margin: 0 auto; }
}

@media (max-width: 680px) {
  h1 { font-size: 1.8rem; }
  .hero-content h1 { font-size: 2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .movements { grid-template-columns: 1fr; }
  .donation-tiers { grid-template-columns: 1fr; }
  .mentor-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .calendar-table { font-size: 0.78rem; }
  .calendar-table td { padding: 0.6rem 0.5rem; }
  .program-card { padding: 3rem 2rem; }
  .vow-block blockquote { font-size: 1.2rem; }
  .teacher-row { grid-template-columns: 1fr; gap: 1rem; padding: 2rem 0; }
  .teacher-row p { text-align: left; }
}
