/* ═══════════════════════════════════════════════════════════════
   MarillacMoms.com — Shared Design System
   St. Vincent de Paul Georgia
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --blue-primary:   #01518F;
  --blue-secondary: #005584;
  --orange:         #f6871f;
  --green:          #7fa442;
  --gold:           #d4a72c;
  --white:          #ffffff;
  --dark-text:      #2d3748;
  --gray-light:     #f7fafc;
  --gray-body:      #4a5568;
  --gray-label:     #718096;
  --gray-border:    #e2e8f0;
  --dark-bg:        #1a202c;

  --font-head: 'Montserrat', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --header-h: 68px;
  --container: 1100px;
  --section-v: 80px;
  --radius-card: 16px;
}

/* ═══════════════════════════════════════════
   RESET
   ═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ═══════════════════════════════════════════
   ACCESSIBILITY — SKIP LINK
   ═══════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 10px 20px;
  background: var(--blue-primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ═══════════════════════════════════════════
   FOCUS RINGS
   ═══════════════════════════════════════════ */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--header-h);
  background: var(--blue-primary);
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 20px;
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled {
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.22);
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.header-org-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.2;
}

/* Desktop Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}
.nav-donate {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 100px;
  margin-left: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-donate:hover {
  background: #e0751a;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(246, 135, 31, 0.45);
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  width: 38px;
  height: 38px;
  padding: 6px;
  background: none;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Panel */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 290;
  background: var(--blue-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  font-size: 15px;
  padding: 12px 14px;
}
.mobile-nav .nav-donate {
  text-align: center;
  margin-left: 0;
  margin-top: 8px;
  padding: 13px 22px;
  font-size: 15px;
}

/* ═══════════════════════════════════════════
   HERO — BASE
   ═══════════════════════════════════════════ */
.hero {
  min-height: 85vh;
  background: linear-gradient(155deg, var(--blue-primary) 0%, var(--blue-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 100px;
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.075) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
/* Soft radial glow center */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  width: 100%;
}

/* Hero entrance animations — staggered */
.hero-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 22px;
  opacity: 0;
  animation: heroUp 0.6s ease-out 0.15s forwards;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.04;
  margin-bottom: 22px;
  opacity: 0;
  animation: heroUp 0.6s ease-out 0.32s forwards;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 28px;
  opacity: 0;
  animation: heroUp 0.6s ease-out 0.49s forwards;
}
.hero-accent {
  width: 48px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 0 auto 24px;
  opacity: 0;
  animation: heroUp 0.6s ease-out 0.62s forwards;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: heroUp 0.6s ease-out 0.76s forwards;
}
.btn-hero-primary {
  display: inline-block;
  background: var(--white);
  color: var(--blue-primary);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  will-change: transform;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}
.hero-help-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity 0.2s;
}
.hero-help-link:hover { opacity: 0.75; }

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

/* ═══════════════════════════════════════════
   HERO — COLOR VARIANTS (subpages)
   ═══════════════════════════════════════════ */

/* Interior pages: shorter hero */
.hero-interior {
  min-height: auto;
  padding: 140px 24px 80px;
}

/* Orange hero (Moms Portal) */
.hero-orange {
  background: linear-gradient(155deg, var(--orange) 0%, #d46a0a 100%);
}
.hero-orange .hero-accent { background: var(--white); }

/* Green hero (Volunteer Portal) */
.hero-green {
  background: linear-gradient(155deg, var(--green) 0%, #5d7a2e 100%);
}
.hero-green .hero-accent { background: var(--white); }

/* Gold hero (Donate) */
.hero-gold {
  background: linear-gradient(155deg, var(--gold) 0%, #b08b18 100%);
}
.hero-gold .hero-headline { color: #1a1a0a; }
.hero-gold .hero-sub { color: rgba(26, 26, 10, 0.75); }
.hero-gold .hero-label { color: rgba(26, 26, 10, 0.5); }
.hero-gold .hero-accent { background: var(--blue-primary); }
.hero-gold .btn-hero-primary {
  background: var(--blue-primary);
  color: var(--white);
}
.hero-gold .hero-help-link { color: #1a1a0a; }

/* ═══════════════════════════════════════════
   IMPACT STRIP
   ═══════════════════════════════════════════ */
.impact-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  padding: 60px 24px;
  text-align: center;
}
.impact-strip-headline {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-primary);
  letter-spacing: 0.02em;
  margin-bottom: 44px;
}
.impact-stats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 72px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-primary);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-label);
}

