/* ============================================================
   NUWARA ELIYA TUK TUK TOURS — tours.css
   Design Language: Cinematic Highland Editorial
   Fonts: Cormorant Garamond (display) + Syne (UI) + DM Mono (accents)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Syne:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap');

/* ─── CSS VARIABLES ──────────────────────────────────────── */
:root {
  /* Palette — Deep Forest + Saffron Gold + Cream */
  --ink:           #0d1a12;
  --forest:        #1b3d28;
  --moss:          #2d5e40;
  --moss-mid:      #3d7a54;
  --moss-light:    #5a9e72;
  --gold:          #e8a020;
  --gold-bright:   #ffb703;
  --gold-pale:     #ffd87a;
  --saffron:       #f28c28;
  --rose:          #c05070;
  --cream:         #f5ede0;
  --parchment:     #ede4d3;
  --fog:           #f2f5f0;
  --white:         #ffffff;
  --mist:          rgba(255,255,255,0.06);

  /* Text */
  --text-primary:  #0d1a12;
  --text-muted:    #4a6355;
  --text-faint:    #8aac96;

  /* Borders */
  --border-subtle: rgba(45,94,64,0.12);
  --border-mid:    rgba(45,94,64,0.22);

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(13,26,18,0.08);
  --shadow-md:     0 6px 32px rgba(13,26,18,0.12);
  --shadow-lg:     0 16px 60px rgba(13,26,18,0.18);
  --shadow-gold:   0 4px 24px rgba(232,160,32,0.30);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui:      'Syne', sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-pill: 999px;

  /* Transitions */
  --t-fast:   0.18s ease;
  --t-mid:    0.32s cubic-bezier(0.25,0.46,0.45,0.94);
  --t-slow:   0.55s cubic-bezier(0.16,1,0.3,1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-ui);
  background: var(--fog);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font-ui); cursor: pointer; }
ul { list-style: none; }

/* ─── NOISE TEXTURE OVERLAY ─────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: multiply;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  /* REMOVED justify-content to prevent top cut-off */
  padding: 140px 20px 100px; /* 140px top clears the header, 100px bottom clears the scroll text */
  overflow: hidden; 
}
/* Multi-layer atmospheric gradients */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-grad1 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 70% at 50% 100%, rgba(45,94,64,0.65) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 0% 30%, rgba(27,61,40,0.5) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 10%, rgba(232,160,32,0.08) 0%, transparent 50%),
    linear-gradient(160deg, #060e09 0%, #0d1a12 45%, #1b3d28 100%);
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite alternate;
}

.hero__orb--1 {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: rgba(45,94,64,0.2);
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  top: 100px; right: -80px;
  background: rgba(232,160,32,0.08);
  animation-delay: -4s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  bottom: 0; left: 40%;
  background: rgba(90,158,114,0.15);
  animation-delay: -8s;
}

@keyframes orbFloat {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.08); }
}

/* Grid lines decoration */
.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: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  width: 100%;
  margin: auto 0; /* MAGIC FIX: Safely centers content vertically without pushing it off the top */
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(232,160,32,0.3);
  background: rgba(232,160,32,0.06);
  padding: 8px 20px;
  border-radius: var(--r-pill);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: revealUp 0.8s 0.1s ease forwards;
}

.hero__eyebrow-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: revealUp 0.9s 0.2s ease forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero__title .line-accent {
  display: block;
  font-weight: 700;
  font-size: clamp(3rem, 7.5vw, 7rem);
  background: linear-gradient(120deg, var(--gold-bright), var(--gold), var(--saffron));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 400;
  line-height: 1.8;
  opacity: 0;
  animation: revealUp 0.9s 0.35s ease forwards;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
  opacity: 0;
  animation: revealUp 0.9s 0.5s ease forwards;
}

/* Stats row */
.hero__stats {
  display: flex;
  gap: 0;
  justify-content: center;
  align-items: stretch;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  overflow: hidden;
  opacity: 0;
  animation: revealUp 0.9s 0.65s ease forwards;
}

.hero__stat {
  flex: 1;
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--t-fast);
}
.hero__stat:last-child { border-right: none; }
.hero__stat:hover { background: rgba(255,255,255,0.04); }

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-top: 6px;
  display: block;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: revealUp 1s 1s ease forwards;
}

.hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
}

