/* ============================================
   SHAKUNTALA SADAN — Design System & Styles
   ============================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Primary Colors */
  --maroon: #7B3F36;
  --maroon-dark: #5E2E29;
  --maroon-light: #9A5B51;
  --saffron: #C8A66A;
  --saffron-light: #E4CCA3;
  --saffron-glow: #F2E3C8;
  --gold: #B99257;

  /* Neutrals */
  --cream: #FBF7F2;
  --cream-dark: #F4EDE3;
  --deep-brown: #2F2521;
  --brown-text: #5B4A42;
  --warm-gray: #87766D;
  --light-gray: #EEE5DA;
  --white: #FFFFFF;
  --black: #1C1512;

  /* Accent */
  --green-accent: #2E7D32;
  --orange-accent: #E65100;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: 90px 0;
  --container-width: 1200px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(58, 28, 28, 0.08);
  --shadow-md: 0 8px 30px rgba(58, 28, 28, 0.12);
  --shadow-lg: 0 16px 50px rgba(58, 28, 28, 0.16);
  --shadow-xl: 0 24px 60px rgba(58, 28, 28, 0.2);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--deep-brown);
  background:
    radial-gradient(circle at top left, rgba(212, 163, 56, 0.08), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Section Titles ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title span {
  color: var(--maroon);
}

.section-subtitle {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 650px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center .section-label::before {
  display: none;
}

.text-center .section-label::after {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--saffron);
}

/* ── Scroll Reveal Animation ── */
.reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.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;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================
   1. TOP BAR
   ============================================ */
.topbar {
  background: var(--deep-brown);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 248, 240, 0.8);
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-left a {
  color: rgba(255, 248, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  transition: color var(--transition-fast);
}

.topbar-left a:hover {
  color: var(--saffron-light);
}

.topbar-left i {
  font-size: 13px;
  color: var(--saffron);
}

.topbar-right {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.1);
  color: rgba(255, 248, 240, 0.7);
  font-size: 12px;
  transition: all var(--transition-fast);
}

.topbar-social a:hover {
  background: var(--saffron);
  color: var(--deep-brown);
  transform: translateY(-2px);
}

/* ============================================
   2. NAVIGATION / HEADER
   ============================================ */
.main-header {
  background: var(--white);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.main-header.scrolled {
  box-shadow: var(--shadow-md);
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-image {
  width: 140px;
  height: 54px;
  object-fit: contain;
  object-position: left center;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(47, 37, 33, 0.1);
  flex-shrink: 0;
}

.logo-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-light);
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.3);
}

.logo-text h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
  line-height: 1.1;
}

.logo-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron);
}

/* Desktop Nav */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--deep-brown);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--maroon);
  background: rgba(139, 26, 26, 0.06);
}

.nav-menu .nav-donate {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(139, 26, 26, 0.35);
}

.nav-menu .nav-donate:hover {
  background: linear-gradient(135deg, var(--maroon-dark), var(--maroon));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   3. HERO BANNER
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #3A1C1C 0%, #5A2828 30%, #8B1A1A 60%, #6B1010 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Placeholder for user's hero image */
.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.68;
  object-position: center 46%;
  transform: scale(1.06);
  animation: heroImageDrift 16s ease-in-out infinite alternate;
}

/* Decorative gradient if no image */
.hero-bg-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 163, 56, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(139, 26, 26, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(212, 163, 56, 0.1) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(32, 12, 12, 0.96) 0%, rgba(51, 18, 17, 0.87) 34%, rgba(75, 24, 20, 0.42) 64%, rgba(47, 11, 11, 0.48) 100%),
    linear-gradient(0deg, rgba(23, 8, 8, 0.5) 0%, transparent 42%);
}

.hero-orb {
  position: absolute;
  z-index: 2;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  opacity: 0.5;
}

.hero-orb-one {
  top: -20vw;
  left: 25%;
  background: radial-gradient(circle, rgba(227, 176, 71, 0.25), transparent 65%);
}

.hero-orb-two {
  right: -12vw;
  bottom: -20vw;
  background: radial-gradient(circle, rgba(141, 24, 24, 0.7), transparent 64%);
}

.hero .container {
  position: relative;
  z-index: 3;
  min-height: 92vh;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 700px;
  animation: heroContentIn 900ms 120ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 163, 56, 0.15);
  border: 1px solid rgba(212, 163, 56, 0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--saffron-light);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  font-size: 14px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 240, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: -10px 0 16px;
}

.hero-kicker span {
  width: 26px;
  height: 1px;
  background: var(--saffron-light);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.hero-title .highlight {
  color: var(--saffron-light);
  display: block;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--saffron-glow);
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 248, 240, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
  max-width: 680px;
}

