/* =========================================================
   SIM South Africa — Design System
   Fonts: Cormorant Garamond (display) + Barlow (body)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600;1,700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* === TOKENS === */
:root {
  --red:        #c8281e;
  --red-deep:   #9b1a12;
  --red-tint:   #fdf2f0;
  --ink:        #1a1615;
  --ink-2:      #3d3634;
  --muted:      #7a726e;
  --line:       #e5dfd8;
  --sand:       #f0ebe3;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --display:    'Cormorant Garamond', Georgia, serif;
  --body:       'Barlow', system-ui, sans-serif;
  --cond:       'Barlow Condensed', system-ui, sans-serif;
  --nav-h:      108px;
  --radius:     4px;
  --shadow:     0 2px 20px rgba(26,22,21,0.1);
  --shadow-lg:  0 8px 48px rgba(26,22,21,0.16);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--body); }
::selection { background: var(--red); color: var(--white); }

/* === LAYOUT === */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 0;
  min-height: var(--nav-h);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  padding-top: 4px;
}
.site-nav.scrolled .nav-logo { color: var(--ink); }
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.35s ease;
}
.site-nav.scrolled .logo-img {
  filter: none;
}

/* Right side — two rows */
.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.nav-utility {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.site-nav.scrolled .nav-utility { color: var(--muted); }
.nav-utility a, .nav-utility button {
  background: none;
  border: none;
  color: inherit;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nav-utility a:hover, .nav-utility button:hover { opacity: 0.65; }
.site-nav.scrolled .nav-utility a:hover,
.site-nav.scrolled .nav-utility button:hover { color: var(--red); opacity: 1; }

.nav-donate {
  border: 1.5px solid rgba(255,255,255,0.8);
  padding: 9px 28px;
  border-radius: 999px;
  font-size: 15px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white) !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
  opacity: 1 !important;
}
.nav-donate:hover { background: var(--white) !important; color: var(--ink) !important; border-color: var(--white) !important; }
.site-nav.scrolled .nav-donate {
  border-color: var(--red) !important;
  color: var(--red) !important;
  background: transparent !important;
}
.site-nav.scrolled .nav-donate:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

.nav-rule {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin-bottom: 0;
}
.site-nav.scrolled .nav-rule { background: var(--line); }

.nav-primary {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--white);
  padding: 14px 0 16px;
}
.site-nav.scrolled .nav-primary { color: var(--ink); }
.nav-primary a {
  position: relative;
  transition: opacity 0.2s;
}
.nav-primary a:hover { opacity: 0.65; }
.site-nav.scrolled .nav-primary a:hover { color: var(--red); opacity: 1; }
.nav-primary a.active { opacity: 0.65; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s, opacity 0.25s;
}
.site-nav.scrolled .nav-hamburger span { background: var(--ink); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 20px 32px 28px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .mobile-donate {
  margin-top: 12px;
  background: var(--red);
  color: var(--white) !important;
  text-align: center;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: none !important;
}

@media (max-width: 960px) {
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { align-items: center; padding-top: 0; min-height: 64px; }
  :root { --nav-h: 64px; }
}

/* =========================================================
   PAGE HERO (banner)
   ========================================================= */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,21,0.8) 0%, rgba(26,22,21,0.35) 60%, rgba(26,22,21,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0 56px;
  width: 100%;
}
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.page-hero-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--red);
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  line-height: 1;
  color: var(--white);
  max-width: 700px;
}
.page-hero h1 em { font-style: italic; }
.page-hero-sub {
  margin-top: 16px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  line-height: 1.6;
}

/* =========================================================
   SECTION LABELS
   ========================================================= */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: none;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); }
.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-red {
  background: transparent;
  border: 1px solid var(--red);
  color: var(--red);
}
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover { background: var(--ink-2); }

.btn-arrow::after { content: '→'; font-weight: 400; font-size: 14px; }

/* =========================================================
   PRAYER TICKER
   ========================================================= */
