/* ============================================================
 * Elephant Safari Vertical — Design System
 * Color palette: Terracotta + Forest Green + Cream + Ivory
 * Mood: Emotional, earthy, ethical, intimate
 * ============================================================ */

.vertical-elephant {
  --el-terracotta: #A65D3E;
  --el-terracotta-dark: #7C4329;
  --el-forest: #3D5A40;
  --el-forest-dark: #25382A;
  --el-cream: #F5E6C8;
  --el-ivory: #FAF6F0;
  --el-charcoal: #1A1410;
  --el-warm-gray: #6B5D52;
  --el-divider: #E8DCC8;

  /* Typography */
  --el-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --el-body: 'Inter', -apple-system, sans-serif;

  /* Scale */
  --el-hero-title: clamp(2.5rem, 7vw, 6rem);
  --el-section-title: clamp(2rem, 4.5vw, 3.5rem);
  --el-eyebrow: 0.75rem;

  background: var(--el-ivory);
  color: var(--el-charcoal);
  font-family: var(--el-body);
  line-height: 1.65;
}

.vertical-elephant * {
  box-sizing: border-box;
}

/* Override header for warm-tone integration */
.vertical-elephant .site-header {
  background: rgba(250, 246, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--el-divider);
}

.vertical-elephant .site-header.scrolled {
  background: rgba(250, 246, 240, 0.96);
}

.vertical-elephant .logo-text { color: var(--el-charcoal); }
.vertical-elephant .highlight-text { color: var(--el-terracotta); }
.vertical-elephant .desktop-nav a {
  color: var(--el-charcoal);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
}
.vertical-elephant .desktop-nav a:hover { color: var(--el-terracotta); }

/* ============================================================
   HERO
   ============================================================ */
.el-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 0 90px;
  isolation: isolate;
}

.el-hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.el-hero__video,
.el-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.el-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(26,20,16,0.20) 0%,
      rgba(26,20,16,0.10) 35%,
      rgba(26,20,16,0.55) 75%,
      rgba(26,20,16,0.85) 100%);
  z-index: -1;
}

.el-hero__content {
  width: min(92%, 1200px);
  margin: 0 auto;
  color: white;
}
.el-hero__eyebrow {
  display: inline-block;
  font-size: var(--el-eyebrow);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--el-cream);
  margin-bottom: 24px;
  padding: 8px 18px;
  border: 1px solid rgba(245, 230, 200, 0.4);
  border-radius: 50px;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
}
.el-hero__title {
  font-family: var(--el-display);
  font-weight: 400;
  font-style: italic;
  font-size: var(--el-hero-title);
  line-height: 1.02;
  letter-spacing: -1px;
  margin: 0 0 24px;
  max-width: 18ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.el-hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}
.el-hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 560px;
  margin: 0 0 36px;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.el-hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.el-btn-primary {
  background: var(--el-terracotta);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(166, 93, 62, 0.35);
}
.el-btn-primary:hover {
  background: var(--el-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(166, 93, 62, 0.5);
}
.el-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: white;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.el-btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: white; }

.el-hero__price-pill {
  position: absolute;
  top: 110px;
  right: max(4%, 30px);
  background: rgba(255,255,255,0.92);
  color: var(--el-charcoal);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.el-hero__price-pill strong { color: var(--el-terracotta); font-weight: 600; }

.el-hero__scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: el-bounce 2.4s ease-in-out infinite;
}
.el-hero__scroll-cue::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.4);
}
@keyframes el-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SECTIONS — Generic
   ============================================================ */
.el-section {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
}
.el-container { width: min(92%, 1200px); margin: 0 auto; }
.el-container--narrow { width: min(92%, 880px); margin: 0 auto; }

.el-eyebrow {
  display: inline-block;
  font-size: var(--el-eyebrow);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--el-terracotta);
  margin-bottom: 18px;
  font-weight: 500;
}

.el-section-title {
  font-family: var(--el-display);
  font-weight: 400;
  font-size: var(--el-section-title);
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 24px;
  color: var(--el-charcoal);
}
.el-section-title em { font-style: italic; color: var(--el-terracotta); }
.el-section-lede {
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  color: var(--el-warm-gray);
  max-width: 60ch;
  line-height: 1.7;
  margin: 0 0 50px;
}