.hero-mini-stat {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-mini-stat strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 4px;
}

.hero-mini-stat span {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.78);
}

.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(26, 10, 10, 0.2);
  backdrop-filter: blur(14px);
  animation: heroPanelIn 900ms 380ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: auto auto -18px -18px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(212, 163, 56, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-panel-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--maroon);
}

.hero-panel-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 163, 56, 0.12);
  color: var(--deep-brown);
  font-size: 12px;
  font-weight: 700;
}

.hero-panel-rating i {
  color: var(--orange-accent);
}

.hero-panel h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.3;
  color: var(--deep-brown);
  margin-bottom: 22px;
}

.hero-panel-grid {
  display: grid;
  gap: 14px;
}

.hero-panel-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.85), rgba(245, 237, 224, 0.95));
}

.hero-panel-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--saffron-light);
  flex-shrink: 0;
}

.hero-panel-card h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--deep-brown);
}

.hero-panel-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--warm-gray);
}

.hero-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--maroon);
}

.hero-panel-link:hover {
  color: var(--saffron);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--deep-brown);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(212, 163, 56, 0.4);
  transition: all var(--transition-base);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(212, 163, 56, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-secondary:hover {
  border-color: var(--saffron-light);
  color: var(--saffron-light);
  background: rgba(212, 163, 56, 0.1);
  transform: translateY(-3px);
}

/* Floating decorative elements */
.hero-decor {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 3;
  opacity: 0.12;
  font-size: 250px;
  color: var(--saffron);
  pointer-events: none;
}

.hero-scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: max(5%, calc((100% - 1180px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 248, 240, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 248, 240, 0.34);
  border-radius: 50%;
  color: var(--saffron-light);
  animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.06) translate3d(-0.6%, -0.4%, 0);
  }

  to {
    transform: scale(1.12) translate3d(0.8%, 0.5%, 0);
  }
}

@keyframes heroContentIn {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroPanelIn {
  from {
    opacity: 0;
    transform: translate3d(26px, 22px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes scrollCue {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(5px);
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-bg-image,
  .hero-content,
  .hero-panel,
  .hero-scroll-cue i {
    animation: none;
  }
}

/* ============================================
  3B. HIGHLIGHTS STRIP
   ============================================ */
.highlights-strip {
  position: relative;
  margin-top: -60px;
  z-index: 4;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 45px rgba(58, 28, 28, 0.12);
  backdrop-filter: blur(12px);
}

.highlight-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  color: var(--deep-brown);
  box-shadow: 0 12px 24px rgba(212, 163, 56, 0.28);
}

.highlight-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--deep-brown);
}

.highlight-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ============================================
   4. VIDEO SECTION
   ============================================ */
.video-section {
  padding: 80px 0;
  background: var(--white);
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
  background: var(--deep-brown);
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder when no video */
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3A1C1C, #5A2828);
  color: var(--cream);
  gap: 16px;
}

.video-placeholder i {
  font-size: 64px;
  color: var(--saffron);
  opacity: 0.6;
}

.video-placeholder p {
  font-size: 16px;
  opacity: 0.5;
}

.video-photo-overlay {
  position: absolute;
  inset: auto 24px 24px 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(42, 22, 22, 0.92), rgba(139, 26, 26, 0.68));
  color: var(--white);
  box-shadow: 0 18px 40px rgba(26, 10, 10, 0.28);
}

.video-photo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--saffron-glow);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.video-photo-text h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.video-photo-text p {
  max-width: 520px;
  color: rgba(255, 248, 240, 0.82);
  font-size: 14px;
}

/* ============================================
   4B. SCROLL STORYTELLING SECTION
   ============================================ */
.moments-section {
  padding: 0 0 90px;
  background: var(--white);
}

/* — Modern narrative layout — */
.story-scroll {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.story-nav {
  position: relative;
  top: 0;
  align-self: stretch;
}

.story-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(123, 63, 54, 0.12);
  border-radius: 999px;
  background: rgba(123, 63, 54, 0.04);
}

.story-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--warm-gray);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all var(--transition-base);
  border-radius: 999px;
}

.story-nav-link:hover {
  color: var(--maroon);
  background: rgba(123, 63, 54, 0.08);
  transform: translateY(-1px);
}

.story-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-gray);
  border: 2px solid var(--light-gray);
  transition: all var(--transition-base);
  flex-shrink: 0;
  position: relative;
}

.story-nav-link.active {
  color: var(--maroon);
  font-weight: 700;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(92, 43, 31, 0.12);
}

.story-nav-link.active .story-nav-dot {
  background: var(--maroon);
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(123, 63, 54, 0.12);
}

.story-nav-link.active::before {
  display: none;
}