.prayer-ticker {
  background: var(--red);
  padding: 11px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
}
.ticker-text {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ticker-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--ink);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: 68px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 40px; vertical-align: super; }
.stat-num span.plus { font-size: 50px; }
.stat-label {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* =========================================================
   INTRO / MISSION STATEMENT
   ========================================================= */
.section-intro {
  padding: 96px 0;
  background: var(--white);
}
.section-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.section-intro h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
}
.section-intro h2 em { font-style: italic; color: var(--red); }
.section-intro p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 12px;
}
.section-intro .cta-row {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   THREE WAYS
   ========================================================= */
.three-ways {
  background: var(--sand);
  padding: 80px 0;
}
.ways-header {
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.ways-header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}
.ways-header h2 em { font-style: italic; }
.ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.way-card {
  background: var(--white);
  padding: 48px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.way-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.way-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.way-card:hover::before { transform: scaleX(1); }
.way-num {
  font-family: var(--display);
  font-size: 100px;
  font-weight: 700;
  color: rgba(200,40,30,0.06);
  line-height: 0.9;
  margin-bottom: -16px;
  user-select: none;
}
.way-title {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
}
.way-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.way-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}
.way-link:hover { gap: 14px; }
.way-link::after { content: '→'; font-family: var(--body); font-size: 14px; }

/* =========================================================
   STORIES GRID
   ========================================================= */
.stories-section { padding: 80px 0; }
.stories-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.stories-header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
}
.stories-header h2 em { font-style: italic; }
.view-all {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.view-all:hover { gap: 14px; }
.view-all::after { content: '→'; font-family: var(--body); font-size: 14px; }

.stories-grid {
  display: grid;
  grid-template-columns: 7fr 5fr 5fr;
  grid-template-rows: auto auto;
  gap: 3px;
}
.story-card {
  position: relative;
  overflow: hidden;
  background: var(--sand);
  cursor: pointer;
}
.story-card.featured { grid-row: 1 / 3; }
.story-photo {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.story-card.featured .story-photo {
  height: 100%;
  aspect-ratio: auto;
  min-height: 340px;
}
.story-card:hover .story-photo { transform: scale(1.04); }
.story-body { padding: 24px 24px 28px; }
.story-tag {
  font-family: var(--cond);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  display: block;
}
.story-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.story-card:hover .story-title { color: var(--red); }
.story-card.featured .story-title { font-size: 28px; }
.story-excerpt {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
}
.story-card.featured .story-excerpt { font-size: 14px; }

/* =========================================================
   FEATURE STRIP (image + text side-by-side)
   ========================================================= */
.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.feature-strip.reverse .feature-img { order: 2; }
.feature-strip.reverse .feature-body { order: 1; }
.feature-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.feature-img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.feature-strip:hover .feature-img-bg { transform: scale(1.03); }
.feature-body {
  background: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-body h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.feature-body h2 em { font-style: italic; }
.feature-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 12px;
}
.feature-body .btn { margin-top: 24px; align-self: flex-start; }

/* =========================================================
   DOME CTA
   ========================================================= */
.dome-cta {
  position: relative;
  background: var(--ink);
  padding: 120px 0 0;
  text-align: center;
  overflow: hidden;
}
.dome-cta-content { position: relative; z-index: 2; padding-bottom: 80px; }
.dome-cta h2 {
  font-family: var(--display);
  font-size: clamp(72px, 12vw, 160px);
  font-weight: 600;
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 24px;
}
.dome-cta h2 em { font-style: italic; color: rgba(255,255,255,0.3); }
.dome-cta p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.dome-shapes {
  position: relative;
  height: 220px;
  margin-top: -40px;
  overflow: hidden;
}
.dome-shapes svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  min-width: 1000px;
}

/* =========================================================
   CONTENT SECTIONS
   ========================================================= */
.content-section { padding: 80px 0; }
.content-section.bg-cream { background: var(--cream); }
.content-section.bg-sand { background: var(--sand); }
.content-section.bg-ink { background: var(--ink); color: var(--white); }
.content-section.bg-red { background: var(--red); color: var(--white); }

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.content-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; }
.section-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
}
.section-body p { margin-bottom: 16px; }
.section-body p:last-child { margin-bottom: 0; }
.content-section.bg-ink .section-body { color: rgba(255,255,255,0.6); }