/* ============================================================
   MANIFESTO SECTION
   ============================================================ */
.el-manifesto {
  background: var(--el-cream);
  text-align: center;
}
.el-manifesto-statement {
  font-family: var(--el-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-style: italic;
  line-height: 1.15;
  color: var(--el-charcoal);
  margin: 0 auto 60px;
  max-width: 22ch;
}
.el-manifesto-statement .strike { text-decoration: line-through; color: var(--el-warm-gray); font-style: normal; }
.el-manifesto-statement .em { color: var(--el-terracotta); }

.el-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
}
.el-promise { padding: 0 20px; }
.el-promise__icon {
  font-size: 36px;
  color: var(--el-terracotta);
  margin-bottom: 18px;
  display: block;
}
.el-promise h3 {
  font-family: var(--el-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  font-weight: 600;
}
.el-promise p { color: var(--el-warm-gray); margin: 0; font-size: 0.96rem; }

/* ============================================================
   STORY BLOCKS (image + text, alternating)
   ============================================================ */
.el-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 140px;
}
.el-story:last-child { margin-bottom: 0; }
.el-story--reversed .el-story__media { order: 2; }
.el-story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--el-cream);
}
.el-story__media img,
.el-story__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.el-story:hover .el-story__media img { transform: scale(1.03); }
.el-story__step {
  font-family: var(--el-display);
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--el-terracotta);
  margin-bottom: 16px;
  display: block;
}
.el-story__title {
  font-family: var(--el-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 22px;
}
.el-story__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--el-warm-gray);
  margin: 0;
}

/* ============================================================
   TRUTH SECTION (dark)
   ============================================================ */
.el-truth {
  background: var(--el-charcoal);
  color: var(--el-cream);
  text-align: center;
}
.el-truth .el-eyebrow { color: var(--el-cream); }
.el-truth .el-section-title { color: white; }
.el-truth .el-section-title em { color: var(--el-terracotta); }
.el-truth p {
  color: rgba(245, 230, 200, 0.75);
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  line-height: 1.75;
}
.el-truth a {
  color: var(--el-terracotta);
  text-decoration: none;
  border-bottom: 1px solid var(--el-terracotta);
  padding-bottom: 2px;
  font-weight: 500;
}
.el-truth a:hover { color: white; border-bottom-color: white; }

/* ============================================================
   MEET THE ELEPHANTS (horizontal scroll)
   ============================================================ */