/* — Right content column — */
.story-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* — Chapter styling — */
.story-chapter {
  scroll-margin-top: 110px;
  padding: 28px 30px;
  border: 1px solid rgba(123, 63, 54, 0.1);
  border-radius: 28px;
  background: linear-gradient(135deg, #fffdf9 0%, #fcf6ee 100%);
  box-shadow: 0 16px 40px rgba(60, 26, 18, 0.06);
}

.story-chapter-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(123, 63, 54, 0.12);
}

.story-chapter-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(123, 63, 54, 0.08);
}

.story-chapter-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--deep-brown);
  line-height: 1.25;
  margin-bottom: 10px;
}

.story-chapter-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 620px;
}

/* — Story cards — */
.story-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.story-card-item {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(123, 63, 54, 0.08);
  box-shadow: 0 10px 24px rgba(60, 26, 18, 0.05);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.story-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(60, 26, 18, 0.1);
}

.story-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: 12px 12px 0;
  border-radius: 16px;
}

.story-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 16px;
}

.story-card-item:hover .story-card-media img {
  transform: scale(1.03);
}

.story-card-caption {
  padding: 16px 18px 20px;
}

.story-card-caption h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 6px;
}

.story-card-caption p {
  font-size: 13px;
  color: var(--warm-gray);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .story-nav-inner {
    border-radius: 20px;
  }

  .story-nav-link {
    width: 100%;
    justify-content: center;
  }

  .story-chapter {
    padding: 22px 20px;
  }

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

/* — Story Reveal Animation — */
.story-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.story-reveal.story-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger children within each chapter */
.story-cards .story-card-item:nth-child(2) {
  transition-delay: 0.12s;
}

.story-cards .story-card-item:nth-child(3) {
  transition-delay: 0.24s;
}

/* ============================================
   5. ABOUT US
   ============================================ */
.about-section {
  padding: var(--section-padding);
  background: radial-gradient(circle at top left, rgba(200, 166, 106, 0.14), transparent 20%),
    linear-gradient(160deg, var(--cream), var(--cream-dark));
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.about-grid::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 14%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle at 20% 20%, rgba(200, 166, 106, 0.18), transparent 48%);
  transform: rotate(-6deg);
  opacity: 0.68;
  pointer-events: none;
  z-index: 0;
}

.about-animation {
  position: relative;
  z-index: 1;
}

.about-animate {
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.about-animate:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 213, 188, 0.85));
  animation: aboutFloat 10s ease-in-out infinite;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.32), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(232, 213, 188, 0.18), transparent 32%);
  pointer-events: none;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-image:hover img {
  transform: scale(1.02);
}

.about-image-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-brown);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.about-text {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-xl);
  padding: 42px 44px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(200, 166, 106, 0.14);
}

.about-text::before {
  content: '';
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(200, 166, 106, 0.14);
  z-index: 0;
}

.about-text::after {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(232, 213, 188, 0.16);
  z-index: 0;
}

.about-text .section-label {
  color: var(--green-accent);
}

.about-text .section-title {
  font-size: 46px;
  line-height: 1.12;
  margin-bottom: 22px;
}

.about-text p {
  font-size: 16px;
  color: var(--brown-text);
  margin-bottom: 20px;
}

.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.about-feature-card {
  background: rgba(250, 246, 242, 0.95);
  border-radius: var(--radius-md);
  border: 1px solid rgba(200, 166, 106, 0.14);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}

.about-feature-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 10px;
  color: var(--deep-brown);
}

.about-feature-card span {
  color: var(--warm-gray);
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(200, 166, 106, 0.14);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.about-founder-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 166, 106, 0.25), rgba(232, 213, 188, 0.16));
  color: var(--saffron);
  font-size: 20px;
}

.about-founder-info h4 {
  margin-bottom: 6px;
  font-size: 18px;
}

.about-founder-info p {
  margin: 0;
  font-size: 14px;
  color: var(--warm-gray);
}

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


.about-feature-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 163, 56, 0.18);
  box-shadow: var(--shadow-sm);
}

.about-feature-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--maroon);
  font-size: 15px;
}

.about-feature-card span {
  display: block;
  color: var(--warm-gray);
  font-size: 13px;
  line-height: 1.6;
}

.about-founder {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
  border-left: 4px solid var(--saffron);
}

.about-founder-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}

.about-founder-info h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-brown);
}

.about-founder-info p {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 0;
}

/* ============================================
   6. INSPIRATIONAL QUOTE
   ============================================ */
.quote-section {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 5%;
  font-size: 300px;
  font-family: var(--font-heading);
  color: rgba(212, 163, 56, 0.08);
  line-height: 1;
  pointer-events: none;
}

.quote-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-content blockquote {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 24px;
}

.quote-divider {
  width: 60px;
  height: 3px;
  background: var(--saffron);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.quote-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron-light);
}

