/* ============================================================
   Collegiate Church Network — 2025 Annual Impact Report
   styles.css
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green: #4EA651;
  --green-dark: #3d8a40;
  --green-light: #e8f5e9;
  --grey-dark: #58595B;
  --grey-light: #A7A9AC;
  --near-black: #1a1a1a;
  --charcoal: #2D2D2D;
  --off-white: #F5F5F5;
  --white: #FFFFFF;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fw-light: 300;
  --fw-regular: 400;
  --fw-semi: 600;
  --fw-bold: 700;
  --fw-extra: 800;

  --container-max: 1200px;
  --container-narrow: 800px;
  --section-padding: 6rem 0;
  --section-padding-mobile: 3.5rem 0;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-weight: var(--fw-regular);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--grey-dark);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--green-dark);
}

strong {
  font-weight: var(--fw-semi);
}

/* ---------- Scroll Progress Bar ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 8px;
  background: var(--green);
  z-index: 9999;
  transition: width 0.05s linear;
}

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

.container--narrow {
  max-width: var(--container-narrow);
}

/* ---------- Section Defaults ---------- */
.section {
  padding: var(--section-padding);
}

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

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

.section--dark {
  background: var(--charcoal);
  color: var(--white);
}

.section--green {
  background: var(--green);
  color: var(--white);
}

.section--green .section__heading {
  color: var(--white);
}

.section--green .section__intro {
  color: rgba(255, 255, 255, 0.85);
}

.section--green .prose p,
.section--green .story__content p {
  color: rgba(255, 255, 255, 0.9);
}

.section--green .story__church {
  color: var(--white);
  font-weight: var(--fw-bold);
}

.section--green .story__campus {
  color: rgba(255, 255, 255, 0.7);
}

.section--green .story__title {
  color: var(--white);
}

.section--green .story__reflection {
  color: rgba(255, 255, 255, 0.75);
  border-left-color: rgba(255, 255, 255, 0.5);
}

.section--green .stat-callout {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
}

.section--green .stat-callout__number {
  color: var(--white);
}

.section--green .stat-callout__label {
  color: rgba(255, 255, 255, 0.85);
}

/* Charcoal section variant for stories */
.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section--charcoal .story__church {
  color: var(--green);
}

.section--charcoal .story__campus {
  color: rgba(255, 255, 255, 0.6);
}

.section--charcoal .story__title {
  color: var(--white);
}

.section--charcoal .story__content p {
  color: rgba(255, 255, 255, 0.85);
}

.section--charcoal .story__reflection {
  color: rgba(255, 255, 255, 0.65);
  border-left-color: var(--green);
}

.section--charcoal .section__heading {
  color: var(--white);
}

/* ---------- Typography ---------- */
.section__label {
  font-size: 0.85rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 1.5rem;
}

.section__heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: var(--fw-extra);
  color: var(--near-black);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
}

.section__heading--light {
  color: var(--white);
}

.section__subheading {
  font-size: 1.15rem;
  font-weight: var(--fw-regular);
  color: var(--grey-light);
  text-align: center;
  margin-bottom: 2.5rem;
}

.section__intro {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.8;
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.8);
}

.prose p {
  margin-bottom: 1.25rem;
}

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

/* ---------- Fade-in Animation ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--charcoal) url('images/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.hero__logo {
  width: 80px;
  height: auto;
  margin: 0 auto 2rem;
  opacity: 0.95;
}

.hero__subtitle {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero__year {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: var(--fw-extra);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: var(--fw-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: var(--fw-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTION 2: LETTER FROM ED
   ============================================================ */
.letter {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 3rem;
  align-items: start;
}

.letter__photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.9rem;
  font-weight: var(--fw-semi);
}

.letter__photo-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border-bottom: 4px solid var(--green);
}

.letter__photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.letter__greeting {
  font-size: 1.1rem;
  font-weight: var(--fw-semi);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.letter__content .prose p,
.letter__content > p {
  margin-bottom: 1.25rem;
}

/* Pull Quote */
.pull-quote {
  border-left: 4px solid var(--green);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--green-light);
  border-radius: 0 8px 8px 0;
}

.pull-quote p {
  font-size: 1.2rem;
  font-weight: var(--fw-semi);
  font-style: italic;
  color: var(--near-black);
  line-height: 1.6;
  margin: 0;
}

.letter__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.letter__signature p {
  margin-bottom: 0.25rem;
}

.letter__name {
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  color: var(--near-black);
}

.letter__title {
  font-size: 0.9rem;
  color: var(--grey-light);
}

/* ============================================================
   SECTION 4: PILLARS
   ============================================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
  text-align: center;
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--green);
}

.pillar__icon svg {
  width: 100%;
  height: 100%;
}

.pillar__title {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--near-black);
  margin-bottom: 0.5rem;
}

.pillar__text {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* Scripture Quote */
.scripture-quote {
  text-align: center;
  margin: 3rem auto 0;
  max-width: 650px;
  padding: 2.5rem;
  background: var(--green-light);
  border-radius: 12px;
}

