/* =====================================================================
   Majestic Banff Experiences — Design System
   Palette drawn from the brand badge: forest green, cream, glacial
   turquoise, warm sunset gold. Fonts: Fraunces (display) + Inter (UI).
   ===================================================================== */
:root {
  /* Greens */
  --green-900: #12301e;
  --green-800: #1b4332;
  --green-700: #245741;
  --green-600: #2d6a4f;
  --green-500: #40916c;
  --green-400: #52b788;
  /* Turquoise (glacial lake) */
  --turq-700: #0b6b78;
  --turq-600: #0e8091;
  --turq-500: #14a3b8;
  --turq-400: #43c3d4;
  --turq-100: #d7f0f3;
  /* Warm */
  --gold-600: #b9822a;
  --gold-500: #d3982f;
  --gold-400: #e6b45a;
  /* Neutrals */
  --cream: #f8f4ea;
  --cream-2: #f2ecdc;
  --sand: #e8dfc8;
  --card: #fffdf7;
  --ink: #1c2b22;
  --ink-soft: #34473c;
  --muted: #64756a;
  --line: #e4dcc9;
  --white: #ffffff;
  --danger: #c0392b;
  --danger-bg: #fbeceb;
  --success: #2f7d51;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 2px 8px rgba(18, 48, 30, 0.06);
  --shadow: 0 10px 30px rgba(18, 48, 30, 0.10);
  --shadow-lg: 0 24px 60px rgba(18, 48, 30, 0.16);
  --maxw: 1200px;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--ink-soft); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(56px, 8vw, 100px) 0; }