/* ============================================
  6B. COMPANIONSHIP SECTION
   ============================================ */
.story-stack-section {
  padding: 0 0 110px;
  background: linear-gradient(180deg, var(--cream) 0%, #fffdfa 100%);
}

.story-stack {
  position: relative;
}

.companionship-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  align-items: center;
  gap: 30px;
  padding: 48px 54px;
  border-radius: 34px;
  background: linear-gradient(135deg, #f3e5ea 0%, #f6ecf0 52%, #fbf5f7 100%);
  box-shadow: 0 24px 60px rgba(94, 46, 41, 0.12);
  overflow: hidden;
}

.story-card {
  position: sticky;
  top: 100px;
}

.story-card+.story-card {
  margin-top: 80px;
}

.story-card-primary {
  z-index: 2;
}

.story-card-secondary {
  z-index: 3;
  background: linear-gradient(135deg, #f8eed9 0%, #fbf4e6 54%, #fffaf0 100%);
}

.story-card-secondary .companionship-content h2 span {
  color: #f28f20;
}

.companionship-content h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  line-height: 1.2;
  color: var(--deep-brown);
  margin-bottom: 18px;
}

.companionship-content h2 span {
  color: #8d2a76;
}

.companionship-content p {
  font-size: 15px;
  color: var(--brown-text);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 620px;
}

.companionship-content .btn-primary {
  margin-top: 10px;
  background: linear-gradient(135deg, #ff9c2f, #ff8b1f);
  color: var(--white);
}

.companionship-visual {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.companionship-photo-wrap {
  position: relative;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(47, 37, 33, 0.18);
}

.companionship-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companionship-ring {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  pointer-events: none;
}

.companionship-ring.ring-one {
  width: 370px;
  height: 370px;
  border-width: 26px;
  border-color: #cb76ab #cb76ab transparent #cb76ab;
  transform: rotate(38deg);
  opacity: 0.92;
}

.companionship-ring.ring-two {
  width: 328px;
  height: 328px;
  border-width: 18px;
  border-color: rgba(255, 255, 255, 0.75);
  z-index: 1;
}

/* ============================================
   7. WHAT WE OFFER — Services
   ============================================ */
.services-section {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #fffdfa 0%, var(--cream) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(94, 46, 41, 0.08);
  border-radius: 28px;
  padding: 28px;
  text-align: left;
  transition: all var(--transition-base);
  cursor: default;
  box-shadow: 0 16px 40px rgba(47, 37, 33, 0.07);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: var(--white);
  border-color: rgba(185, 146, 87, 0.28);
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(47, 37, 33, 0.12);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--saffron));
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(200, 166, 106, 0.12);
  color: var(--maroon);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(123, 63, 54, 0.08), rgba(200, 166, 106, 0.16));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  font-size: 26px;
  color: var(--maroon);
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--saffron-light);
  transform: translateY(-2px);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 18px;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown-text);
  font-size: 12px;
  font-weight: 600;
}

.service-points li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron);
}

.services-cta {
  margin-top: 34px;
  padding: 22px 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(139, 26, 26, 0.05), rgba(212, 163, 56, 0.1));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.services-cta p {
  font-size: 15px;
  color: var(--brown-text);
  font-weight: 500;
}

/* ============================================
   8. VISION & EVERYDAY LIFE
   ============================================ */
.vision-section {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--cream-dark), var(--cream));
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vision-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #E8D5C0, #D4C0A8);
}

.vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-text p {
  font-size: 15px;
  color: var(--brown-text);
  line-height: 1.9;
  margin-bottom: 18px;
}

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

.vision-highlight {
  background: var(--white);
  border-left: 4px solid var(--saffron);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--maroon);
  font-weight: 500;
}

/* ============================================
   9. IMPACT STATS
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--deep-brown), var(--maroon-dark));
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(212, 163, 56, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse at 90% 50%, rgba(212, 163, 56, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 30px 16px;
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: rgba(212, 163, 56, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--saffron-light);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span {
  color: var(--saffron);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 248, 240, 0.65);
  font-weight: 500;
}

/* ============================================
   10. GALLERY
   ============================================ */
.gallery-section {
  padding: var(--section-padding);
  background: var(--white);
}

.gallery-slider {
  position: relative;
  margin-top: 50px;
}

.gallery-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-bottom: 20px;
}

.gallery-slider-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(47, 37, 33, 0.12);
  background: var(--white);
  color: var(--deep-brown);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), color var(--transition-fast);
}

.gallery-slider-button:hover,
.gallery-slider-button:focus-visible {
  transform: scale(1.05);
  background: var(--saffron-light);
  color: var(--deep-brown);
}

.gallery-slider-track-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 320px;
  box-shadow: var(--shadow-md);
}