.scripture-quote p {
  font-size: 1.2rem;
  font-weight: var(--fw-semi);
  font-style: italic;
  color: var(--near-black);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.scripture-quote cite {
  font-size: 0.95rem;
  font-weight: var(--fw-semi);
  color: var(--green);
  font-style: normal;
}

/* ============================================================
   SECTION 6: STORIES
   ============================================================ */
.story {
  padding: 4rem 0;
}

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

.story__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--off-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  font-size: 0.9rem;
  font-weight: var(--fw-semi);
  overflow: hidden;
}

.story__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story__image {
  position: relative;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.story__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.story__church {
  display: block;
  font-size: 0.8rem;
  font-weight: var(--fw-semi);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.story__campus {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-light);
  margin-bottom: 0.75rem;
}

.story__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-extra);
  color: var(--near-black);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.story__content p {
  margin-bottom: 1rem;
}

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

.story__reflection {
  font-style: italic;
  color: var(--grey-light);
  border-left: 3px solid var(--green);
  padding-left: 1rem;
  margin-top: 1.25rem;
}

/* ============================================================
   SECTION 7: IMPACT STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  font-weight: var(--fw-extra);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat__label {
  display: block;
  font-size: 0.85rem;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* ============================================================
   SECTION 8: STEWARDSHIP
   ============================================================ */
.stewardship-total {
  text-align: center;
  margin: 3rem 0;
  padding: 2.5rem;
  background: var(--green-light);
  border-radius: 12px;
}

.stewardship-total__amount {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: var(--fw-extra);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stewardship-total__label {
  display: block;
  font-size: 1rem;
  color: var(--grey-dark);
  max-width: 500px;
  margin: 0 auto;
}

.stewardship-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.stewardship-pillar {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  transition: box-shadow 0.3s ease;
}

.stewardship-pillar:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.stewardship-pillar__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--green);
}

.stewardship-pillar__icon svg {
  width: 100%;
  height: 100%;
}

.stewardship-pillar h3 {
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
  color: var(--near-black);
  margin-bottom: 0.75rem;
}

.stewardship-pillar p {
  font-size: 0.9rem;
  color: var(--grey-light);
  line-height: 1.6;
}

/* ============================================================
   SECTION 9: PARTNERS / MAP
   ============================================================ */
.map-container {
  max-width: 700px;
  margin: 0 auto 3rem;
}

.us-map {
  width: 100%;
  height: auto;
}

.us-map__outline {
  fill: none;
  stroke: var(--grey-light);
  stroke-width: 1.5;
  opacity: 0.4;
}

.us-map__dot {
  fill: var(--green);
  stroke: var(--white);
  stroke-width: 2;
  transition: r 0.2s ease;
  cursor: pointer;
}

.us-map__dot:hover {
  r: 9;
}

/* Regional Grid */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.region__title {
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
  color: var(--near-black);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--green);
}

.region__states {
  font-size: 0.8rem;
  font-weight: var(--fw-regular);
  color: var(--grey-light);
  margin-left: 0.5rem;
}

.region__list {
  list-style: none;
}

.region__list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9rem;
  gap: 0.5rem;
}

.region__list li strong {
  font-weight: var(--fw-semi);
  color: var(--near-black);
}

.region__list li strong a {
  color: var(--near-black);
  text-decoration: none;
  transition: color 0.2s ease;
}

.region__list li strong a:hover {
  color: var(--green);
}

.region__list li span {
  font-size: 0.8rem;
  color: var(--grey-light);
  white-space: nowrap;
}

/* ============================================================
   SECTION 11: CTA
   ============================================================ */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cta-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.cta-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--green);
}

.cta-card__icon svg {
  width: 100%;
  height: 100%;
}

.cta-card h3 {
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  margin-bottom: 0.75rem;
}

.cta-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-card__button {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: var(--fw-semi);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.cta-card__button:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.03);
}

/* CTA single button layout */
.cta-single {
  text-align: center;
  margin-top: 2.5rem;
}

.cta-single__button {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: var(--green);
  color: var(--white);
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.cta-single__button:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.04);
}

/* ============================================================
   SECTION 13: FOOTER
   ============================================================ */
.footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.6);
  padding: 3rem 0;
  text-align: center;
}

.footer__logo {
  height: 40px;
  width: auto;
  margin: 0 auto 1.5rem;
  opacity: 0.8;
}

.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--green);
}

.footer__links svg {
  vertical-align: middle;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* ============================================================
   VISUAL ENHANCEMENTS
   ============================================================ */

/* ---------- Green Headings ---------- */
.section__heading--green {
  color: var(--green);
}

/* ---------- Decorative Dividers ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  position: relative;
  background: var(--white);
}

.section-divider--off-white {
  background: var(--off-white);
}

/* Style A: Dotted line + green center dot */
.section-divider--dots::before {
  content: '';
  display: block;
  width: 160px;
  height: 0;
  border-top: 2px dashed var(--grey-light);
  opacity: 0.5;
}

.section-divider--dots::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}

/* Style B: Solid line + green diamond */
.section-divider--diamond::before {
  content: '';
  display: block;
  width: 200px;
  height: 0;
  border-top: 1px solid var(--grey-light);
  opacity: 0.45;
}

