@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap");

/* ── 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;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: var(--forest);
  color: var(--cream);
  text-decoration: none;
}

/* ── 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-tagline {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  letter-spacing: 1px;
  font-style: italic;
  font-weight: 700;
  color: #FFFFFF;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 28px;
  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-1508193638397-1c4234db14d8?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) {
  .nav-tagline {
    font-size: 14px;
  }

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

/* Retreat-specific styles */
/* ── Retreat-specific styles ── */
    .details {
      background: var(--cream);
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 960px;
      margin: 0 auto 64px;
    }

    .date-card {
      background: var(--white);
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(168, 181, 162, 0.2);
    }

    .date-card-icon {
      width: 48px;
      height: 48px;
      background: var(--sage);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .date-card-icon svg {
      width: 22px;
      height: 22px;
      color: var(--white);
    }

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

    .date-card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .date-card .date-highlight {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(168, 181, 162, 0.15);
    }

    .date-card .date-highlight:last-child {
      border-bottom: none;
    }

    .date-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    .map-card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(168, 181, 162, 0.2);
    }

    .map-embed {
      width: 100%;
      height: 220px;
      background: var(--sage-light);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .map-embed iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .map-info {
      padding: 24px 32px;
    }

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

    .map-info p {
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
      max-width: 680px;
      margin: 0 auto;
    }

    .pricing-card {
      background: var(--white);
      border-radius: 12px;
      padding: 36px 32px;
      text-align: center;
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
      border: 2px solid transparent;
      transition: transform 0.3s, box-shadow 0.3s;
      position: relative;
      overflow: hidden;
    }

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

    .pricing-card.featured {
      border-color: var(--gold);
    }

    .pricing-card.featured::before {
      content: "Best Value";
      position: absolute;
      top: 16px;
      right: -28px;
      background: var(--gold);
      color: var(--forest);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 36px;
      transform: rotate(45deg);
    }

    .pricing-label {
      font-family: 'Lora', serif;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 8px;
    }

    .pricing-amount {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: var(--forest);
      font-weight: 600;
      line-height: 1.2;
    }

    .pricing-amount sup {
      font-size: 1.2rem;
      vertical-align: super;
      margin-right: 2px;
    }

    .pricing-period {
      font-size: 0.85rem;
      color: var(--text-muted);
      margin-top: 8px;
    }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
}

.pricing-heading {
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 1.6rem;
  color: var(--forest);
  margin-bottom: 32px;
}

    /* What to Expect */
    .expect {
      background: var(--white);
    }

    .expect-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 960px;
      margin: 0 auto;
    }

    .expect-card {
      background: var(--cream);
      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);
    }

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

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

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

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

    /* Register */
    .register {
      background: var(--forest);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .register::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%);
    }

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

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

    .register-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .urgency-badge {
      display: inline-block;
      background: rgba(201, 166, 107, 0.15);
      border: 1px solid rgba(201, 166, 107, 0.3);
      border-radius: 50px;
      padding: 10px 28px;
      color: var(--gold);
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 40px;
    }

    .trust-signals {
      display: flex;
      gap: 32px;
      justify-content: center;
      flex-wrap: wrap;
      color: rgba(248, 244, 239, 0.5);
      font-size: 0.85rem;
    }

    .trust-signals span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .trust-signals svg {
      width: 16px;
      height: 16px;
      opacity: 0.7;
    }

    /* Closing */
    .closing {
      background:
        linear-gradient(rgba(168, 181, 162, 0.88), rgba(168, 181, 162, 0.92)),
        url('https://images.unsplash.com/photo-1476231682828-37e571bc172f?w=1920&q=80&fit=crop&auto=format') center/cover no-repeat;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .closing::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    }

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

    .closing .section-heading {
      color: var(--white);
      margin-bottom: 16px;
    }

    .closing p {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.05rem;
    }

    .closing-verse {
      max-width: 640px;
      margin: 0 auto 12px;
      font-size: 1.28rem;
      line-height: 1.8;
      font-style: italic;
    }

    .closing-reference {
      margin: 0 auto 32px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.85rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .closing-share-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 220px;
      padding: 14px 28px;
      border: none;
      border-radius: 999px;
      background: var(--gold);
      color: var(--forest);
      font-family: 'Lora', serif;
      font-size: 0.95rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
      box-shadow: 0 18px 28px rgba(44, 62, 47, 0.18);
    }

    .closing-share-button:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 22px 32px rgba(44, 62, 47, 0.22);
    }

    .closing-share-button:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.75);
      outline-offset: 4px;
    }

    .closing-share-button svg {
      width: 18px;
      height: 18px;
    }

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

      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
      }

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

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

      .trust-signals {
        flex-direction: column;
        align-items: center;
        gap: 16px;
      }

      .closing-share-button {
        width: min(100%, 320px);
      }
    }

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