.gallery-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.gallery-slide:hover .gallery-slide-image {
  transform: scale(1.04);
}

.gallery-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 20px;
  background: linear-gradient(to top, rgba(18, 13, 10, 0.72), transparent 70%);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.gallery-slide-caption span {
  display: block;
}

@media (max-width: 960px) {
  .gallery-slider-track {
    gap: 18px;
  }

  .gallery-slide {
    flex: 0 0 calc((100% - 18px) / 2);
  }
}

@media (max-width: 680px) {
  .gallery-slider-controls {
    justify-content: center;
    flex-wrap: wrap;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }
}

/* ============================================
   11. HOW YOU CAN HELP
   ============================================ */
.help-section {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--cream), var(--cream-dark));
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.help-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid rgba(212, 163, 56, 0.12);
}

.help-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-light);
}

.help-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--saffron-light);
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.25);
}

.help-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 12px;
}

.help-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.help-card .donate-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.donate-tag {
  display: inline-block;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--maroon);
}

.help-banner {
  margin-top: 32px;
  padding: 30px 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--deep-brown), var(--maroon-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-xl);
}

.help-banner .section-label {
  color: var(--saffron-light);
}

.help-banner .section-label::before {
  background: var(--saffron-light);
}

.help-banner h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 1.3;
  max-width: 650px;
}

/* ============================================
   12. ELDERLY CARE STATS (The Need)
   ============================================ */
.need-section {
  padding: var(--section-padding);
  background: var(--white);
}

.need-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

.need-text p {
  font-size: 15px;
  color: var(--brown-text);
  line-height: 1.9;
  margin-bottom: 18px;
}

.need-stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.need-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--cream);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.need-stat-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.need-stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-light);
  font-size: 18px;
  flex-shrink: 0;
}

.need-stat-info h4 {
  font-size: 22px;
  font-weight: 800;
  color: var(--maroon);
  line-height: 1;
  margin-bottom: 4px;
}

.need-stat-info p {
  font-size: 13px;
  color: var(--warm-gray);
  margin-bottom: 0;
}

/* ============================================
   13. DONATE / BANK DETAILS
   ============================================ */
.donate-section {
  padding: var(--section-padding);
  background: linear-gradient(160deg, var(--cream-dark), var(--cream));
}

.donate-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.donate-info {
  padding: 50px 40px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donate-info h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}

.donate-info p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 248, 240, 0.8);
  margin-bottom: 24px;
}

.donate-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--saffron-light);
  padding: 16px;
  border-left: 3px solid var(--saffron);
  margin-bottom: 30px;
  line-height: 1.6;
}

.bank-details {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bank-details h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 24px;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
}

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

.bank-detail-row .label {
  font-weight: 600;
  color: var(--warm-gray);
}

.bank-detail-row .value {
  font-weight: 700;
  color: var(--deep-brown);
  font-family: 'Inter', monospace;
}

.bank-qr {
  margin-top: 28px;
  text-align: center;
}

.bank-qr-placeholder {
  width: 160px;
  height: 160px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 48px;
  color: var(--warm-gray);
  border: 2px dashed var(--light-gray);
}

.bank-qr p {
  font-size: 12px;
  color: var(--warm-gray);
}

/* ============================================
   14. CONTACT SECTION
   ============================================ */
.contact-section {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 50px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron-light);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(139, 26, 26, 0.2);
}

.contact-info-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-brown);
  margin-bottom: 4px;
}

.contact-info-text p {
  font-size: 14px;
  color: var(--warm-gray);
}

.contact-info-text a {
  color: var(--maroon);
  font-weight: 600;
}

.contact-info-text a:hover {
  color: var(--saffron);
}

/* Contact Form */
.contact-form {
  background: linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212, 163, 56, 0.14);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-brown);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--deep-brown);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--maroon);
}

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

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

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(139, 26, 26, 0.3);
  transition: all var(--transition-base);
  width: 100%;
  justify-content: center;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(139, 26, 26, 0.4);
}

/* Map placeholder */
.contact-map {
  margin-top: 30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gray);
  font-size: 14px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   15. FOOTER
   ============================================ */
.site-footer {
  background: var(--deep-brown);
  color: rgba(255, 248, 240, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.1);
}

.footer-brand .logo-text h2 {
  color: var(--white);
}

.footer-logo-image {
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 16px;
  color: rgba(255, 248, 240, 0.6);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 248, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 248, 240, 0.6);
  font-size: 14px;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--saffron);
  color: var(--deep-brown);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255, 248, 240, 0.6);
  transition: all var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--saffron-light);
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 248, 240, 0.4);
}

