/* ========================================
   Bullets4Life — Warm Nonprofit Design System
   charity:water meets civil rights movement
   Editorial. Warm. Human. Emotional.
   ======================================== */

/* Google Fonts — Playfair Display for headlines, Source Serif 4 for body */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;0,8..60,600;0,8..60,700;1,8..60,400;1,8..60,500&display=swap');

/* ========================================
   CSS Variables
   ======================================== */
:root {
  --bg: #FAFAF8;
  --bg-cream: #F5F0E8;
  --bg-white: #FFFFFF;
  --bg-dark: #1C1410;
  --headline: #1A1209;
  --body-text: #3D3530;
  --secondary-text: #7A6E68;
  --gold: #B8860B;
  --gold-hover: #9A7209;
  --crimson: #8B1A1A;
  --highlight: #F5E6C8;
  --border-light: #E8DDD0;
  --border-warm: #D4C8B8;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --nav-height: 80px;
  --max-width: 1140px;
  --transition: 0.3s ease;
}

/* ========================================
   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-body);
  background: var(--bg);
  color: var(--body-text);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* ========================================
   Utility
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-cream {
  background: var(--bg-cream);
}

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

.section-dark {
  background: var(--bg-dark);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--headline);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.1rem;
  color: var(--secondary-text);
  max-width: 640px;
  line-height: 1.85;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Gold divider */
.gold-divider {
  border: none;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 0;
}

/* ========================================
   Buttons — understated, not glowing
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #FFFFFF;
}
.btn-gold:hover {
  background: var(--gold-hover);
}

.btn-dark {
  background: var(--gold);
  color: var(--bg-dark);
}
.btn-dark:hover {
  background: #A07A0A;
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: rgba(184,134,11,0.08);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Text link with arrow */
.text-link {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--gold);
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}
.text-link:hover {
  gap: 12px;
}
.text-link .arrow {
  font-size: 1.1rem;
  transition: transform var(--transition);
}

/* ========================================
   Navigation — white, clean, thin border
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(28,20,16,0.06);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headline);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a:not(.nav-cta) {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--body-text);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a:not(.nav-cta).active {
  color: var(--gold);
}

.nav-links a:not(.nav-cta).active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  margin-left: 8px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--headline);
  transition: all var(--transition);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--headline);
  transition: color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold);
}

/* ========================================
   Hero — warm off-white, editorial
   ======================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--bg);
}

.hero-text {
  max-width: 560px;
}

.hero-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.hero-badge-line {
  display: none;
}

.hero-badge-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  white-space: nowrap;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--headline);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--secondary-text);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}

.hero-trust span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--secondary-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Hero image */
.hero-image {
  height: 600px;
  border-radius: 16px;
  background-image: url('images/susan.jpg');
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28,20,16,0.15);
}

.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.45));
}

.hero-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
}

/* Sub-page hero (smaller, centered) */
.hero-small {
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-height) + 80px) 24px 60px;
  max-width: 100%;
  grid-template-columns: 1fr;
  background: var(--bg);
}

.hero-small .hero-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-small .hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.hero-small .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   Editorial Program Rows
   ======================================== */
.program-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.program-row:last-child {
  border-bottom: none;
}

.program-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  padding-top: 4px;
}

.program-content {}

.program-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 12px;
}

.program-desc {
  font-size: 1.05rem;
  color: var(--secondary-text);
  line-height: 1.8;
  max-width: 560px;
}

/* ========================================
   Pull Quote / Mission Statement
   ======================================== */
.quote-section {
  background: var(--bg-dark);
  padding: 100px 24px;
  text-align: center;
}

.pull-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 500;
  color: var(--gold);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 24px;
}

.pull-quote-attr {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
}