.section-divider--diamond::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--green);
}

/* ---------- Section Banner Images ---------- */
.section-banner {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2.5rem;
}

/* ---------- Geometric Background Shapes ---------- */
/* Shared: ensure sections are positioned for pseudo-elements */
#why-now,
#who-we-are,
#this-year,
#looking-ahead,
#gratitude {
  position: relative;
  overflow: hidden;
}

#why-now > .container,
#who-we-are > .container,
#this-year > .container,
#looking-ahead > .container,
#gratitude > .container {
  position: relative;
  z-index: 1;
}

/* S3 Why Now — Large circle stroke, top-right */
#why-now::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 400px;
  height: 400px;
  border: 3px solid var(--green);
  border-radius: 50%;
  opacity: 0.04;
  pointer-events: none;
}

/* S4 Who We Are — Dot grid, bottom-left */
#who-we-are::before {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 30px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(circle, var(--green) 1.5px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.05;
  pointer-events: none;
}

/* S5 This Year — Diagonal lines, bottom-right */
#this-year::before {
  content: '';
  position: absolute;
  bottom: 30px;
  right: 20px;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    -45deg,
    var(--green),
    var(--green) 1px,
    transparent 1px,
    transparent 14px
  );
  opacity: 0.035;
  pointer-events: none;
}

/* S10 Looking Ahead — Large circle stroke, bottom-left */
#looking-ahead::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -100px;
  width: 350px;
  height: 350px;
  border: 3px solid var(--green);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}

/* S12 Gratitude — Dot grid, top-right */
#gratitude::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 30px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(circle, var(--green) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.06;
  pointer-events: none;
}

/* ---------- S2: Green Bar Above Label ---------- */
.section__label--bar {
  position: relative;
  padding-top: 1rem;
}

.section__label--bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--green);
}

/* S2: Green bottom border on photo */
.letter__photo-placeholder--accent {
  border-bottom: 4px solid var(--green);
}

/* ---------- S3: Prose Accent Callout ---------- */
.prose-accent {
  font-size: 1.25rem;
  font-weight: var(--fw-semi);
  color: var(--near-black);
  border-left: 4px solid var(--green);
  padding: 0.75rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(78, 166, 81, 0.05);
  border-radius: 0 6px 6px 0;
  line-height: 1.6;
}

/* ---------- S4: Pillar Top Border ---------- */
.pillar--accent {
  border-top: 3px solid var(--green);
  padding-top: 1.5rem;
}

/* ---------- Story 4: Stat Callout Box ---------- */
.stat-callout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 2rem;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
}

.stat-callout__item {
  text-align: center;
}

.stat-callout__number {
  display: block;
  font-size: 2.5rem;
  font-weight: var(--fw-extra);
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-callout__label {
  font-size: 0.85rem;
  color: var(--grey-dark);
  line-height: 1.4;
}

/* ---------- S10: Sidebar Pull Quote ---------- */
.sidebar-quote {
  float: right;
  width: 280px;
  margin: 0 0 1.5rem 2rem;
  padding: 1.5rem;
  border-right: 4px solid var(--green);
  text-align: right;
}

.sidebar-quote p {
  font-size: 1.1rem;
  font-weight: var(--fw-semi);
  font-style: italic;
  color: var(--near-black);
  line-height: 1.5;
  margin: 0;
}

/* ---------- S12: Typography Uplift ---------- */
.gratitude-opening {
  font-size: 1.5rem;
  font-weight: var(--fw-semi);
  color: var(--near-black);
  text-align: center;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--green-light);
}

/* S12: Green accent on signature */
.letter__signature--accent {
  border-top: 3px solid var(--green);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: var(--section-padding-mobile);
  }

  .letter {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .letter__photo {
    text-align: center;
  }

  .letter__photo-placeholder,
  .letter__photo-img {
    max-width: 200px;
    margin: 0 auto;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .story__image {
    min-height: 280px;
    position: relative;
  }

  /* On mobile, always show image first regardless of layout direction */
  .story--image-right .story__grid .story__content {
    order: 2;
  }

  .story--image-right .story__grid .story__image {
    order: 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat__number {
    font-size: 2.2rem;
  }

  .stewardship-pillars {
    grid-template-columns: 1fr;
  }

  .regions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Visual enhancement responsive overrides */
  .section-banner {
    height: 200px;
    border-radius: 8px;
  }

  .sidebar-quote {
    float: none;
    width: 100%;
    margin: 0 0 1.5rem 0;
    border-right: none;
    border-left: 4px solid var(--green);
    text-align: left;
  }

  .stat-callout {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .prose-accent {
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
  }

  .gratitude-opening {
    font-size: 1.25rem;
  }

  .hero__content {
    padding-bottom: 5rem;
  }

  .hero__year {
    font-size: 5rem;
  }

  .pull-quote {
    padding: 1rem 1.25rem;
  }

  .pull-quote p {
    font-size: 1.05rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

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

  .hero__logo {
    width: 60px;
  }
}