.section-sm { padding: clamp(40px, 5vw, 64px) 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.text-turq { color: var(--turq-600); }

/* ---------- Eyebrow / section heads ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-ui); font-weight: 600; font-size: 0.78rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--turq-600);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--turq-500); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 26px; border-radius: 100px; border: none;
  font-weight: 600; font-size: 0.96rem; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--green-700); color: #fff; box-shadow: 0 8px 20px rgba(36, 87, 65, 0.28); }
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(36, 87, 65, 0.34); }
.btn-accent { background: var(--gold-500); color: #3a2a08; box-shadow: 0 8px 20px rgba(211, 152, 47, 0.3); }
.btn-accent:hover { background: var(--gold-600); color: #fff; transform: translateY(-2px); }
.btn-turq { background: var(--turq-600); color: #fff; }
.btn-turq:hover { background: var(--turq-700); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--green-800); border: 1.6px solid var(--green-600); }
.btn-outline:hover { background: var(--green-700); color: #fff; border-color: var(--green-700); }
.btn-ghost { background: rgba(255, 255, 255, 0.14); color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.9); color: var(--green-800); }
.btn-lg { padding: 16px 34px; font-size: 1.02rem; }
.btn-sm { padding: 9px 16px; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 244, 234, 0.86); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.topbar { background: var(--green-800); color: #e7f0ea; font-size: 0.82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; height: 38px; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; opacity: 0.9; transition: opacity var(--transition); }
.topbar a:hover { opacity: 1; color: var(--turq-400); }
.topbar .topbar-right { display: flex; gap: 18px; align-items: center; }
.topbar svg { width: 15px; height: 15px; }
.topbar-social { display: flex; gap: 12px; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 66px; height: 66px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text b { font-family: var(--font-display); font-size: 1.2rem; color: var(--green-800); font-weight: 600; }
.brand-text span { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--turq-600); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 100px; font-weight: 500; font-size: 0.95rem; color: var(--ink-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--green-800); background: rgba(45, 106, 79, 0.09); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; background: none; border: none; width: 44px; height: 44px; color: var(--green-800); }
.hamburger svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200; background: rgba(18, 48, 30, 0.5);
  opacity: 0; pointer-events: none; transition: opacity var(--transition); backdrop-filter: blur(2px);
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(84vw, 340px);
  background: var(--cream); padding: 24px; transform: translateX(100%);
  transition: transform var(--transition); display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-drawer.open .mobile-panel { transform: translateX(0); }
.mobile-panel a { padding: 13px 14px; border-radius: var(--radius-sm); font-weight: 500; font-size: 1.05rem; color: var(--ink); }
.mobile-panel a:hover { background: rgba(45, 106, 79, 0.09); }
.mobile-panel .mp-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mobile-panel .mp-close { background: none; border: none; color: var(--ink); width: 40px; height: 40px; }
.mobile-panel .mp-close svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-bg img, .hero-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-bg.kenburns img { animation: kenburns 26s ease-in-out infinite alternate; transform-origin: center; }
@keyframes kenburns { from { transform: scale(1.02) translate(0, 0); } to { transform: scale(1.14) translate(-2%, -2%); } }
@media (prefers-reduced-motion: reduce) { .hero-bg.kenburns img { animation: none; } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(18, 48, 30, 0.45) 0%, rgba(18, 48, 30, 0.35) 40%, rgba(18, 48, 30, 0.78) 100%);
}
.hero-inner { max-width: 720px; padding: 80px 0; }
.hero h1 { color: #fff; text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3); }
.hero p { color: rgba(255, 255, 255, 0.92); font-size: 1.18rem; margin: 20px 0 32px; max-width: 560px; }
.hero .eyebrow { color: var(--turq-400); }
.hero .eyebrow::before { background: var(--turq-400); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-badge { display: flex; flex-direction: column; }
.hero-badge b { font-family: var(--font-display); font-size: 1.9rem; color: #fff; }
.hero-badge span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); }

/* ---------- Search bar ---------- */
.search-bar {
  background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow);
  padding: 14px; display: grid; grid-template-columns: 1.4fr 1fr 1fr auto; gap: 10px;
  max-width: 940px; margin: -46px auto 0; position: relative; z-index: 5; border: 1px solid var(--line);
}
.search-field { display: flex; flex-direction: column; padding: 6px 14px; border-right: 1px solid var(--line); }
.search-field:last-of-type { border-right: none; }
.search-field label { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
.search-field select, .search-field input {
  border: none; background: none; font-family: inherit; font-size: 0.98rem; color: var(--ink); font-weight: 500; outline: none; width: 100%;
}

/* ---------- Cards / Tour grid ---------- */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.tour-card {
  background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line); transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1); }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-tag {
  position: absolute; top: 14px; left: 14px; background: rgba(255, 255, 255, 0.92); color: var(--green-800);
  font-size: 0.74rem; font-weight: 700; padding: 6px 12px; border-radius: 100px; letter-spacing: 0.03em; backdrop-filter: blur(4px);
}
.tour-fav { position: absolute; top: 14px; right: 14px; background: rgba(18,48,30,0.55); color: #fff; padding: 5px 11px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.tour-fav svg { width: 13px; height: 13px; color: var(--gold-400); }
.tour-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.tour-meta { display: flex; gap: 14px; font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; flex-wrap: wrap; }
.tour-meta span { display: inline-flex; align-items: center; gap: 5px; }
.tour-meta svg { width: 15px; height: 15px; color: var(--turq-600); }
.tour-card h3 { margin-bottom: 8px; }
.tour-card h3 a:hover { color: var(--turq-600); }
.tour-card .tour-sub { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.tour-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); }
.tour-price b { font-family: var(--font-display); font-size: 1.4rem; color: var(--green-800); }
.tour-price span { font-size: 0.8rem; color: var(--muted); }
.rating { display: inline-flex; align-items: center; gap: 5px; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.rating svg { width: 15px; height: 15px; color: var(--gold-500); }

/* ---------- Category pills ---------- */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.pill {
  padding: 9px 18px; border-radius: 100px; border: 1.4px solid var(--line); background: var(--card);
  font-weight: 500; font-size: 0.9rem; color: var(--ink-soft); transition: all var(--transition);
}
.pill:hover { border-color: var(--green-500); color: var(--green-700); }
.pill.active { background: var(--green-700); border-color: var(--green-700); color: #fff; }

/* ---------- Feature / value grid ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: transform var(--transition), box-shadow var(--transition); }
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; background: var(--turq-100); color: var(--turq-700); margin-bottom: 18px; }
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 8px; }
.feature p { font-size: 0.94rem; }

/* ---------- Interest / category tiles ---------- */
.interest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
.interest {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  display: flex; align-items: flex-end; box-shadow: var(--shadow-sm);
}
.interest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 600ms; }
.interest::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(18, 48, 30, 0.82)); }
.interest:hover img { transform: scale(1.08); }
.interest-label { position: relative; z-index: 2; padding: 20px; }
.interest-label b { font-family: var(--font-display); font-size: 1.25rem; display: block; }
.interest-label span { font-size: 0.85rem; opacity: 0.9; }