/* ========================================
   Two-Column Editorial
   ======================================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col-text {}

.two-col-image {
  height: 420px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

/* ========================================
   Stats — large serif numbers, no boxes
   ======================================== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 56px;
  text-align: center;
}

.stat-item {}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.1;
}

.stat-label {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.5;
}

/* ========================================
   Speaker CTA Section (dark warm bg)
   ======================================== */
.speaker-section {
  background: var(--bg-dark);
  padding: 100px 24px;
  text-align: center;
}

.speaker-section .section-headline {
  color: var(--gold);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.speaker-section .section-body {
  color: rgba(255,255,255,0.7);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* ========================================
   Final CTA
   ======================================== */
.final-cta {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.final-cta-item {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition);
}

.final-cta-item:hover {
  gap: 14px;
}

/* ========================================
   Product — editorial layout
   ======================================== */
.product-image-placeholder {
  height: 380px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.product-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  background: var(--gold);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 4px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
}

/* Shop product grid — editorial */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.product-card {
  text-align: left;
}

.product-card .product-image-placeholder {
  height: 320px;
  margin-bottom: 24px;
}

/* ========================================
   Donation Rows — large text, no boxes
   ======================================== */
.donate-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
  transition: background var(--transition);
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
}

.donate-row:hover,
.donate-row.selected {
  background: var(--highlight);
}

.donate-row:last-of-type {
  border-bottom: none;
}

.donate-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
}

.donate-desc {
  font-size: 1rem;
  color: var(--secondary-text);
  line-height: 1.5;
}

.custom-amount {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  max-width: 480px;
}

.custom-amount input {
  flex: 1;
  padding: 14px 20px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-warm);
  border-radius: 6px;
  color: var(--headline);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.custom-amount input:focus {
  border-color: var(--gold);
}

.custom-amount input::placeholder {
  color: var(--secondary-text);
}

/* ========================================
   Forms — warm, human
   ======================================== */
.form-section {
  max-width: 640px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--body-text);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-white);
  border: 1.5px solid var(--border-warm);
  border-radius: 8px;
  color: var(--headline);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: border-color var(--transition);
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-control::placeholder {
  color: #B0A59C;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ========================================
   Info Columns — no borders, just content
   ======================================== */
.info-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 60px;
}

.info-col {}

.info-col-icon {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.info-col-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--headline);
  margin-bottom: 10px;
}

.info-col-text {
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
}

/* ========================================
   Involvement Sections
   ======================================== */
.involve-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.involve-section:last-of-type {
  border-bottom: none;
}

.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.involve-info {}

