/* ============================================
   ROOT & RESET
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest:     #2d4a2d;
  --forest-dark:#1e3320;
  --forest-mid: #3a5c3a;
  --gold:       #d4a017;
  --gold-light: #e8b93a;
  --cream:      #f5f0e8;
  --white:      #ffffff;
  --text-dark:  #1a1a1a;
  --text-muted: #5a6a5a;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.label-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--forest-dark);
  margin-bottom: 2.5rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(212,160,23,0.35);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212,160,23,0.45);
}

.btn-secondary {
  display: inline-block;
  border: 2px solid var(--forest);
  color: var(--forest);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.8rem;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--white);
}

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.88rem; }
.btn-full { width: 100%; text-align: center; font-size: 1rem; padding: 1rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(30, 51, 32, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background: var(--gold) !important;
  color: var(--forest-dark) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 50px !important;
  transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--gold-light) !important; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(
      to bottom,
      rgba(30,51,32,0.55) 0%,
      rgba(30,51,32,0.72) 60%,
      rgba(30,51,32,0.9) 100%
    ),
    url('pics/primates-nursery.jfif') center/cover no-repeat;
  background-color: var(--forest-dark);
  padding: 120px 1.5rem 80px;
  overflow: hidden;
}

/* Animated leaf pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(45,74,45,0.4) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(45,74,45,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 0.25rem;
}

.hero-script {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 6rem 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--forest-dark);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text .btn-secondary { margin-top: 0.75rem; }

.about-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 220px;
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  background: var(--forest-dark);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.stat::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  background: rgba(212,160,23,0.12);
  border-radius: 50%;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   CARDS
   ============================================ */
.cards-section {
  padding: 6rem 0;
  background: var(--cream);
}

.cards-section .label { display: block; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-featured {
  background: var(--forest-dark);
  color: var(--white);
  transform: scale(1.04);
}

.card-featured:hover { transform: scale(1.04) translateY(-4px); }

.card-price-badge {
  position: absolute;
  top: -16px; right: 1.5rem;
  background: var(--gold);
  color: var(--forest-dark);
  font-weight: 800;
  font-size: 1.15rem;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(212,160,23,0.4);
}

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.card-heading {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
  color: inherit;
}

.card-featured .card-heading { color: var(--white); }

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.card-featured .card-list li { color: rgba(255,255,255,0.8); }

.card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.card-date {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.card-note {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
  margin-bottom: 1.5rem;
  line-height: 1.55;
}

.card-note-small {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ============================================
   ITINERARY
   ============================================ */
.itinerary {
  padding: 6rem 0;
  background: var(--forest-dark);
  color: var(--white);
}

.itinerary .label { color: var(--gold); }
.itinerary .section-title { color: var(--white); }

.timeline-wrap {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
}

.timeline-photo-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 80px;
}

.timeline-photo-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 190px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
  border: 2px solid rgba(212,160,23,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.timeline-photo-col img:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 36px rgba(0,0,0,0.45);
}

.timeline {
  position: relative;
  max-width: 100%;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 114px;
  top: 0; bottom: 0;
  width: 2px;
  background: rgba(212,160,23,0.3);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

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

.timeline-day {
  flex-shrink: 0;
  width: 120px;
  padding-top: 0.2rem;
  text-align: right;
  padding-right: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.timeline-day::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 8px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--forest-dark);
}

.timeline-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.timeline-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.timeline-content {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  flex: 1;
}

.timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.timeline-content p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  padding: 6rem 0 0;
  background: var(--cream);
  overflow: hidden;
}

.gallery-section .container {
  margin-bottom: 2rem;
}

.gallery-scroll {
  overflow-x: auto;
  padding: 0 max(1.5rem, calc((100vw - 1140px) / 2));
  padding-bottom: 2rem;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

.gallery-scroll:active { cursor: grabbing; }

.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: rgba(0,0,0,0.08); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding-bottom: 0.5rem;
}

.gallery-item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.gallery-item img {
  width: 280px;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,51,32,0.9) 0%, transparent 100%);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 1.5rem 1rem 0.75rem;
  text-align: center;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.contact-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.contact-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-link {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  color: var(--forest-dark);
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  transition: background 0.2s, transform 0.15s;
}

.contact-link:hover {
  background: #ede8de;
  transform: translateX(4px);
}

.contact-link strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}

.contact-icon { font-size: 1.4rem; margin-top: 0.1rem; }

.contact-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.contact-image-wrap {
  position: relative;
}

.contact-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 480px;
  box-shadow: var(--shadow-lg);
}

.contact-image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--forest-dark);
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--forest-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
}

.footer-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .timeline-wrap {
    grid-template-columns: 1fr;
  }
  .timeline-photo-col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: static;
  }
  .timeline-photo-col img { height: 140px; }
}

@media (max-width: 900px) {
  .about-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .card-featured { transform: none; }
  .card-featured:hover { transform: translateY(-4px); }

  .nav-links { display: none; }

  .contact-photo { height: 320px; }
}

@media (max-width: 600px) {
  .about-stats { grid-template-columns: 1fr 1fr; }
  .timeline::before { left: 84px; }
  .timeline-day { width: 90px; }
  .timeline-photo-col { grid-template-columns: 1fr 1fr; }
  .timeline-photo-col img:nth-child(n+3) { display: none; }
  .gallery-item { width: 220px; }
  .gallery-item img { width: 220px; height: 160px; }
}
