/* ═══════════════════════════════════════════════════════════════
   ELLA TUK TUK TOURS — style.css
   Design: Tropical luxury editorial — dark forest green + raw gold
   Fonts: Fraunces (display) + Syne (headings/UI) + DM Sans (body)
═══════════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Core palette */
  --c-forest:      #0E2B1C;
  --c-forest-mid:  #163824;
  --c-forest-soft: #1E4D30;
  --c-forest-mist: #2A6445;
  --c-gold:        #F5A623;
  --c-gold-bright: #FFBE3D;
  --c-gold-dim:    #C88210;
  --c-cream:       #F7F4EE;
  --c-paper:       #FFFDF9;
  --c-ink:         #1A1A18;
  --c-ink-mid:     #3D3D38;
  --c-ink-soft:    #6B6B62;
  --c-ink-faint:   #9B9B90;
  --c-white:       #FFFFFF;
  --c-border:      rgba(14, 43, 28, 0.10);
  --c-border-gold: rgba(245, 166, 35, 0.30);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(14,43,28,0.08);
  --shadow-md:  0 6px 24px rgba(14,43,28,0.12);
  --shadow-lg:  0 16px 56px rgba(14,43,28,0.18);
  --shadow-xl:  0 32px 80px rgba(14,43,28,0.22);

  /* Spacing */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   40px;
  --space-2xl:  64px;
  --space-3xl:  96px;

  /* Radius */
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 100px;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
}

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--c-paper);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--c-forest);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(100px, 14vw, 160px) clamp(20px, 5vw, 60px) clamp(140px, 18vw, 200px);
  overflow: hidden;
  isolation: isolate;
}

/* Layered background */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.hero__orb--1 {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, rgba(30,77,48,0.9) 0%, transparent 70%);
  top: -20%;
  left: -15%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.hero__orb--2 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, rgba(245,166,35,0.18) 0%, transparent 70%);
  bottom: -10%;
  right: -10%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.hero__orb--3 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, rgba(42,100,69,0.6) 0%, transparent 70%);
  top: 40%;
  right: 25%;
  animation: orbFloat3 15s ease-in-out infinite;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
  mix-blend-mode: overlay;
}

/* Hero inner content */
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

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

.hero__title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: var(--space-xl);
  animation: heroFadeUp 0.9s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__title-line {
  display: block;
}

.hero__title-accent {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-gold);
  font-style: italic;
}

.hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto var(--space-xl);
  line-height: 1.75;
  animation: heroFadeUp 0.9s 0.2s cubic-bezier(0.16,1,0.3,1) both;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 0.9s 0.3s cubic-bezier(0.16,1,0.3,1) both;
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 26, 17, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: heroFadeUp 0.9s 0.45s cubic-bezier(0.16,1,0.3,1) both;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 28px) 20px;
  gap: 4px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
  margin: 18px 0;
}

.stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}