.footer-bottom a {
  color: var(--saffron);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
  .section-title {
    font-size: 34px;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 540px;
  }

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

  .story-scroll {
    grid-template-columns: 180px 1fr;
    gap: 36px;
  }

  .story-nav-text {
    font-size: 13px;
  }

  .story-chapter-title {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companionship-card {
    grid-template-columns: 1fr;
  }

  .companionship-content h2 {
    font-size: 38px;
  }

  .story-card {
    position: relative;
    top: auto;
  }

  .story-card+.story-card {
    margin-top: 26px;
  }

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

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

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  .topbar-left {
    display: none;
  }

  .topbar .container {
    justify-content: center;
  }

  .logo-image {
    width: 110px;
    height: 46px;
  }

  /* Mobile Menu */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-base);
    z-index: 999;
    align-items: flex-start;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
    border-radius: 0;
    font-size: 16px;
  }

  .nav-menu .nav-donate {
    margin-left: 0;
    margin-top: 16px;
    justify-content: center;
    border-bottom: none;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Hero */
  .hero {
    min-height: 80vh;
  }

  .hero .container {
    min-height: 80vh;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-mini-stats,
  .about-feature-grid {
    grid-template-columns: 1fr;
  }

  .services-cta,
  .help-banner,
  .video-photo-overlay {
    flex-direction: column;
    align-items: flex-start;
  }

  .story-scroll {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .story-nav {
    position: relative;
    top: auto;
  }

  .story-nav-inner {
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 2px solid var(--light-gray);
    padding: 0 0 12px;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .story-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .story-nav-link {
    white-space: nowrap;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
  }

  .story-nav-link.active::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: -14px;
    width: auto;
    height: 2px;
  }

  .story-content {
    gap: 50px;
  }

  .story-chapter-title {
    font-size: 24px;
  }

  .story-card-caption {
    padding: 18px 20px;
  }

  .hero-decor {
    display: none;
  }

  .hero-scroll-cue {
    display: none;
  }

  /* About */
  .about-grid,
  .vision-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image::after {
    display: none;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    padding: 22px 16px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item.featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Help */
  .help-grid {
    grid-template-columns: 1fr;
  }

  /* Need */
  .need-grid {
    grid-template-columns: 1fr;
  }

  /* Donate */
  .donate-wrapper {
    grid-template-columns: 1fr;
  }

  .donate-info,
  .bank-details {
    padding: 36px 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  /* Quote */
  .quote-content blockquote {
    font-size: 22px;
  }

  .companionship-card {
    padding: 34px 24px;
  }

  .companionship-content h2 {
    font-size: 30px;
  }

  .companionship-photo-wrap {
    width: 240px;
    height: 240px;
  }

  .companionship-ring.ring-one {
    width: 300px;
    height: 300px;
  }

  .companionship-ring.ring-two {
    width: 270px;
    height: 270px;
  }

  /* Section Titles */
  .section-title {
    font-size: 28px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

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

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

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

  .gallery-item.featured {
    grid-column: span 1;
  }

  .hero-panel,
  .highlight-card,
  .help-banner {
    padding: 22px;
  }
}

.story-card-tertiary {
  z-index: 4;
  background: linear-gradient(135deg, #e6f0f7 0%, #eef5fa 54%, #f7fbfd 100%);
}

.story-card-tertiary .companionship-content h2 span {
  color: #1f7a8c;
  /* or whatever accent you want for card 3 */
}



/* ============================================
   DONATE — Tiltable Donor Card
   Append to style.css (uses existing :root tokens)
   ============================================ */

.donor-card-wrap {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.donor-card {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1.586 / 1;
  /* standard card ratio */
  perspective: 1200px;
}

.donor-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.donor-card.is-flipped .donor-card-inner {
  transform: rotateY(180deg);
}

/* The mouse-tilt is applied as an additional inline transform on
   .donor-card-inner via JS (donate-card.js), stacked on top of the
   flip transform using CSS custom properties. */
.donor-card-inner {
  transform:
    rotateX(var(--tiltX, 0deg)) rotateY(calc(var(--tiltY, 0deg) + var(--flip, 0deg)));
}

.donor-card-face {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(58, 28, 28, 0.28);
  display: flex;
  flex-direction: column;
}

.donor-card-front {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 55%, #4a201c 100%);
  padding: 20px 22px;
  justify-content: space-between;
  color: var(--cream);
}

/* Subtle gold hairline + noise-free sheen */
.donor-card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(212, 163, 56, 0.16) 50%, transparent 60%);
  pointer-events: none;
}

.donor-card-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--glareX, 50%) var(--glareY, 50%),
      rgba(255, 255, 255, 0.16),
      transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.donor-card.is-hovering .donor-card-glare {
  opacity: 1;
}

.donor-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.donor-card-emblem {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-brown);
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 163, 56, 0.35);
}

.donor-card-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.donor-card-brand span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--white);
}

