/* ============================================================
   AMPLIFY MINISTRIES — Shared Stylesheet
   Equipping the Church. Expanding the Mission.
   ============================================================ */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
:root {
  --navy:        #1C2B4A;
  --navy-dark:   #111D33;
  --navy-mid:    #243358;
  --gold:        #C8922A;
  --gold-light:  #E2AE54;
  --gold-pale:   #F5E9D0;
  --bg:          #F8F7F4;
  --bg-white:    #FFFFFF;
  --text:        #1A1A2E;
  --text-mid:    #3D4456;
  --text-light:  #6B7280;
  --border:      #E3DDD5;
  --shadow:      0 2px 16px rgba(28,43,74,0.10);
  --shadow-lg:   0 8px 40px rgba(28,43,74,0.16);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:   6px;
  --radius-lg: 12px;
  --max-w:    1160px;
  --section-pad: 80px 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* --- Typography Scale --- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-mid); line-height: 1.75; }

/* --- Layout Utility --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: var(--section-pad); }
.section--white { background: var(--bg-white); }
.section--navy  { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }
.section--gold-pale { background: var(--gold-pale); }

.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.text-white  { color: #fff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--gold-light); }

.section-title { margin-bottom: 12px; }
.section-lead  { font-size: 1.05rem; color: var(--text-mid); max-width: 640px; margin: 0 auto 48px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn--gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,146,42,0.30);
}
.btn--gold:hover {
  background: var(--gold-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,146,42,0.40);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: #fff;
}
.btn--outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.65);
  color: #fff;
}
.btn--outline-white:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(28, 43, 74, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.02em;
}
.nav__brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.87rem;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav__links a.active { color: #fff; }
.nav__cta { margin-left: 8px; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  background: var(--navy-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}
.hero__wave {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(200,146,42,0.10), transparent 70%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero__text {}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__tagline {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 40px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.60);
  margin-top: 28px;
  letter-spacing: 0.03em;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease-in-out infinite;
}

/* Hero visual: signal card */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.signal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 36px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(8px);
}
.signal-card__label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.stars-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}
.star-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.star-item__icon {
  font-size: 1.6rem;
  filter: drop-shadow(0 0 8px rgba(200,146,42,0.6));
}
.star-item__icon--dim { filter: none; opacity: 0.25; }
.star-item__label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  text-align: center;
  line-height: 1.4;
}
.signal-meter {
  margin-top: 4px;
}
.signal-meter__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.signal-meter__bar {
  height: 4px;
  background: rgba(255,255,255,0.10);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 8px;
}
.signal-meter__fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar {
  from { width: 0; }
}
.signal-card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.40);
  text-align: center;
}

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 120px 24px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero .lead { color: rgba(255,255,255,0.68); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============================================================
   MISSION STRIP
   ============================================================ */
.mission-strip {
  background: var(--gold);
  padding: 32px 24px;
  text-align: center;
}
.mission-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-style: italic;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   WHO WE ARE SECTION
   ============================================================ */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.who-grid__content {}
.who-grid__content p { margin-bottom: 16px; }
.who-grid__content p:last-of-type { margin-bottom: 28px; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.value-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
}
.value-pill__icon { font-size: 1rem; }
.proof-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #fff;
}
.proof-card__stat {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 4px;
}
.proof-card__stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.proof-card hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 20px 0;
}
.proof-card__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}
.proof-card__check { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.service-card p  { font-size: 0.87rem; line-height: 1.65; }

/* Services page detail list */
.services-detail { max-width: var(--max-w); margin: 0 auto; }
.service-block {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-pale);
  line-height: 1;
  padding-top: 4px;
  text-align: right;
}
.service-block__body h3 { margin-bottom: 8px; }
.service-block__body p  { margin-bottom: 14px; }
.service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.service-tag {
  padding: 4px 12px;
  background: var(--gold-pale);
  border-radius: 40px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
}

/* ============================================================
   5-STAR FRAMEWORK
   ============================================================ */
.framework-intro {
  background: var(--navy);
  padding: 60px 24px;
  text-align: center;
}
.framework-intro p {
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}
.stars-display {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 28px 0 8px;
}
.stars-display span { font-size: 2rem; }
.framework-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}
.star-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 100px 1fr;
}
.star-card__num {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 24px 16px;
}
.star-card__num .stars { font-size: 0.9rem; letter-spacing: 2px; }
.star-card__num .label {
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  text-align: center;
}
.star-card__body { padding: 28px 32px; }
.star-card__body h3 { margin-bottom: 8px; }
.star-card__body p  { font-size: 0.90rem; margin-bottom: 16px; }
.indicator-list { display: grid; gap: 8px; }
.indicator-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.indicator-item::before {
  content: '⭐';
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

/* Rating scale */
.rating-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto 56px;
}
.rating-item {
  text-align: center;
  padding: 20px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.rating-item__stars { font-size: 1.1rem; margin-bottom: 8px; }
.rating-item__name {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.rating-item__desc { font-size: 0.76rem; color: var(--text-light); line-height: 1.5; }

/* ============================================================
   ABOUT
   ============================================================ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.story-text p { margin-bottom: 18px; }
.timeline { margin-top: 8px; }
.timeline-item {
  display: flex;
  gap: 16px;
  padding-bottom: 28px;
  position: relative;
}
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item__dot {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.timeline-item__content {}
.timeline-item__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}
.timeline-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.timeline-item p  { font-size: 0.85rem; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.team-card__name { margin-bottom: 2px; font-size: 1.05rem; }
.team-card__title { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.team-card p { font-size: 0.86rem; line-height: 1.65; }

/* Values section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.value-card {
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}
.value-card__icon { font-size: 1.6rem; margin-bottom: 12px; }
.value-card h4 { color: #fff; font-size: 0.95rem; margin-bottom: 6px; }
.value-card p  { font-size: 0.83rem; color: rgba(255,255,255,0.60); line-height: 1.6; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}
.contact-info h3 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.90rem;
  color: var(--text-mid);
}
.contact-detail__icon {
  width: 36px; height: 36px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 2px;
}

/* Form */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.90rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  padding: 80px 24px;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section p  { color: rgba(255,255,255,0.68); max-width: 560px; margin: 0 auto 36px; font-size: 1.02rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 24px 28px;
}
.footer__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.footer__brand-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}
.footer__col-head {
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 16px;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.60);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.28);
  flex-wrap: wrap;
  gap: 8px;
}
.footer__bottom-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nonprofit-badge {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 40px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: var(--navy);
  padding: 48px 24px;
}
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-size: 0.80rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIAL / PULLQUOTE
   ============================================================ */
.pullquote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.pullquote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
}
.pullquote blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--gold-pale);
  position: absolute;
  top: -20px;
  left: -28px;
  line-height: 1;
  font-family: var(--font-display);
}
.pullquote cite {
  font-size: 0.82rem;
  color: var(--text-light);
  font-style: normal;
  letter-spacing: 0.06em;
}
.pullquote cite strong { color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero__visual { order: -1; }
  .signal-card { max-width: 340px; }
  .who-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .rating-scale { grid-template-columns: repeat(2, 1fr); }
  .star-card { grid-template-columns: 1fr; }
  .star-card__num { padding: 20px; flex-direction: row; gap: 12px; justify-content: flex-start; }
}
@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy-dark); padding: 20px 24px 28px; gap: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__content { padding: 50px 20px; }
  .hero h1 { font-size: 2.2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block__num { text-align: left; font-size: 2rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .rating-scale { grid-template-columns: 1fr 1fr; }
  .pullquote blockquote::before { left: 0; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