/* ─── VEHICLE STRIP ──────────────────────────────────────── */
.vehicle-strip {
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.vehicle-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.04), transparent);
}

.vs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t-fast);
}
.vs-item:last-child { border-right: none; }
.vs-item:hover { background: rgba(255,255,255,0.03); }

.vs-icon {
  width: 32px; height: 32px;
  background: rgba(232,160,32,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vs-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.vs-value {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  line-height: 1;
}

.vs-value.gold { color: var(--gold-bright); }

/* ─── SHARED SECTION STYLES ─────────────────────────────── */
.section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section__header {
  margin-bottom: 64px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-mid);
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--moss-mid);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__title em {
  font-style: italic;
  color: var(--moss);
}

.section__desc {
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 400;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  transition: var(--t-mid);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(232,160,32,0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--moss);
  border: 1.5px solid var(--border-mid);
}
.btn--outline-dark:hover {
  background: var(--moss);
  color: var(--white);
  border-color: var(--moss);
  transform: translateY(-2px);
}

.btn__icon {
  width: 16px; height: 16px;
  transition: transform var(--t-fast);
}
.btn:hover .btn__icon { transform: translateX(3px); }

/* ─── TABS ───────────────────────────────────────────────── */
.tabs-wrap {
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  background: rgba(45,94,64,0.06);
  padding: 5px;
  border-radius: var(--r-lg);
  width: fit-content;
  border: 1px solid var(--border-subtle);
}

.tab {
  padding: 10px 22px;
  border-radius: var(--r-md);
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--t-fast);
  white-space: nowrap;
}

.tab:hover {
  background: rgba(45,94,64,0.08);
  color: var(--moss);
}

.tab.active {
  background: var(--moss);
  color: var(--white);
  box-shadow: 0 2px 14px rgba(45,94,64,0.28);
}

/* ─── NOTICE BANNER ──────────────────────────────────────── */
.notice-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(232,160,32,0.07);
  border: 1px solid rgba(232,160,32,0.22);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  margin-bottom: 48px;
  font-size: 0.83rem;
  color: #5c3d00;
  line-height: 1.7;
}

.notice-banner svg { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* ─── PACKAGE GRID ───────────────────────────────────────── */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}

/* ─── PACKAGE CARD ───────────────────────────────────────── */
.pkg-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  border: 1px solid var(--border-subtle);
  animation: revealUp 0.5s ease both;
}

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

/* Card image frame */
.pkg-card__img-frame {
  position: relative;
  height: 220px;
  background: var(--forest);
  overflow: hidden;
  display: block;
}

.pkg-card__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform var(--t-slow), opacity var(--t-mid);
}

.pkg-card:hover .pkg-card__img-frame img {
  transform: scale(1.07);
  opacity: 0.92;
}

/* Placeholder for missing images */
.pkg-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(145deg, var(--forest) 0%, var(--ink) 100%);
  position: relative;
  overflow: hidden;
}

.pkg-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pkg-card__placeholder-icon {
  width: 52px; height: 52px;
  border: 1.5px dashed rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  position: relative;
  z-index: 1;
}

.pkg-card__placeholder-text {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  padding: 0 28px;
  font-style: italic;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
}

/* Image overlay gradient */
.pkg-card__img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,26,18,0.7) 0%,
    rgba(13,26,18,0.2) 40%,
    transparent 70%
  );
  z-index: 1;
}

/* Theme badge */
.pkg-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(8px);
}

.pkg-card__badge--spiritual {
  background: rgba(232,160,32,0.25);
  color: var(--gold-pale);
  border: 1px solid rgba(232,160,32,0.35);
}
.pkg-card__badge--highlands {
  background: rgba(45,94,64,0.4);
  color: #a8dbb8;
  border: 1px solid rgba(90,158,114,0.4);
}
.pkg-card__badge--special {
  background: rgba(192,80,112,0.3);
  color: #f5b0c2;
  border: 1px solid rgba(192,80,112,0.4);
}

/* Price badge */
.pkg-card__price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  background: rgba(13,26,18,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 8px 14px;
  text-align: right;
}

.pkg-card__price-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  display: block;
  line-height: 1;
  margin-bottom: 3px;
}

.pkg-card__price-amount {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  display: block;
}