/* ═══════════════════════════════════════════
   CONTENT SECTIONS — SHARED
   ═══════════════════════════════════════════ */
.content-section {
  padding: var(--section-v) 24px;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 13px;
}
.section-headline {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-body);
  line-height: 1.75;
  max-width: 720px;
}
.section-body + .section-body {
  margin-top: 18px;
}
.link-orange {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  margin-top: 22px;
  transition: opacity 0.2s;
}
.link-orange:hover { opacity: 0.72; }
.link-blue {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-primary);
  text-decoration: none;
  margin-top: 12px;
  transition: opacity 0.2s;
}
.link-blue:hover { opacity: 0.72; }

/* Section backgrounds */
.bg-white { background: var(--white); }
.bg-gray  { background: var(--gray-light); }

/* ═══════════════════════════════════════════
   TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════ */
.section-b-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.section-b-text {
  display: flex;
  flex-direction: column;
}
.pull-quote {
  border-left: 4px solid var(--orange);
  background: var(--white);
  padding: 24px 28px;
  margin: 28px 0;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.pull-quote p {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;
  color: var(--blue-primary);
  line-height: 1.45;
}
.hero-img-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.hero-img-card img {
  width: 100%;
  display: block;
}

/* ═══════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.cards-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.cards-grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 13px;
  will-change: transform;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}
.card-icon {
  width: 48px;
  height: 48px;
  color: var(--blue-primary);
  flex-shrink: 0;
}
.card-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}
.card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-body);
  line-height: 1.65;
  flex: 1;
}
.card-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.72; }

/* ═══════════════════════════════════════════
   CHECKLIST / LIST STYLES
   ═══════════════════════════════════════════ */
.info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-list li {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-body);
  line-height: 1.65;
  padding-left: 28px;
  position: relative;
}
.info-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.info-list.check li::before {
  content: '\2713';
  background: none;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  top: 1px;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* ═══════════════════════════════════════════
   STEP TIMELINE
   ═══════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.step-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue-primary);
  opacity: 0.15;
  line-height: 1;
}
.step-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
}
.step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-body);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   TWO-COLUMN COMPARISON
   ═══════════════════════════════════════════ */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.comparison-col {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.comparison-col h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 16px;
}
.comparison-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.comparison-col li {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-body);
  line-height: 1.65;
  padding-left: 20px;
  position: relative;
}
.comparison-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-primary);
}

/* ═══════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-text);
  text-align: left;
  line-height: 1.4;
}
.faq-question:hover {
  color: var(--blue-primary);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gray-label);
  transition: transform 0.25s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-body);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CALLOUT / BREATHING SPACE
   ═══════════════════════════════════════════ */
.callout {
  background: var(--gray-light);
  border-left: 4px solid var(--blue-primary);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.callout p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-body);
  line-height: 1.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   STORIES PLACEHOLDER (dignified)
   ═══════════════════════════════════════════ */
.stories-coming {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 64px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-top: 44px;
}
.stories-coming-icon {
  width: 48px;
  height: 48px;
  color: var(--blue-primary);
  opacity: 0.35;
  margin: 0 auto 16px;
}
.stories-coming p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-label);
  line-height: 1.65;
  max-width: 400px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   PRE-FOOTER CTA
   ═══════════════════════════════════════════ */