.stat-lbl {
  font-family: 'Syne', sans-serif;
  font-size: clamp(0.62rem, 1vw, 0.72rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: calc(clamp(80px, 10vw, 100px) + 20px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.3);
  animation: heroFadeUp 0.9s 0.8s cubic-bezier(0.16,1,0.3,1) both;
}

.scroll-wheel {
  animation: scrollBob 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════════
   TICKER STRIP
═══════════════════════════════════════════════════════════════ */
.ticker-wrap {
  overflow: hidden;
  background: var(--c-gold);
  padding: 14px 0;
  border-bottom: 3px solid var(--c-gold-dim);
}

.ticker-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-track span {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-forest);
}

.ticker-dot {
  font-size: 0.55rem !important;
  opacity: 0.5;
  align-self: center;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.4vw, 0.9rem);
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  overflow: hidden;
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-forest);
  box-shadow: 0 4px 20px rgba(245,166,35,0.40), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn--gold:hover {
  background: var(--c-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.55);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn--ghost:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--book {
  display: block;
  width: 100%;
  background: var(--c-forest);
  color: var(--c-gold);
  font-size: 0.88rem;
  padding: 15px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(245,166,35,0.25);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn--book:hover {
  background: var(--c-forest-soft);
  border-color: var(--c-gold);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(14,43,28,0.25);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════════════════════════ */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.section-head--center {
  max-width: var(--container-narrow);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--center .section-desc {
  margin: 0 auto;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-forest-soft);
  background: rgba(14,43,28,0.07);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  border: 1px solid rgba(14,43,28,0.12);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--c-forest-mist);
}

.section-desc {
  font-size: 1rem;
  color: var(--c-ink-soft);
  max-width: 520px;
  line-height: 1.75;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════════
   FILTER BAR
═══════════════════════════════════════════════════════════════ */
.filter-bar {
  display: inline-flex;
  gap: 6px;
  background: rgba(14,43,28,0.06);
  padding: 5px;
  border-radius: var(--r-md);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: var(--r-sm);
  border: none;
  background: transparent;
  color: var(--c-ink-soft);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--c-forest);
  background: rgba(14,43,28,0.07);
}

.filter-btn.active {
  background: var(--c-forest);
  color: var(--c-gold);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════
   NOTICE BAR
═══════════════════════════════════════════════════════════════ */
.notice-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,166,35,0.09);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 0.81rem;
  color: #6B4900;
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 820px;
}

.notice-bar svg { flex-shrink: 0; margin-top: 1px; }

/* ═══════════════════════════════════════════════════════════════
   PACKAGES GRID
═══════════════════════════════════════════════════════════════ */
.packages-section {
  background: var(--c-cream);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

/* ═══════════════════════════════════════════════════════════════
   PACKAGE CARD
═══════════════════════════════════════════════════════════════ */
.pkg-card {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;

  /* Scroll-triggered fade-up */
  opacity: 0;
  transform: translateY(28px);
}

.pkg-card.in-view,
.pkg-card.card-enter {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* Featured card accent */
.pkg-card--featured {
  border-color: rgba(245,166,35,0.35);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(245,166,35,0.12);
}

/* ── Card visual area ── */
.pkg-card__visual {
  position: relative;
  height: clamp(180px, 22vw, 220px);
  background: linear-gradient(145deg, var(--c-forest-mid) 0%, var(--c-forest) 100%);
  overflow: hidden;
  flex-shrink: 0;
}

.pkg-card__visual--accent  { background: linear-gradient(145deg, #1a3d28 0%, #0f2218 100%); }
.pkg-card__visual--tea     { background: linear-gradient(145deg, #1c3a1e 0%, #0d2115 100%); }
.pkg-card__visual--featured { background: linear-gradient(145deg, #1F3800 0%, #0E2B1C 100%); }
.pkg-card__visual--wild    { background: linear-gradient(145deg, #162c1c 0%, #091810 100%); }

/* Subtle pattern overlay */
.pkg-card__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.012) 30px,
    rgba(255,255,255,0.012) 31px
  );
  pointer-events: none;
}

.pkg-card__visual-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
}

.pkg-visual-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  flex-shrink: 0;
}

.pkg-visual-alt {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.6;
  font-style: italic;
  max-width: 260px;
}

/* Badges */
.pkg-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.badge--duration {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}

.badge--featured {
  background: var(--c-gold);
  color: var(--c-forest);
}

/* Price badge */
.pkg-card__price {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(10,25,16,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: right;
  line-height: 1.2;
}

.pkg-card__price small {
  display: block;
  font-size: 0.6rem;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2px;
}

.pkg-card__price strong {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-gold);
}

.pkg-card__price span {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-left: 2px;
}

/* ── Card body ── */
.pkg-card__body {
  padding: clamp(20px, 3vw, 28px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-card__header {
  margin-bottom: 18px;
}

.pkg-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 5px;
}

.pkg-tagline {
  font-size: 0.83rem;
  color: var(--c-ink-soft);
  line-height: 1.5;
  font-style: italic;
}

/* Meta chips */
.pkg-meta {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--c-forest-soft);
  background: rgba(14,43,28,0.07);
  padding: 5px 11px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(14,43,28,0.1);
}

/* ── Stops list ── */
.stops-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
  margin-bottom: 10px;
}

.stops-list {
  list-style: none;
  margin-bottom: 20px;
  flex: 1;
}

.stop-item {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(14,43,28,0.06);
  cursor: pointer;
  user-select: none;
  align-items: flex-start;
}

.stop-item:last-child { border-bottom: none; }

.stop-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-forest-soft);
  flex-shrink: 0;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s;
}

.stop-item:hover .stop-marker,
.stop-item.stop-open .stop-marker {
  background: var(--c-gold);
  transform: scale(1.2);
}

.stop-content { flex: 1; min-width: 0; }

.stop-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.stop-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-forest);
  line-height: 1.3;
  flex: 1;
}

.stop-chevron {
  flex-shrink: 0;
  color: var(--c-ink-faint);
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1);
  margin-top: 2px;
}