/* ---------- Split / storytelling ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); width: 100%; aspect-ratio: 5/4; object-fit: cover; }
.split-media .stamp {
  position: absolute; bottom: -24px; right: -18px; background: var(--card); border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow); border: 1px solid var(--line); display: flex; gap: 12px; align-items: center;
}
.split-media .stamp img { width: 52px; height: 52px; border-radius: 50%; box-shadow: none; aspect-ratio: 1; }
.split-media .stamp b { font-family: var(--font-display); font-size: 1.05rem; display: block; color: var(--green-800); }
.split-media .stamp span { font-size: 0.8rem; color: var(--muted); }
.check-list { margin: 22px 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.check-list svg { width: 22px; height: 22px; color: var(--green-500); flex-shrink: 0; margin-top: 1px; }

/* ---------- Stats band ---------- */
.stats-band { background: var(--green-800); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat b { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); display: block; color: #fff; }
.stat span { color: rgba(255, 255, 255, 0.78); font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testi { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.testi .stars { color: var(--gold-500); display: flex; gap: 3px; margin-bottom: 14px; }
.testi .stars svg { width: 18px; height: 18px; }
.testi p { color: var(--ink); font-size: 1rem; margin-bottom: 18px; flex: 1; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-who b { display: block; font-size: 0.95rem; }
.testi-who span { font-size: 0.82rem; color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; border-radius: var(--radius-xl); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(18, 48, 30, 0.9), rgba(14, 128, 145, 0.6)); z-index: -1; }
.cta-band-inner { padding: clamp(44px, 6vw, 76px); text-align: center; }
.cta-band h2 { color: #fff; max-width: 620px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255, 255, 255, 0.9); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: #cdd8d0; padding-top: 66px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; }
.footer-brand img { width: 62px; height: 62px; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { color: #a9b8ae; font-size: 0.92rem; margin-bottom: 18px; max-width: 300px; }
.footer h4 { color: #fff; font-family: var(--font-ui); font-weight: 600; font-size: 0.98rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-links { display: grid; gap: 11px; }
.footer-links a { color: #a9b8ae; font-size: 0.92rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--turq-400); }
.footer-contact li { display: flex; gap: 11px; color: #a9b8ae; font-size: 0.92rem; margin-bottom: 13px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--turq-400); flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); display: grid; place-items: center; transition: background var(--transition); }
.footer-social a:hover { background: var(--turq-600); }
.footer-social svg { width: 19px; height: 19px; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 0.86rem; color: #8b9a90; }
.footer-bottom a { color: #8b9a90; }
.footer-bottom a:hover { color: var(--turq-400); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; color: #fff; padding: clamp(70px, 10vw, 120px) 0 clamp(50px, 7vw, 84px); overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 48, 30, 0.55), rgba(18, 48, 30, 0.78)); z-index: -1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; max-width: 560px; margin-top: 14px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.85rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--turq-400); }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.98rem; color: var(--ink); background: var(--white); transition: border var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--turq-500); box-shadow: 0 0 0 3px rgba(20, 163, 184, 0.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field .hint { font-size: 0.8rem; color: var(--muted); margin-top: 5px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-error { color: var(--danger); font-size: 0.82rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .field-error { display: block; }

/* ---------- Toast ---------- */
.toast-wrap { position: fixed; bottom: 24px; right: 24px; z-index: 500; display: flex; flex-direction: column; gap: 10px; }
.toast {
  background: var(--green-800); color: #fff; padding: 14px 20px; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: 0.94rem; min-width: 260px; max-width: 380px;
  animation: toastIn 300ms cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.error { background: var(--danger); }
.toast.info { background: var(--turq-700); }
.toast svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes toastIn { from { transform: translateX(30px); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ---------- Misc ---------- */
.badge-soft { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 100px; background: var(--turq-100); color: var(--turq-700); font-size: 0.8rem; font-weight: 600; }
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.loading { text-align: center; padding: 60px 0; color: var(--muted); }
.spinner { width: 34px; height: 34px; border: 3px solid var(--line); border-top-color: var(--green-600); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto 14px; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty-state svg { width: 46px; height: 46px; color: var(--sand); margin-bottom: 14px; }

/* ---------- Trusted partners strip ---------- */
.partners { background: var(--cream-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }
.partners-label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--muted); text-align: center; margin-bottom: 18px; }
.partners-label a { font-weight: 700; }
.partners-logos { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2.5vw, 22px); flex-wrap: wrap; }
.plogo { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 20px; height: 58px; display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.plogo:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.plogo img { height: 26px; width: auto; max-width: 118px; object-fit: contain; display: block; }
.plogo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--green-800); letter-spacing: -0.01em; }

/* ---------- Tour stops map ---------- */
.tour-map { height: 460px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; z-index: 1; }
.tour-map .leaflet-popup-content { font-family: var(--font-ui); }
@media (max-width: 600px) { .tour-map { height: 360px; } }

/* ---------- Live support chat widget ---------- */
/* Container must NOT capture pointer events (its box overlaps page content, esp.
   on mobile) — only the button and the open panel are interactive. */
.live-chat { position: fixed; right: 22px; bottom: 22px; z-index: 400; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; pointer-events: none; }
.lc-fab { pointer-events: auto; position: relative; display: inline-flex; align-items: center; gap: 9px; background: var(--green-700); color: #fff; border: none; padding: 13px 20px; border-radius: 100px; font-weight: 600; font-size: 0.95rem; box-shadow: 0 10px 28px rgba(18, 48, 30, 0.32); cursor: pointer; transition: transform var(--transition), background var(--transition); }
.lc-fab:hover { background: var(--green-800); transform: translateY(-2px); }
.lc-fab svg { width: 22px; height: 22px; }
.lc-fab::before { content: ""; position: absolute; top: -3px; right: -3px; width: 13px; height: 13px; background: #4ade80; border: 2.5px solid var(--cream); border-radius: 50%; }
.lc-panel { width: min(90vw, 340px); background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; transform: translateY(16px) scale(0.96); opacity: 0; pointer-events: none; transform-origin: bottom right; transition: transform var(--transition), opacity var(--transition); }
.live-chat.open .lc-panel { transform: none; opacity: 1; pointer-events: auto; }
.live-chat.open .lc-fab { display: none; }
.lc-head { background: linear-gradient(120deg, var(--green-800), var(--turq-700)); color: #fff; padding: 18px 18px; display: flex; align-items: center; gap: 12px; }
.lc-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.18); display: grid; place-items: center; flex-shrink: 0; }
.lc-avatar svg { width: 22px; height: 22px; color: #fff; }
.lc-head-txt { flex: 1; line-height: 1.2; }
.lc-head-txt b { font-family: var(--font-display); font-size: 1rem; display: block; }
.lc-head-txt span { font-size: 0.76rem; opacity: 0.92; display: flex; align-items: center; gap: 6px; }
.lc-dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; display: inline-block; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7); animation: lcPulse 2s infinite; }
@keyframes lcPulse { 0% { box-shadow: 0 0 0 0 rgba(74,222,128,.6); } 70% { box-shadow: 0 0 0 7px rgba(74,222,128,0); } 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); } }
.lc-close { background: rgba(255,255,255,0.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.lc-close svg { width: 17px; height: 17px; }
.lc-body { padding: 18px; }
.lc-greet { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 14px; }
.lc-opt { display: flex; align-items: center; gap: 13px; padding: 12px 14px; border-radius: var(--radius); border: 1px solid var(--line); margin-bottom: 9px; transition: background var(--transition), border var(--transition); }
.lc-opt:hover { background: var(--cream-2); border-color: var(--green-400); }
.lc-opt svg { width: 24px; height: 24px; flex-shrink: 0; }
.lc-opt span { display: flex; flex-direction: column; line-height: 1.25; }
.lc-opt b { font-size: 0.94rem; color: var(--ink); }
.lc-opt small { font-size: 0.8rem; color: var(--muted); }
.lc-opt.call svg { color: var(--green-600); }
.lc-opt.wa svg { color: #25d366; }
.lc-opt.mail svg { color: var(--turq-600); }
.lc-opt.ta svg { color: #00af87; }
@media (max-width: 820px){ .lc-fab-label { display: none; } .lc-fab { padding: 15px; } .live-chat { right: 16px; bottom: 16px; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media .stamp { right: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .search-bar { grid-template-columns: 1fr 1fr; }
  .search-bar .btn { grid-column: span 2; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn, .topbar { display: none; }
  .hamburger { display: grid; place-items: center; }
  .nav-cta { display: none; }
}
@media (max-width: 620px) {
  .footer-grid { grid-template-columns: 1fr; }
  .search-bar { grid-template-columns: 1fr; }
  .search-bar .btn { grid-column: 1; }
  .search-field { border-right: none; border-bottom: 1px solid var(--line); }
  .hero-badges { gap: 18px; }
  .toast-wrap { left: 16px; right: 16px; }
  .toast { min-width: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