.prefooter-cta {
  background: var(--blue-primary);
  padding: 80px 24px;
  text-align: center;
  border-bottom: 3px solid var(--green);
}
.prefooter-headline {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 16px;
}
.prefooter-sub {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
}
.btn-prefooter {
  display: inline-block;
  background: var(--white);
  color: var(--blue-primary);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 100px;
  will-change: transform;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
}
.btn-prefooter:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
#site-footer {
  background: var(--dark-bg);
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  line-height: 1.65;
}
.footer-col-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-line {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer-contact-line a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-left {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.32);
}
.footer-bottom-right {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-right:hover { color: rgba(255, 255, 255, 0.5); }

/* ═══════════════════════════════════════════
   FLOATING PORTAL BAR
   ═══════════════════════════════════════════ */
.floating-footer {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    0 8px 32px rgba(31, 38, 135, 0.15),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  will-change: transform, opacity;
  opacity: 0;
  animation: floatUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}
/* Specular top-edge highlight */
.floating-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55) 50%, transparent);
}
@keyframes floatUp {
  from { opacity: 0; transform: translateX(-50%) translateY(50px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ═══════════════════════════════════════════
   PORTAL BUTTONS
   ═══════════════════════════════════════════ */
.portal-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 14px;
  font-family: var(--font-head);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s ease;
}
/* Shimmer sweep on hover */
.portal-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transition: left 0.45s ease;
}
.portal-btn:hover::after  { left: 100%; }
.portal-btn:hover         { transform: translateY(-3px) scale(1.02); }
.portal-btn:active        { transform: translateY(0) scale(0.98); }

.portal-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
/* Short label — mobile only */
.btn-label-short { display: none; }

/* Admin — Primary Blue */
.portal-btn.admin {
  background: linear-gradient(145deg, #01518F, #003d6b);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(1, 81, 143, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.portal-btn.admin:hover {
  box-shadow: 0 8px 30px rgba(1, 81, 143, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Volunteer — Green */
.portal-btn.volunteer {
  background: linear-gradient(145deg, #7fa442, #5d7a2e);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(127, 164, 66, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.portal-btn.volunteer:hover {
  box-shadow: 0 8px 30px rgba(127, 164, 66, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Moms — Orange */
.portal-btn.moms {
  background: linear-gradient(145deg, #f6871f, #d46a0a);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(246, 135, 31, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.portal-btn.moms:hover {
  box-shadow: 0 8px 30px rgba(246, 135, 31, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Donate — Gold (dark text) */
.portal-btn.donate-portal {
  background: linear-gradient(145deg, #d4a72c, #b08b18);
  color: #1a1a0a;
  box-shadow: 0 4px 18px rgba(212, 167, 44, 0.4),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.portal-btn.donate-portal:hover {
  box-shadow: 0 8px 30px rgba(212, 167, 44, 0.55),
              inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

/* ═══════════════════════════════════════════
   SCROLL-REVEAL ANIMATION
   ═══════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ═══════════════════════════════════════════
   PREFERS-REDUCED-MOTION
   ═══════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .hero-label,
  .hero-headline,
  .hero-sub,
  .hero-accent,
  .hero-ctas {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .floating-footer {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    animation: none;
    will-change: auto;
  }
  .portal-btn,
  .btn-hero-primary,
  .btn-prefooter {
    will-change: auto;
    transition: none;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }

  .section-b-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-img-card { position: static; }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-4 { grid-template-columns: 1fr; }

  .steps-grid { grid-template-columns: 1fr; }

  .comparison-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .floating-footer { gap: 8px; padding: 8px 12px; }
  .portal-btn { padding: 12px 20px; font-size: 12.5px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-v: 56px; }

  #site-header { padding: 0 20px; }

  .hero { padding: 108px 20px 72px; }
  .hero-interior { padding: 120px 20px 56px; }

  .impact-stats { gap: 36px; }

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

  .prefooter-headline { font-size: 22px; }
  .section-headline   { font-size: 26px; }

  /* Floating footer — full width, icon + short label */
  .floating-footer {
    bottom: 16px;
    width: calc(100% - 32px);
    border-radius: 18px;
    justify-content: space-between;
    gap: 6px;
    padding: 8px 8px;
  }
  .portal-btn {
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 11px 6px;
    border-radius: 12px;
    font-size: 10px;
    white-space: normal;
    text-align: center;
  }
  .btn-label-full  { display: none; }
  .btn-label-short { display: block; }
}

/* Small mobile */
@media (max-width: 400px) {
  .portal-btn { font-size: 9px; padding: 9px 4px; }
}