.stop-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--c-ink-faint);
  margin-top: 2px;
  line-height: 1.4;
}

/* Accordion detail */
.stop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.16,1,0.3,1);
}

.detail-grid {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(14,43,28,0.04);
  border-radius: var(--r-sm);
  border-left: 3px solid rgba(245,166,35,0.4);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.detail-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 8px;
  font-size: 0.78rem;
  line-height: 1.55;
}

.detail-row b {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-forest-soft);
  padding-top: 1px;
}

.detail-row span {
  color: var(--c-ink-mid);
}

/* ── Dropoff ── */
.dropoff-block {
  margin-bottom: 16px;
  font-size: 0.78rem;
  color: var(--c-ink-soft);
}

.dropoff-block strong {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-ink-mid);
  display: block;
  margin-bottom: 8px;
}

.dropoff-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.dtag {
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(14,43,28,0.06);
  color: var(--c-forest);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(14,43,28,0.10);
}

.dtag--veg {
  background: rgba(245,166,35,0.12);
  color: #7A5200;
  border-color: rgba(245,166,35,0.25);
  font-weight: 700;
}

/* ── Extras note ── */
.extras-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--c-ink-faint);
  line-height: 1.6;
  padding: 10px 12px;
  background: rgba(14,43,28,0.04);
  border-radius: var(--r-sm);
  border: 1px dashed rgba(14,43,28,0.12);
  margin-top: auto;
}

.extras-note svg { flex-shrink: 0; margin-top: 1px; }

/* Card footer */
.pkg-card__footer {
  padding: 0 clamp(20px, 3vw, 28px) clamp(20px, 3vw, 24px);
}

/* ═══════════════════════════════════════════════════════════════
   WHY SECTION
═══════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--c-forest);
  padding: clamp(60px, 10vw, 100px) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
  transition: background 0.22s;
  opacity: 0;
  transform: translateY(22px);
}

.why-card.in-view {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1), background 0.22s;
}

.why-card:hover {
  background: rgba(255,255,255,0.09);
}

.why-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold);
  margin-bottom: 18px;
}

.why-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════════ */
.pricing-section {
  background: var(--c-paper);
}

.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
  margin-top: clamp(28px, 4vw, 48px);
  /* Scrollbar styling */
  scrollbar-width: thin;
  scrollbar-color: var(--c-forest-soft) transparent;
}

.price-table-wrap::-webkit-scrollbar { height: 4px; }
.price-table-wrap::-webkit-scrollbar-track { background: transparent; }
.price-table-wrap::-webkit-scrollbar-thumb { background: var(--c-forest-soft); border-radius: 2px; }

.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: var(--c-paper);
}

.price-table thead tr {
  background: var(--c-forest);
}

.price-table thead th {
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 18px 24px;
  text-align: left;
  white-space: nowrap;
}

.price-table thead th:last-child { text-align: right; }

.price-table tbody tr {
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s;
}

.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(14,43,28,0.04); }

.price-table td {
  padding: 16px 24px;
  font-size: 0.88rem;
  color: var(--c-ink-mid);
  vertical-align: middle;
}

.price-table td:last-child { text-align: right; }

.price-table td strong {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: var(--c-forest);
  font-size: 0.86rem;
}

.overtime-row td { background: rgba(14,43,28,0.03); }
.overtime-row td strong { color: var(--c-forest-soft); }

.price-chip {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-forest);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price-chip--alt {
  background: var(--c-forest);
  color: var(--c-gold);
}

.pricing-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--c-ink-faint);
  line-height: 1.75;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════════════ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(3%, 2%) scale(1.04); }
  66%       { transform: translate(-2%, -1%) scale(0.97); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(-4%, 3%) scale(1.06); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(5%, -4%); }
}