.el-meet {
  background: var(--el-ivory);
  overflow: hidden;
}
.el-meet__track {
  display: flex;
  gap: 30px;
  padding-left: 4%;
  will-change: transform;
}
.el-elephant-card {
  flex: 0 0 360px;
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.el-elephant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.12);
}
.el-elephant-card__img {
  aspect-ratio: 4 / 5;
  background: var(--el-cream);
  overflow: hidden;
}
.el-elephant-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.el-elephant-card:hover .el-elephant-card__img img { transform: scale(1.06); }
.el-elephant-card__body { padding: 24px 26px 26px; }
.el-elephant-card__name {
  font-family: var(--el-display);
  font-size: 1.7rem;
  margin: 0 0 6px;
  font-weight: 600;
}
.el-elephant-card__meta {
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--el-terracotta);
  margin-bottom: 14px;
}
.el-elephant-card__story {
  font-size: 0.94rem;
  color: var(--el-warm-gray);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   STATS COUNTERS
   ============================================================ */
.el-stats {
  background: var(--el-forest);
  color: var(--el-ivory);
  text-align: center;
}
.el-stats .el-section-title { color: white; }
.el-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 50px;
}
.el-stat { padding: 20px; }
.el-stat__num {
  font-family: var(--el-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  color: var(--el-cream);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.el-stat__num .plus { color: var(--el-terracotta); }
.el-stat__label {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 230, 200, 0.8);
}

/* ============================================================
   EXPERIENCE PACKAGES (3 cards)
   ============================================================ */
.el-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.el-package {
  border: 1px solid var(--el-divider);
  background: white;
  border-radius: 14px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.el-package:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-color: var(--el-terracotta);
}
.el-package--featured {
  background: var(--el-charcoal);
  color: var(--el-ivory);
  border-color: var(--el-charcoal);
}
.el-package--featured .el-package__name,
.el-package--featured .el-package__price { color: white; }
.el-package--featured .el-package__desc,
.el-package--featured li { color: rgba(245, 230, 200, 0.85); }
.el-package__name {
  font-family: var(--el-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 8px;
}
.el-package__duration {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--el-terracotta);
  margin-bottom: 24px;
}
.el-package__price {
  font-family: var(--el-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--el-charcoal);
  margin-bottom: 4px;
}
.el-package__price-unit { font-size: 0.85rem; color: var(--el-warm-gray); margin-bottom: 28px; display: block; }
.el-package__desc {
  font-size: 0.95rem;
  color: var(--el-warm-gray);
  line-height: 1.6;
  margin: 0 0 24px;
}
.el-package ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.el-package ul li {
  padding: 8px 0;
  color: var(--el-charcoal);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.el-package ul li::before {
  content: '✓';
  color: var(--el-terracotta);
  font-weight: 600;
  margin-right: 4px;
}
.el-package__cta {
  margin-top: auto;
  background: var(--el-terracotta);
  color: white;
  padding: 14px;
  text-align: center;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}
.el-package__cta:hover { background: var(--el-terracotta-dark); }
.el-package--featured .el-package__cta { background: var(--el-cream); color: var(--el-charcoal); }
.el-package--featured .el-package__cta:hover { background: white; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.el-faq { background: var(--el-ivory); }
.el-faq__item {
  border-bottom: 1px solid var(--el-divider);
  padding: 24px 0;
}
.el-faq__item summary {
  cursor: pointer;
  font-family: var(--el-display);
  font-size: 1.3rem;
  font-weight: 500;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--el-charcoal);
  transition: color 0.3s ease;
}
.el-faq__item summary:hover { color: var(--el-terracotta); }
.el-faq__item summary::-webkit-details-marker { display: none; }
.el-faq__item summary::after {
  content: '+';
  font-size: 1.8rem;
  color: var(--el-terracotta);
  transition: transform 0.3s ease;
  font-weight: 300;
}
.el-faq__item[open] summary::after { content: '−'; }
.el-faq__answer {
  padding-top: 16px;
  color: var(--el-warm-gray);
  font-size: 1rem;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.el-final-cta {
  background: linear-gradient(135deg, var(--el-terracotta) 0%, var(--el-terracotta-dark) 100%);
  color: white;
  text-align: center;
  padding: 140px 0;
}
.el-final-cta .el-section-title { color: white; }
.el-final-cta .el-section-title em { color: var(--el-cream); }
.el-final-cta p {
  max-width: 50ch;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.92);
}
.el-final-cta__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.el-final-cta .el-btn-primary { background: white; color: var(--el-terracotta); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.el-final-cta .el-btn-primary:hover { background: var(--el-cream); }

/* ============================================================
   SCROLL REVEAL UTILITIES (GSAP picks these up)
   ============================================================ */
.el-fade-up {
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
}
.el-fade-in {
  opacity: 0;
  will-change: opacity;
}
.el-scale-in {
  opacity: 0;
  transform: scale(0.96);
  will-change: opacity, transform;
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.el-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--el-terracotta);
  z-index: 1000;
  width: 0;
  transition: width 0.1s linear;
}

/* ============================================================
   MOBILE — lite version
   ============================================================ */
@media (max-width: 900px) {
  .el-hero { padding-bottom: 60px; min-height: 90vh; }
  .el-hero__price-pill { top: 90px; }
  .el-promises,
  .el-stats-grid,
  .el-packages { grid-template-columns: 1fr; gap: 24px; }
  .el-story { grid-template-columns: 1fr; gap: 28px; margin-bottom: 80px; }
  .el-story--reversed .el-story__media { order: 0; }
  .el-section { padding: 70px 0; }
  .el-meet__track { gap: 18px; padding: 0 4%; }
  .el-elephant-card { flex: 0 0 280px; }
  .el-hero__scroll-cue { display: none; }
  /* Lighter motion on mobile — fade only, no transforms */
  .el-fade-up { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .el-fade-up, .el-fade-in, .el-scale-in {
    opacity: 1 !important; transform: none !important;
  }
  .el-hero__scroll-cue { animation: none; }
}