.involve-info .section-headline {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ========================================
   Footer — dark warm
   ======================================== */
.footer {
  background: var(--bg-dark);
  padding: 80px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.26s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Video Section
   ======================================== */
.section-video {
  background: var(--bg-cream);
  padding: 100px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.video-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.video-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}
.video-embed iframe,
.video-embed video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 40px);
    padding-bottom: 60px;
    gap: 40px;
  }
  .hero-image { height: 360px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .stats-row { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .info-columns { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .involve-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }

  .section { padding: 72px 0; }

  /* 1. NAV — hide desktop links, show hamburger */
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }

  /* 5. GENERAL MOBILE PADDING */
  .container { padding-left: 24px; padding-right: 24px; }

  /* 3. HERO — stack image above text */
  .hero {
    padding-top: calc(var(--nav-height) + 32px);
    text-align: center;
  }
  .hero-text { margin: 0 auto; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: 1rem; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-image { height: 340px; order: -1; border-radius: 12px; }
  .hero-trust { justify-content: center; gap: 16px; }
  .founder-image { height: 320px; }
  .hero-badge { justify-content: center; }

  .hero-small { padding-top: calc(var(--nav-height) + 48px); padding-left: 24px; padding-right: 24px; }

  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { text-align: center; }

  /* 6. PROGRAM ROWS — stack cleanly */
  .program-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .program-number { display: block; margin-bottom: 8px; font-size: 2rem; }
  .program-name { font-size: 1.3rem; }

  /* 4. STATS SECTION — centered with equal padding */
  .stats-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stat-item { text-align: center; padding: 24px 16px; }
  .stat-number { font-size: clamp(2.5rem, 10vw, 4rem); }
  .stat-label { max-width: 200px; margin: 0 auto; }

  /* Two-col sections */
  .two-col-image { height: 280px; }

  /* Products */
  .product-grid { grid-template-columns: 1fr; }
  .product-card .product-image-placeholder { height: 260px; }

  /* Donate rows */
  .donate-row {
    grid-template-columns: 100px 1fr;
  }
  .donate-amount { font-size: 1.6rem; }

  .info-columns { grid-template-columns: 1fr; gap: 32px; }

  .form-row { grid-template-columns: 1fr; }

  /* Instagram / community grids */
  .ig-grid-top { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ig-grid { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .ig-photo-large { height: 200px; }
  .founder-image { height: 400px; }
  .founder-stats { gap: 24px; }

  /* 7. VIDEO GRID — single column, proper aspect ratio */
  .video-grid { grid-template-columns: 1fr; }
  .video-embed { overflow: hidden; }

  /* 8. FINAL CTA — stack vertically, full width */
  .final-cta { flex-direction: column; gap: 16px; align-items: stretch; }
  .final-cta-item { width: 100%; text-align: center; display: block; justify-content: center; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-brand { text-align: center; }
  .footer-links { justify-content: center; }

  .quote-section { padding: 72px 24px; }
  .pull-quote { font-size: clamp(1.3rem, 4vw, 1.8rem); }

  /* 2. FLOATING DONATE BUTTON — smaller on mobile */
  .floating-donate {
    padding: 12px 20px !important;
    font-size: 0.9rem !important;
    bottom: 16px !important;
    right: 16px !important;
  }
}

@media (max-width: 480px) {
  .ig-grid-top { grid-template-columns: 1fr 1fr; gap: 6px; }
  .ig-grid-top .ig-photo-large:last-child { display: none; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-photo-large { height: 140px; }
  .hero-trust { flex-direction: column; gap: 10px; }
  .founder-stats { flex-direction: column; gap: 20px; }
  .custom-amount { flex-direction: column; }
  .donate-row { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .text-link { justify-content: center; }

  /* Hero image hidden on very small screens */
  .hero-image { display: none; }
}

/* ========================================
   Founder Section
   ======================================== */
.founder-section {
  padding: 100px 0;
}

.founder-col {
  gap: 80px;
  align-items: center;
}

.founder-image {
  position: relative;
  height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(28,20,16,0.12);
}

.founder-image-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(28,20,16,0.8);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
}

.founder-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}

.founder-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.founder-stat-label {
  font-size: 0.82rem;
  color: var(--secondary-text);
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   Community / Instagram Gallery
   ======================================== */
.ig-section {
  background: var(--bg-cream);
  padding: 100px 0;
}
.ig-header {
  text-align: center;
}

/* Top row — larger community photos */
.ig-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.ig-photo-large {
  display: block;
  height: 280px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--bg-cream);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ig-photo-large:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(28,20,16,0.15);
}
.ig-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom row — Instagram thumbnails */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 0;
}
.ig-photo {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-white);
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.ig-photo:hover {
  transform: scale(1.04);
  opacity: 0.9;
}
.ig-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ig-follow-card {
  background: var(--bg-white);
  border: 1.5px solid rgba(184, 134, 11, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ig-follow-inner {
  text-align: center;
  padding: 8px;
}

/* Spinning Logo */
.hero-logo-spin {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  perspective: 600px;
}
.spinning-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  animation: spin 10s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(184, 134, 11, 0.25));
}
@keyframes spin {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@media (max-width: 768px) {
  .spinning-logo { width: 120px; height: 120px; }
  .hero-logo-spin { margin-bottom: 20px; }
}

/* ========================================
   Press & Media
   ======================================== */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.press-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 32px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
}

.press-outlet {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.press-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--secondary-text);
  margin-bottom: 12px;
}

.press-headline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--headline);
  line-height: 1.35;
  margin-bottom: 12px;
}