.donor-card-brand small {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--saffron-light);
}

.donor-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.donor-card-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.donor-card-row-split {
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}

.donor-card-row-split>div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.donor-card-label {
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 248, 240, 0.55);
}

.donor-card-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--saffron-glow);
}

.donor-card-mono {
  font-family: 'Inter', monospace;
  letter-spacing: 1px;
}

.donor-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.donor-card-marks {
  display: flex;
  gap: -6px;
}

.donor-card-marks span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.donor-card-marks span+span {
  margin-left: -8px;
  background: rgba(255, 255, 255, 0.3);
}

.donor-card-flip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--saffron-glow);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 7px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.donor-card-flip-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Back face */
.donor-card-back {
  background: linear-gradient(135deg, var(--deep-brown), var(--maroon-dark));
  transform: rotateY(180deg);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.donor-card-stripe {
  position: absolute;
  left: 0;
  right: 0;
  top: 22px;
  height: 34px;
  background: rgba(0, 0, 0, 0.65);
}

.donor-card-back-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.donor-card-qr {
  width: 108px;
  height: 108px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--maroon-dark);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.donor-card-back-content p {
  font-size: 12px;
  color: var(--saffron-glow);
  font-weight: 600;
}

.donor-card-hint {
  font-size: 11px;
  color: var(--warm-gray);
  text-align: center;
}

/* ============================================
   HERO — Editorial redesign
   ============================================ */
.hero {
  min-height: 760px;
  background: #f5eee2;
  overflow: visible;
}

.hero-bg,
.hero-overlay,
.hero-orb,
.hero-decor {
  display: none;
}

.hero .container {
  min-height: 760px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-layout {
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.98fr);
  gap: 74px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 590px;
}

.hero-badge {
  color: var(--maroon);
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  letter-spacing: 1.4px;
}

.hero-badge i {
  color: var(--saffron);
}

.hero-kicker {
  color: #8a7165;
  margin: 0 0 22px;
}

.hero-title {
  color: var(--deep-brown);
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: 1.03;
  letter-spacing: -2.2px;
  margin-bottom: 18px;
}

.hero-title .highlight {
  color: var(--maroon);
}

.hero-tagline {
  color: #9c6b2f;
  font-size: 21px;
  margin-bottom: 22px;
}

.hero-desc {
  color: #67564d;
  font-size: 16px;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-buttons {
  gap: 12px;
}

.hero-mini-stats {
  max-width: 560px;
  margin-top: 34px;
  gap: 0;
  border-top: 1px solid rgba(83, 41, 35, 0.18);
}

.hero-mini-stat {
  padding: 17px 17px 6px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.hero-mini-stat+.hero-mini-stat {
  padding-left: 17px;
  border-left: 1px solid rgba(83, 41, 35, 0.18);
}

.hero-mini-stat strong {
  color: var(--maroon);
}

.hero-mini-stat span {
  color: #806e64;
}

.hero-panel {
  min-height: 570px;
  padding: 42px 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 190px 190px 26px 26px;
  background:
    linear-gradient(0deg, rgba(55, 19, 18, 0.94) 0%, rgba(55, 19, 18, 0.7) 31%, rgba(55, 19, 18, 0.06) 75%),
    url('../images/WhatsApp-Image-2026-04-04-at-4.32.32-PM.jpeg') center / cover;
  box-shadow: 24px 24px 0 #dfc796, 0 22px 48px rgba(62, 35, 27, 0.19);
}

.hero-panel::before {
  inset: 30px auto auto 30px;
  width: 76px;
  height: 76px;
  background: radial-gradient(circle, rgba(235, 192, 99, 0.72) 0 5%, transparent 6% 100%);
  opacity: 0.8;
}

.hero-panel-top,
.hero-panel h3,
.hero-panel-grid,
.hero-panel-link {
  position: relative;
  z-index: 1;
}

.hero-panel-top {
  margin-bottom: 16px;
}

.hero-panel-label {
  color: var(--saffron-glow);
}

.hero-panel-rating {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.13);
}

.hero-panel h3 {
  color: var(--white);
  font-size: 32px;
  max-width: 430px;
  margin-bottom: 20px;
}

.hero-panel-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.hero-panel-card {
  display: block;
  padding: 13px 10px;
  background: rgba(255, 248, 240, 0.94);
  border-radius: 12px;
}

.hero-panel-card i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  margin-bottom: 9px;
  font-size: 12px;
}

.hero-panel-card h4 {
  font-size: 13px;
}

.hero-panel-card p {
  display: none;
}

.hero-panel-link {
  color: var(--saffron-glow);
  margin-top: 16px;
}

.hero-scroll-cue {
  color: #806e64;
}

.hero-scroll-cue i {
  color: var(--maroon);
  border-color: rgba(83, 41, 35, 0.28);
}

@media (max-width: 1024px) {

  .hero,
  .hero .container {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-panel {
    max-width: 620px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero .container {
    padding-top: 64px;
    padding-bottom: 46px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 60px);
    letter-spacing: -1.5px;
  }

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

  .hero-mini-stat+.hero-mini-stat {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(83, 41, 35, 0.18);
  }

  .hero-panel {
    min-height: 500px;
    padding: 34px 24px 26px;
    border-width: 7px;
    border-radius: 130px 130px 22px 22px;
    box-shadow: 13px 13px 0 #dfc796, 0 22px 48px rgba(62, 35, 27, 0.19);
  }

  .hero-panel h3 {
    font-size: 26px;
  }
}

/* ============================================
   HERO — Cinematic local-video experience
   ============================================ */
.hero {
  min-height: 100vh;
  background: #1d1110;
  overflow: hidden;
}

.hero-bg {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease-in-out, transform 6s ease-out;
  transform: scale(1.04);
}

.hero-video.active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-overlay {
  display: block;
  z-index: 2;
  background: linear-gradient(90deg, rgba(19, 10, 9, 0.82) 0%, rgba(31, 13, 12, 0.64) 44%, rgba(28, 11, 11, 0.3) 100%), linear-gradient(0deg, rgba(15, 7, 7, 0.58), transparent 52%);
}

.hero .container {
  min-height: 100vh;
  padding-top: 84px;
  padding-bottom: 44px;
  display: flex;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr minmax(300px, 400px);
  gap: 36px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 720px;
  color: var(--white);
}

/* Hero elements are above the fold — bypass scroll-reveal */
.hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-badge {
  display: inline-flex;
  padding: 9px 16px;
  border: 1px solid rgba(255, 248, 240, 0.38);
  border-radius: 99px;
  color: var(--saffron-glow);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}

.hero-kicker {
  color: rgba(255, 248, 240, 0.78);
}

.hero-kicker span {
  background: var(--saffron-light);
}

.hero-title {
  color: var(--white);
  font-size: clamp(56px, 6.5vw, 94px);
  letter-spacing: -2.8px;
  text-shadow: 0 4px 28px rgba(22, 7, 6, 0.22);
}

.hero-title .highlight {
  color: var(--saffron-glow);
}

.hero-tagline {
  color: var(--saffron-glow);
}

.hero-desc {
  color: rgba(255, 248, 240, 0.86);
  max-width: 590px;
  margin-bottom: 24px;
}

.hero-video-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin: 0 0 26px;
}

.hero-video-tab {
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: rgba(255, 248, 240, 0.58);
  font: 600 12px/1.2 var(--font-body);
  letter-spacing: 0.7px;
  cursor: pointer;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.hero-video-tab:hover,
.hero-video-tab.active {
  color: var(--white);
  border-color: var(--saffron-light);
}

.hero-mini-stats {
  position: relative;
  width: 100%;
  max-width: 680px;
  margin-top: 28px;
  border-top-color: rgba(255, 248, 240, 0.3);
}

.hero-mini-stat {
  color: var(--white);
}

.hero-mini-stat strong {
  color: var(--saffron-glow);
}

.hero-mini-stat span {
  color: rgba(255, 248, 240, 0.72);
}

.hero-mini-stat+.hero-mini-stat {
  border-left-color: rgba(255, 248, 240, 0.3);
}

.hero-scroll-cue {
  display: none;
}

@media (max-width: 1024px) {
  .hero .container {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero .container {
    min-height: 100svh;
    padding-top: 60px;
    padding-bottom: 26px;
  }

  .hero-layout {
    min-height: calc(100svh - 86px);
    align-items: flex-start;
    padding-top: 28px;
  }

  .hero-title {
    font-size: clamp(46px, 15vw, 64px);
    letter-spacing: -1.7px;
  }

  .hero-desc {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .hero-video-switcher {
    gap: 5px 14px;
    margin-bottom: 20px;
  }

  .hero-video-tab {
    font-size: 11px;
  }

  .hero-mini-stats {
    position: static;
    width: 100%;
    margin-top: 24px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-mini-stat {
    padding: 13px 10px 2px 0;
  }

  .hero-mini-stat+.hero-mini-stat {
    padding-left: 10px;
    border-top: 0;
    border-left: 1px solid rgba(255, 248, 240, 0.3);
  }

  .hero-mini-stat strong {
    font-size: 14px;
  }

  .hero-mini-stat span {
    font-size: 10px;
  }
}

@media (hover: none) {
  .donor-card-hint {
    opacity: 0.8;
  }
}