/* Card body */
.pkg-card__body {
  padding: 28px 28px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pkg-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pkg-card__tagline {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

/* Meta pills */
.pkg-card__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--moss);
  background: rgba(45,94,64,0.08);
  border: 1px solid rgba(45,94,64,0.14);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* Stops */
.stops-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.stops-list {
  margin-bottom: 24px;
}

.stop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  user-select: none;
  transition: background var(--t-fast);
  border-radius: var(--r-sm);
  margin: 0 -8px;
  padding: 10px 8px;
}

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

.stop-item:hover { background: rgba(45,94,64,0.04); }

.stop-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding-top: 5px;
  flex-shrink: 0;
}

.stop-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-mid);
  border: 2px solid var(--border-mid);
  transition: all var(--t-fast);
  flex-shrink: 0;
}

.stop-item:hover .stop-dot,
.stop-item.open .stop-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 8px rgba(232,160,32,0.5);
}

.stop-connector {
  width: 1px;
  flex: 1;
  min-height: 14px;
  background: var(--border-subtle);
}

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

.stop-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.35;
}

.stop-time {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-faint);
  margin-top: 3px;
  letter-spacing: 0.03em;
}

.stop-chevron {
  width: 16px; height: 16px;
  color: var(--text-faint);
  flex-shrink: 0;
  margin-top: 3px;
  transition: transform var(--t-fast);
}
.stop-item.open .stop-chevron { transform: rotate(180deg); color: var(--moss); }

/* Stop expandable detail */
.stop-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.36s cubic-bezier(0.4,0,0.2,1);
}

.stop-detail.open { max-height: 400px; }

.stop-detail-inner {
  padding: 10px 0 6px 21px;
  border-left: 2px solid rgba(232,160,32,0.25);
  margin: 8px 0 4px 4px;
}

.detail-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  align-items: flex-start;
  font-size: 0.78rem;
}

.detail-key {
  font-weight: 700;
  color: var(--moss);
  white-space: nowrap;
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding-top: 1px;
  letter-spacing: 0.04em;
}

.detail-val {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 0.79rem;
}

/* Jeep addon note */
.addon-note {
  background: rgba(192,80,112,0.06);
  border-left: 2px solid var(--rose);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 8px 12px;
  margin: 8px 0 4px;
  font-size: 0.75rem;
  color: #7a2a3a;
  line-height: 1.6;
}

.addon-note strong { color: var(--rose); }

/* Drop-off */
.dropoff-block {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.dropoff-block strong {
  color: var(--text-primary);
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.dropoff-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dropoff-tag {
  background: var(--fog);
  color: var(--moss);
  font-size: 0.71rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
  transition: var(--t-fast);
}
.dropoff-tag:hover { background: var(--moss); color: var(--white); border-color: var(--moss); }

.dropoff-tag.veg {
  background: rgba(232,160,32,0.1);
  color: #7a4a00;
  border-color: rgba(232,160,32,0.25);
  font-weight: 700;
}
.dropoff-tag.veg:hover { background: var(--gold); color: var(--ink); }

/* Extras block */
.extras-block {
  background: var(--fog);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.76rem;
  color: var(--text-muted);
  border: 1px dashed var(--border-mid);
  line-height: 1.7;
}

.extras-block strong {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Card footer */
.pkg-card__footer {
  padding: 0 28px 28px;
}

.book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 14px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: var(--t-mid);
  box-shadow: var(--shadow-gold);
}

.book-btn:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,160,32,0.45);
}

.book-btn svg { transition: transform var(--t-fast); }
.book-btn:hover svg { transform: translateX(4px); }

/* ─── INFO SECTION ───────────────────────────────────────── */
.info-section {
  background: var(--forest);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(45,94,64,0.4) 0%, transparent 65%);
}

.info-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.info-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}

.info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: background var(--t-mid), transform var(--t-mid);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.info-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-4px);
}

.info-card:hover::before { opacity: 1; }

.info-icon {
  width: 48px; height: 48px;
  background: rgba(232,160,32,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(232,160,32,0.2);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.info-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ─── PRICING SECTION ────────────────────────────────────── */
.pricing-section {
  background: var(--parchment);
  padding: 96px 24px;
  position: relative;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}

.pricing-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Price table */
.price-table-wrap {
  border-radius: var(--r-xl);
  overflow-x: auto; /* Changed to auto to enable horizontal scrolling */
  -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  margin-top: 40px;
  background: var(--white);
}

.price-table {
  width: 100%;
  min-width: 650px; /* Forces the table to stay wide, triggering the scroll bar */
  border-collapse: collapse;
}
.price-table thead tr {
  background: var(--ink);
}

.price-table thead th {
  color: rgba(255,255,255,0.7);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px 20px;
  text-align: left;
}

.price-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-fast);
}