/* =========================================================
   VALUES GRID
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.value-card:hover { border-top-color: var(--red); transform: translateY(-3px); }
.value-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.value-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
}

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline { padding: 80px 0; background: var(--white); }
.timeline-inner { position: relative; }
.timeline-track {
  display: flex;
  overflow-x: auto;
  gap: 0;
  padding-bottom: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.timeline-track::-webkit-scrollbar { display: none; }
.timeline-item {
  flex-shrink: 0;
  width: 220px;
  padding: 0 24px 0 0;
  position: relative;
}
.timeline-item::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: -4px; left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.timeline-year {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
  line-height: 1;
}
.timeline-label {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-2);
}

/* =========================================================
   FORMS
   ========================================================= */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 12px 16px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  border-radius: var(--radius);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,40,30,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Donation amount pills */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 6px;
}
.amount-pill {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  cursor: pointer;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.amount-pill:hover,
.amount-pill.selected {
  border-color: var(--red);
  background: var(--red-tint);
  color: var(--red);
}
.amount-pill.other { font-size: 13px; font-weight: 400; color: var(--muted); }

/* =========================================================
   CONTACT
   ========================================================= */
.office-card {
  background: var(--white);
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.office-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.office-detail {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 8px;
  line-height: 1.5;
}
.office-detail strong { color: var(--ink); font-weight: 500; min-width: 60px; }

/* =========================================================
   PRAYER GUIDE
   ========================================================= */
.prayer-card {
  background: var(--red);
  color: var(--white);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.prayer-card::after {
  content: '"';
  position: absolute;
  right: -10px;
  top: -20px;
  font-family: var(--display);
  font-size: 280px;
  line-height: 1;
  color: rgba(255,255,255,0.06);
  user-select: none;
  pointer-events: none;
}
.prayer-card h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
}
.prayer-card h2 em { font-style: italic; }
.prayer-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  opacity: 0.8;
  max-width: 560px;
  margin-bottom: 32px;
}

/* =========================================================
   NEWSLETTER BAND
   ========================================================= */
.newsletter-band {
  background: var(--sand);
  padding: 64px 0;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-inner h2 {
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
}
.newsletter-inner h2 em { font-style: italic; }
.newsletter-inner p {
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  margin-top: 10px;
  line-height: 1.7;
}
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--line);
  border-right: none;
  padding: 14px 20px;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
  outline: none;
  border-radius: var(--radius) 0 0 var(--radius);
}
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form .btn {
  border-radius: 0 var(--radius) var(--radius) 0;
  white-space: nowrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #100d0c;
  color: rgba(255,255,255,0.55);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-brand .footer-logo-wrap .logo-sim { font-family: var(--cond); font-size: 20px; font-weight: 700; letter-spacing: 0.1em; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--red); background: var(--red); color: var(--white); }

.footer-col h4 {
  font-family: var(--cond);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
}

.footer-bottom {
  border-top: none;
  padding: 24px 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--white); }

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal="left"] { transform: translateX(-28px); }
[data-reveal="left"].revealed { transform: translateX(0); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal="right"].revealed { transform: translateX(0); }
[data-reveal="scale"] { transform: scale(0.96); }
[data-reveal="scale"].revealed { transform: scale(1); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .story-card.featured { grid-row: auto; }
  .feature-strip { grid-template-columns: 1fr; min-height: auto; }
  .feature-strip.reverse .feature-img,
  .feature-strip.reverse .feature-body { order: unset; }
  .feature-img { min-height: 300px; }
  .feature-body { padding: 48px 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ways-grid { grid-template-columns: 1fr; gap: 2px; }
  .stories-grid { grid-template-columns: 1fr; }
  .content-2col { grid-template-columns: 1fr; gap: 40px; }
  .content-3col { grid-template-columns: 1fr; }
  .dome-cta h2 { font-size: clamp(56px, 15vw, 100px); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-2col { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1px solid var(--line); border-radius: var(--radius); }
  .newsletter-form .btn { border-radius: var(--radius); width: 100%; justify-content: center; }
  .amount-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .stat-num { font-size: 52px; }
  .way-card { padding: 36px 28px; }
  .feature-body { padding: 40px 24px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
