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

:root {
  --sage: #A8B5A2;
  --sage-light: #c5cfbf;
  --gold: #C9A66B;
  --gold-light: #d4bb8a;
  --gold-dark: #b08f55;
  --cream: #F8F4EF;
  --forest: #2C3E2F;
  --forest-light: #3a5240;
  --taupe: #D9C2B0;
  --taupe-light: #e8ddd3;
  --white: #FFFFFF;
  --text-dark: #2a2a2a;
  --text-muted: #6b6560;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Leaf SVG Dividers ── */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
  opacity: 0.5;
}

.leaf-divider svg {
  width: 28px;
  height: 28px;
}

.leaf-divider .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Sticky Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
}

.nav.scrolled {
  background: rgba(44, 62, 47, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

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

.nav-links a {
  font-family: 'Lora', serif;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

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

.nav-links a.active {
  color: var(--gold);
}

.nav-cta-btn {
  background: var(--gold);
  color: var(--forest) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px !important;
  transition: background 0.3s, transform 0.3s !important;
}

.nav-cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* ── Hero Section (full-height for homepage) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(44, 62, 47, 0.2) 0%,
      rgba(44, 62, 47, 0.35) 40%,
      rgba(44, 62, 47, 0.65) 100%),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1920&q=80&fit=crop&auto=format') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.leaf-particle {
  position: absolute;
  opacity: 0;
  animation: leafFall linear infinite;
}

@keyframes leafFall {
  0% {
    opacity: 0;
    transform: translateY(-20px) rotate(0deg) translateX(0);
  }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(360deg) translateX(80px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
  animation: heroFadeIn 1.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  font-family: 'Lora', serif;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201, 166, 107, 0.4);
  padding: 8px 24px;
  margin-bottom: 32px;
  animation: heroFadeIn 1.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  display: block;
  color: var(--gold);
  font-style: italic;
  font-size: 0.65em;
  margin-top: 4px;
}

.hero-subtitle {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gold-light);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.hero-verse-ref {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.hero-details {
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-details strong {
  color: var(--white);
  font-weight: 600;
}

/* ── Banner Hero (shorter, for subpages) ── */
.hero-banner {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-banner .hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(44, 62, 47, 0.3) 0%,
      rgba(44, 62, 47, 0.6) 100%),
    url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65?w=1920&q=80&fit=crop&auto=format') center/cover no-repeat;
  background-attachment: fixed;
}

.hero-banner .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 24px 40px;
  animation: heroFadeIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}

.hero-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-banner .hero-subtitle {
  font-family: 'Lora', serif;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 44px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(201, 166, 107, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 166, 107, 0.4);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 24px rgba(201, 166, 107, 0.25);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 166, 107, 0.35);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 4px;
  border: 1.5px solid rgba(248, 244, 239, 0.3);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-learn-more {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: color 0.3s;
  animation: gentleBounce 2.5s ease-in-out infinite;
}

.hero-learn-more:hover {
  color: var(--gold);
}

@keyframes gentleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Section Styles ── */
section {
  padding: 100px 24px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--forest);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subheading {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ── Welcome Section ── */
.welcome {
  background: var(--white);
  text-align: center;
}

.welcome-text {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.welcome-text em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--forest);
  font-size: 1.15em;
}

/* ── Photo Divider ── */
.photo-divider {
  height: 360px;
  position: relative;
  background:
    linear-gradient(rgba(44, 62, 47, 0.45), rgba(44, 62, 47, 0.45)),
    url('https://images.unsplash.com/photo-1507041957456-9c397ce39c97?w=1920&q=80&fit=crop&auto=format') center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-divider-overlay {
  text-align: center;
  padding: 0 24px;
}

.photo-divider-verse {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--cream);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.photo-divider-ref {
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ── Content Section ── */
.content-section {
  background: var(--white);
}

.content-section:nth-child(even) {
  background: var(--cream);
}

.content-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.content-body p {
  margin-bottom: 20px;
}

.content-body em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--forest);
  font-size: 1.1em;
}

/* ── Card Grids ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(168, 181, 162, 0.15);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--sage-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

/* ── Two-column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.about-photo {
  width: 100%;
  border-radius: 12px;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--sage-light), var(--taupe-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.9rem;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── CTA Section ── */
.cta-section {
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(168, 181, 162, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 166, 107, 0.06) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .section-heading {
  color: var(--cream);
}

.cta-section .section-subheading {
  color: rgba(248, 244, 239, 0.7);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Video Card Grid ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(168, 181, 162, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.video-card .card-number {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 32px;
  text-align: center;
  margin-bottom: 12px;
}

.video-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.video-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.video-card a {
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.video-card a:hover {
  color: var(--gold);
}

/* ── Download Grid ── */
.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.download-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  border: 1px solid rgba(168, 181, 162, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.download-card .card-icon {
  width: 56px;
  height: 56px;
  font-size: 1.4rem;
}

.download-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 12px;
}

.download-card a {
  display: inline-block;
  background: var(--gold);
  color: var(--forest);
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.download-card a:hover {
  background: var(--gold-light);
}

/* ── 7-Step Vertical Timeline ── */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--sage), var(--gold));
}

.timeline-step {
  position: relative;
  margin-bottom: 48px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(168, 181, 162, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -52px;
  top: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201, 166, 107, 0.3);
}

.timeline-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.timeline-step .scripture {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.9rem;
}

.timeline-icon {
  margin-bottom: 8px;
}

.timeline-icon svg {
  width: 32px;
  height: 32px;
  color: var(--sage);
}

/* ── Contact Form ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-form label {
  display: block;
  font-family: 'Lora', serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  margin-top: 20px;
}

.contact-form label:first-child {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--taupe-light);
  border-radius: 6px;
  background: var(--white);
  font-family: 'Lora', serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
}

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

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  margin-top: 24px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: var(--gold-light);
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--taupe-light);
  font-size: 0.95rem;
}

.contact-info li:last-child {
  border-bottom: none;
}

.contact-info a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 600;
}

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

/* ── Seminar List ── */
.seminar-list {
  margin-top: 24px;
}

.seminar-list h4 {
  font-family: 'Playfair Display', serif;
  color: var(--forest);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

/* ── Footer ── */
footer {
  background: var(--forest);
  padding: 48px 24px;
  text-align: center;
  color: rgba(248, 244, 239, 0.5);
  font-size: 0.85rem;
  line-height: 2;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-heart {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(248, 244, 239, 0.6);
}

.footer-nav a:hover {
  color: var(--gold);
  text-decoration: none;
}

/* ── Audio Sessions ── */
.audio-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audio-session {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(168, 181, 162, 0.15);
  transition: transform 0.3s, box-shadow 0.3s;
}

.audio-session:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.audio-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(201, 166, 107, 0.3);
}

.audio-info {
  flex: 1;
  min-width: 0;
}

.audio-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 2px;
}

.audio-duration {
  font-family: 'Lora', serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.audio-session audio {
  flex-shrink: 0;
  width: 280px;
  height: 40px;
}

@media (max-width: 768px) {
  .audio-session {
    flex-wrap: wrap;
    gap: 12px;
  }

  .audio-session audio {
    width: 100%;
  }
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Donate Layout ── */
.donate-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 32px auto 0;
  align-items: start;
}

.donate-form-col {
  display: flex;
  justify-content: center;
}

.donate-text-col {
  padding-top: 16px;
}

.donate-text-col .welcome-text {
  text-align: left;
}

/* ── Responsive ── */
@media (max-width: 1340px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(44, 62, 47, 0.97);
    padding: 24px;
    gap: 20px;
    backdrop-filter: blur(16px);
  }

  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .hero-bg,
  .hero-banner .hero-bg,
  .photo-divider {
    background-attachment: scroll;
  }

  .photo-divider {
    height: 280px;
  }

  section {
    padding: 72px 20px;
  }

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

  .two-col {
    grid-template-columns: 1fr;
  }

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

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

  .timeline {
    padding-left: 50px;
  }

  .timeline::before {
    left: 18px;
  }

  .timeline-badge {
    left: -46px;
    width: 34px;
    height: 34px;
    font-size: 0.85rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-details br {
    display: none;
  }
}

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