.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: rgba(45,94,64,0.04); }

.price-table td {
  padding: 16px 20px;
  font-size: 0.86rem;
  color: var(--text-primary);
  vertical-align: middle;
}

.price-table td strong { color: var(--ink); font-weight: 700; }

/* Row accents */
.row-spiritual td:first-child { border-left: 3px solid var(--gold); }
.row-highlands  td:first-child { border-left: 3px solid var(--moss); }
.row-special    td:first-child { border-left: 3px solid var(--rose); }
.row-extra      td:first-child { border-left: 3px solid var(--text-faint); }

.price-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.price-tag--gold    { background: rgba(232,160,32,0.15); color: #6b4000; border: 1px solid rgba(232,160,32,0.3); }
.price-tag--moss    { background: rgba(45,94,64,0.1); color: var(--forest); border: 1px solid rgba(45,94,64,0.2); }
.price-tag--rose    { background: rgba(192,80,112,0.1); color: #7a2a3a; border: 1px solid rgba(192,80,112,0.2); }
.price-tag--muted   { background: var(--fog); color: var(--text-muted); border: 1px solid var(--border-subtle); }

/* Theme badges in table */
.theme-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.theme-pill--spiritual { background: rgba(232,160,32,0.12); color: #6b4000; }
.theme-pill--highlands { background: rgba(45,94,64,0.1); color: var(--forest); }
.theme-pill--special   { background: rgba(192,80,112,0.1); color: #7a2a3a; }

.pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 20px;
  line-height: 1.8;
  padding: 0 4px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 64px 24px 32px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.4), transparent);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand { }

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

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

.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  max-width: 640px;
}

.footer-loc {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

/* ─── ANIMATIONS ─────────────────────────────────────────── */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.9; transform: scaleY(1.15); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

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

/* ─── RESPONSIVE ─────────────────────────────────────────── */

/* Large screens (1400px+) */
@media (min-width: 1400px) {
  .section-inner { max-width: 1320px; }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: 8rem; }
}

/* Medium-large (1100px - 1399px) */
@media (max-width: 1399px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet landscape (900px - 1099px) */
@media (max-width: 1099px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .hero__stats { flex-wrap: wrap; }
  .hero__stat { min-width: 120px; }
}

/* Tablet portrait (680px - 899px) */
@media (max-width: 899px) {
  .section { padding: 72px 20px; }
  .pkg-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 120px 20px 100px; }
  .hero__title { font-size: clamp(2.8rem, 9vw, 5rem); }
  .vehicle-strip { gap: 0; flex-wrap: wrap; }
  .vs-item { flex: 1; min-width: 160px; padding: 16px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Mobile large (480px - 679px) */
@media (max-width: 679px) {
  .hero__stats { flex-direction: column; gap: 0; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero__stat:last-child { border-bottom: none; }
  .tabs { width: 100%; }
  .tab { flex: 1; text-align: center; padding: 9px 6px; font-size: 0.76rem; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { text-align: center; justify-content: center; }
  .section__title { font-size: 2rem; }
  .pkg-card__body { padding: 22px 22px 0; }
  .pkg-card__footer { padding: 0 22px 22px; }
  .price-table { font-size: 0.78rem; }
  .price-table td, .price-table th { padding: 12px 12px; }
  .info-grid { grid-template-columns: 1fr; }
  .vehicle-strip { flex-direction: column; align-items: stretch; }
  .vs-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .vs-item:last-child { border-bottom: none; }
}

/* Mobile small (< 480px) */
@media (max-width: 479px) {
  .hero__title { font-size: 2.6rem; }
  .hero { padding: 100px 16px 100px; }
  .section { padding: 56px 16px; }
  .hero__stat-num { font-size: 1.7rem; }
  .pkg-card__name { font-size: 1.3rem; }
  
  /* NOTE: The code hiding the 3rd and 4th table columns has been deleted from here */
  
  .footer-logo { font-size: 1.5rem; }
  .notice-banner { padding: 12px 14px; }
}