.press-excerpt {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--secondary-text);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.press-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.press-link:hover {
  gap: 8px;
}

@media (max-width: 768px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* ========================================
   As Seen In Bar
   ======================================== */
.press-bar {
  background: var(--bg-cream);
  padding: 28px 0;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
  border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}
.press-bar-label {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary-text);
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logos span {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--secondary-text);
  font-style: italic;
  opacity: 0.7;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .press-logos { gap: 24px; }
  .press-logos span { font-size: 0.85rem; }
}

/* ========================================
   DESIGN REFRESH — March 2026
   Hero: full-bleed, bigger headline
   Gallery: clean photo rows
   ======================================== */

/* Hero — remove max-width so image bleeds to screen edge */
.hero {
  max-width: 100% !important;
  margin: 0 !important;
  gap: 0 !important;
  padding: 0 !important;
  align-items: stretch !important;
}

/* Hero text — own padding so it breathes */
.hero-text {
  padding: calc(var(--nav-height) + 80px) 72px 80px 60px;
  max-width: 600px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Bigger, more impactful headline */
.hero-headline {
  font-size: clamp(3.2rem, 5.5vw, 5.2rem) !important;
  line-height: 1.03 !important;
  margin-bottom: 28px !important;
}

.hero-sub {
  font-size: 1.15rem !important;
  line-height: 1.9 !important;
  margin-bottom: 48px !important;
  max-width: 460px !important;
}

/* Badge — left-aligned with gold line */
.hero-badge {
  justify-content: flex-start !important;
  gap: 12px !important;
  margin-bottom: 36px !important;
}

.hero-badge-line {
  display: block !important;
  width: 32px !important;
  height: 2px !important;
  background: var(--gold) !important;
  flex-shrink: 0 !important;
}

/* Logo spin — left-aligned */
.hero-logo-spin {
  justify-content: flex-start !important;
  margin-bottom: 24px !important;
}

.spinning-logo {
  width: 72px !important;
  height: 72px !important;
}

/* Hero image — capped height, rounded corners */
.hero-image {
  min-height: unset !important;
  height: 520px !important;
  border-radius: 16px !important;
}

/* Pull quote — a bit larger */
.pull-quote {
  font-size: clamp(1.6rem, 3vw, 2.5rem) !important;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-text {
    padding: calc(var(--nav-height) + 48px) 32px 48px !important;
    text-align: center;
    max-width: 100% !important;
  }
  .hero-badge { justify-content: center !important; }
  .hero-logo-spin { justify-content: center !important; }
  .hero-ctas { justify-content: center !important; }
  .hero-image {
    min-height: 360px !important;
  }
}

@media (max-width: 768px) {
  .hero-text {
    padding: calc(var(--nav-height) + 32px) 24px 40px !important;
  }
  .hero-sub {
    max-width: 100% !important;
  }
}

/* ========================================
   MOBILE GALLERY FIX — March 2026
   ======================================== */

/* Top row: force equal heights, both photos aligned */
@media (max-width: 768px) {
  .ig-grid-top {
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    align-items: stretch !important;
  }
  .ig-photo-large {
    height: 200px !important;
    aspect-ratio: unset !important;
  }
  .ig-photo-large img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Bottom row: 4 columns so follow card doesn't get cut off */
  .ig-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }
  .ig-photo {
    aspect-ratio: 1 !important;
  }
}

@media (max-width: 420px) {
  .ig-photo-large {
    height: 160px !important;
  }
  .ig-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Larger spinning logo */
.spinning-logo {
  width: 140px !important;
  height: 140px !important;
}
@media (max-width: 768px) {
  .spinning-logo {
    width: 120px !important;
    height: 120px !important;
  }
}