@keyframes scrollBob {
  0%, 100% { cy: 9; }
  50%       { transform: translateY(8px); opacity: 0.3; }
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile first, then up
═══════════════════════════════════════════════════════════════ */

/* ── SMALL MOBILE: ≤ 380px ─────────────────────────────────── */
@media (max-width: 380px) {
  .hero__title { font-size: 2.6rem; }
  .hero__title-accent { -webkit-text-stroke-width: 1.5px; }
  .hero__stats { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
  .stat-divider:nth-child(4) { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .pkg-card__price strong { font-size: 1.15rem; }
}

/* ── MOBILE: ≤ 600px ──────────────────────────────────────── */
@media (max-width: 600px) {
  .hero {
    padding-bottom: 200px;
  }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 300px; justify-content: center; }

  .hero__stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex-basis: 50%;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .stat-divider:nth-child(6) { display: none; }

  .ticker-track { animation-duration: 20s; }

  .filter-bar { width: 100%; }
  .filter-btn { flex: 1; text-align: center; padding: 9px 10px; }

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

  .detail-row { grid-template-columns: 60px 1fr; }

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

  .price-table td, .price-table thead th { padding: 13px 16px; }
}

/* ── TABLET: 601px – 900px ────────────────────────────────── */
@media (min-width: 601px) and (max-width: 900px) {
  .hero__title { font-size: clamp(3.5rem, 8vw, 5.5rem); }

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

  .pkg-card:nth-child(5) { grid-column: 1 / -1; max-width: 520px; justify-self: center; }

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

/* ── LARGE TABLET / SMALL DESKTOP: 901px – 1100px ─────────── */
@media (min-width: 901px) and (max-width: 1100px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── DESKTOP: ≥ 1101px ─────────────────────────────────────── */
@media (min-width: 1101px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── EXTRA LARGE: ≥ 1440px ─────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --container: 1360px; }
  .hero__title { font-size: 7.5rem; }
}

/* ── ULTRA WIDE: ≥ 1920px ─────────────────────────────────── */
@media (min-width: 1920px) {
  :root { --container: 1600px; }
  .cards-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .pkg-card,
  .why-card,
  .section-head {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── DARK MODE ──────────────────────────────────────────────── */
@media (prefers-color-scheme: dark) {
  :root {
    --c-paper: #0F1A12;
    --c-cream: #111D15;
    --c-ink:   #E8E8E0;
    --c-ink-mid: #B8B8AA;
    --c-ink-soft: #888880;
    --c-ink-faint: #565650;
    --c-border: rgba(255,255,255,0.08);
    --c-border-gold: rgba(245,166,35,0.25);
  }

  .pkg-card {
    background: #131F16;
    border-color: rgba(255,255,255,0.07);
  }

  .meta-chip {
    background: rgba(255,255,255,0.06);
    color: #8BC49A;
    border-color: rgba(255,255,255,0.09);
  }

  .filter-bar { background: rgba(255,255,255,0.05); }
  .filter-btn { color: var(--c-ink-soft); }
  .filter-btn:hover { background: rgba(255,255,255,0.06); color: var(--c-ink); }

  .packages-section { background: #0A1210; }

  .price-table { background: #131F16; }
  .price-table tbody tr:hover { background: rgba(255,255,255,0.03); }
  .price-table td { color: var(--c-ink-mid); }
  .overtime-row td { background: rgba(255,255,255,0.02); }

  .pricing-section { background: #0F1A12; }

  .dtag { background: rgba(255,255,255,0.06); color: #8BC49A; border-color: rgba(255,255,255,0.09); }
  .dtag--veg { background: rgba(245,166,35,0.10); color: #C8901A; }

  .notice-bar { background: rgba(245,166,35,0.07); color: #B8860B; }

  .stop-name { color: #A8D4B4; }
  .section-title { color: #8BC49A; }

  .detail-grid { background: rgba(255,255,255,0.04); border-left-color: rgba(245,166,35,0.35); }
  .detail-row span { color: var(--c-ink-mid); }

  .extras-note { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.08); }

  .btn--book {
    background: rgba(14,43,28,0.8);
    border-color: rgba(245,166,35,0.3);
  }

  .section-label { background: rgba(255,255,255,0.07); color: #8BC49A; border-color: rgba(255,255,255,0.09); }
}