@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,700;1,600&display=swap');
@font-face {
  font-family: 'Tussilago';
  src: url('../fonts/tussilago_hv.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* ====================================================================
   KHREGO TREKS — Shared stylesheet (light + dark themes)
==================================================================== */

/* ---------- DARK (default) ---------- */
:root,
[data-theme="dark"] {
  --midnight: #0b1726;
  --bg: #0b1726;
  --bg-2: #0e1c2e;
  --bg-3: #142639;
  --ink: #122234;
  --slate: #1e2f44;
  --forest: #1f3a2e;
  --forest-hi: #2f5a44;
  --parchment: #f3ead8;
  --parchment-2: #e8dcc0;
  --text: #f3ead8;
  --text-soft: rgba(243,234,216,.72);
  --text-faint: rgba(243,234,216,.4);
  --gold: #c9a24a;
  --gold-hi: #e5c37a;
  --gold-soft: #a98836;
  --rust: #8b3a1f;
  --border: rgba(201,162,74,.25);
  --border-strong: rgba(201,162,74,.5);
  --card-bg: #0e1c2e;
  --card-bg-soft: rgba(243,234,216,.03);
  --header-bg: rgba(11,23,38,.88);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.6);
  --shadow-md: 0 12px 32px -12px rgba(0,0,0,.5);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- LIGHT ---------- */
[data-theme="light"] {
  --midnight: #f6efe1;
  --bg: #f6efe1;
  --bg-2: #efe6d0;
  --bg-3: #e8dcc0;
  --ink: #fffaf0;
  --slate: #d9cdb1;
  --forest: #2f5a44;
  --forest-hi: #1f3a2e;
  --parchment: #1a2230;
  --parchment-2: #243246;
  --text: #1a2230;
  --text-soft: rgba(26,34,48,.72);
  --text-faint: rgba(26,34,48,.45);
  --gold: #a07922;
  --gold-hi: #c9a24a;
  --gold-soft: #8a6918;
  --rust: #8b3a1f;
  --border: rgba(160,121,34,.28);
  --border-strong: rgba(160,121,34,.55);
  --card-bg: #ffffff;
  --card-bg-soft: rgba(160,121,34,.05);
  --header-bg: rgba(246,239,225,.92);
  --shadow-lg: 0 30px 80px -20px rgba(0,0,0,.18);
  --shadow-md: 0 12px 32px -12px rgba(0,0,0,.15);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .3s var(--ease), color .3s var(--ease);
}

/* Coordinated theme-switch transitions — when the user toggles dark/light,
   every themed surface fades together (no "body fades, cards snap" mismatch). */
.pkg-modal,
.tm-modal-card,
.tm-card,
.package-card,
.cmp-panel, .cmp-card,
.ready-panel, .qz-card,
.admin-list-item,
.admin-section,
.kh-cs-arr,
.section-tag,
.pkg-stat,
.exp-cell,
.trip-why-pillar,
.terms-tab,
.terms-clause,
.review-card,
.blog-card,
.gallery-item,
.faq-item,
.gear-pack,
.itin-day {
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
body.lock { overflow: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Fraunces', serif; font-weight: 400; letter-spacing: -.01em; line-height: 1.12; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font-family: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

input, textarea, select {
  background: transparent;
  border: 1px solid var(--border);
  padding: 14px 16px;
  width: 100%;
  color: var(--text);
  font-size: 14px;
  transition: border-color .3s var(--ease);
  border-radius: 4px;
}
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; font-family: 'Outfit', sans-serif; }
label {
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ====================================================================
   HEADER
==================================================================== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 12px 0;
  transition: all .4s var(--ease);
}
.header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 38px; height: 38px; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text);
}
.brand-name span { color: var(--gold); }

.quick-nav { display: none; gap: 24px; }
@media (min-width: 1024px) { .quick-nav { display: flex; align-items: center; } }
.quick-nav a {
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft); transition: color .3s var(--ease);
  position: relative; padding: 6px 0;
}
.quick-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.quick-nav a:hover, .quick-nav a.active { color: var(--gold); }
.quick-nav a.active::after, .quick-nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  color: var(--text);
}
.theme-toggle:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: block; }

.menu-trigger {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--card-bg-soft);
  transition: all .3s var(--ease);
  color: var(--text);
}
.menu-trigger:hover { background: rgba(201,162,74,.12); border-color: var(--gold); }
.menu-trigger span { font-size: 12px; letter-spacing: .25em; text-transform: uppercase; }
.menu-lines { width: 22px; height: 14px; position: relative; }
.menu-lines::before, .menu-lines::after {
  content: ''; position: absolute; left: 0; right: 0;
  height: 1.5px; background: var(--text);
  transition: all .3s var(--ease);
}
.menu-lines::before { top: 3px; }
.menu-lines::after { bottom: 3px; width: 70%; }
.menu-trigger:hover .menu-lines::after { width: 100%; }

@media (max-width: 720px) {
  .menu-trigger span { display: none; }
}

/* ====================================================================
   MENU OVERLAY
==================================================================== */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-3) 100%);
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 90px 24px 40px;
  overflow-y: auto;
}
.menu-overlay.active { opacity: 1; visibility: visible; }
.menu-close {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  color: var(--text);
}
.menu-close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); transform: rotate(90deg); }
.menu-close svg { width: 16px; height: 16px; }

.menu-content {
  width: 100%; max-width: 1200px;
  display: grid; grid-template-columns: 1fr; gap: 50px;
}
@media (min-width: 900px) { .menu-content { grid-template-columns: 1.4fr 1fr; gap: 80px; } }

.menu-nav { display: flex; flex-direction: column; gap: 4px; }
.menu-item { border-bottom: 1px solid rgba(201,162,74,.12); }
.menu-item-head {
  display: flex; align-items: center; gap: 18px; padding: 18px 0;
  cursor: pointer; transition: all .3s var(--ease);
}
.menu-item:hover .menu-item-head { padding-left: 14px; }
.menu-link-num { font-size: 12px; color: var(--gold); letter-spacing: .2em; flex-shrink: 0; }
.menu-link-text {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 4.5vw, 42px);
  font-weight: 300; flex: 1;
  transition: all .3s var(--ease);
}
.menu-item:hover .menu-link-text { color: var(--gold); font-style: italic; }

.menu-aside {
  border-left: 1px solid var(--border);
  padding-left: 40px;
  display: flex; flex-direction: column; gap: 32px;
}
@media (max-width: 899px) {
  .menu-aside { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 32px; }
}
.menu-aside h4 {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  font-family: 'Outfit', sans-serif; font-weight: 500;
}
.menu-aside p, .menu-aside a.contact-line {
  font-size: 14px; color: var(--text-soft);
  line-height: 1.8; display: block;
}
.menu-aside a.contact-line:hover { color: var(--gold); }
.menu-socials { display: flex; gap: 14px; margin-top: 8px; }
.menu-socials a {
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.menu-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); transform: translateY(-3px); }
.menu-socials svg { width: 16px; height: 16px; }

/* ====================================================================
   HERO (sub-page hero)
==================================================================== */
.page-hero {
  padding: 180px 0 90px;
  background: linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(201,162,74,.08) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.page-hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.page-hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 22px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-sub { font-size: 17px; color: var(--text-soft); max-width: 620px; }

/* ====================================================================
   HOME HERO
==================================================================== */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg) 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(201,162,74,.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(31,58,46,.20) 0%, transparent 60%);
  pointer-events: none;
}
.hero-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .55;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg) 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 100px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold); }
.hero-title {
  font-size: clamp(44px, 8vw, 104px);
  font-weight: 300; line-height: .98; letter-spacing: -.02em;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-sub { max-width: 580px; font-size: 17px; color: var(--text-soft); margin-bottom: 40px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  transition: all .3s var(--ease);
  border-radius: 2px;
}
.btn-primary { background: var(--gold); color: var(--bg); font-weight: 500; }
.btn-primary:hover { background: var(--gold-hi); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,74,.06); }
.btn-forest { background: var(--forest); color: var(--parchment-2); border: 1px solid var(--forest-hi); }
[data-theme="light"] .btn-forest { color: #fff; }
.btn-forest:hover { background: var(--forest-hi); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ====================================================================
   SECTION BASE
==================================================================== */
section { padding: 110px 0; position: relative; }
@media (max-width: 768px) { section { padding: 70px 0; } }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 60px; max-width: 820px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; align-items: center; }
.section-tag {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); display: inline-flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.section-head.center .section-tag { justify-content: center; }
.section-title { font-size: clamp(34px, 5vw, 62px); font-weight: 300; }
.section-title em { font-style: italic; color: var(--gold); }
.section-lead { font-size: 17px; color: var(--text-soft); max-width: 640px; margin-top: 8px; }

.reveal { opacity: 0; transform: translateY(40px); transition: all .9s var(--ease); }
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ====================================================================
   EXPERIENCE STRIPE
==================================================================== */
.experience {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.exp-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--border);
}
@media (min-width: 900px) { .exp-grid { grid-template-columns: repeat(3, 1fr); } }
.exp-cell { background: var(--bg); padding: 50px 40px; transition: all .5s var(--ease); position: relative; overflow: hidden; }
.exp-cell::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201,162,74,.1) 0%, transparent 60%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.exp-cell:hover::before { opacity: 1; }
.exp-num { font-family: 'Fraunces', serif; font-size: 14px; color: var(--gold); margin-bottom: 24px; letter-spacing: .1em; }
.exp-title { font-size: 32px; font-weight: 300; margin-bottom: 16px; }
.exp-title em { color: var(--gold); font-style: italic; }
.exp-desc { color: var(--text-soft); font-size: 15px; margin-bottom: 24px; }
.exp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.exp-list li { font-size: 13px; color: var(--text-soft); display: flex; gap: 10px; align-items: baseline; }
.exp-list li::before { content: '✦'; color: var(--gold); font-size: 10px; }

/* ====================================================================
   PACKAGES GRID
==================================================================== */
.regions-bg { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.filter-chip {
  padding: 10px 20px;
  border: 1px solid var(--border); border-radius: 100px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-soft); transition: all .3s var(--ease);
}
.filter-chip:hover { color: var(--text); border-color: var(--gold-soft); }
.filter-chip.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 500; }

.packages-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 720px) { .packages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .packages-grid { grid-template-columns: repeat(3, 1fr); } }

.pkg-card {
  position: relative; background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden; transition: all .5s var(--ease);
  display: flex; flex-direction: column;
  border-radius: 4px;
}
.pkg-card:hover { transform: translateY(-8px); border-color: var(--gold-soft); box-shadow: var(--shadow-lg); }
.pkg-hero {
  position: relative; height: 240px; overflow: hidden;
  background: linear-gradient(135deg, var(--slate) 0%, var(--bg) 100%);
}
.pkg-hero img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.pkg-card:hover .pkg-hero img { transform: scale(1.08); }
.pkg-tier {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px; font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  background: rgba(11,23,38,.7); border: 1px solid var(--border); color: var(--gold);
  backdrop-filter: blur(8px);
}
.pkg-region {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  font-size: 10px; letter-spacing: .3em; color: var(--gold-hi);
  text-transform: uppercase;
  background: rgba(11,23,38,.72); padding: 5px 10px; border-radius: 2px;
}
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-title { font-size: 22px; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.pkg-desc-short { font-size: 13px; color: var(--text-soft); margin-bottom: 18px; line-height: 1.6; }
.pkg-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.pkg-stat { display: flex; flex-direction: column; gap: 2px; }
.pkg-stat-lbl { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); }
.pkg-stat-val { font-family: 'Fraunces', serif; font-size: 17px; color: var(--text); }
.pkg-stat-val .u { font-size: 11px; color: var(--text-soft); margin-left: 2px; }
.pkg-foot {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-top: auto; gap: 14px;
}
.pkg-price-lbl { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-faint); }
.pkg-price { font-family: 'Fraunces', serif; font-size: 24px; color: var(--gold); }
.pkg-price .c { font-size: 12px; color: var(--text-soft); margin-right: 2px; }
.pkg-view {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text); display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px; border: 1px solid var(--border);
  transition: all .3s var(--ease); white-space: nowrap;
}
.pkg-card:hover .pkg-view { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pkg-view svg { width: 10px; height: 10px; }

/* ====================================================================
   ABOUT
==================================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center;
}
@media (min-width: 900px) { .about-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; } }
.about-visual {
  position: relative; aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--slate) 0%, var(--bg) 100%);
  border: 1px solid var(--border); overflow: hidden;
  border-radius: 4px;
}
.about-visual img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  padding: 20px;
  background: rgba(11,23,38,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--parchment-2);
}
.about-badge-num { font-family: 'Fraunces', serif; font-size: 44px; color: var(--gold); line-height: 1; }
.about-badge-lbl {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(243,234,216,.72); margin-top: 6px;
}
.about-copy h2 { margin-bottom: 24px; }
.about-copy p { color: var(--text-soft); margin-bottom: 16px; font-size: 16px; }
.about-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--border);
}
.about-stat-num { font-family: 'Fraunces', serif; font-size: 38px; color: var(--gold); line-height: 1; }
.about-stat-lbl { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-soft); margin-top: 6px; }

/* ====================================================================
   TEAM
==================================================================== */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; margin-top: 40px;
}
.team-card {
  padding: 28px; border: 1px solid var(--border);
  background: var(--card-bg-soft);
  text-align: center; transition: all .4s var(--ease);
  border-radius: 4px;
}
.team-card:hover { border-color: var(--gold-soft); transform: translateY(-4px); }
.team-avatar {
  width: 100px; height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate), var(--bg));
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 20px; font-weight: 500; margin-bottom: 4px; }
.team-role { font-size: 11px; letter-spacing: .25em; color: var(--gold); text-transform: uppercase; margin-bottom: 14px; }
.team-bio { font-size: 13px; color: var(--text-soft); line-height: 1.7; }

/* ====================================================================
   TESTIMONIALS
==================================================================== */
.testi-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-card {
  padding: 36px 30px;
  border: 1px solid var(--border);
  background: var(--card-bg-soft);
  transition: all .4s var(--ease); border-radius: 4px;
}
.testi-card:hover { border-color: var(--gold-soft); background: rgba(201,162,74,.04); transform: translateY(-4px); }
.testi-quote { font-family: 'Fraunces', serif; font-size: 60px; color: var(--gold); line-height: .5; margin-bottom: 20px; font-style: italic; }
.testi-text { font-size: 15px; color: var(--text); margin-bottom: 24px; line-height: 1.7; font-style: italic; }
.testi-stars { display: flex; gap: 4px; margin-bottom: 18px; }
.testi-stars span { color: var(--gold); font-size: 14px; }
.testi-author { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 16px; color: var(--bg); font-weight: 600;
}
.testi-name { font-size: 14px; color: var(--text); margin-bottom: 2px; }
.testi-meta { font-size: 11px; color: var(--text-faint); letter-spacing: .15em; text-transform: uppercase; }

/* ====================================================================
   GALLERY
==================================================================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative; aspect-ratio: 4/5;
  overflow: hidden; border-radius: 4px;
  background: var(--bg-2); cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 18px 14px;
  background: linear-gradient(0deg, rgba(11,23,38,.92) 0%, transparent 100%);
  color: var(--parchment-2);
}
.gallery-cap-title { font-family: 'Fraunces', serif; font-size: 17px; }
.gallery-cap-meta { font-size: 11px; color: var(--gold-hi); letter-spacing: .2em; text-transform: uppercase; margin-top: 4px; }

/* ====================================================================
   BLOG
==================================================================== */
.journal-bg {
  background: var(--bg-2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden; transition: all .5s var(--ease);
  display: flex; flex-direction: column; border-radius: 4px;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--gold-soft); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; position: relative; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-cat {
  position: absolute; top: 16px; left: 16px;
  padding: 6px 12px;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  background: rgba(11,23,38,.8); border: 1px solid var(--border);
  color: var(--gold); backdrop-filter: blur(8px);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 10px; }
.blog-title { font-size: 22px; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.blog-excerpt { font-size: 14px; color: var(--text-soft); margin-bottom: 18px; flex: 1; }
.blog-read {
  font-size: 11px; letter-spacing: .25em; color: var(--gold); text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px; transition: gap .3s var(--ease);
}
.blog-card:hover .blog-read { gap: 16px; }
.blog-read svg { width: 10px; height: 10px; }

/* ====================================================================
   CONTACT
==================================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr; gap: 50px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 70px; } }
.contact-info h2 { margin-bottom: 24px; }
.contact-info p { color: var(--text-soft); margin-bottom: 24px; }
.contact-detail {
  display: flex; gap: 16px; padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-label { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-value { font-size: 16px; color: var(--text); }
.contact-value a:hover { color: var(--gold); }

.contact-form-wrap {
  padding: 36px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border); border-radius: 4px;
}
.contact-form-wrap h3 { margin-bottom: 24px; font-size: 26px; font-weight: 400; }
.form-row {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  margin-bottom: 18px;
}
@media (min-width: 600px) { .form-row.split { grid-template-columns: 1fr 1fr; } }

/* ====================================================================
   SUSTAINABLE TOURISM
==================================================================== */
.sustain-bg { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.sustain-grid {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  margin-top: 50px;
}
@media (min-width: 768px) { .sustain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .sustain-grid { grid-template-columns: repeat(3, 1fr); } }
.sustain-card {
  padding: 36px 30px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--forest-hi);
  transition: all .4s var(--ease); border-radius: 4px;
}
.sustain-card:hover { transform: translateY(-6px); border-top-color: var(--gold); box-shadow: var(--shadow-md); }
.sustain-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-hi));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-hi); margin-bottom: 22px;
}
.sustain-icon svg { width: 26px; height: 26px; }
.sustain-card h3 { font-size: 22px; margin-bottom: 12px; }
.sustain-card p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

.pledge-band {
  margin-top: 60px; padding: 50px 40px;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-hi) 100%);
  border-radius: 6px;
  display: grid; gap: 24px; align-items: center;
  color: var(--parchment-2);
}
@media (min-width: 800px) { .pledge-band { grid-template-columns: 2fr 1fr; } }
.pledge-band h3 { font-size: 30px; color: var(--gold-hi); margin-bottom: 8px; }
.pledge-band p { color: rgba(243,234,216,.85); font-size: 15px; }

/* ====================================================================
   FOOTER
==================================================================== */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand h3 { font-family: 'Fraunces', serif; font-size: 24px; margin-bottom: 16px; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { color: var(--text-soft); font-size: 14px; max-width: 320px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; font-family: 'Outfit', sans-serif; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-soft); transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
  align-items: center; justify-content: space-between;
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: var(--text-faint); letter-spacing: .15em; text-transform: uppercase; }

/* ====================================================================
   FLOATING WHATSAPP
==================================================================== */
.whats-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
  z-index: 90;
  transition: transform .3s var(--ease);
}
.whats-float:hover { transform: scale(1.1); }
.whats-float svg { width: 28px; height: 28px; }

/* ====================================================================
   ADMIN PANEL
==================================================================== */
.admin-shell {
  min-height: 100vh;
  display: flex; flex-direction: column;
  background: var(--bg-2);
}
.admin-topbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.admin-topbar h1 { font-size: 20px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.admin-topbar h1 span { color: var(--gold); }
.admin-topbar .actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-topbar button { padding: 9px 18px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; border-radius: 100px; border: 1px solid var(--border); transition: all .3s var(--ease); color: var(--text); }
.admin-topbar button:hover { border-color: var(--gold); color: var(--gold); }
.admin-topbar button.primary { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.admin-topbar button.primary:hover { background: var(--gold-hi); color: var(--bg); }
.admin-topbar button.danger:hover { border-color: var(--rust); color: var(--rust); }

.admin-body { flex: 1; display: grid; grid-template-columns: 1fr; gap: 0; }
@media (min-width: 900px) { .admin-body { grid-template-columns: 240px 1fr; } }

.admin-side {
  background: var(--bg);
  border-right: 1px solid var(--border);
  padding: 24px 0;
  display: flex; flex-direction: column; gap: 4px;
}
.admin-side button {
  text-align: left;
  padding: 14px 24px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-soft); border-left: 3px solid transparent;
  transition: all .3s var(--ease);
}
.admin-side button:hover { color: var(--gold); background: var(--card-bg-soft); }
.admin-side button.active { color: var(--gold); border-left-color: var(--gold); background: var(--card-bg-soft); }

.admin-main { padding: 36px; min-width: 0; }
.admin-section { display: none; }
.admin-section.active { display: block; }
.admin-section h2 { font-size: 30px; font-weight: 400; margin-bottom: 8px; }
.admin-section .lead { color: var(--text-soft); margin-bottom: 30px; font-size: 15px; }

.admin-field-group {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 20px;
}
.admin-field-group h3 { font-size: 18px; font-weight: 500; margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.admin-grid-2 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .admin-grid-2 { grid-template-columns: 1fr 1fr; } }
.admin-grid-3 { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 900px) { .admin-grid-3 { grid-template-columns: repeat(3, 1fr); } }

.admin-list-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 22px;
  margin-bottom: 16px;
}
.admin-list-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; margin-bottom: 18px;
}
.admin-list-head h4 { font-size: 16px; font-weight: 500; flex: 1; }
.admin-list-head .row-actions { display: flex; gap: 8px; }
.admin-list-head button {
  padding: 7px 14px; font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 100px; color: var(--text);
}
.admin-list-head button:hover { border-color: var(--gold); color: var(--gold); }
.admin-list-head button.danger:hover { border-color: var(--rust); color: var(--rust); }

.add-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: var(--gold); color: var(--bg);
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  border-radius: 100px; font-weight: 500;
  transition: all .3s var(--ease);
}
.add-btn:hover { background: var(--gold-hi); transform: translateY(-2px); }

/* Login screen */
.login-screen {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-3) 100%);
  padding: 24px;
}
.login-card {
  width: 100%; max-width: 420px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}
.login-brand { text-align: center; margin-bottom: 32px; }
.login-brand h1 { font-family: 'Fraunces', serif; font-size: 26px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 6px; }
.login-brand h1 span { color: var(--gold); }
.login-brand p { font-size: 11px; letter-spacing: .35em; text-transform: uppercase; color: var(--text-faint); }
.login-card label { margin-top: 14px; }
.login-card .login-btn {
  width: 100%; margin-top: 24px;
  padding: 14px; background: var(--gold); color: var(--bg);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  font-weight: 500; border-radius: 4px;
  transition: all .3s var(--ease);
}
.login-card .login-btn:hover { background: var(--gold-hi); }
.login-error {
  margin-top: 16px; padding: 10px 14px;
  background: rgba(139,58,31,.15); border: 1px solid rgba(139,58,31,.5);
  color: var(--rust); font-size: 13px; border-radius: 4px;
  display: none;
}
.login-hint { margin-top: 22px; font-size: 11px; color: var(--text-faint); text-align: center; line-height: 1.7; }

.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--gold); color: var(--bg);
  padding: 14px 26px; border-radius: 100px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-weight: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0; transition: all .4s var(--ease);
  z-index: 999;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.image-preview {
  margin-top: 8px;
  height: 120px; width: 100%;
  border: 1px dashed var(--border); border-radius: 4px;
  background: var(--bg-2) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
}
.image-preview.has-image { border-style: solid; color: transparent; }

.tag-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 10px;
}
.tag-list .tag {
  padding: 6px 12px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px; color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
.tag-list .tag button { color: var(--rust); font-size: 14px; line-height: 1; }

/* ====================================================================
   LOADER — 3-triangle logo intro (3-second animation)
==================================================================== */
#khrego-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(ellipse 90% 70% at 50% 44%, #0b1830 0%, #050b18 55%, #000000 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  transition: opacity .5s var(--ease), visibility .5s var(--ease);
}
#khrego-loader.hidden { opacity: 0; visibility: hidden; }

/* Video intro — keeps the brand backdrop so transparent (alpha) videos blend in */
#khrego-loader.kh-loader-video { padding: 0; background: #000; }
#khrego-loader.kh-loader-video::after { display: none; }
.kh-intro-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: transparent;
}
.kh-skip {
  position: absolute; bottom: 26px; right: 26px; z-index: 5;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 30px;
  background: rgba(0, 0, 0, .42);
  color: #fff; border: 1px solid rgba(255, 255, 255, .45);
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  cursor: pointer; backdrop-filter: blur(4px);
  transition: background .2s ease, transform .2s ease;
}
.kh-skip:hover { background: rgba(0, 0, 0, .7); transform: translateY(-1px); }

/* Subtle vignette + grain feel */
#khrego-loader::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 30%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

.kh-intro {
  display: flex; align-items: center; gap: clamp(20px, 4vw, 56px);
  position: relative; z-index: 2;
  max-width: 1100px;
}
@media (max-width: 700px) {
  .kh-intro { flex-direction: column; gap: 20px; }
}

/* ---- Mark (3 triangles) ---- */
.kh-intro-mark {
  width: clamp(110px, 18vw, 220px);
  flex-shrink: 0;
}
.kh-intro-mark svg { width: 100%; height: auto; overflow: visible; }
.kh-intro-mark .tri {
  opacity: 0;
  transform: translateY(20px) scale(.85);
  transform-origin: center 75%;
  animation: tri-pop .9s cubic-bezier(.2,.7,.2,1) forwards;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}
.kh-intro-mark .tri-1 { animation-delay: .15s; }
.kh-intro-mark .tri-2 { animation-delay: .45s; }
.kh-intro-mark .tri-3 { animation-delay: .75s; }
.kh-intro-mark .tri-out { fill: #faf3df; }
.kh-intro-mark .tri-in  { fill: #07142b; }
@keyframes tri-pop {
  0%   { opacity: 0; transform: translateY(22px) scale(.84); }
  60%  { opacity: 1; transform: translateY(-3px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---- Wordmark ---- */
.kh-intro-words {
  overflow: hidden;
  display: flex; flex-direction: column; gap: 10px;
}
.kh-intro-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 9vw, 112px);
  font-weight: 800;
  color: #faf3df;
  letter-spacing: -.005em;
  line-height: 1;
  display: flex;
}
.kh-intro-name span {
  display: inline-block;
  opacity: 0;
  transform: translateY(60%);
  animation: word-rise .55s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(1.05s + var(--i) * .07s);
}
@keyframes word-rise {
  0%   { opacity: 0; transform: translateY(70%); }
  100% { opacity: 1; transform: translateY(0); }
}

.kh-intro-sub {
  font-family: 'Outfit', sans-serif;
  font-style: italic;
  font-size: clamp(16px, 2.4vw, 30px);
  font-weight: 500;
  color: #faf3df;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(20px);
  animation: word-rise .8s cubic-bezier(.2,.7,.2,1) 1.85s forwards;
}

/* Reduced motion fallback */
@media (prefers-reduced-motion: reduce) {
  .kh-intro-mark .tri,
  .kh-intro-name span,
  .kh-intro-sub {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ====================================================================
   PACKAGE DETAIL MODAL
==================================================================== */
.pkg-modal {
  position: fixed; inset: 0; z-index: 220;
  background: rgba(11,23,38,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 60px 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  overflow-y: auto;
}
[data-theme="light"] .pkg-modal { background: rgba(26,34,48,.45); }
.pkg-modal.active { opacity: 1; visibility: visible; }

.pkg-modal-inner {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%; max-width: 920px;
  margin: auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform .4s var(--ease);
}
.pkg-modal.active .pkg-modal-inner { transform: translateY(0); }

.pkg-modal-hero {
  position: relative;
  width: 100%;                              /* MUST be explicit so it fills the modal width */
  height: clamp(380px, 56vh, 720px);        /* fixed height range — no aspect-ratio collapse */
  overflow: hidden;
  background: linear-gradient(135deg, var(--slate), var(--bg));
}
.pkg-modal-hero img { width: 100%; height: 100%; object-fit: cover; }
.pkg-modal-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,23,38,.92) 100%);
}
.pkg-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,23,38,.6); color: var(--parchment-2);
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.pkg-modal-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(90deg); }
.pkg-modal-close svg { width: 18px; height: 18px; }

.pkg-modal-title-block {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 4;
  padding: 26px 32px; color: var(--parchment-2);
}
.pkg-modal-region {
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold-hi); margin-bottom: 8px;
}
.pkg-modal-title-block h2 {
  font-size: clamp(26px, 4vw, 38px); font-weight: 400; line-height: 1.1; color: #fff;
}

.pkg-modal-body { padding: 32px; }
@media (min-width: 700px) { .pkg-modal-body { padding: 40px; } }

/* Gold rounded-tile meta strip — used on every package modal (treks + expeditions)
   and also on the matching admin editors so the visual language is end-to-end. */
.pkg-modal-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 22px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--card-bg-soft);
  border-radius: 12px;
  margin-bottom: 28px;
}
@media (min-width: 700px) { .pkg-modal-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .pkg-modal-stats { grid-template-columns: repeat(3, 1fr); } }

/* Reusable tile pattern — also used in admin (.meta-tile-row .meta-tile) */
.meta-tile {
  display: flex; align-items: center; gap: 14px;
  background: transparent; border: none; padding: 0;
}
.meta-tile-glyph {
  width: 56px; height: 56px;
  flex-shrink: 0;
  border-radius: 13px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.meta-tile:hover .meta-tile-glyph { transform: scale(1.04); }
.meta-tile-glyph svg { width: 30px; height: 30px; display: block; }
.meta-tile-meta { display: flex; flex-direction: column; min-width: 0; }
.meta-tile-lbl {
  font-size: 11.5px; letter-spacing: .04em; color: var(--gold);
  font-weight: 600; margin: 0 0 3px;
  text-transform: none;
}
.meta-tile-val {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500;
  color: var(--text);
  line-height: 1.15;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 560px) {
  .meta-tile-glyph { width: 48px; height: 48px; border-radius: 11px; }
  .meta-tile-glyph svg { width: 26px; height: 26px; }
  .meta-tile-val { font-size: 15.5px; }
}

/* Mini variant — used on package CARDS in the grid (smaller than modal version) */
.meta-tiles-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  padding: 14px 0 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 14px 0 18px;
}
.meta-tile-mini { gap: 10px; }
.meta-tile-mini .meta-tile-glyph {
  width: 36px; height: 36px;
  border-radius: 9px;
}
.meta-tile-mini .meta-tile-glyph svg { width: 20px; height: 20px; }
.meta-tile-mini .meta-tile-lbl {
  font-size: 9.5px; letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 1px;
  font-weight: 600;
}
.meta-tile-mini .meta-tile-val {
  font-family: 'Fraunces', serif;
  font-size: 14px; font-weight: 500;
  line-height: 1.1;
}


/* Legacy classes left in place for any code path that still uses them */
.pkg-modal-stat .pkg-stat-lbl { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-faint); }
.pkg-modal-stat .pkg-stat-val { font-family: 'Fraunces', serif; font-size: 18px; color: var(--text); margin-top: 4px; }

/* ==================================================================
   TRIP MODAL — Why-Khrego blocks (per-trip expertise + 3-pillar)
   ================================================================== */
.trip-why-expert {
  background: linear-gradient(135deg, rgba(201,162,74,0.10), rgba(201,162,74,0.03));
  border: 1px solid rgba(201,162,74,0.32);
  border-radius: 14px;
  padding: 26px 28px;
  margin: 28px 0 24px;
  position: relative;
}
.trip-why-expert::before {
  content: '';
  position: absolute;
  left: 0; top: 18px; bottom: 18px;
  width: 3px;
  background: var(--gold);
  border-radius: 0 3px 3px 0;
}
.trip-why-expert-head { margin-bottom: 14px; }
.trip-why-expert-tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 6px;
}
.trip-why-expert h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px; line-height: 1.25;
  color: var(--text);
  margin: 0; letter-spacing: 0; text-transform: none; font-weight: 500;
}
.trip-why-expert-body {
  font-size: 15px; line-height: 1.75;
  color: var(--text-soft);
  margin: 0;
}

.trip-why-pillars {
  margin: 0 0 28px;
  padding: 22px 0 0;
  border-top: 1px solid var(--border);
}
.trip-why-pillars-head { margin-bottom: 18px; text-align: center; }
.trip-why-pillars-tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 6px;
}
.trip-why-pillars h3 {
  font-family: 'Fraunces', serif;
  font-size: 21px; line-height: 1.25;
  color: var(--text);
  margin: 0; letter-spacing: 0; text-transform: none; font-weight: 500;
}
.trip-why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trip-why-pillar {
  background: var(--card-bg-soft, var(--bg-2));
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 20px;
  position: relative;
}
.trip-why-pillar-num {
  font-family: Georgia, serif;
  font-size: 28px; font-weight: 700;
  color: var(--gold);
  line-height: 1; margin-bottom: 8px;
  opacity: .9;
}
.trip-why-pillar h4 {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: 0; text-transform: none;
}
.trip-why-pillar p {
  font-size: 13.5px; line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
@media (max-width: 720px) {
  .trip-why-pillars-grid { grid-template-columns: 1fr; gap: 12px; }
  .trip-why-expert { padding: 20px 22px; margin: 22px 0 18px; }
  .trip-why-expert h3 { font-size: 19px; }
}

.pkg-modal h3 {
  font-size: 13px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  font-family: 'Outfit', sans-serif; font-weight: 500;
  margin: 26px 0 14px;
  padding-bottom: 8px; border-bottom: 1px solid var(--border);
}
.pkg-modal h3:first-of-type { margin-top: 0; }
.pkg-modal p { color: var(--text-soft); font-size: 15px; margin-bottom: 14px; }

.pkg-modal ul.pkg-list {
  list-style: none; display: grid; grid-template-columns: 1fr; gap: 8px;
}
@media (min-width: 600px) { .pkg-modal ul.pkg-list { grid-template-columns: 1fr 1fr; } }
.pkg-modal ul.pkg-list li {
  font-size: 14px; color: var(--text); line-height: 1.6;
  padding-left: 22px; position: relative;
}
.pkg-modal ul.pkg-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 600;
}
.pkg-modal ul.pkg-list.excluded li::before { content: '×'; color: var(--rust); }

.itinerary-list { display: flex; flex-direction: column; gap: 8px; }
.itin-day {
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  overflow: hidden;
  transition: all .3s var(--ease);
}
.itin-day:hover { border-color: var(--gold-soft); }
.itin-day-head {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px;
  cursor: pointer;
  transition: background .3s var(--ease);
  width: 100%; text-align: left;
}
.itin-day-head:hover { background: var(--card-bg-soft); }
.itin-day-num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 15px; font-weight: 600;
  color: var(--bg);
}
.itin-day-title {
  flex: 1; font-size: 15px; font-weight: 500; color: var(--text);
  font-family: 'Outfit', sans-serif;
}
.itin-day-chev {
  width: 18px; height: 18px;
  color: var(--gold); flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.itin-day.open .itin-day-chev { transform: rotate(180deg); }
.itin-day-detail {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 20px 0 80px;
  color: var(--text-soft); font-size: 14px; line-height: 1.7;
}
.itin-day.open .itin-day-detail {
  max-height: 800px;
  padding: 0 20px 18px 80px;
}

.pkg-modal-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; margin-top: 28px;
  border-top: 1px solid var(--border);
}
.pkg-modal-price {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column;
}
.pkg-modal-price .pkg-price-lbl { color: var(--text-faint); }
.pkg-modal-price .pkg-price { font-size: 30px; }

.btn-download {
  background: var(--forest); color: #fff;
  border: 1px solid var(--forest-hi);
}
[data-theme="light"] .btn-download { background: var(--forest-hi); color: #fff; }
.btn-download:hover { background: var(--forest-hi); transform: translateY(-2px); }

/* Make pkg-card click cursor explicit */
.pkg-card { cursor: pointer; }

/* ====================================================================
   INTERACTIVE MAP (Leaflet integration)
==================================================================== */
.itin-map {
  width: 100%; height: 380px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--card-bg-soft);
  position: relative;
  z-index: 1;
}
.itin-map .leaflet-container {
  background: var(--bg-2) !important;
  font-family: 'Outfit', sans-serif;
}
[data-theme="dark"] .itin-map .leaflet-tile-pane {
  filter: invert(0.92) hue-rotate(180deg) brightness(.95) contrast(.95) saturate(.8);
}
.itin-map .leaflet-popup-content-wrapper {
  background: var(--card-bg);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.itin-map .leaflet-popup-tip { background: var(--card-bg); border: 1px solid var(--border); }
.itin-map .leaflet-popup-content {
  margin: 12px 14px; line-height: 1.5; font-size: 13px;
}
.itin-map .leaflet-popup-content strong { color: var(--gold); display: block; margin-bottom: 4px; font-family: 'Fraunces', serif; }
.itin-map .leaflet-control-attribution {
  background: rgba(11,23,38,.6) !important;
  color: var(--text-faint) !important;
  font-size: 9px;
}
[data-theme="light"] .itin-map .leaflet-control-attribution {
  background: rgba(255,255,255,.7) !important;
}
.itin-map .leaflet-control-attribution a { color: var(--gold) !important; }

.day-marker {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 13px;
  border: 2px solid var(--bg);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.day-marker.active {
  background: linear-gradient(135deg, var(--gold-hi), var(--gold));
  transform: scale(1.18);
  box-shadow: 0 0 0 6px rgba(201,162,74,.25);
}

.map-legend {
  display: flex; flex-wrap: wrap; gap: 14px;
  padding: 12px 16px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border); border-radius: 4px;
  margin-bottom: 18px;
  font-size: 12px; color: var(--text-soft);
}
.map-legend strong { color: var(--gold); margin-right: 4px; }

/* ====================================================================
   PRICE-FREE CARDS / MODAL TWEAKS
==================================================================== */
.pkg-price-tier {
  font-family: 'Fraunces', serif;
  font-size: 18px; color: var(--gold);
}
.pkg-modal-tier {
  font-family: 'Fraunces', serif;
  font-size: 24px; color: var(--gold);
  margin-top: 4px;
}

/* ====================================================================
   PAYMENT BADGES
==================================================================== */
.payment-band {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.payment-band-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 18px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-faint);
}
.payment-badges { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.pay-badge {
  height: 32px; min-width: 52px;
  border: 1px solid var(--border); border-radius: 4px;
  padding: 4px 10px;
  background: var(--card-bg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.pay-badge:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.pay-badge svg { height: 22px; width: auto; display: block; }

/* ====================================================================
   ELEVATION CHART (modal preview)
==================================================================== */
.elev-chart {
  width: 100%; height: 180px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg-soft);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

/* ====================================================================
   ADMIN — itinerary day editor
==================================================================== */
.itin-editor {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 8px;
}
.itin-editor-row {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 14px;
  display: grid; gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .itin-editor-row {
    grid-template-columns: 60px 1fr 100px 100px 90px 40px;
    align-items: end;
  }
}
.itin-editor-row label { margin-bottom: 4px; font-size: 9px; }
.itin-editor-row input, .itin-editor-row textarea { padding: 8px 10px; font-size: 13px; }
.itin-editor-row textarea { min-height: 50px; resize: vertical; }
.itin-editor-row .row-detail { grid-column: 1 / -1; }
@media (min-width: 800px) {
  .itin-editor-row .row-detail { grid-column: 2 / 6; grid-row: 2; }
  .itin-editor-row .row-day { grid-column: 1; grid-row: 1 / 3; }
  .itin-editor-row .row-title { grid-column: 2 / 6; grid-row: 1; }
  .itin-editor-row .row-lat { grid-column: 2; grid-row: 3; }
  .itin-editor-row .row-lng { grid-column: 3; grid-row: 3; }
  .itin-editor-row .row-alt { grid-column: 4; grid-row: 3; }
  .itin-editor-row .row-rm  { grid-column: 6; grid-row: 1 / 4; align-self: center; }
}
.itin-editor-row .row-rm button {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--border); color: var(--rust);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
}
.itin-editor-row .row-rm button:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

/* ====================================================================
   14 PEAKS CAROUSEL (homepage section)
==================================================================== */
.peaks-section {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 0 0;
  overflow: hidden;
}
.peaks-section-head {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 24px;
}
.peaks-section-head .section-tag {
  justify-content: center;
}
.peaks-section-head .section-tag::before { display: none; }
.peaks-section-head .section-tag::after {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); margin-left: 12px;
}
.peaks-section-head .section-title {
  margin: 16px auto 18px;
}
.peaks-section-head .section-lead {
  margin: 0 auto;
}

.peaks-carousel {
  position: relative;
  height: clamp(560px, 78vh, 760px);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(201,162,74,.12) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-3) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.peaks-carousel .pc-stars {
  position: absolute; inset: 0; pointer-events: none; opacity: .5; z-index: 0;
}
[data-theme="light"] .peaks-carousel .pc-stars { opacity: 0; }
.peaks-carousel .pc-stars::before,
.peaks-carousel .pc-stars::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1.2px 1.2px at 23% 18%,#fff,transparent 60%),
    radial-gradient(1.2px 1.2px at 71% 8%,#fff,transparent 60%),
    radial-gradient(1px 1px at 84% 35%,#fff,transparent 60%),
    radial-gradient(1.5px 1.5px at 12% 52%,#fff,transparent 60%),
    radial-gradient(1px 1px at 47% 22%,#fff,transparent 60%),
    radial-gradient(1.4px 1.4px at 92% 64%,#fff,transparent 60%),
    radial-gradient(1px 1px at 5% 8%,#fff,transparent 60%),
    radial-gradient(1.2px 1.2px at 60% 47%,#fff,transparent 60%);
  animation: pcTwinkle 6s ease-in-out infinite alternate;
}
.peaks-carousel .pc-stars::after { animation-delay: -3s; opacity: .6; background-position: 50px 30px; }
@keyframes pcTwinkle { from { opacity: .3; } to { opacity: .85; } }

.peaks-carousel .pc-slides { position: absolute; inset: 0; z-index: 1; }
.peaks-carousel .pc-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 1.1s var(--ease), visibility 1.1s var(--ease);
}
.peaks-carousel .pc-slide.active { opacity: 1; visibility: visible; }

.peaks-carousel .pc-slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(11,23,38,.55) 100%);
}
[data-theme="light"] .peaks-carousel .pc-slide::before {
  background: linear-gradient(180deg, transparent 0%, rgba(246,239,225,.55) 100%);
}

.peaks-carousel .pc-art {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; pointer-events: none;
}
.peaks-carousel .pc-art .ridge,
.peaks-carousel .pc-art .summit {
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1600; stroke-dashoffset: 1600;
}
.peaks-carousel .pc-slide.active .pc-art .ridge { animation: pcDraw 2.4s var(--ease) .25s forwards; }
.peaks-carousel .pc-slide.active .pc-art .summit { animation: pcDraw 2.6s var(--ease) .55s forwards; }
@keyframes pcDraw { to { stroke-dashoffset: 0; } }
.peaks-carousel .pc-art .snow {
  fill: rgba(243,234,216,.08); opacity: 0; transform-origin: bottom;
}
[data-theme="light"] .peaks-carousel .pc-art .snow { fill: rgba(255,255,255,.6); }
.peaks-carousel .pc-slide.active .pc-art .snow { animation: pcFadeUp 1.6s var(--ease) 1.2s forwards; }
@keyframes pcFadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.peaks-carousel .pc-art .moon {
  fill: var(--gold-hi); opacity: 0;
  filter: drop-shadow(0 0 18px rgba(229,195,122,.5));
}
.peaks-carousel .pc-slide.active .pc-art .moon { animation: pcMoon 2s var(--ease) 1.6s forwards; }
@keyframes pcMoon {
  from { opacity: 0; transform: translateY(20px) scale(.6); }
  to   { opacity: .9; transform: translateY(0) scale(1); }
}

.peaks-carousel .pc-inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 60px 40px 100px;
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
}
@media (min-width: 900px) {
  .peaks-carousel .pc-inner { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}

.pc-num-block { display: flex; flex-direction: column; gap: 16px;
  opacity: 0; transform: translateY(30px);
}
.peaks-carousel .pc-slide.active .pc-num-block { animation: pcFadeUp 1s var(--ease) .4s forwards; }

.pc-tag {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: .5em; text-transform: uppercase; color: var(--gold);
}
.pc-tag::before { content: ''; width: 36px; height: 1px; background: var(--gold); }
.pc-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(60px, 11vw, 140px);
  font-weight: 300; line-height: .85; letter-spacing: -.02em;
  color: var(--gold);
  display: flex; align-items: flex-start; gap: 8px;
}
.pc-num .of {
  font-size: clamp(13px, 1.6vw, 18px); color: var(--text-soft);
  letter-spacing: .4em; text-transform: uppercase; margin-top: 12px;
}
.pc-name {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4.4vw, 56px);
  font-weight: 300; line-height: 1; letter-spacing: -.02em;
  color: var(--text); margin-top: -4px;
}
.pc-name em { color: var(--gold); font-style: italic; }
.pc-meta {
  display: grid; grid-template-columns: repeat(2, auto); gap: 22px 40px;
  padding-top: 18px; border-top: 1px solid var(--border); margin-top: 6px;
}
.pc-meta-lbl {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 4px;
}
.pc-meta-val { font-family: 'Fraunces', serif; font-size: 20px; color: var(--text); }
.pc-desc {
  font-size: 14px; color: var(--text-soft);
  max-width: 520px; line-height: 1.7; margin-top: 10px;
  opacity: 0; transform: translateY(20px);
}
.peaks-carousel .pc-slide.active .pc-desc { animation: pcFadeUp 1s var(--ease) .8s forwards; }

.pc-card {
  display: none;
  padding: 30px 28px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  flex-direction: column; gap: 14px;
  opacity: 0; transform: translateY(40px);
}
@media (min-width: 900px) { .pc-card { display: flex; } }
.peaks-carousel .pc-slide.active .pc-card { animation: pcFadeUp 1.1s var(--ease) 1s forwards; }
.pc-card-tag { font-size: 10px; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); }
.pc-card-h { font-family: 'Fraunces', serif; font-size: 22px; font-weight: 300; color: var(--text); }
.pc-card-row {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 13px; color: var(--text-soft);
  padding-bottom: 10px; border-bottom: 1px solid rgba(201,162,74,.12);
}
.pc-card-row:last-of-type { border-bottom: none; padding-bottom: 0; }
.pc-card-row span:last-child { color: var(--text); font-weight: 500; }

/* Controls */
.pc-controls {
  position: absolute; bottom: 30px; left: 0; right: 0; z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 0 40px;
}
.pc-dots { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pc-dot {
  width: 28px; height: 3px;
  background: rgba(243,234,216,.18);
  cursor: pointer; transition: all .3s var(--ease);
  position: relative; overflow: hidden; border-radius: 2px;
}
[data-theme="light"] .pc-dot { background: rgba(26,34,48,.18); }
.pc-dot.active { background: rgba(201,162,74,.3); }
.pc-dot.active::after {
  content: ''; position: absolute; inset: 0; background: var(--gold);
  transform: translateX(-100%); animation: pcDotFill 6.5s linear forwards;
}
@keyframes pcDotFill { to { transform: translateX(0); } }

.pc-bottom { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.pc-arrow, .pc-pause {
  border-radius: 50%; border: 1px solid var(--border);
  background: var(--card-bg-soft);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: all .3s var(--ease); cursor: pointer;
}
.pc-arrow { width: 42px; height: 42px; }
.pc-pause { width: 38px; height: 38px; color: var(--text-soft); }
.pc-arrow:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.pc-pause:hover { color: var(--gold); border-color: var(--gold); }
.pc-arrow svg { width: 14px; height: 14px; }
.pc-pause svg { width: 12px; height: 12px; }
.pc-counter {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--text-faint);
}
.pc-counter strong { color: var(--gold); font-weight: 500; }

@media (max-width: 700px) {
  .peaks-carousel .pc-inner { padding: 50px 24px 120px; }
  .pc-meta { grid-template-columns: 1fr 1fr; gap: 16px 18px; }
}

/* ====================================================================
   14 PEAKS — footer instance (sits below contact/footer)
==================================================================== */
.peaks-section-footer {
  border-top: 1px solid var(--border);
  border-bottom: none;
  padding: 80px 0 0;
}
.peaks-section-footer .peaks-carousel {
  height: clamp(520px, 70vh, 700px);
}
.peaks-section-footer .peaks-section-head {
  margin-bottom: 40px;
}

/* ====================================================================
   REVIEW SUBMISSION
==================================================================== */
.star-rating {
  display: flex; gap: 6px; align-items: center;
  font-size: 32px; line-height: 1;
}
.star-input {
  cursor: pointer; user-select: none;
  color: var(--border);
  transition: color .2s var(--ease), transform .2s var(--ease);
}
.star-input:hover { transform: scale(1.1); }
.star-input.filled { color: var(--gold); }

.review-thanks {
  padding: 60px 32px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  border-radius: 6px;
  text-align: center;
}
.review-thanks svg {
  width: 56px; height: 56px;
  color: var(--gold);
  margin: 0 auto 18px;
  display: block;
}
.review-thanks h2 {
  font-size: 28px; font-weight: 400;
  margin-bottom: 14px;
}
.review-thanks p {
  color: var(--text-soft); font-size: 15px;
  max-width: 520px; margin: 0 auto;
  line-height: 1.7;
}

/* ====================================================================
   ADMIN — REVIEWS TAB
==================================================================== */
.review-pill {
  display: inline-block;
  padding: 4px 10px;
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid var(--border);
  margin-right: 8px;
}
.review-pill.pending  { background: rgba(201,162,74,.15); color: var(--gold); border-color: var(--gold-soft); }
.review-pill.approved { background: rgba(31,58,46,.18);  color: var(--forest-hi); border-color: var(--forest-hi); }
.review-pill.rejected { background: rgba(139,58,31,.15); color: var(--rust); border-color: var(--rust); }

.review-card-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin: 6px 0 12px; }
.review-card-body { color: var(--text-soft); font-size: 14px; line-height: 1.7; margin-bottom: 14px; white-space: pre-wrap; }
.review-card-meta { font-size: 12px; color: var(--text-faint); display: flex; flex-wrap: wrap; gap: 12px; }
.review-card-meta strong { color: var(--text); font-weight: 500; }
.review-photo { max-width: 220px; max-height: 160px; border-radius: 4px; margin: 10px 0 14px; border: 1px solid var(--border); }

.review-tabs { display: flex; gap: 4px; margin-bottom: 22px; flex-wrap: wrap; }
.review-tab {
  padding: 10px 18px; font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  border-radius: 100px; border: 1px solid var(--border); color: var(--text-soft);
  transition: all .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.review-tab:hover { color: var(--gold); border-color: var(--gold-soft); }
.review-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.review-tab .badge {
  background: rgba(255,255,255,.2);
  padding: 2px 8px; border-radius: 100px; font-size: 10px;
  min-width: 20px; text-align: center;
}
.review-tab.active .badge { background: rgba(11,23,38,.2); color: var(--bg); }

.review-empty {
  padding: 60px 30px; text-align: center;
  color: var(--text-faint); font-size: 14px;
  background: var(--card-bg-soft); border: 1px dashed var(--border); border-radius: 4px;
}

/* Admin sidebar badge for pending reviews */
.admin-side button .nav-badge {
  display: inline-block;
  background: var(--rust); color: #fff;
  border-radius: 100px; padding: 2px 8px;
  font-size: 9px; margin-left: 8px;
  letter-spacing: .1em;
}

/* ====================================================================
   FAQ PAGE
==================================================================== */
.faq-toolbar {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 800px) {
  .faq-toolbar { flex-direction: row; align-items: center; }
}
.faq-search {
  flex: 1;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--card-bg-soft);
  transition: border-color .3s var(--ease);
}
.faq-search:focus-within { border-color: var(--gold); }
.faq-search svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }
.faq-search input {
  flex: 1; border: none; padding: 0; background: transparent; font-size: 15px;
}
.faq-search input:focus { outline: none; }

.faq-cats { display: flex; flex-wrap: wrap; gap: 8px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.faq-item:hover { border-color: var(--gold-soft); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  font-size: 15px; color: var(--text); font-weight: 500;
  font-family: 'Outfit', sans-serif;
  transition: background .3s var(--ease);
}
.faq-q:hover { background: var(--card-bg-soft); }
.faq-cat-pill {
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  background: rgba(201,162,74,.12); color: var(--gold);
  border: 1px solid var(--gold-soft);
  flex-shrink: 0;
}
.faq-q-text { flex: 1; }
.faq-chev {
  width: 18px; height: 18px;
  color: var(--gold); flex-shrink: 0;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
  padding: 0 22px;
  color: var(--text-soft); font-size: 14px; line-height: 1.7;
  white-space: pre-line;
}
.faq-item.open .faq-a {
  max-height: 800px; padding: 0 22px 22px;
}
.faq-empty {
  padding: 60px 20px; text-align: center;
  color: var(--text-faint); font-size: 14px;
}
.faq-cta {
  margin-top: 60px; padding: 50px 30px;
  text-align: center;
  background: var(--card-bg-soft);
  border: 1px solid var(--border); border-radius: 6px;
}
.faq-cta h3 { font-size: 28px; margin-bottom: 8px; }
.faq-cta p { color: var(--text-soft); }

/* ====================================================================
   CHAT WIDGET
==================================================================== */
.khrego-chat {
  position: fixed; bottom: 24px; right: 96px;
  z-index: 95;
}
@media (max-width: 600px) {
  .khrego-chat { right: 24px; bottom: 90px; }
}
.kc-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: var(--gold); color: var(--bg);
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(201,162,74,.4);
  transition: all .3s var(--ease);
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase; font-weight: 600;
}
.kc-toggle:hover { transform: translateY(-2px); }
.kc-toggle svg { width: 20px; height: 20px; }
.khrego-chat.open .kc-toggle { display: none; }

.kc-panel {
  display: none;
  width: 360px; max-width: calc(100vw - 32px);
  height: 540px; max-height: calc(100vh - 80px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  flex-direction: column; overflow: hidden;
}
.khrego-chat.open .kc-panel { display: flex; }

.kc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 18px;
  background: linear-gradient(135deg, var(--forest), var(--forest-hi));
  color: var(--parchment-2);
}
[data-theme="light"] .kc-head { color: #fff; }
.kc-title { font-family: 'Fraunces', serif; font-size: 17px; font-weight: 500; }
.kc-sub { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold-hi); margin-top: 2px; }
.kc-close {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(243,234,216,.3); color: inherit;
  transition: all .3s var(--ease);
}
.kc-close:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.kc-close svg { width: 14px; height: 14px; }

.kc-msgs {
  flex: 1; overflow-y: auto;
  padding: 18px; display: flex; flex-direction: column; gap: 10px;
  background: var(--bg-2);
}
.kc-msg {
  max-width: 85%; padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px; line-height: 1.55;
}
.kc-msg.bot {
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.kc-msg.user {
  align-self: flex-end;
  background: var(--gold); color: var(--bg);
  border-bottom-right-radius: 4px;
  font-weight: 500;
}
.kc-pill {
  display: inline-block;
  padding: 6px 12px; margin: 2px;
  font-size: 11px; letter-spacing: .15em; text-transform: uppercase;
  background: var(--card-bg-soft); border: 1px solid var(--border);
  border-radius: 100px; color: var(--text);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.kc-pill:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.kc-input {
  display: flex; gap: 8px; padding: 12px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.kc-input input {
  flex: 1; padding: 10px 14px; font-size: 13px;
  border-radius: 100px;
}
.kc-input button {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .3s var(--ease);
}
.kc-input button:hover { background: var(--gold-hi); }
.kc-input button svg { width: 16px; height: 16px; }

/* ====================================================================
   GEAR PAGE
==================================================================== */
.gear-tabs {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 40px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.gear-tab {
  padding: 14px 28px;
  font-size: 12px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--text-soft); border: 1px solid var(--border); border-radius: 100px;
  transition: all .3s var(--ease);
}
.gear-tab:hover { color: var(--gold); border-color: var(--gold-soft); }
.gear-tab.active { background: var(--gold); color: var(--bg); border-color: var(--gold); font-weight: 500; }

.gear-content { display: none; }
.gear-content.active { display: block; }
.gear-sections {
  display: grid; grid-template-columns: 1fr; gap: 22px;
}
@media (min-width: 768px) { .gear-sections { grid-template-columns: 1fr 1fr; } }
.gear-section {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  padding: 26px 28px;
  transition: all .3s var(--ease);
}
.gear-section:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.gear-section-h {
  font-family: 'Outfit', sans-serif;
  font-size: 12px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.gear-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.gear-list li {
  font-size: 14px; color: var(--text); line-height: 1.6;
  padding-left: 22px; position: relative;
}
.gear-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 12px; height: 12px;
  border: 1.5px solid var(--gold-soft); border-radius: 2px;
}

/* ====================================================================
   ADMIN — FAQ list
==================================================================== */
.faq-admin-row {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 18px;
  margin-bottom: 12px;
}
.faq-admin-row .row-head {
  display: flex; gap: 12px; align-items: center; margin-bottom: 12px;
}
.faq-admin-row .row-head .pill {
  background: rgba(201,162,74,.15); border: 1px solid var(--gold-soft);
  color: var(--gold); padding: 4px 10px; font-size: 10px;
  letter-spacing: .25em; text-transform: uppercase; border-radius: 100px;
  flex-shrink: 0;
}
.faq-admin-row .row-head .ttl { flex: 1; font-weight: 500; font-size: 14px; }

/* ====================================================================
   BRAND MARK + WORDMARK (header + footer) — refreshed
==================================================================== */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand .brand-mark {
  width: 44px; height: 44px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(201,162,74,.15));
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: translateY(-1px) scale(1.04); }

.brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 3px;
}
.brand .brand-name {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.brand .brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}

/* tighten on small screens */
@media (max-width: 640px) {
  .brand { gap: 10px; }
  .brand .brand-mark { width: 38px; height: 38px; }
  .brand .brand-name { font-size: 18px; letter-spacing: .12em; }
  .brand .brand-tagline { font-size: 8px; letter-spacing: .3em; }
}

/* When header is scrolled, slightly shrink to feel taut */
.header.scrolled .brand .brand-mark { width: 38px; height: 38px; }
.header.scrolled .brand .brand-name { font-size: 19px; }

/* ----- Footer brand block ----- */
.footer-brand-block {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.footer-brand-block .brand-mark { width: 48px; height: 48px; flex-shrink: 0; }
.footer-brand-block h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  margin: 0 0 4px;
}
.footer-brand-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}

/* ====================================================================
   ADMIN — Responsive overhaul (mobile + tablet)
==================================================================== */

/* Topbar wraps better on small screens */
.admin-topbar {
  gap: 10px;
}
.admin-topbar h1 { font-size: 18px; }
@media (max-width: 720px) {
  .admin-topbar { padding: 12px 16px; }
  .admin-topbar h1 { font-size: 15px; letter-spacing: .12em; }
  .admin-topbar .actions { width: 100%; justify-content: space-between; }
  .admin-topbar button {
    flex: 1; min-width: 0;
    padding: 9px 10px;
    font-size: 10px; letter-spacing: .15em;
  }
}

/* Mobile hamburger trigger (hidden on desktop) */
.admin-side-toggle {
  display: none;
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 50;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold); color: var(--bg);
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(201,162,74,.4);
  border: none; cursor: pointer;
  transition: transform .3s var(--ease);
}
.admin-side-toggle:hover { transform: scale(1.05); }
.admin-side-toggle svg { width: 22px; height: 22px; }

/* Below 900px: convert sidebar to a slide-in drawer */
@media (max-width: 899px) {
  .admin-side-toggle { display: flex; }
  .admin-body { grid-template-columns: 1fr; }
  .admin-side {
    position: fixed; top: 0; left: 0;
    width: 260px; height: 100vh;
    z-index: 60; padding: 16px 0;
    transform: translateX(-100%);
    transition: transform .35s var(--ease);
    box-shadow: 0 0 40px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  .admin-side.open { transform: translateX(0); }
  .admin-side button { padding: 12px 22px; font-size: 11px; }
  .admin-side-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(2px);
    z-index: 55;
  }
  .admin-side-overlay.open { display: block; }
  .admin-main { padding: 22px 18px; }
}

/* Tablet (900–1100px): tighter sidebar */
@media (min-width: 900px) and (max-width: 1100px) {
  .admin-body { grid-template-columns: 200px 1fr; }
  .admin-side button { padding: 12px 18px; font-size: 11px; letter-spacing: .15em; }
  .admin-main { padding: 28px 24px; }
}

/* Field grids — mobile single column with tighter gaps */
@media (max-width: 600px) {
  .admin-grid-2, .admin-grid-3 { gap: 12px; }
  .admin-field-group { padding: 18px 16px; margin-bottom: 14px; }
  .admin-field-group h3 { font-size: 16px; }
  .admin-list-item { padding: 16px 14px; }
  .admin-list-head { flex-wrap: wrap; gap: 8px; }
  .admin-list-head h4 { font-size: 14px; flex: 1 1 100%; }
  .admin-list-head .row-actions { flex-wrap: wrap; }
  .admin-list-head .row-actions button { padding: 6px 10px; font-size: 9px; }
  .add-btn { padding: 10px 16px; font-size: 10px; letter-spacing: .15em; }
  .admin-section h2 { font-size: 22px; }
  .admin-section .lead { font-size: 13px; margin-bottom: 18px; }
  label { font-size: 10px; letter-spacing: .2em; }
  input, textarea, select { font-size: 13px; padding: 10px 12px; }
}

/* Itinerary editor stacks fully on mobile */
@media (max-width: 799px) {
  .itin-editor-row {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .itin-editor-row label { font-size: 9px; }
  .itin-editor-row .row-rm {
    grid-row: auto; align-self: stretch;
    display: flex; justify-content: flex-end;
  }
}

/* Login screen mobile polish */
@media (max-width: 500px) {
  .login-card { padding: 28px 22px; }
  .login-brand h1 { font-size: 22px; letter-spacing: .12em; }
  .login-brand p { font-size: 10px; letter-spacing: .25em; }
}

/* Review tabs wrap nicely */
@media (max-width: 600px) {
  .review-tabs { gap: 6px; }
  .review-tab { padding: 8px 14px; font-size: 10px; letter-spacing: .18em; }
}

/* Image preview shrinks on mobile */
@media (max-width: 500px) {
  .image-preview { height: 90px; }
}

/* ====================================================================
   PACKAGE COMPARISON
==================================================================== */

/* Card "Compare" pill */
.pkg-compare {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(11,23,38,.72);
  border: 1px solid var(--border);
  color: var(--parchment-2);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.pkg-compare svg { width: 12px; height: 12px; }
.pkg-compare:hover {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.pkg-compare.active {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
  font-weight: 600;
}
.pkg-compare.active::before {
  content: '✓'; margin-right: 2px; font-size: 11px;
}

/* Tray (fixed at bottom) */
.cmp-tray {
  position: fixed; bottom: -120px; left: 0; right: 0;
  z-index: 92;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  box-shadow: 0 -16px 40px rgba(0,0,0,.4);
  transition: bottom .35s var(--ease);
}
[data-theme="light"] .cmp-tray { box-shadow: 0 -16px 40px rgba(0,0,0,.12); }
.cmp-tray.open { bottom: 0; }

.cmp-tray-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
}
.cmp-tray-thumbs { display: flex; gap: 10px; flex: 1; flex-wrap: wrap; min-width: 0; }
.cmp-thumb {
  position: relative;
  width: 110px; height: 60px;
  border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden;
  background: var(--card-bg);
  flex-shrink: 0;
}
.cmp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cmp-thumb-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 3px 6px;
  background: linear-gradient(0deg, rgba(11,23,38,.85) 0%, transparent 100%);
  color: #fff; font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cmp-thumb-rm {
  position: absolute; top: 4px; right: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(11,23,38,.8); color: #fff;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; line-height: 1;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.cmp-thumb-rm:hover { background: var(--rust); border-color: var(--rust); }
.cmp-thumb.empty {
  display: flex; align-items: center; justify-content: center;
  border-style: dashed;
  background: transparent;
  color: var(--text-faint);
  font-size: 10px; letter-spacing: .25em; text-transform: uppercase;
}

.cmp-tray-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cmp-tray-count { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--text-soft); }
.cmp-tray-count strong { color: var(--gold); font-weight: 600; }
.cmp-clear { padding: 10px 18px; font-size: 11px; }
.cmp-open { padding: 10px 22px; font-size: 11px; }
.cmp-open:disabled { opacity: .45; cursor: not-allowed; }

@media (max-width: 700px) {
  .cmp-tray-inner { padding: 12px 16px; flex-direction: column; align-items: stretch; }
  .cmp-tray-thumbs { justify-content: center; }
  .cmp-tray-actions { justify-content: center; }
  .cmp-thumb { width: 80px; height: 50px; }
}

/* Comparison modal */
.cmp-modal {
  position: fixed; inset: 0; z-index: 230;
  background: rgba(11,23,38,.78);
  backdrop-filter: blur(8px);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 40px 16px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  overflow-y: auto;
}
[data-theme="light"] .cmp-modal { background: rgba(26,34,48,.45); }
.cmp-modal.active { opacity: 1; visibility: visible; }

.cmp-modal-inner {
  width: 100%; max-width: 1280px;
  background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px;
  margin: auto;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.cmp-modal-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 26px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  gap: 16px;
}
.cmp-modal-head .pkg-modal-close { position: static; }

.cmp-grid {
  --cmp-cols: 2;
  display: block;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cmp-row {
  display: grid;
  grid-template-columns: 160px repeat(var(--cmp-cols), minmax(200px, 1fr));
  border-bottom: 1px solid var(--border);
  min-width: max-content;
}
.cmp-row:last-child { border-bottom: none; }
.cmp-row:nth-child(odd):not(.cmp-row-head):not(.cmp-row-actions) {
  background: var(--card-bg-soft);
}
.cmp-row-label {
  padding: 16px 22px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
  background: var(--bg-2);
  border-right: 1px solid var(--border);
  display: flex; align-items: center;
  font-weight: 500;
}
.cmp-cell {
  padding: 16px 22px;
  font-size: 14px; color: var(--text);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
  position: relative;
}
.cmp-cell:last-child { border-right: none; }
.cmp-cell strong { font-family: 'Fraunces', serif; font-size: 22px; color: var(--text); font-weight: 500; }
.cmp-cell.best {
  background: rgba(201,162,74,.08);
}
.cmp-cell.best::before {
  content: '★ Best';
  position: absolute; top: 6px; right: 8px;
  font-size: 8px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

.cmp-price {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--gold); font-weight: 500;
}

.cmp-dots { display: inline-flex; gap: 3px; margin-right: 8px; vertical-align: middle; }
.cmp-dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  display: block;
}
.cmp-dots i.on { background: var(--gold); }
.cmp-dots-num { font-size: 12px; color: var(--text-soft); }

/* Header row with images */
.cmp-row.cmp-row-head { background: var(--card-bg); }
.cmp-row.cmp-row-head .cmp-row-label { background: var(--card-bg); border-right: 1px solid var(--border); }
.cmp-col-head {
  padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  border-right: 1px solid var(--border);
  position: relative;
}
.cmp-col-head:last-child { border-right: none; }
.cmp-col-img {
  height: 110px; border-radius: 4px; overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.cmp-col-img img { width: 100%; height: 100%; object-fit: cover; }
.cmp-col-region {
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold);
}
.cmp-col-title {
  font-family: 'Fraunces', serif;
  font-size: 16px; line-height: 1.25; color: var(--text);
  font-weight: 400;
}
.cmp-col-rm {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 10px;
  background: rgba(11,23,38,.6);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--parchment-2);
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer;
  transition: all .25s var(--ease);
}
.cmp-col-rm:hover { background: var(--rust); color: #fff; border-color: var(--rust); }

/* Action row */
.cmp-row.cmp-row-actions { background: var(--bg-2); border-top: 2px solid var(--gold-soft); }
.cmp-row.cmp-row-actions .cmp-row-label { background: var(--bg-2); }
.cmp-row.cmp-row-actions .cmp-cell {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 14px;
}
.cmp-row.cmp-row-actions .btn {
  width: 100%; justify-content: center; font-size: 10px; padding: 10px 14px;
}

.cmp-legend {
  padding: 18px 32px;
  font-size: 12px; color: var(--text-faint);
  text-align: center; font-style: italic;
  background: var(--bg-2);
}

/* Mobile */
@media (max-width: 700px) {
  .cmp-modal { padding: 16px 8px; }
  .cmp-modal-head { padding: 20px 18px; }
  .cmp-modal-head h2 { font-size: 22px; }
  .cmp-row { grid-template-columns: 110px repeat(var(--cmp-cols), minmax(150px, 1fr)); }
  .cmp-row-label { padding: 12px 14px; font-size: 9px; letter-spacing: .2em; }
  .cmp-cell { padding: 12px 14px; font-size: 13px; }
  .cmp-cell strong, .cmp-price { font-size: 18px; }
  .cmp-col-head { padding: 12px; }
  .cmp-col-img { height: 80px; }
  .cmp-col-title { font-size: 14px; }
}

/* ====================================================================
   ABOUT — Rich History layout
==================================================================== */

/* Hero stats strip */
.about-hero-stats {
  display: flex; flex-wrap: wrap; gap: 36px;
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.alt-stat { display: flex; flex-direction: column; gap: 6px; }
.alt-stat-num {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; color: var(--gold);
  line-height: 1;
}
.alt-stat-lbl {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--text-soft);
}

/* Founder quote */
.founder-quote {
  margin: 90px auto 30px;
  max-width: 760px;
  padding: 50px 50px 40px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  position: relative;
  text-align: left;
}
@media (max-width: 600px) { .founder-quote { padding: 36px 24px 28px; margin: 60px auto 20px; } }
.founder-quote .quote-mark {
  position: absolute; top: 20px; left: 20px;
  width: 30px; height: 30px;
  color: var(--gold); opacity: .35;
}
.founder-quote blockquote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 26px);
  line-height: 1.45;
  color: var(--text);
  margin-bottom: 20px;
}
.founder-quote figcaption {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}

/* Timeline */
.timeline {
  display: flex; flex-direction: column; gap: 0;
  position: relative; max-width: 880px; margin: 0 auto;
  padding: 30px 0;
}
.timeline::before {
  content: ''; position: absolute;
  left: 30px; top: 60px; bottom: 60px;
  width: 1px; background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
}
.tl-item {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 26px 0;
  position: relative;
}
.tl-marker {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 18px; font-weight: 600;
  color: var(--gold);
  position: relative; z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.tl-body { padding-top: 8px; }
.tl-period {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 6px;
}
.tl-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 400; color: var(--text);
  margin-bottom: 10px; line-height: 1.2;
}
.tl-text {
  color: var(--text-soft); font-size: 15px; line-height: 1.7;
  max-width: 640px;
}
@media (max-width: 600px) {
  .timeline::before { left: 22px; }
  .tl-item { grid-template-columns: 44px 1fr; gap: 18px; padding: 18px 0; }
  .tl-marker { width: 44px; height: 44px; font-size: 14px; }
  .tl-title { font-size: 19px; }
  .tl-text { font-size: 14px; }
}

/* Pillars (4-card grid) */
.pillars-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 720px)  { .pillars-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }

.pillar-card {
  padding: 32px 26px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all .4s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-6px);
  border-top-color: var(--gold-hi);
  box-shadow: var(--shadow-md);
}
.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 13px; color: var(--gold); letter-spacing: .2em;
  font-weight: 500;
}
.pillar-title {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 400; color: var(--text);
  line-height: 1.2;
}
.pillar-body {
  color: var(--text-soft); font-size: 14px; line-height: 1.7;
}

/* Mission prose */
.mission-prose p {
  font-size: 17px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
}
.mission-prose p em { color: var(--text); font-style: italic; }

/* Closing block (used on about + team pages) */
.about-closing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
}
.closing-block {
  text-align: center;
  max-width: 720px; margin: 0 auto;
  padding: 20px 0;
}
.closing-line {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300; font-style: italic;
  color: var(--gold);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.closing-para {
  font-size: 16px; color: var(--text-soft); line-height: 1.8;
  margin-bottom: 36px;
}
.closing-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ====================================================================
   TRUST BAND
==================================================================== */
.trust-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  border-top: 1px solid var(--border);
  padding: 60px 0 50px;
}
.trust-head {
  text-align: center;
  margin-bottom: 36px;
}
.trust-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400; color: var(--text);
  letter-spacing: -.01em;
}
.trust-subtitle {
  font-size: 11px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}
.trust-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 720px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  padding: 18px 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  transition: all .35s var(--ease);
  display: block;
}
a.trust-card:hover { transform: translateY(-2px); border-left-color: var(--gold-hi); }
.trust-name {
  font-family: 'Fraunces', serif;
  font-size: 17px; font-weight: 500; color: var(--gold);
  letter-spacing: .04em;
}
.trust-sub { font-size: 12px; color: var(--text); margin-top: 3px; line-height: 1.45; }
.trust-license { font-size: 10px; color: var(--text-faint); margin-top: 6px; letter-spacing: .15em; text-transform: uppercase; }

/* ====================================================================
   LEAD-MAGNET POPUP
==================================================================== */
.lm-modal {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(11,23,38,.78);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
[data-theme="light"] .lm-modal { background: rgba(26,34,48,.55); }
.lm-modal.open { opacity: 1; visibility: visible; }
.lm-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 100%; max-width: 760px;
  max-height: 92vh; overflow: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(20px);
  transition: transform .4s var(--ease);
}
.lm-modal.open .lm-card { transform: translateY(0); }
.lm-close {
  position: absolute; top: 16px; right: 16px; z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card-bg-soft);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.lm-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lm-close svg { width: 14px; height: 14px; }
.lm-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
}
@media (min-width: 720px) { .lm-grid { grid-template-columns: 220px 1fr; } }
.lm-art {
  background: linear-gradient(135deg, var(--forest), var(--forest-hi));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 40px 28px;
  border-radius: 8px 0 0 8px;
}
@media (max-width: 719px) { .lm-art { border-radius: 8px 8px 0 0; padding: 32px 20px; } }
.lm-art svg { width: 130px; height: 130px; filter: drop-shadow(0 4px 12px rgba(0,0,0,.4)); }
.lm-art-tag {
  margin-top: 12px;
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold-hi); font-weight: 600;
}
.lm-body { padding: 36px 32px 28px; }
@media (max-width: 600px) { .lm-body { padding: 28px 22px 22px; } }
.lm-eyebrow {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 8px;
}
.lm-body h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 3.6vw, 30px);
  font-weight: 400; color: var(--text);
  line-height: 1.15; margin-bottom: 12px;
}
.lm-sub {
  font-size: 15px; color: var(--gold);
  font-style: italic;
  margin-bottom: 14px; line-height: 1.5;
}
.lm-body-text { font-size: 14px; color: var(--text-soft); line-height: 1.65; margin-bottom: 18px; }
.lm-form { display: flex; flex-direction: column; gap: 10px; }
.lm-form input { padding: 12px 14px; font-size: 14px; }
.lm-form .btn { width: 100%; justify-content: center; }
.lm-fineprint { font-size: 11px; color: var(--text-faint); margin-top: 8px; line-height: 1.6; }
.lm-thanks h3 { font-family: 'Fraunces', serif; font-size: 22px; color: var(--gold); margin-bottom: 10px; }
.lm-thanks p { color: var(--text-soft); font-size: 14px; line-height: 1.6; }

/* ====================================================================
   DEPARTURES PILL ON CARD
==================================================================== */
.pkg-deps {
  margin-bottom: 14px;
  padding: 10px 12px;
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
}
.pkg-deps-lbl {
  font-size: 9px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 6px;
}
.pkg-deps-list { display: flex; flex-direction: column; gap: 4px; }
.pkg-dep {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
}
.pkg-dep-date { color: var(--text); font-weight: 500; }
.pkg-dep-spots {
  font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px;
  border: 1px solid;
}
.pkg-dep-spots.ok  { color: #6ec8a0; border-color: rgba(110,200,160,.4); background: rgba(110,200,160,.08); }
.pkg-dep-spots.mid { color: var(--gold); border-color: rgba(201,162,74,.4); background: rgba(201,162,74,.08); }
.pkg-dep-spots.low { color: var(--rust);  border-color: rgba(208,74,74,.4);  background: rgba(208,74,74,.08); font-weight: 600; }

/* ====================================================================
   LOADER — using uploaded logo image
==================================================================== */
.kh-intro.kh-intro-image {
  width: 100%;
  max-width: 1100px;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.kh-intro-img {
  width: 100%; height: auto;
  max-width: 1000px;
  max-height: 70vh;
  display: block;
  opacity: 0;
  transform: scale(.92);
  animation:
    logo-rise 1.2s cubic-bezier(.2,.7,.2,1) .25s forwards,
    logo-pulse 2.4s ease-in-out 1.4s 1 forwards;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,.35));
}
@keyframes logo-rise {
  0%   { opacity: 0; transform: scale(.88) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.02) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes logo-pulse {
  0%   { filter: drop-shadow(0 12px 40px rgba(0,0,0,.35)) brightness(1); }
  50%  { filter: drop-shadow(0 12px 50px rgba(180,210,255,.18)) brightness(1.04); }
  100% { filter: drop-shadow(0 12px 40px rgba(0,0,0,.35)) brightness(1); }
}

/* Uploaded mark in the page header */
.brand-mark.brand-mark-img {
  object-fit: contain;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  .kh-intro-img { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ====================================================================
   KHREGO MARK — three-triangle paper-fold logo (sync'd everywhere)
==================================================================== */

/* Sets the navy background color used as the "cut-out" inside each triangle */
#khrego-loader,
.kh-intro-vector {
  --kh-bg: #0a1f44;
}

/* The icon ALWAYS sits on a navy backdrop — matches the reference logo image.
   This keeps the brand consistent across header, footer, loader, and any
   future placement. The cut-out triangles inside each shape use the same
   navy so they look like paper folds against the backdrop. */
.brand .kh-mark-svg,
.footer-brand-block .kh-mark-svg {
  --kh-bg: #0c2b62;
  background: linear-gradient(135deg, #0e3170 0%, #0a1f44 100%);
  border-radius: 8px;
  padding: 5px;
  box-shadow: 0 2px 10px rgba(10,31,68,.35);
}
[data-theme="light"] .brand .kh-mark-svg,
[data-theme="light"] .footer-brand-block .kh-mark-svg {
  box-shadow: 0 2px 10px rgba(10,31,68,.15);
}

/* The header mark is smaller so re-set sizing */
.brand .kh-mark-svg { width: 44px; height: 44px; }
@media (max-width: 640px) { .brand .kh-mark-svg { width: 38px; height: 38px; } }
.header.scrolled .brand .kh-mark-svg { width: 38px; height: 38px; }

/* Tiny scale on hover so the icon feels alive in the header */
.brand:hover .kh-mark-svg { transform: translateY(-1px) scale(1.04); }
.kh-mark-svg { transition: transform .4s var(--ease); }

/* ====================================================================
   LOADER — sync'd vector logo composition
==================================================================== */
#khrego-loader {
  background:
    radial-gradient(ellipse 90% 70% at 50% 44%, #0b1830 0%, #050b18 55%, #000000 100%);
}

.kh-intro-vector {
  display: flex; align-items: center; gap: clamp(20px, 5vw, 64px);
  padding: 32px;
  max-width: 1100px;
}
@media (max-width: 760px) {
  .kh-intro-vector { flex-direction: column; gap: 18px; text-align: center; }
}

.kh-intro-vector .kh-intro-mark {
  width: clamp(140px, 22vw, 280px);
  flex-shrink: 0;
}
.kh-intro-vector .kh-intro-mark-svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,.45));
}

/* In the header / footer (small mark) — show triangles immediately, no animation */
.brand .kh-mark-svg .kh-tri,
.footer-brand-block .kh-mark-svg .kh-tri,
.brand .kh-mark-svg .kh-tri .kh-out,
.brand .kh-mark-svg .kh-tri .kh-in,
.footer-brand-block .kh-mark-svg .kh-tri .kh-out,
.footer-brand-block .kh-mark-svg .kh-tri .kh-in {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* ----- LOADER: piece-by-piece assembly ----- */
/* Each of the 6 logo pieces (outer + inner × 3 triangles) animates in sequentially */
.kh-intro-vector .kh-mark-svg .kh-tri .kh-out,
.kh-intro-vector .kh-mark-svg .kh-tri .kh-out,
.kh-intro-vector .kh-mark-svg .kh-tri .kh-in {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(.22,.85,.32,1);
  animation-fill-mode: forwards;
  animation-delay: .15s;
}
/* Each of the 6 fragments enters from its own distant trajectory.
   The outer pieces sweep in from further away; the inner shadow pieces
   come in slightly later to seal the paper-fold effect. */
.kh-intro-vector .kh-mark-svg .kh-tri-1 .kh-out { animation-name: kh-fly-1; animation-delay: .15s; }
.kh-intro-vector .kh-mark-svg .kh-tri-2 .kh-out { animation-name: kh-fly-2; animation-delay: .25s; }
.kh-intro-vector .kh-mark-svg .kh-tri-3 .kh-out { animation-name: kh-fly-3; animation-delay: .35s; }
.kh-intro-vector .kh-mark-svg .kh-tri-1 .kh-in  { animation-name: kh-fly-4; animation-delay: 1.30s; animation-duration: .55s; }
.kh-intro-vector .kh-mark-svg .kh-tri-2 .kh-in  { animation-name: kh-fly-5; animation-delay: 1.45s; animation-duration: .55s; }
.kh-intro-vector .kh-mark-svg .kh-tri-3 .kh-in  { animation-name: kh-fly-6; animation-delay: 1.60s; animation-duration: .55s; }

/* Outer fragments — fly in from 6 distant points with rotation, blur, and tumble */
@keyframes kh-fly-1 {
  0%   { opacity: 0; transform: translate(220%, -180%) rotate(540deg) scale(.6); filter: blur(8px); }
  35%  { opacity: 1; filter: blur(3px); }
  100% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); filter: blur(0); }
}
@keyframes kh-fly-2 {
  0%   { opacity: 0; transform: translate(-220%, 200%) rotate(-540deg) scale(.6); filter: blur(8px); }
  35%  { opacity: 1; filter: blur(3px); }
  100% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); filter: blur(0); }
}
@keyframes kh-fly-3 {
  0%   { opacity: 0; transform: translate(240%, 200%) rotate(720deg) scale(.6); filter: blur(8px); }
  35%  { opacity: 1; filter: blur(3px); }
  100% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); filter: blur(0); }
}
/* Inner shadow pieces — pop in after the outer triangles seat */
@keyframes kh-fly-4 {
  0%   { opacity: 0; transform: scale(.4); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes kh-fly-5 {
  0%   { opacity: 0; transform: scale(.4); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}
@keyframes kh-fly-6 {
  0%   { opacity: 0; transform: scale(.4); filter: blur(4px); }
  100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* ---- Radial light burst on assembly (timed to ~1.95s when outer triangles seat) ---- */
.kh-intro-vector .kh-intro-mark { position: relative; }
.kh-intro-vector .kh-burst,
.kh-intro-vector .kh-burst-ring {
  position: absolute; left: 50%; top: 50%;
  width: 100%; height: 100%;
  margin-left: -50%; margin-top: -50%;
  pointer-events: none;
  opacity: 0;
  border-radius: 50%;
}
.kh-intro-vector .kh-burst {
  background: radial-gradient(circle,
    rgba(253,248,232,.95) 0%,
    rgba(253,248,232,.55) 18%,
    rgba(253,248,232,.18) 40%,
    transparent 65%);
  transform: scale(.1);
  animation: kh-burst 1.0s cubic-bezier(.2,.7,.1,1) 1.85s forwards;
  filter: blur(6px);
  z-index: 1;
  mix-blend-mode: screen;
}
.kh-intro-vector .kh-burst-ring {
  background: transparent;
  border: 2px solid rgba(253,248,232,.7);
  transform: scale(.2);
  animation: kh-burst-ring .9s cubic-bezier(.18,.7,.2,1) 1.95s forwards;
  z-index: 2;
}
@keyframes kh-burst {
  0%   { opacity: 0; transform: scale(.05); }
  18%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(2.6); }
}
@keyframes kh-burst-ring {
  0%   { opacity: 0; transform: scale(.2); border-width: 4px; }
  25%  { opacity: 1; }
  100% { opacity: 0; transform: scale(2.8); border-width: 0.5px; }
}

/* ---- ANAMORPHIC LENS FLARE — fires at the assembly moment ---- */
.kh-intro-vector .kh-flare-h,
.kh-intro-vector .kh-flare-v,
.kh-intro-vector .kh-core-flash {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  pointer-events: none;
  opacity: 0;
  z-index: 4;
  mix-blend-mode: screen;
}
/* Horizontal anamorphic streak — the signature wide light bar */
.kh-intro-vector .kh-flare-h {
  width: 320%; height: 5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(180,210,255,.0) 8%,
    rgba(210,230,255,.85) 38%,
    #ffffff 50%,
    rgba(210,230,255,.85) 62%,
    rgba(180,210,255,.0) 92%,
    transparent 100%);
  filter: blur(1px) drop-shadow(0 0 12px rgba(190,220,255,.9));
  animation: kh-flare-h 1.1s cubic-bezier(.15,.75,.2,1) 1.95s forwards;
}
/* Vertical streak — thinner, completes the cross-flare */
.kh-intro-vector .kh-flare-v {
  width: 4px; height: 200%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(210,230,255,.7) 35%,
    #ffffff 50%,
    rgba(210,230,255,.7) 65%,
    transparent 100%);
  filter: blur(1px) drop-shadow(0 0 8px rgba(190,220,255,.8));
  transform: translate(-50%, -50%) scaleY(0);
  animation: kh-flare-v 1.0s cubic-bezier(.15,.75,.2,1) 2.0s forwards;
}
/* Bright overexposed core flash behind the logo centre */
.kh-intro-vector .kh-core-flash {
  width: 70%; height: 70%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.2);
  background: radial-gradient(circle,
    #ffffff 0%,
    rgba(220,235,255,.9) 22%,
    rgba(190,220,255,.4) 45%,
    transparent 70%);
  filter: blur(4px);
  animation: kh-core-flash .9s ease-out 1.9s forwards;
}
@keyframes kh-flare-h {
  0%   { opacity: 0; transform: translate(-50%, -50%) scaleX(0); }
  22%  { opacity: 1; transform: translate(-50%, -50%) scaleX(1); }
  55%  { opacity: .9; }
  100% { opacity: 0; transform: translate(-50%, -50%) scaleX(1.15); }
}
@keyframes kh-flare-v {
  0%   { opacity: 0; transform: translate(-50%, -50%) scaleY(0); }
  25%  { opacity: .9; transform: translate(-50%, -50%) scaleY(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scaleY(1.1); }
}
@keyframes kh-core-flash {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
  25%  { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

/* Make sure the SVG renders above the burst but below the bright flares */
.kh-intro-vector .kh-mark-svg { position: relative; z-index: 3; }

/* The mark itself gets a soft glow after fully assembled */
.kh-intro-vector .kh-mark-svg {
  filter: drop-shadow(0 12px 30px rgba(0,0,0,.45));
  animation: kh-mark-glow 2.6s ease-in-out 2.6s infinite alternate;
}
@keyframes kh-mark-glow {
  0% {
    filter:
      drop-shadow(0 12px 30px rgba(0,0,0,.45))
      drop-shadow(0 0 0 transparent);
  }
  100% {
    filter:
      drop-shadow(0 12px 30px rgba(0,0,0,.5))
      drop-shadow(0 0 28px rgba(253,248,232,.32))
      drop-shadow(0 0 48px rgba(253,248,232,.18));
  }
}

/* Wordmark "KHREGO" — chunky white, letter-by-letter rise */
.kh-intro-vector .kh-intro-words {
  overflow: hidden;
  display: flex; flex-direction: column; gap: 6px;
}
.kh-intro-vector .kh-intro-name {
  font-family: 'Outfit', 'Inter', 'Helvetica Neue', sans-serif;
  font-size: clamp(48px, 9.5vw, 124px);
  font-weight: 800;
  color: #fbf6e6;
  letter-spacing: -.012em;
  line-height: .92;
  display: flex;
  text-transform: uppercase;
}
/* Letters fly in from the right, one by one, after the geometry assembles */
.kh-intro-vector .kh-intro-name {
  perspective: 800px;
}
.kh-intro-vector .kh-intro-name span {
  display: inline-block;
  opacity: 0;
  transform: translateX(120px) rotateY(-25deg);
  animation: kh-letter-fly .6s cubic-bezier(.2,.65,.25,1) forwards;
  animation-delay: calc(3.0s + var(--i) * .13s);
}
@keyframes kh-letter-fly {
  0%   { opacity: 0; transform: translateX(120px) rotateY(-25deg); }
  60%  { opacity: 1; transform: translateX(-6px) rotateY(2deg); }
  100% { opacity: 1; transform: translateX(0) rotateY(0deg); }
}

.kh-intro-vector .kh-intro-sub {
  font-family: 'Outfit', 'Inter', 'Helvetica Neue', sans-serif;
  font-style: italic;
  font-size: clamp(16px, 2.6vw, 36px);
  font-weight: 600;
  color: #fbf6e6;
  letter-spacing: .025em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0;
  transform: translateY(20px);
  animation: kh-sub-up .9s cubic-bezier(.2,.7,.2,1) 4.7s forwards;
}
@keyframes kh-sub-up {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Overall lockup glow after everything settles */
.kh-intro-vector {
  position: relative;
}
.kh-intro-vector::before {
  content: '';
  position: absolute; inset: -10% -5%;
  border-radius: 24px;
  background: radial-gradient(ellipse at 30% 50%, rgba(253,248,232,.08) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  animation: kh-aura-pulse 3s ease-in-out 5.5s 1 forwards;
}
@keyframes kh-aura-pulse {
  0%   { opacity: 0; transform: scale(.95); }
  40%  { opacity: 1; transform: scale(1); }
  100% { opacity: .7; transform: scale(1); }
}

/* Reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  .kh-intro-vector .kh-mark-svg,
  .kh-intro-vector .kh-mark-svg .kh-tri .kh-out,
  .kh-intro-vector .kh-mark-svg .kh-tri .kh-in,
  .kh-intro-vector .kh-intro-name span,
  .kh-intro-vector .kh-intro-sub,
  .kh-intro-vector::before,
  .kh-intro-vector .kh-burst,
  .kh-intro-vector .kh-burst-ring {
    opacity: 1 !important; transform: none !important; animation: none !important;
  }
  .kh-intro-vector .kh-burst,
  .kh-intro-vector .kh-burst-ring,
  .kh-intro-vector .kh-flare-h,
  .kh-intro-vector .kh-flare-v,
  .kh-intro-vector .kh-core-flash { opacity: 0 !important; animation: none !important; }
}

/* ====================================================================
   BRAND FONTS — apply Tussilago + Montserrat to wordmark & subtitle
==================================================================== */

/* Loader: KHREGO wordmark uses Tussilago Heavy */
.kh-intro-vector .kh-intro-name {
  font-family: 'Tussilago', 'Montserrat', 'Outfit', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: -.005em !important;
}

/* Loader: italic subtitle uses Montserrat SemiBold Italic */
.kh-intro-vector .kh-intro-sub {
  font-family: 'Montserrat', 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-style: italic !important;
  letter-spacing: .03em !important;
}

/* Header: brand wordmark also gets Tussilago, tagline gets Montserrat italic */
.brand .brand-name {
  font-family: 'Tussilago', 'Montserrat', 'Fraunces', serif !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}
.brand .brand-tagline {
  font-family: 'Montserrat', 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-style: italic !important;
  letter-spacing: .09em !important;   /* matched to the KHREGO wordmark width for a flush lockup */
  white-space: nowrap;
}

/* Footer brand block — same treatment */
.footer-brand-block h3 {
  font-family: 'Tussilago', 'Montserrat', 'Fraunces', serif !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}
.footer-brand-tag {
  font-family: 'Montserrat', 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-style: italic !important;
  letter-spacing: .18em !important;
}

/* Utility — a `.brand-font` class anyone can use anywhere */
.brand-font       { font-family: 'Tussilago', 'Montserrat', sans-serif; font-weight: 900; }
.brand-font-italic{ font-family: 'Montserrat', sans-serif; font-weight: 600; font-style: italic; }

/* ====================================================================
   HEADER — uploaded logo only (no duplicate text wordmark)
==================================================================== */
.brand.brand-image-only,
.brand.brand-mark-only { gap: 0; }

.brand .brand-logo-full {
  height: 48px;
  width: auto;
  display: block;
  transition: height .3s var(--ease), transform .3s var(--ease);
  background: transparent;
}
.brand:hover .brand-logo-full { transform: translateY(-1px); }
.header.scrolled .brand .brand-logo-full { height: 40px; }
@media (max-width: 760px) {
  .brand .brand-logo-full { height: 38px; }
  .header.scrolled .brand .brand-logo-full { height: 34px; }
}
@media (max-width: 420px) {
  .brand .brand-logo-full { height: 32px; }
}

/* ====================================================================
   PACKAGE MEDIA GALLERY + LIGHTBOX
==================================================================== */
.pkg-gallery {
  display: flex; gap: 12px;
  overflow-x: auto;
  padding: 4px 2px 14px;
  margin-bottom: 8px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.pkg-gallery::-webkit-scrollbar { height: 6px; }
.pkg-gallery::-webkit-scrollbar-thumb { background: var(--border); border-radius: 100px; }
.gal-thumb {
  position: relative; flex: 0 0 auto;
  width: 180px; height: 120px;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  cursor: pointer; padding: 0;
  scroll-snap-align: start;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.gal-thumb:hover { transform: translateY(-3px); border-color: var(--gold); }
.gal-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-video-blank { width: 100%; height: 100%; background: linear-gradient(135deg, #0e3170, #0a1f44); }
.gal-play {
  position: absolute; inset: 0; margin: auto;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(11,23,38,.7); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; border: 1.5px solid rgba(255,255,255,.6);
}
.gal-play svg { width: 20px; height: 20px; margin-left: 2px; }
.gal-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 8px 6px;
  background: linear-gradient(0deg, rgba(11,23,38,.92), transparent);
  color: #fbf6e6; font-size: 11px; line-height: 1.35;
  text-align: left;
}
@media (max-width: 600px) {
  .gal-thumb { width: 150px; height: 100px; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 260;
  background: rgba(6,16,30,.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lb-stage {
  max-width: min(1100px, 92vw); max-height: 86vh;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.lb-img {
  max-width: 100%; max-height: 78vh;
  object-fit: contain; border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
}
.lb-video {
  width: min(1000px, 90vw);
  aspect-ratio: 16 / 9;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  background: #000;
}
.lb-video iframe, .lb-video video { width: 100%; height: 100%; border: 0; display: block; }
.lb-caption {
  color: var(--parchment-2); font-size: 14px; text-align: center;
  max-width: 700px; line-height: 1.5;
}
.lb-counter {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(243,234,216,.5);
}
.lb-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(243,234,216,.3);
  background: rgba(11,23,38,.6); color: #fbf6e6;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.lb-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(90deg); }
.lb-close svg { width: 18px; height: 18px; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid rgba(243,234,216,.25);
  background: rgba(11,23,38,.55); color: #fbf6e6;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.lb-nav:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.lb-nav svg { width: 22px; height: 22px; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }
@media (max-width: 600px) {
  .lb-nav { width: 40px; height: 40px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
  .lb-close { top: 12px; right: 12px; }
}

/* Admin media editor */
.media-editor .mm-img-slot,
.media-editor .mm-poster-slot { margin-top: 4px; }

/* ====================================================================
   ON-SITE LEAFLET MAP — permanent place-name labels
==================================================================== */
.kh-map-label.leaflet-tooltip {
  background: rgba(11,23,38,.88);
  color: #f3ead8;
  border: 1px solid var(--gold-soft);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: .04em;
  font-family: 'Outfit', 'Montserrat', sans-serif;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
  white-space: nowrap;
  pointer-events: none;
}
.kh-map-label.leaflet-tooltip::before { border: none !important; display: none; }
[data-theme="light"] .kh-map-label.leaflet-tooltip {
  background: rgba(255,253,247,.96);
  color: #1a2230;
  border-color: var(--gold);
}

/* ====================================================================
   NEWSLETTER POPUP — synced Khrego logo
==================================================================== */
.lm-art .lm-logo-svg,
.lm-art .lm-logo-img {
  width: 150px;
  height: 150px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.lm-art .lm-logo-img { object-fit: contain; }
/* The lm-art panel itself sets the navy gradient — make sure --kh-bg matches it
   so the inner triangle cut-outs blend with the panel. */
.lm-art { --kh-bg: #1f3a2e; }

/* ====================================================================
   MULTI-LANGUAGE SWITCHER + Google Translate cleanup
==================================================================== */
.lang-select { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  height: 42px; padding: 0 12px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--card-bg-soft); color: var(--text);
  transition: all .3s var(--ease);
}
.lang-btn:hover { background: rgba(201,162,74,.12); border-color: var(--gold); }
.lang-btn svg { width: 18px; height: 18px; }
.lang-current { font-size: 11px; letter-spacing: .12em; font-weight: 600; }

.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 120;
  min-width: 190px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
  max-height: 60vh; overflow-y: auto;
}
.lang-select.open .lang-menu { display: block; }

/* ---- Language switcher state (added 2026-06-21) ---- */
.lang-toast {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  max-width: 280px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(11, 23, 38, 0.96);
  color: #fdfaf3;
  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(200, 162, 74, 0.45);
  display: none;
  z-index: 80;
  pointer-events: none;
}
.lang-toast::before {
  content: '';
  position: absolute;
  top: -6px; right: 18px;
  width: 10px; height: 10px;
  background: inherit;
  transform: rotate(45deg);
  border-top: 1px solid rgba(200, 162, 74, 0.45);
  border-left: 1px solid rgba(200, 162, 74, 0.45);
}
.lang-select.is-loading .lang-btn { opacity: 0.7; cursor: progress; }
.lang-select.is-loading .lang-btn::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  margin-left: 6px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: kh-spin 0.8s linear infinite;
  vertical-align: -1px;
}
.lang-select.is-error  .lang-btn { color: #d9784b; }
.lang-select.is-offline .lang-btn { color: #888; opacity: 0.55; cursor: not-allowed; }
.lang-select.is-offline .lang-toast { color: #ffb087; }
@keyframes kh-spin { to { transform: rotate(360deg); } }

.lang-opt {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  color: var(--text); font-size: 14px;
  transition: background .2s var(--ease), color .2s var(--ease);
  text-align: left;
}
.lang-opt:hover { background: var(--card-bg-soft); color: var(--gold); }
.lang-opt.active { color: var(--gold); }
.lang-opt.active::after { content: '✓'; color: var(--gold); font-size: 12px; margin-left: 4px; }
.lang-opt-native { font-weight: 500; }
.lang-opt-code { font-size: 10px; letter-spacing: .15em; color: var(--text-faint); }

/* Hide Google Translate's injected banner / tooltip / branding */
.goog-te-banner-frame, .skiptranslate iframe, #goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
body { top: 0 !important; }              /* GT pushes body down — undo it */
.goog-te-gadget { height: 0; overflow: hidden; }
#google_translate_element { display: none !important; }
.goog-tooltip, .goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }
font[style] { background: transparent !important; box-shadow: none !important; }

@media (max-width: 720px) {
  .lang-btn { height: 38px; padding: 0 10px; }
  .lang-current { font-size: 10px; }
}

/* ====================================================================
   ADMIN — Hide/Show toggle + dimmed hidden rows
==================================================================== */
.hide-btn {
  padding: 7px 14px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  border: 1px solid var(--border); border-radius: 100px;
  color: var(--text-soft);
  transition: all .25s var(--ease);
}
.hide-btn:hover { border-color: var(--gold); color: var(--gold); }
.hide-btn.is-hidden { background: var(--gold); color: var(--bg); border-color: var(--gold); }
.hide-btn.is-hidden:hover { background: var(--gold-hi); }

.admin-list-item.row-hidden,
.faq-admin-row.row-hidden {
  opacity: .55;
  border-style: dashed;
}
.admin-list-item.row-hidden:hover,
.faq-admin-row.row-hidden:hover { opacity: .8; }

.hidden-badge {
  display: inline-block;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 100px;
  background: rgba(139,58,31,.15); color: var(--rust);
  border: 1px solid rgba(139,58,31,.4);
  margin-left: 8px; vertical-align: middle;
}

/* ============================================================
   HIMALAYA RIDGE BACKDROP v2 — denser pattern, 5 variants
   ============================================================ */
:root{ --kh-line:#e5c37a; --kh-dot:#ffe9b0; --kh-pat-op:.5; }
[data-theme="light"]{ --kh-line:#1f3a2e; --kh-dot:#c9a24a; --kh-pat-op:.42; }
body[data-bg="a"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2071.6%20L%2088.9%2056.9%20L%20133.3%2070.3%20L%20177.8%2079.0%20L%20222.2%2068.8%20L%20266.7%2079.5%20L%20311.1%2084.7%20L%20355.6%2059.4%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2092.7%20L%2072.7%2078.0%20L%20109.1%20106.8%20L%20145.5%20102.7%20L%20181.8%2083.5%20L%20218.2%2089.5%20L%20254.5%20102.5%20L%20290.9%20108.4%20L%20327.3%20111.2%20L%20363.6%20108.7%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20125.6%20L%2061.5%20108.4%20L%2092.3%20121.8%20L%20123.1%20123.5%20L%20153.8%2094.5%20L%20184.6%20105.4%20L%20215.4%20119.9%20L%20246.2%2097.3%20L%20276.9%20130.5%20L%20307.7%20133.9%20L%20338.5%20101.8%20L%20369.2%20100.0%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20163.0%20L%2053.3%20137.2%20L%2080.0%20145.9%20L%20106.7%20127.5%20L%20133.3%20151.8%20L%20160.0%20148.3%20L%20186.7%20153.7%20L%20213.3%20112.9%20L%20240.0%20156.3%20L%20266.7%20124.0%20L%20293.3%20137.7%20L%20320.0%20158.9%20L%20346.7%20155.5%20L%20373.3%20155.3%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20127.4%20L%2047.1%20144.5%20L%2070.6%20126.2%20L%2094.1%20146.1%20L%20117.6%20153.8%20L%20141.2%20178.7%20L%20164.7%20148.6%20L%20188.2%20175.1%20L%20211.8%20151.3%20L%20235.3%20142.0%20L%20258.8%20139.9%20L%20282.4%20181.6%20L%20305.9%20162.4%20L%20329.4%20159.1%20L%20352.9%20170.2%20L%20376.5%20155.0%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22117.7%22%20cy%3D%2257.9%22%20r%3D%221.4%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22365.1%22%20cy%3D%2245.8%22%20r%3D%221.2%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22154.9%22%20cy%3D%2258.5%22%20r%3D%221.5%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22377.4%22%20cy%3D%2285.0%22%20r%3D%221.6%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2239.6%22%20cy%3D%2236.9%22%20r%3D%221.6%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
[data-theme="light"] body[data-bg="a"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231a2230%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2071.6%20L%2088.9%2056.9%20L%20133.3%2070.3%20L%20177.8%2079.0%20L%20222.2%2068.8%20L%20266.7%2079.5%20L%20311.1%2084.7%20L%20355.6%2059.4%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2092.7%20L%2072.7%2078.0%20L%20109.1%20106.8%20L%20145.5%20102.7%20L%20181.8%2083.5%20L%20218.2%2089.5%20L%20254.5%20102.5%20L%20290.9%20108.4%20L%20327.3%20111.2%20L%20363.6%20108.7%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20125.6%20L%2061.5%20108.4%20L%2092.3%20121.8%20L%20123.1%20123.5%20L%20153.8%2094.5%20L%20184.6%20105.4%20L%20215.4%20119.9%20L%20246.2%2097.3%20L%20276.9%20130.5%20L%20307.7%20133.9%20L%20338.5%20101.8%20L%20369.2%20100.0%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20163.0%20L%2053.3%20137.2%20L%2080.0%20145.9%20L%20106.7%20127.5%20L%20133.3%20151.8%20L%20160.0%20148.3%20L%20186.7%20153.7%20L%20213.3%20112.9%20L%20240.0%20156.3%20L%20266.7%20124.0%20L%20293.3%20137.7%20L%20320.0%20158.9%20L%20346.7%20155.5%20L%20373.3%20155.3%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20127.4%20L%2047.1%20144.5%20L%2070.6%20126.2%20L%2094.1%20146.1%20L%20117.6%20153.8%20L%20141.2%20178.7%20L%20164.7%20148.6%20L%20188.2%20175.1%20L%20211.8%20151.3%20L%20235.3%20142.0%20L%20258.8%20139.9%20L%20282.4%20181.6%20L%20305.9%20162.4%20L%20329.4%20159.1%20L%20352.9%20170.2%20L%20376.5%20155.0%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22117.7%22%20cy%3D%2257.9%22%20r%3D%221.4%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22365.1%22%20cy%3D%2245.8%22%20r%3D%221.2%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22154.9%22%20cy%3D%2258.5%22%20r%3D%221.5%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22377.4%22%20cy%3D%2285.0%22%20r%3D%221.6%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2239.6%22%20cy%3D%2236.9%22%20r%3D%221.6%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body[data-bg="b"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2066.7%20L%2088.9%2057.4%20L%20133.3%2067.8%20L%20177.8%2076.8%20L%20222.2%2080.7%20L%20266.7%2076.2%20L%20311.1%2053.3%20L%20355.6%2065.7%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2085.0%20L%2072.7%20110.0%20L%20109.1%2097.4%20L%20145.5%2095.5%20L%20181.8%2069.9%20L%20218.2%2077.2%20L%20254.5%2093.6%20L%20290.9%20107.6%20L%20327.3%2091.5%20L%20363.6%2073.2%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20128.0%20L%2061.5%20119.4%20L%2092.3%20122.1%20L%20123.1%20128.1%20L%20153.8%20131.8%20L%20184.6%2098.0%20L%20215.4%20108.9%20L%20246.2%20123.4%20L%20276.9%20122.8%20L%20307.7%2089.3%20L%20338.5%20122.8%20L%20369.2%20125.0%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20155.8%20L%2053.3%20155.7%20L%2080.0%20141.8%20L%20106.7%20159.9%20L%20133.3%20119.1%20L%20160.0%20119.9%20L%20186.7%20135.8%20L%20213.3%20116.8%20L%20240.0%20168.9%20L%20266.7%20124.7%20L%20293.3%20107.2%20L%20320.0%20153.9%20L%20346.7%20104.2%20L%20373.3%20147.8%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20164.2%20L%2047.1%20141.8%20L%2070.6%20164.3%20L%2094.1%20134.4%20L%20117.6%20158.8%20L%20141.2%20175.0%20L%20164.7%20163.0%20L%20188.2%20141.2%20L%20211.8%20174.3%20L%20235.3%20157.2%20L%20258.8%20163.9%20L%20282.4%20177.4%20L%20305.9%20140.6%20L%20329.4%20147.0%20L%20352.9%20202.9%20L%20376.5%20173.5%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%2223.1%22%20cy%3D%2241.4%22%20r%3D%221.4%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22323.1%22%20cy%3D%2282.7%22%20r%3D%221.6%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2286.6%22%20cy%3D%2238.2%22%20r%3D%221.2%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22254.1%22%20cy%3D%2233.5%22%20r%3D%221.4%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22118.8%22%20cy%3D%2267.5%22%20r%3D%221.3%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
[data-theme="light"] body[data-bg="b"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231a2230%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2066.7%20L%2088.9%2057.4%20L%20133.3%2067.8%20L%20177.8%2076.8%20L%20222.2%2080.7%20L%20266.7%2076.2%20L%20311.1%2053.3%20L%20355.6%2065.7%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2085.0%20L%2072.7%20110.0%20L%20109.1%2097.4%20L%20145.5%2095.5%20L%20181.8%2069.9%20L%20218.2%2077.2%20L%20254.5%2093.6%20L%20290.9%20107.6%20L%20327.3%2091.5%20L%20363.6%2073.2%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20128.0%20L%2061.5%20119.4%20L%2092.3%20122.1%20L%20123.1%20128.1%20L%20153.8%20131.8%20L%20184.6%2098.0%20L%20215.4%20108.9%20L%20246.2%20123.4%20L%20276.9%20122.8%20L%20307.7%2089.3%20L%20338.5%20122.8%20L%20369.2%20125.0%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20155.8%20L%2053.3%20155.7%20L%2080.0%20141.8%20L%20106.7%20159.9%20L%20133.3%20119.1%20L%20160.0%20119.9%20L%20186.7%20135.8%20L%20213.3%20116.8%20L%20240.0%20168.9%20L%20266.7%20124.7%20L%20293.3%20107.2%20L%20320.0%20153.9%20L%20346.7%20104.2%20L%20373.3%20147.8%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20164.2%20L%2047.1%20141.8%20L%2070.6%20164.3%20L%2094.1%20134.4%20L%20117.6%20158.8%20L%20141.2%20175.0%20L%20164.7%20163.0%20L%20188.2%20141.2%20L%20211.8%20174.3%20L%20235.3%20157.2%20L%20258.8%20163.9%20L%20282.4%20177.4%20L%20305.9%20140.6%20L%20329.4%20147.0%20L%20352.9%20202.9%20L%20376.5%20173.5%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%2223.1%22%20cy%3D%2241.4%22%20r%3D%221.4%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22323.1%22%20cy%3D%2282.7%22%20r%3D%221.6%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2286.6%22%20cy%3D%2238.2%22%20r%3D%221.2%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22254.1%22%20cy%3D%2233.5%22%20r%3D%221.4%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22118.8%22%20cy%3D%2267.5%22%20r%3D%221.3%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body[data-bg="c"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2073.3%20L%2088.9%2069.4%20L%20133.3%2068.2%20L%20177.8%2082.2%20L%20222.2%2079.6%20L%20266.7%2081.2%20L%20311.1%2070.6%20L%20355.6%2061.4%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2082.5%20L%2072.7%2078.5%20L%20109.1%2068.1%20L%20145.5%2074.6%20L%20181.8%2076.6%20L%20218.2%20106.9%20L%20254.5%20100.7%20L%20290.9%2071.0%20L%20327.3%2094.6%20L%20363.6%20106.5%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20130.3%20L%2061.5%20133.7%20L%2092.3%20103.7%20L%20123.1%20136.5%20L%20153.8%20131.3%20L%20184.6%20105.4%20L%20215.4%2096.4%20L%20246.2%20106.4%20L%20276.9%20117.4%20L%20307.7%20113.0%20L%20338.5%2094.9%20L%20369.2%20123.3%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20133.6%20L%2053.3%20125.4%20L%2080.0%20147.6%20L%20106.7%20157.3%20L%20133.3%20120.4%20L%20160.0%20162.6%20L%20186.7%20107.9%20L%20213.3%20163.3%20L%20240.0%20148.9%20L%20266.7%20134.1%20L%20293.3%20123.0%20L%20320.0%20132.8%20L%20346.7%20124.0%20L%20373.3%20136.6%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20181.8%20L%2047.1%20193.2%20L%2070.6%20183.5%20L%2094.1%20137.5%20L%20117.6%20141.6%20L%20141.2%20165.5%20L%20164.7%20157.8%20L%20188.2%20133.3%20L%20211.8%20143.0%20L%20235.3%20190.2%20L%20258.8%20173.5%20L%20282.4%20188.1%20L%20305.9%20179.8%20L%20329.4%20144.8%20L%20352.9%20190.0%20L%20376.5%20176.4%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22109.6%22%20cy%3D%2257.0%22%20r%3D%221.3%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22272.4%22%20cy%3D%2247.5%22%20r%3D%220.8%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22278.1%22%20cy%3D%2236.9%22%20r%3D%221.3%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2284.9%22%20cy%3D%2234.1%22%20r%3D%221.4%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22330.8%22%20cy%3D%2257.1%22%20r%3D%221.1%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
[data-theme="light"] body[data-bg="c"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231a2230%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2073.3%20L%2088.9%2069.4%20L%20133.3%2068.2%20L%20177.8%2082.2%20L%20222.2%2079.6%20L%20266.7%2081.2%20L%20311.1%2070.6%20L%20355.6%2061.4%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2082.5%20L%2072.7%2078.5%20L%20109.1%2068.1%20L%20145.5%2074.6%20L%20181.8%2076.6%20L%20218.2%20106.9%20L%20254.5%20100.7%20L%20290.9%2071.0%20L%20327.3%2094.6%20L%20363.6%20106.5%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20130.3%20L%2061.5%20133.7%20L%2092.3%20103.7%20L%20123.1%20136.5%20L%20153.8%20131.3%20L%20184.6%20105.4%20L%20215.4%2096.4%20L%20246.2%20106.4%20L%20276.9%20117.4%20L%20307.7%20113.0%20L%20338.5%2094.9%20L%20369.2%20123.3%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20133.6%20L%2053.3%20125.4%20L%2080.0%20147.6%20L%20106.7%20157.3%20L%20133.3%20120.4%20L%20160.0%20162.6%20L%20186.7%20107.9%20L%20213.3%20163.3%20L%20240.0%20148.9%20L%20266.7%20134.1%20L%20293.3%20123.0%20L%20320.0%20132.8%20L%20346.7%20124.0%20L%20373.3%20136.6%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20181.8%20L%2047.1%20193.2%20L%2070.6%20183.5%20L%2094.1%20137.5%20L%20117.6%20141.6%20L%20141.2%20165.5%20L%20164.7%20157.8%20L%20188.2%20133.3%20L%20211.8%20143.0%20L%20235.3%20190.2%20L%20258.8%20173.5%20L%20282.4%20188.1%20L%20305.9%20179.8%20L%20329.4%20144.8%20L%20352.9%20190.0%20L%20376.5%20176.4%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22109.6%22%20cy%3D%2257.0%22%20r%3D%221.3%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22272.4%22%20cy%3D%2247.5%22%20r%3D%220.8%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22278.1%22%20cy%3D%2236.9%22%20r%3D%221.3%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2284.9%22%20cy%3D%2234.1%22%20r%3D%221.4%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22330.8%22%20cy%3D%2257.1%22%20r%3D%221.1%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body[data-bg="d"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2069.2%20L%2088.9%2057.5%20L%20133.3%2084.2%20L%20177.8%2079.1%20L%20222.2%2083.4%20L%20266.7%2060.7%20L%20311.1%2081.2%20L%20355.6%2057.0%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2092.3%20L%2072.7%2099.1%20L%20109.1%20115.2%20L%20145.5%2085.8%20L%20181.8%2073.5%20L%20218.2%2079.2%20L%20254.5%20108.3%20L%20290.9%2094.9%20L%20327.3%20108.2%20L%20363.6%20102.7%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20112.0%20L%2061.5%2094.4%20L%2092.3%20110.9%20L%20123.1%20121.2%20L%20153.8%2085.8%20L%20184.6%20104.8%20L%20215.4%20106.1%20L%20246.2%20126.5%20L%20276.9%20115.8%20L%20307.7%20102.7%20L%20338.5%20126.0%20L%20369.2%20105.7%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20160.2%20L%2053.3%20150.7%20L%2080.0%20157.6%20L%20106.7%20138.7%20L%20133.3%20114.0%20L%20160.0%20132.7%20L%20186.7%20114.2%20L%20213.3%20139.2%20L%20240.0%20124.3%20L%20266.7%20137.9%20L%20293.3%20127.3%20L%20320.0%20151.6%20L%20346.7%20129.6%20L%20373.3%20106.0%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20197.5%20L%2047.1%20135.0%20L%2070.6%20137.0%20L%2094.1%20166.8%20L%20117.6%20175.0%20L%20141.2%20176.5%20L%20164.7%20162.1%20L%20188.2%20187.0%20L%20211.8%20179.6%20L%20235.3%20199.0%20L%20258.8%20145.4%20L%20282.4%20179.9%20L%20305.9%20164.0%20L%20329.4%20142.2%20L%20352.9%20149.8%20L%20376.5%20133.6%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22131.2%22%20cy%3D%2220.9%22%20r%3D%221.2%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22330.1%22%20cy%3D%2272.0%22%20r%3D%221.3%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22179.1%22%20cy%3D%2241.8%22%20r%3D%220.9%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22228.7%22%20cy%3D%2235.3%22%20r%3D%221.2%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22277.2%22%20cy%3D%2280.9%22%20r%3D%220.9%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
[data-theme="light"] body[data-bg="d"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231a2230%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2069.2%20L%2088.9%2057.5%20L%20133.3%2084.2%20L%20177.8%2079.1%20L%20222.2%2083.4%20L%20266.7%2060.7%20L%20311.1%2081.2%20L%20355.6%2057.0%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2092.3%20L%2072.7%2099.1%20L%20109.1%20115.2%20L%20145.5%2085.8%20L%20181.8%2073.5%20L%20218.2%2079.2%20L%20254.5%20108.3%20L%20290.9%2094.9%20L%20327.3%20108.2%20L%20363.6%20102.7%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20112.0%20L%2061.5%2094.4%20L%2092.3%20110.9%20L%20123.1%20121.2%20L%20153.8%2085.8%20L%20184.6%20104.8%20L%20215.4%20106.1%20L%20246.2%20126.5%20L%20276.9%20115.8%20L%20307.7%20102.7%20L%20338.5%20126.0%20L%20369.2%20105.7%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20160.2%20L%2053.3%20150.7%20L%2080.0%20157.6%20L%20106.7%20138.7%20L%20133.3%20114.0%20L%20160.0%20132.7%20L%20186.7%20114.2%20L%20213.3%20139.2%20L%20240.0%20124.3%20L%20266.7%20137.9%20L%20293.3%20127.3%20L%20320.0%20151.6%20L%20346.7%20129.6%20L%20373.3%20106.0%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20197.5%20L%2047.1%20135.0%20L%2070.6%20137.0%20L%2094.1%20166.8%20L%20117.6%20175.0%20L%20141.2%20176.5%20L%20164.7%20162.1%20L%20188.2%20187.0%20L%20211.8%20179.6%20L%20235.3%20199.0%20L%20258.8%20145.4%20L%20282.4%20179.9%20L%20305.9%20164.0%20L%20329.4%20142.2%20L%20352.9%20149.8%20L%20376.5%20133.6%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22131.2%22%20cy%3D%2220.9%22%20r%3D%221.2%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22330.1%22%20cy%3D%2272.0%22%20r%3D%221.3%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22179.1%22%20cy%3D%2241.8%22%20r%3D%220.9%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22228.7%22%20cy%3D%2235.3%22%20r%3D%221.2%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22277.2%22%20cy%3D%2280.9%22%20r%3D%220.9%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body[data-bg="e"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2069.5%20L%2088.9%2059.1%20L%20133.3%2070.8%20L%20177.8%2061.2%20L%20222.2%2085.2%20L%20266.7%2077.1%20L%20311.1%2078.3%20L%20355.6%2061.1%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%20107.3%20L%2072.7%2065.1%20L%20109.1%2070.9%20L%20145.5%2098.3%20L%20181.8%2099.9%20L%20218.2%20111.1%20L%20254.5%2083.8%20L%20290.9%20102.8%20L%20327.3%2079.2%20L%20363.6%2065.3%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20118.8%20L%2061.5%20105.3%20L%2092.3%20102.8%20L%20123.1%20119.9%20L%20153.8%2092.8%20L%20184.6%20115.2%20L%20215.4%2093.2%20L%20246.2%20110.3%20L%20276.9%2093.1%20L%20307.7%2091.0%20L%20338.5%2093.7%20L%20369.2%2095.4%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20154.7%20L%2053.3%20121.4%20L%2080.0%20119.0%20L%20106.7%20123.6%20L%20133.3%20114.9%20L%20160.0%20129.6%20L%20186.7%20146.5%20L%20213.3%20157.9%20L%20240.0%20115.5%20L%20266.7%20109.5%20L%20293.3%20131.7%20L%20320.0%20142.7%20L%20346.7%20150.2%20L%20373.3%20128.6%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20172.0%20L%2047.1%20164.1%20L%2070.6%20156.6%20L%2094.1%20161.4%20L%20117.6%20161.0%20L%20141.2%20154.9%20L%20164.7%20164.0%20L%20188.2%20200.2%20L%20211.8%20159.8%20L%20235.3%20188.2%20L%20258.8%20152.5%20L%20282.4%20176.2%20L%20305.9%20152.8%20L%20329.4%20164.2%20L%20352.9%20139.3%20L%20376.5%20165.1%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22203.2%22%20cy%3D%2220.5%22%20r%3D%220.9%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22252.3%22%20cy%3D%2285.1%22%20r%3D%221.5%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22224.4%22%20cy%3D%2229.8%22%20r%3D%220.9%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2254.2%22%20cy%3D%2249.8%22%20r%3D%220.9%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22263.5%22%20cy%3D%2243.5%22%20r%3D%221.3%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
[data-theme="light"] body[data-bg="e"]{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%231a2230%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2069.5%20L%2088.9%2059.1%20L%20133.3%2070.8%20L%20177.8%2061.2%20L%20222.2%2085.2%20L%20266.7%2077.1%20L%20311.1%2078.3%20L%20355.6%2061.1%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%20107.3%20L%2072.7%2065.1%20L%20109.1%2070.9%20L%20145.5%2098.3%20L%20181.8%2099.9%20L%20218.2%20111.1%20L%20254.5%2083.8%20L%20290.9%20102.8%20L%20327.3%2079.2%20L%20363.6%2065.3%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20118.8%20L%2061.5%20105.3%20L%2092.3%20102.8%20L%20123.1%20119.9%20L%20153.8%2092.8%20L%20184.6%20115.2%20L%20215.4%2093.2%20L%20246.2%20110.3%20L%20276.9%2093.1%20L%20307.7%2091.0%20L%20338.5%2093.7%20L%20369.2%2095.4%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20154.7%20L%2053.3%20121.4%20L%2080.0%20119.0%20L%20106.7%20123.6%20L%20133.3%20114.9%20L%20160.0%20129.6%20L%20186.7%20146.5%20L%20213.3%20157.9%20L%20240.0%20115.5%20L%20266.7%20109.5%20L%20293.3%20131.7%20L%20320.0%20142.7%20L%20346.7%20150.2%20L%20373.3%20128.6%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20172.0%20L%2047.1%20164.1%20L%2070.6%20156.6%20L%2094.1%20161.4%20L%20117.6%20161.0%20L%20141.2%20154.9%20L%20164.7%20164.0%20L%20188.2%20200.2%20L%20211.8%20159.8%20L%20235.3%20188.2%20L%20258.8%20152.5%20L%20282.4%20176.2%20L%20305.9%20152.8%20L%20329.4%20164.2%20L%20352.9%20139.3%20L%20376.5%20165.1%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22203.2%22%20cy%3D%2220.5%22%20r%3D%220.9%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22252.3%22%20cy%3D%2285.1%22%20r%3D%221.5%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22224.4%22%20cy%3D%2229.8%22%20r%3D%220.9%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2254.2%22%20cy%3D%2249.8%22%20r%3D%220.9%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22263.5%22%20cy%3D%2243.5%22%20r%3D%221.3%22%20fill%3D%22%231a2230%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body{ --kh-pat:url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%22400%22%20height%3D%22260%22%20viewBox%3D%220%200%20400%20260%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23e5c37a%22%20stroke-width%3D%221.2%22%20stroke-linejoin%3D%22round%22%20stroke-linecap%3D%22round%22%3E%3Cpath%20d%3D%22M%200.0%20100%20L%2044.4%2071.6%20L%2088.9%2056.9%20L%20133.3%2070.3%20L%20177.8%2079.0%20L%20222.2%2068.8%20L%20266.7%2079.5%20L%20311.1%2084.7%20L%20355.6%2059.4%20L%20400.0%20100%22%20stroke-opacity%3D%220.32%22/%3E%3Cpath%20d%3D%22M%200.0%20130%20L%2036.4%2092.7%20L%2072.7%2078.0%20L%20109.1%20106.8%20L%20145.5%20102.7%20L%20181.8%2083.5%20L%20218.2%2089.5%20L%20254.5%20102.5%20L%20290.9%20108.4%20L%20327.3%20111.2%20L%20363.6%20108.7%20L%20400.0%20130%22%20stroke-opacity%3D%220.45%22/%3E%3Cpath%20d%3D%22M%200.0%20160%20L%2030.8%20125.6%20L%2061.5%20108.4%20L%2092.3%20121.8%20L%20123.1%20123.5%20L%20153.8%2094.5%20L%20184.6%20105.4%20L%20215.4%20119.9%20L%20246.2%2097.3%20L%20276.9%20130.5%20L%20307.7%20133.9%20L%20338.5%20101.8%20L%20369.2%20100.0%20L%20400.0%20160%22%20stroke-opacity%3D%220.6%22/%3E%3Cpath%20d%3D%22M%200.0%20195%20L%2026.7%20163.0%20L%2053.3%20137.2%20L%2080.0%20145.9%20L%20106.7%20127.5%20L%20133.3%20151.8%20L%20160.0%20148.3%20L%20186.7%20153.7%20L%20213.3%20112.9%20L%20240.0%20156.3%20L%20266.7%20124.0%20L%20293.3%20137.7%20L%20320.0%20158.9%20L%20346.7%20155.5%20L%20373.3%20155.3%20L%20400.0%20195%22%20stroke-opacity%3D%220.78%22/%3E%3Cpath%20d%3D%22M%200.0%20230%20L%2023.5%20127.4%20L%2047.1%20144.5%20L%2070.6%20126.2%20L%2094.1%20146.1%20L%20117.6%20153.8%20L%20141.2%20178.7%20L%20164.7%20148.6%20L%20188.2%20175.1%20L%20211.8%20151.3%20L%20235.3%20142.0%20L%20258.8%20139.9%20L%20282.4%20181.6%20L%20305.9%20162.4%20L%20329.4%20159.1%20L%20352.9%20170.2%20L%20376.5%20155.0%20L%20400.0%20230%22%20stroke-opacity%3D%221.0%22/%3E%3C/g%3E%3Ccircle%20cx%3D%22117.7%22%20cy%3D%2257.9%22%20r%3D%221.4%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22365.1%22%20cy%3D%2245.8%22%20r%3D%221.2%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22154.9%22%20cy%3D%2258.5%22%20r%3D%221.5%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%22377.4%22%20cy%3D%2285.0%22%20r%3D%221.6%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3Ccircle%20cx%3D%2239.6%22%20cy%3D%2236.9%22%20r%3D%221.6%22%20fill%3D%22%23e5c37a%22%20fill-opacity%3D%220.5%22/%3E%3C/svg%3E"); }
body::before{ content:""; position:fixed; inset:0; z-index:-1; pointer-events:none;
  background-image:var(--kh-pat); background-repeat:repeat; background-size:340px auto; opacity:var(--kh-pat-op); }
#kh-bg{ position:fixed; left:0; right:0; bottom:6vh; height:36vh; width:100%; z-index:-1; pointer-events:none; opacity:.85; }
#kh-bg svg{ width:100%; height:100%; }
#kh-bg .kh-ridge{ fill:none; stroke:var(--kh-line); stroke-opacity:.5; stroke-width:1.3; stroke-linejoin:round; }
#kh-bg .kh-ridge2{ fill:none; stroke:var(--kh-line); stroke-opacity:.3; stroke-width:1.1; stroke-linejoin:round; }
#kh-bg .kh-dot{ fill:var(--kh-dot); }

/* Package price amount (shown when "Show price" is enabled in admin) */
.pkg-price-amt{ font-family:'Fraunces',serif; font-size:22px; font-weight:600; color:var(--gold); line-height:1; }
.pkg-modal-amt{ font-family:'Fraunces',serif; font-size:24px; font-weight:600; color:var(--gold); line-height:1; display:block; }

/* ==================================================================
   KHREGO-SMOOTHNESS-PATCH — perf hints, smoother reveals, footer socials
================================================================== */
/* Make the splash transition + reveal cheaper to animate */
.reveal { transform: translate3d(0, 28px, 0); transition: opacity .55s var(--ease), transform .65s var(--ease); will-change: opacity, transform; }
.reveal.shown { transform: translate3d(0, 0, 0); }
/* GPU-promote hover-zoom images so the transition doesn't repaint a huge area */
.gallery-item img, .blog-img img, .pkg-image img, .exp-cell { will-change: transform; }
/* Smoother loader fade-out */
#khrego-loader { transition: opacity .35s var(--ease), visibility .35s var(--ease); }
#khrego-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
/* Respect users who prefer reduced motion — keep content visible */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Footer + direct-contact buttons */
.footer-socials { display: flex; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.footer-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 999px;
  border: 1px solid var(--border); color: var(--text-soft);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.footer-socials a:hover, .footer-socials a:focus-visible {
  background: var(--gold); border-color: var(--gold); color: var(--bg);
  transform: translateY(-2px); outline: none;
}
.footer-socials svg { width: 16px; height: 16px; }

/* Direct-contact button row (contact page) */
.contact-direct { display: grid; gap: 12px; grid-template-columns: 1fr; margin: 18px 0 28px; }
@media (min-width: 720px) { .contact-direct { grid-template-columns: repeat(3, 1fr); } }
.contact-direct .cd-btn {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border: 1px solid var(--border); border-radius: 14px;
  background: var(--bg-2); color: var(--text); text-decoration: none;
  transition: border-color .25s var(--ease), transform .25s var(--ease), background .25s var(--ease);
}
.contact-direct .cd-btn:hover, .contact-direct .cd-btn:focus-visible {
  border-color: var(--gold); background: var(--bg); transform: translateY(-2px); outline: none;
}
.contact-direct .cd-ico {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: var(--bg); color: var(--gold); border: 1px solid var(--border); flex-shrink: 0;
}
.contact-direct .cd-ico svg { width: 18px; height: 18px; }
.contact-direct .cd-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--text-faint); }
.contact-direct .cd-value { font-size: 15px; font-weight: 600; margin-top: 2px; word-break: break-all; }
.cd-btn--wa .cd-ico { background: #25D366; color: #fff; border-color: #25D366; }

/* ==================================================================
   KHREGO-TEAM-FILTER-PATCH — pill tabs, dept headings, smooth filter
================================================================== */
.team-filter {
  display: flex; gap: 10px; flex-wrap: wrap;
  position: sticky; top: 76px; z-index: 30;
  padding: 14px 0; margin: 0 0 30px;
  background: var(--bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.team-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--border); border-radius: 100px;
  background: var(--bg-2); color: var(--text-soft);
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), transform .15s var(--ease);
}
.team-pill:hover, .team-pill:focus-visible {
  border-color: var(--gold); color: var(--text);
  background: var(--bg); outline: none;
  transform: translateY(-1px);
}
.team-pill.active {
  border-color: var(--gold); background: var(--gold); color: var(--bg);
  font-weight: 700;
}
.team-pill-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 22px; height: 22px; padding: 0 7px;
  background: rgba(255,255,255,.15); border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0;
}
.team-pill:not(.active) .team-pill-count {
  background: var(--bg); color: var(--text-faint);
}

.team-dept-section { margin: 0 0 60px; scroll-margin-top: 140px; }
.team-dept-section:last-child { margin-bottom: 20px; }

.team-dept-head {
  display: flex; flex-direction: column; gap: 6px;
  margin: 0 0 24px; padding: 0 0 16px;
  border-bottom: 1px solid var(--border);
}
.team-dept-tag {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-size: 28px; font-weight: 600; color: var(--text);
  letter-spacing: -.01em;
}
.team-dept-blurb {
  font-size: 14px; color: var(--text-soft); margin: 0;
  max-width: 640px; line-height: 1.55;
}

.team-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

@media (max-width: 600px) {
  .team-filter { top: 64px; padding: 10px 0; gap: 6px; }
  .team-pill { padding: 8px 14px; font-size: 11px; }
  .team-dept-tag { font-size: 22px; }
}

/* ==================================================================
   KHREGO-P14-CARD-PATCH — Project 14×8000 showcase card
================================================================== */
.p14-card {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px;
  padding: 40px; margin: 0 0 40px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--gold); border-radius: 18px;
  position: relative; overflow: hidden;
}
.p14-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 100% 0%, rgba(201,162,74,.18), transparent 70%);
  pointer-events: none;
}
@media (max-width: 800px) { .p14-card { grid-template-columns: 1fr; padding: 28px; gap: 30px; } }

.p14-tag {
  display: inline-block; padding: 6px 14px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold); border-radius: 100px;
  margin-bottom: 18px;
}
.p14-title {
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-size: 36px; line-height: 1.1; margin: 0 0 18px; color: var(--text);
  letter-spacing: -.01em;
}
.p14-title em { color: var(--gold); font-style: italic; }
.p14-lead {
  font-size: 15px; line-height: 1.65; color: var(--text-soft); margin: 0 0 26px;
}
.p14-card .btn { position: relative; z-index: 1; }

.p14-peaks h4 {
  font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 16px; font-weight: 600;
}
.p14-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 18px;
}
@media (max-width: 500px) { .p14-list { grid-template-columns: 1fr; } }
.p14-list li {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4px 12px; padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 13px;
}
.p14-name { font-weight: 600; color: var(--text); }
.p14-alt  { color: var(--gold); font-weight: 700; font-variant-numeric: tabular-nums; }
.p14-c    { grid-column: 1 / -1; font-size: 11px; color: var(--text-faint); letter-spacing: .05em; }

/* Inside a grouped trek/expedition section: use auto-fit so a single card
   in a small category stretches to fill its row instead of looking narrow. */
.team-dept-section .packages-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
@media (min-width: 1200px) {
  .team-dept-section .packages-grid { grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); }
}

/* ==================================================================
   KHREGO-TEAM-POPUP-PATCH — compact card + modal popup
================================================================== */
.team-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

/* The compact team card (photo + name; role shows on hover) */
.tm-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 14px 18px;
  cursor: pointer; text-align: center;
  transition: transform .35s var(--ease), border-color .35s var(--ease),
              background .35s var(--ease), box-shadow .35s var(--ease),
              padding .5s var(--ease);
  will-change: transform;
}
.tm-card::after {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: radial-gradient(80% 60% at 50% 0%, rgba(201,162,74,.18), transparent 70%);
  opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.tm-card:hover, .tm-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: 0 18px 40px -16px rgba(201,162,74,.35);
  padding-top: 32px;
  outline: none;
}
.tm-card:hover::after, .tm-card:focus-visible::after { opacity: 1; }

.tm-avatar {
  position: relative;
  width: 100px; height: 100px;
  margin: 0 auto 14px;
  border-radius: 999px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,.5);
  transition: width .5s var(--ease), height .5s var(--ease),
              margin .5s var(--ease), border-color .35s var(--ease),
              transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tm-card:hover .tm-avatar, .tm-card:focus-visible .tm-avatar {
  width: 138px; height: 138px;
  margin-bottom: 18px; margin-top: -10px;
  border-color: var(--gold);
  border-width: 3px;
  box-shadow: 0 18px 36px -10px rgba(201,162,74,.55);
}
.tm-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease); }
.tm-card:hover .tm-avatar img, .tm-card:focus-visible .tm-avatar img { transform: scale(1.12); }

.tm-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.3; }
.tm-role {
  display: block; max-height: 0; opacity: 0; overflow: hidden;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold);
  transition: max-height .4s var(--ease), opacity .35s var(--ease), margin .35s var(--ease);
}
.tm-card:hover .tm-role, .tm-card:focus-visible .tm-role { max-height: 30px; opacity: 1; margin-top: 6px; }

.tm-hint {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.tm-card:hover .tm-hint, .tm-card:focus-visible .tm-hint {
  opacity: 1; transform: scale(1); background: var(--gold); border-color: var(--gold);
}
.tm-hint svg { width: 12px; height: 12px; color: var(--bg); }

/* ---------- The modal popup ---------- */
.tm-modal-back {
  position: fixed; inset: 0;
  background: rgba(8, 11, 16, 0.7);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
  z-index: 1000;
}
.tm-modal-back.open { opacity: 1; visibility: visible; }
.tm-modal-card {
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--gold);
  border-radius: 22px;
  width: 100%; max-width: 720px;
  max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  transform: translateY(20px) scale(.96);
  transition: transform .5s var(--ease), opacity .35s var(--ease);
  opacity: 0; position: relative;
}
.tm-modal-back.open .tm-modal-card { transform: translateY(0) scale(1); opacity: 1; }
@media (max-width: 680px) {
  .tm-modal-card { grid-template-columns: 1fr; max-height: 92vh; border-radius: 18px; }
}
.tm-modal-photo {
  position: relative; overflow: hidden;
  border-top-left-radius: 22px; border-bottom-left-radius: 22px;
  min-height: 340px;
}
@media (max-width: 680px) {
  .tm-modal-photo { min-height: 280px; border-bottom-left-radius: 0; border-top-right-radius: 18px; }
}
.tm-modal-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-modal-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,17,24,.85) 100%);
}
.tm-dept-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 2;
  padding: 6px 12px; background: var(--gold); color: var(--bg);
  border-radius: 100px;
  font-size: 10px; font-weight: 700; letter-spacing: .25em; text-transform: uppercase;
}
.tm-modal-body { padding: 38px 36px 34px; display: flex; flex-direction: column; gap: 14px; }
@media (max-width: 680px) { .tm-modal-body { padding: 26px 24px; } }
.tm-modal-name { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 36px; font-weight: 600; line-height: 1.05; letter-spacing: -.01em; color: var(--text); }
@media (max-width: 680px) { .tm-modal-name { font-size: 28px; } }
.tm-modal-role { display: inline-block; font-size: 12px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); }
.tm-modal-rule { width: 38px; height: 2px; background: var(--gold); margin: 4px 0 8px; }
.tm-modal-bio  { font-size: 15px; line-height: 1.7; color: var(--text-soft); }
.tm-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(0,0,0,.55); color: #fff; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.tm-modal-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(90deg); }

/* KHREGO-VILLAGE-STAY-PATCH — "what you learn" bullets on village cards */
.vs-learn { margin: 12px 0 14px; padding-top: 12px; border-top: 1px dashed var(--border); }
.vs-learn-h { font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; }
.vs-learn ul { list-style: none; padding: 0; margin: 0; }
.vs-learn li {
  position: relative; padding-left: 16px; font-size: 13px; line-height: 1.6; color: var(--text-soft); margin-bottom: 2px;
}
.vs-learn li::before {
  content: '•'; position: absolute; left: 0; color: var(--gold); font-weight: 700;
}

/* ==================================================================
   KHREGO-NAV-DROPDOWN — submenu under Treks + Expeditions in top nav
================================================================== */
.quick-nav .nav-with-drop {
  position: relative;
  display: inline-flex; align-items: center;
}
.quick-nav .nav-with-drop > .quick-nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  /* inherit existing .quick-nav a styling — these are anchors too */
}
.quick-nav .nav-with-drop > .quick-nav-link .nav-caret {
  transition: transform .3s var(--ease);
  opacity: .7;
}
.quick-nav .nav-with-drop:hover > .quick-nav-link .nav-caret,
.quick-nav .nav-with-drop:focus-within > .quick-nav-link .nav-caret {
  transform: rotate(180deg); opacity: 1;
}

.nav-drop {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(14px);
  min-width: 360px; max-width: 420px;
  padding: 10px 0 8px;
  background: rgba(14, 28, 46, 0.94);                                       /* deep navy with slight translucency */
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 14px;
  box-shadow:
    0 30px 60px -18px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 162, 74, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .35s var(--ease), visibility .28s;
  z-index: 100;
  overflow: hidden;
}
/* Top gold accent bar — subtle gradient that fades to nothing at the edges */
.nav-drop::before {
  content: '';
  position: absolute; top: 0; left: 14%; right: 14%; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.85;
  pointer-events: none;
}
/* Tiny triangle pointer that visually connects the menu to its trigger */
.nav-drop::after {
  content: '';
  position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: rgba(14, 28, 46, 0.94);
  border-left: 1px solid rgba(201, 162, 74, 0.32);
  border-top:  1px solid rgba(201, 162, 74, 0.32);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
/* Hover bridge so the gap between trigger and menu doesn't break hover */
.nav-with-drop::after {
  content: '';
  position: absolute; bottom: -18px; left: 0; right: 0; height: 22px;
}
.nav-with-drop:hover .nav-drop,
.nav-with-drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-drop-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 22px;
  text-decoration: none;
  position: relative;
  transition: background .2s var(--ease), padding .2s var(--ease);
}
/* Left gold rail revealed on hover — slides in from 0 to 3px without shifting the text */
.nav-drop-item::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 0;
  background: var(--gold);
  border-radius: 0 2px 2px 0;
  transition: width .2s var(--ease);
}
.nav-drop-item:hover, .nav-drop-item:focus-visible {
  background: rgba(201, 162, 74, 0.07);
  outline: none;
}
.nav-drop-item:hover::before, .nav-drop-item:focus-visible::before { width: 3px; }

/* Tiny chevron at the far right that nudges on hover */
.nav-drop-item-arrow {
  margin-left: auto;
  display: inline-flex; align-items: center;
  color: rgba(243, 234, 216, 0.35);
  transition: color .2s, transform .25s var(--ease);
  flex-shrink: 0;
}
.nav-drop-item:hover .nav-drop-item-arrow,
.nav-drop-item:focus-visible .nav-drop-item-arrow {
  color: var(--gold);
  transform: translateX(3px);
}
.nav-drop-item-arrow svg { width: 14px; height: 14px; }

.nav-drop-label {
  display: block;
  font-family: var(--serif, 'Fraunces', Georgia, serif);
  font-size: 16px; font-weight: 500; line-height: 1.25;
  color: #f3ead8;
  letter-spacing: -.005em;
  transition: color .2s;
}
.nav-drop-item:hover .nav-drop-label,
.nav-drop-item:focus-visible .nav-drop-label { color: var(--gold); }
.nav-drop-blurb {
  display: block;
  margin-top: 3px;
  font-size: 12.5px; line-height: 1.5;
  color: rgba(243, 234, 216, 0.55);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.nav-drop-item-body { flex: 1; min-width: 0; }

/* Subtle divider between items so the menu reads as a tidy list */
.nav-drop-item + .nav-drop-item {
  border-top: 1px solid rgba(201, 162, 74, 0.10);
}

/* Mobile: dropdown hidden — the slide-out menu carries these links instead */
@media (max-width: 980px) {
  .quick-nav .nav-with-drop .nav-drop { display: none; }
  .quick-nav .nav-with-drop > .quick-nav-link .nav-caret { display: none; }
}

/* ==================================================================
   KHREGO-READINESS-PATCH — readiness panel + quiz + team creds + deposit
================================================================== */
/* "Are you ready?" panel inside the package modal */
.ready-panel {
  margin: 30px 0 24px;
  padding: 24px;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid rgba(201,162,74,.4);
  border-radius: 14px;
}
.ready-head { display: flex; flex-direction: column; gap: 4px; margin-bottom: 18px; }
.ready-tag { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.ready-title { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 22px; line-height: 1.2; color: var(--text); margin: 0; }
.ready-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px 22px; margin-bottom: 14px; }
.ready-stat { display: flex; flex-direction: column; gap: 2px; }
.ready-num { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 28px; font-weight: 600; color: var(--gold); line-height: 1; }
.ready-lbl { font-size: 11px; color: var(--text-soft); line-height: 1.4; }
.ready-notes { font-size: 14px; line-height: 1.6; color: var(--text-soft); margin: 14px 0 18px; padding-left: 14px; border-left: 2px solid var(--gold); }
.ready-quiz-cta { margin-top: 6px; }

/* Quiz modal */
.qz-back {
  position: fixed; inset: 0;
  background: rgba(8,11,16,.78); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
  z-index: 1100;
}
.qz-back.open { opacity: 1; visibility: visible; pointer-events: auto; }
.qz-card {
  position: relative;
  width: 100%; max-width: 580px; max-height: 90vh; overflow: auto;
  background: linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 100%);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 36px 38px 32px;
  transform: translateY(20px) scale(.96); opacity: 0;
  transition: transform .5s var(--ease), opacity .35s var(--ease);
}
.qz-back.open .qz-card { transform: translateY(0) scale(1); opacity: 1; }
@media (max-width: 580px) { .qz-card { padding: 26px 22px; border-radius: 16px; } }
.qz-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 999px;
  background: rgba(0,0,0,.5); color: #fff; border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.qz-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(90deg); }
.qz-progress { width: 100%; height: 3px; background: var(--border); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.qz-progress-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width .4s var(--ease); }
.qz-step { display: inline-block; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.qz-q { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 24px; line-height: 1.25; color: var(--text); margin: 0 0 22px; letter-spacing: -.005em; }
.qz-q em { color: var(--gold); font-style: italic; }
.qz-desc { font-size: 14px; color: var(--text-soft); line-height: 1.6; margin: 0 0 18px; }
.qz-opts { display: flex; flex-direction: column; gap: 10px; }
.qz-opt {
  text-align: left; padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  color: var(--text); font-size: 14px; cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .15s var(--ease);
}
.qz-opt:hover { border-color: var(--gold); background: var(--bg-2); transform: translateX(3px); }
.qz-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; gap: 14px; flex-wrap: wrap; }
.qz-back-btn { background: transparent; border: none; color: var(--text-soft); font-size: 13px; cursor: pointer; padding: 8px 0; transition: color .25s var(--ease); }
.qz-back-btn:hover { color: var(--gold); }
.qz-rec-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.qz-rec {
  display: grid; grid-template-columns: 90px 1fr; gap: 14px;
  padding: 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  text-decoration: none;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.qz-rec:hover { border-color: var(--gold); transform: translateY(-2px); }
.qz-rec-img { width: 90px; height: 90px; border-radius: 8px; background-size: cover; background-position: center; background-color: var(--bg-2); }
.qz-rec-tag { font-size: 11px; letter-spacing: .1em; color: var(--gold); margin-bottom: 4px; text-transform: uppercase; }
.qz-rec-name { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 16px; color: var(--text); margin: 0 0 4px; }
.qz-rec-desc { font-size: 12px; line-height: 1.5; color: var(--text-soft); margin: 0; }

/* Floating "Find your trek" button */
.quiz-fab {
  position: fixed; bottom: 24px; left: 24px; z-index: 90;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 999px;
  background: var(--gold); color: var(--bg);
  border: none; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; cursor: pointer;
  box-shadow: 0 8px 24px -6px rgba(201,162,74,.6);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.quiz-fab:hover, .quiz-fab:focus-visible { transform: translateY(-3px); box-shadow: 0 14px 30px -6px rgba(201,162,74,.7); outline: none; }
.quiz-fab svg { width: 16px; height: 16px; }
@media (max-width: 640px) { .quiz-fab { bottom: 84px; left: 16px; padding: 10px 16px; font-size: 11px; } .quiz-fab svg { width: 14px; height: 14px; } }

/* Team modal — structured credentials */
.tm-modal-creds { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); }
.tm-creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
@media (max-width: 540px) { .tm-creds-grid { grid-template-columns: 1fr; } }
.tm-cred-wide { grid-column: 1 / -1; }
.tm-cred-h { display: block; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.tm-cred-v { font-size: 13px; line-height: 1.5; color: var(--text); }
.tm-chip { display: inline-block; padding: 3px 10px; margin: 2px 4px 2px 0; background: rgba(201,162,74,.15); border: 1px solid rgba(201,162,74,.4); border-radius: 100px; font-size: 11px; color: var(--gold); font-weight: 600; letter-spacing: .03em; }
.tm-summit { display: inline-block; margin: 3px 10px 3px 0; font-size: 13px; color: var(--text-soft); }
.tm-summit strong { color: var(--gold); margin-right: 4px; }

/* Deposit button */
.btn-deposit {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #2e7d52 0%, #1b5c3a 100%);
  color: #fff; border-radius: 100px; text-decoration: none;
  font-size: 12px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  box-shadow: 0 8px 20px -8px rgba(46,125,82,.6);
}
.btn-deposit:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(46,125,82,.7); }
.btn-deposit svg { width: 14px; height: 14px; }

/* ==================================================================
   KHREGO-ECOSYS-PATCH — comparison engine + IG section + Mapbox UI
================================================================== */
/* Comparison engine inside package modal */
.cmp-panel {
  margin: 30px 0 24px; padding: 24px;
  background: var(--bg-2); border: 1px solid var(--border); border-radius: 14px;
}
.cmp-head { margin-bottom: 18px; }
.cmp-tag { display: inline-block; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.cmp-title { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 22px; line-height: 1.2; color: var(--text); margin: 0 0 6px; }
.cmp-sub { font-size: 13px; color: var(--text-soft); line-height: 1.55; margin: 0; }
.cmp-controls { display: grid; gap: 14px; margin-bottom: 22px; }
@media (min-width: 720px) { .cmp-controls { grid-template-columns: 1fr 1fr; } .cmp-row-tog { grid-column: 1 / -1; } }
.cmp-row { display: flex; flex-direction: column; gap: 6px; font-size: 12px; }
.cmp-row-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--text-faint); font-weight: 600; }
.cmp-row select { padding: 10px 12px; background: var(--bg); border: 1px solid var(--border); border-radius: 6px; color: var(--text); font-size: 14px; cursor: pointer; }
.cmp-row select:focus { border-color: var(--gold); outline: none; }
.cmp-row-tog { display: flex; flex-direction: row; align-items: center; gap: 10px; padding: 10px 14px; background: var(--bg); border: 1px solid var(--border); border-radius: 8px; cursor: pointer; }
.cmp-row-tog input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; }
.cmp-row-tog .cmp-row-label { margin: 0; flex: 1; }
.cmp-tog-note { font-size: 11px; color: var(--text-soft); letter-spacing: 0; text-transform: none; }
.cmp-result { padding-top: 18px; border-top: 1px solid var(--border); }
.cmp-result-line { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.cmp-result-lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-faint); }
.cmp-result-amt { font-family: var(--serif, 'Fraunces', Georgia, serif); font-size: 36px; font-weight: 600; color: var(--gold); line-height: 1; transition: color .25s var(--ease); }
.cmp-result-meta { display: flex; gap: 16px; font-size: 13px; color: var(--text-soft); flex-wrap: wrap; margin-top: 4px; }
.cmp-result-meta strong { color: var(--gold); }
.cmp-disclaimer { font-size: 11px; color: var(--text-faint); margin: 12px 0 0; line-height: 1.6; }

/* Instagram feed section */
.ig-section { margin: 60px 0; }
.ig-head { text-align: center; margin-bottom: 28px; }
.ig-sub { font-size: 14px; color: var(--text-soft); margin: 8px auto 0; max-width: 540px; }
.ig-embed { max-width: 100%; overflow: hidden; border-radius: 12px; }
.ig-embed iframe { display: block; max-width: 100%; }
.ig-empty { padding: 50px 30px; background: var(--bg-2); border: 1px dashed var(--border); border-radius: 12px; text-align: center; color: var(--text-soft); font-size: 14px; line-height: 1.6; }
.ig-foot { text-align: center; margin-top: 22px; }

/* Mapbox markers in the package modal */
.mb-marker {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--gold); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
  border: 2px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,.3);
  cursor: pointer; transition: transform .2s ease;
}
.mb-marker:hover { transform: scale(1.15); }
.mb-loading { padding: 40px; text-align: center; color: var(--text-soft); font-size: 13px; }
.mapboxgl-popup-content { font-family: var(--sans, 'Outfit', sans-serif) !important; color: var(--text); background: var(--bg-2); border: 1px solid var(--gold); border-radius: 8px !important; padding: 12px 14px !important; }
.mapboxgl-popup-tip { border-top-color: var(--gold) !important; }

/* ==================================================================
   KHREGO-THEME-POLISH — tightened palettes + theme-aware fixes
   for components added in the last few releases. Placed at the end
   so it wins specificity over earlier rules.
================================================================== */

/* --- Refined dark mode (slightly warmer, higher contrast) --- */
[data-theme="dark"], :root {
  --text-soft:  rgba(243,234,216,.82);   /* was .72 — easier to read */
  --text-faint: rgba(243,234,216,.55);   /* was .40 — was getting lost */
  --border:        rgba(201,162,74,.30);
  --border-strong: rgba(201,162,74,.55);
}

/* --- Refined light mode (warmer bg, deeper navy text, tuned gold) --- */
[data-theme="light"] {
  --bg:           #faf5e9;
  --bg-2:         #f1e7d2;
  --bg-3:         #e6d9bd;
  --card-bg:      #ffffff;
  --card-bg-soft: rgba(160,121,34,.06);
  --header-bg:    rgba(250,245,233,.94);
  --text:         #14202c;             /* deep ink-navy — strong contrast */
  --text-soft:    rgba(20,32,44,.78);
  --text-faint:   rgba(20,32,44,.58);
  --gold:         #966a18;              /* deeper gold so it reads on cream */
  --gold-hi:      #b88a2c;
  --gold-soft:    #765014;
  --border:       rgba(150,106,24,.32);
  --border-strong:rgba(150,106,24,.6);
  --slate:        #d4c5a3;
  --ink:          #ffffff;
}

/* Form fields: explicit colors so placeholder + value stay readable in both modes */
input, textarea, select { color: var(--text) !important; }
input::placeholder, textarea::placeholder { color: var(--text-faint) !important; opacity: 1; }
[data-theme="light"] input,
[data-theme="light"] textarea,
[data-theme="light"] select {
  background: rgba(255,255,255,.7);
  border-color: var(--border);
}
[data-theme="light"] select option { color: var(--text); background: var(--bg); }

/* Modals / panels added by recent patches — ensure clean theme behaviour */
.tm-modal-card,
.qz-card,
.cmp-panel,
.ready-panel,
.nav-drop,
.team-pill,
.nav-drop-item {
  color: var(--text);
}
.tm-modal-bio, .qz-desc, .cmp-sub, .ready-notes, .nav-drop-blurb {
  color: var(--text-soft);
}
.tm-modal-rule { background: var(--gold); }

/* Comparison panel + quiz buttons — ensure controls don't look dim in light mode */
[data-theme="light"] .cmp-row select,
[data-theme="light"] .qz-opt {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}
[data-theme="light"] .cmp-row-tog { background: #ffffff; border-color: var(--border); }

/* Quiz modal backdrop — lighten in light mode so it doesn't feel inky */
[data-theme="light"] .tm-modal-back,
[data-theme="light"] .qz-back { background: rgba(20,32,44,.55); }

/* Team popup avatar shadow — softer in light mode */
[data-theme="light"] .tm-avatar { box-shadow: 0 6px 18px -8px rgba(0,0,0,.15); }
[data-theme="light"] .tm-card:hover .tm-avatar { box-shadow: 0 18px 36px -10px rgba(150,106,24,.35); }

/* Filter pills — keep gold-on-active readable in light mode */
[data-theme="light"] .team-pill.active { color: #ffffff; }
[data-theme="light"] .team-pill.active .team-pill-count { background: rgba(255,255,255,.22); color: #ffffff; }

/* Nav dropdown — make sure the gold hover bg is visible in light mode */
[data-theme="light"] .nav-drop-item:hover, [data-theme="light"] .nav-drop-item:focus-visible {
  background: rgba(150,106,24,.08);
}
[data-theme="light"] .nav-drop {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(160, 121, 34, 0.32);
  box-shadow:
    0 30px 60px -18px rgba(20, 32, 44, 0.22),
    0 0 0 1px rgba(160, 121, 34, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
[data-theme="light"] .nav-drop::after {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(160, 121, 34, 0.32);
}
[data-theme="light"] .nav-drop-label { color: var(--text); }
[data-theme="light"] .nav-drop-blurb { color: rgba(26, 34, 48, 0.55); }
[data-theme="light"] .nav-drop-item + .nav-drop-item { border-top-color: rgba(160, 121, 34, 0.12); }

/* Ready panel + IG empty state borders */
[data-theme="light"] .ready-panel { background: linear-gradient(135deg, #fff8e9 0%, #f7eecb 100%); border-color: rgba(150,106,24,.4); }
[data-theme="light"] .ig-empty { background: #fff; border-color: var(--border); color: var(--text-soft); }

/* Footer + general text rescues — force theme-aware where hardcoded crept in */
.pkg-desc-short, .pkg-stat-lbl, .pkg-stat-val { color: var(--text); }
.pkg-desc-short { color: var(--text-soft); }

/* Theme-toggle button glow on hover for delight */
.theme-toggle {
  background: var(--card-bg-soft);
  border: 1px solid var(--border);
  color: var(--gold);
  transition: background .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--gold); background: rgba(201,162,74,.12); transform: rotate(20deg); }

/* Smooth body recolor when switching themes — covers all themed elements */
body, .pkg-card, .package-card, .tm-card, .cmp-panel, .ready-panel, .qz-card, .tm-modal-card, .nav-drop {
  transition: background .45s var(--ease), color .45s var(--ease), border-color .45s var(--ease);
}

/* Defensive: if a data-render container has any leftover layout class,
   reset it so the renderer-built filter bar + sections aren't squeezed. */
[data-render="treks-grid"],
[data-render="expeditions-grid"],
[data-render="village-stay-grid"],
[data-render="team-grid"] {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
/* data-render-reset */

/* ==================================================================
   KHREGO-TEACH-AND-LEARN — two-section page (Trek & Train + Village)
   ================================================================== */
.tl-section { padding: 64px 0; }
.tl-section .section-head { margin-bottom: 36px; }
.tl-teach { background: var(--bg); }
.tl-learn { background: var(--bg-soft, transparent); }

/* Divider between the Teach and Learn halves */
.tl-divider {
  text-align: center;
  padding: 18px 0 6px;
  color: var(--gold);
  letter-spacing: .35em;
  font-size: 14px;
  position: relative;
}
.tl-divider::before,
.tl-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: .45;
}
.tl-divider::before { left: 18%; }
.tl-divider::after  { right: 18%; transform: scaleX(-1); }
.tl-divider-glyph { display: inline-block; padding: 0 18px; background: var(--bg); position: relative; z-index: 1; }
@media (max-width: 720px) {
  .tl-divider::before { left: 6%; width: 28%; }
  .tl-divider::after  { right: 6%; width: 28%; }
}

/* ==================================================================
   KHREGO-HOME-VIDEO — showcase video with clickable trip-tag overlays
   ================================================================== */
.home-video { padding: 56px 0 32px; }
.home-video .section-head { margin-bottom: 28px; }

.khv-wrap {
  max-width: 1180px;
  margin: 0 auto;
}
.khv-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 50px -20px rgba(0,0,0,.45), 0 0 0 1px rgba(200,162,74,.18);
}
.khv-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
}

/* Tag layer sits ON TOP of the video. pointer-events: none on the
   container so the video controls stay accessible everywhere except
   directly under a tag chip. */
.khv-tags {
  position: absolute; inset: 0;
  pointer-events: none;
}
.khv-tag {
  position: absolute;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  background: rgba(11, 23, 38, 0.78);
  color: #fff;
  border: 1px solid rgba(200,162,74,.85);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, transform .35s ease, box-shadow .25s ease;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px rgba(0,0,0,.6);
}
.khv-tag.is-shown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: khvPop .35s ease-out;
}
.khv-tag:hover {
  background: rgba(11, 23, 38, 0.95);
  border-color: #C9A24A;
  box-shadow: 0 10px 26px -8px rgba(200,162,74,.55);
}
.khv-tag-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C9A24A;
  box-shadow: 0 0 0 4px rgba(200,162,74,.25);
  animation: khvPulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}
.khv-tag-label { line-height: 1.2; }

@keyframes khvPop {
  0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0; }
  60%  { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
@keyframes khvPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(200,162,74,.25); }
  50%      { box-shadow: 0 0 0 8px rgba(200,162,74,.0); }
}

@media (max-width: 720px) {
  .home-video { padding: 40px 0 24px; }
  .khv-tag {
    font-size: 11.5px;
    padding: 5px 10px 5px 7px;
  }
  .khv-tag-dot { width: 7px; height: 7px; }
}



/* ==================================================================
   KHREGO-RESERVE-MODAL — Stripe Checkout intro modal
   ================================================================== */
.khv-reserve-modal { position: fixed; inset: 0; z-index: 9999; }
.khv-rm-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 23, 38, 0.72);
  backdrop-filter: blur(4px);
}
.khv-rm-card {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(480px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.55);
}
.khv-rm-close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-soft); font-size: 22px; line-height: 1;
  cursor: pointer; transition: all .2s;
}
.khv-rm-close:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); transform: rotate(90deg); }
.khv-rm-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: .28em; color: var(--gold);
  margin: 0 0 8px;
}
.khv-rm-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 26px; line-height: 1.2;
  color: var(--text); margin: 0 0 14px;
}
.khv-rm-lead {
  font-size: 14px; line-height: 1.65;
  color: var(--text-soft); margin: 0 0 22px;
}
.khv-rm-lead strong { color: var(--gold); }
.khv-rm-form { display: flex; flex-direction: column; gap: 14px; }
.khv-rm-field {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-soft);
}
.khv-rm-field input {
  font-family: inherit;
  font-size: 15px; letter-spacing: 0; text-transform: none;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  transition: border-color .15s;
}
.khv-rm-field input:focus { outline: none; border-color: var(--gold); }
.khv-rm-err {
  font-size: 13px; padding: 10px 12px;
  background: rgba(192,57,43,.12); color: #c0392b;
  border: 1px solid rgba(192,57,43,.3);
  border-radius: 6px;
}
.khv-rm-submit {
  margin-top: 6px; width: 100%; justify-content: center;
  font-size: 15px;
}
.khv-rm-submit:disabled { opacity: .65; cursor: not-allowed; }
.khv-rm-trust {
  text-align: center; margin: 14px 0 0;
  font-size: 12px; color: var(--text-soft);
}
@media (max-width: 480px) {
  .khv-rm-card { padding: 26px 22px; }
  .khv-rm-title { font-size: 22px; }
}

/* ==================================================================
   KHREGO-2026-REFRESH — bigger imagery, tighter spacing, cleaner mobile
   ================================================================== */

/* ---- Package CARD: bigger, taller hero, less padding ---- */
.package-card .pkg-image {
  aspect-ratio: 3 / 2;       /* was implicit ~ 16/10 */
  overflow: hidden;
}
.package-card .pkg-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .pkg-image img { transform: scale(1.04); }
.package-card .pkg-body { padding: 20px 22px 22px; }
.package-card .pkg-title { font-size: 21px; line-height: 1.25; margin-bottom: 8px; }
.package-card .pkg-short { font-size: 14.5px; line-height: 1.55; }
.package-card .pkg-meta { margin: 12px 0 14px; font-size: 13px; }

/* ---- Section spacing — make pages tighter ---- */
section.regions-bg,
section.experience,
section.sustain-bg,
section.journal-bg {
  padding-top: 56px;
  padding-bottom: 56px;
}
.section-head { margin-bottom: 28px; }
.section-head.center .section-title { margin-bottom: 8px; }
.section-lead { margin-top: 8px; line-height: 1.65; }

/* ---- Package GRID — bigger min card width, less gap ---- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
@media (max-width: 720px) {
  .packages-grid { gap: 18px; grid-template-columns: 1fr; }
  .package-card .pkg-image { aspect-ratio: 4 / 3; }
  .package-card .pkg-body { padding: 18px 18px 20px; }
  .package-card .pkg-title { font-size: 19px; }
  section.regions-bg,
  section.experience,
  section.sustain-bg,
  section.journal-bg { padding-top: 40px; padding-bottom: 40px; }
}

/* ==================================================================
   KHREGO-PKG-CAROUSEL — multi-image hero inside the package modal
   ================================================================== */
.pkg-modal-hero .pkg-cs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #0b1726;
  outline: none;
}
.pkg-modal-hero .pkg-cs-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.pkg-modal-hero .pkg-cs-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.pkg-modal-hero .pkg-cs-slide img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.pkg-modal-hero .pkg-modal-hero > img,
.pkg-modal-hero > img { /* hide any legacy single img if present */
  display: none !important;
}

/* Arrows */
.pkg-cs-arr {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(11, 23, 38, 0.55);
  color: #fff; border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 3;
  backdrop-filter: blur(4px);
}
.pkg-cs-arr:hover {
  background: rgba(200,162,74,.95); color: #0b1726; border-color: #c9a24a;
}
.pkg-cs-prev { left: 14px; }
.pkg-cs-next { right: 14px; }

/* Dots */
.pkg-cs-dots {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 3;
}
.pkg-cs-dot {
  width: 8px; height: 8px; padding: 0;
  background: rgba(255,255,255,.5);
  border: none; border-radius: 50%;
  cursor: pointer;
  transition: all .25s;
}
.pkg-cs-dot.is-active {
  width: 22px;
  border-radius: 10px;
  background: #c9a24a;
}

/* Photo counter (top-right) */
.pkg-cs-counter {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 10px;
  background: rgba(11, 23, 38, 0.65);
  color: #fff;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  border-radius: 999px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

@media (max-width: 720px) {
  .pkg-cs-arr  { width: 36px; height: 36px; font-size: 22px; }
  .pkg-cs-prev { left: 8px; }
  .pkg-cs-next { right: 8px; }
  .pkg-cs-dots { bottom: 8px; gap: 6px; }
  /* mobile: carousel fills the hero — no fixed aspect ratio */
}

/* ---- Modal body — tighter padding on mobile ---- */
@media (max-width: 720px) {
  .pkg-modal-body { padding: 24px 18px 28px; }
  .pkg-modal-title-block h2 { font-size: 26px; line-height: 1.15; }
  .pkg-modal-stats { gap: 14px; }
}

/* ---- Hero — slightly less aggressive, mobile-tighter ---- */
@media (max-width: 720px) {
  .hero { min-height: 78vh; padding: 64px 0 48px; }
  .hero-title { font-size: 36px; line-height: 1.05; }
  .hero-sub { font-size: 15px; line-height: 1.5; }
  .hero-cta { flex-wrap: wrap; gap: 10px; }
  .hero-cta .btn { flex: 1; justify-content: center; padding: 14px 18px; }
}

/* ---- About section — bigger image, less whitespace ---- */
.about-visual img { aspect-ratio: 4 / 5; object-fit: cover; }
@media (max-width: 720px) {
  .about-grid { gap: 24px; }
  .about-visual img { aspect-ratio: 16 / 11; }
}

/* ---- Page hero (sub-pages) — tighter top spacing ---- */
.page-hero { padding: 56px 0 36px; }
.page-hero-title { font-size: 42px; line-height: 1.1; margin-bottom: 12px; }
@media (max-width: 720px) {
  .page-hero { padding: 36px 0 28px; }
  .page-hero-title { font-size: 30px; }
  .page-hero-sub { font-size: 15px; }
}

/* ---- Buttons — bigger tap target on mobile ---- */
@media (max-width: 720px) {
  .btn { font-size: 14.5px; padding: 12px 18px; }
}

/* ---- Footer — tighter, more visual breathing on mobile ---- */
@media (max-width: 720px) {
  footer { padding-top: 48px; padding-bottom: 32px; }
}

/* ---- Reveal — slightly slower for elegance ---- */
.reveal { transition: opacity .6s ease, transform .6s ease; }

/* ---- Improve image loading flash ---- */
.package-card .pkg-image,
.pkg-modal-hero .pkg-cs { background: #0b1726; }
img { background: transparent; }

/* ==================================================================
   KHREGO-CAROUSEL — used by treks, expeditions, village stays,
   trek-and-train, and team grids. 2 cards visible on desktop,
   1 on mobile, paginated with arrows + dots.
   ================================================================== */
.kh-cs {
  position: relative;
  width: 100%;
  padding: 0;
}
/* Native scroll-snap carousel — browser handles all alignment, momentum, GPU.
   No transform math, no off-by-gap drift, no resize recalculations. */
.kh-cs-viewport {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 14px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;                                  /* Firefox: hide scrollbar */
  -ms-overflow-style: none;                               /* IE/Edge legacy */
  -webkit-overflow-scrolling: touch;                      /* iOS momentum */
  scroll-padding-left: 14px;
  /* Native snap is GPU-accelerated by the browser — no manual will-change needed */
}
.kh-cs-viewport::-webkit-scrollbar { display: none; }     /* Chrome/Safari: hide scrollbar */
/* The track is just a flex container now (no transform) */
.kh-cs-track {
  display: contents;                                      /* slides flex directly inside viewport */
}
.kh-cs-slide {
  flex: 0 0 calc((100% - 14px) / 2);                      /* exactly 2 visible on desktop */
  scroll-snap-align: start;
  scroll-snap-stop: always;                               /* prevents skipping past slides on fast swipes */
  min-width: 0;
  box-sizing: border-box;
}
.kh-cs-slide > * {
  width: 100%;                                            /* NO height:100% — that collapses inner cards when the parent has no fixed height */
}

/* ---- Reset grid behaviour on the data-render container ----
   Treks/home/team containers are <div class="packages-grid" data-render="..."> in the HTML.
   When their renderer outputs a .kh-cs carousel, the grid layout would treat it as a single grid item.
   Force the container back to a plain block so the carousel can stretch full-width. */
[data-render]:has(> .kh-cs),
.packages-grid:has(> .kh-cs) {
  display: block !important;
  grid-template-columns: none !important;
  gap: 0 !important;
}
.kh-cs-arr {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  z-index: 5;
  border-radius: 50%;
  background: rgba(11, 23, 38, 0.78);
  border: 1px solid rgba(200, 162, 74, 0.85);
  color: var(--gold);
  font-size: 26px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  backdrop-filter: blur(4px);
  transition: all .2s;
}
.kh-cs-arr:hover {
  background: var(--gold);
  color: #0b1726;
}
.kh-cs-prev { left: 14px; }
.kh-cs-next { right: 14px; }

.kh-cs-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.kh-cs-dot {
  width: 8px; height: 8px;
  padding: 0; border: 0;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: all .3s;
}
[data-theme="dark"] .kh-cs-dot { background: rgba(255, 255, 255, 0.3); }
.kh-cs-dot.is-active {
  width: 24px;
  background: var(--gold);
}

/* When the carousel collapses to a plain grid (≤ 2 items) */
.kh-cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

/* Mobile — 1 card visible */
@media (max-width: 720px) {
  .kh-cs-slide { flex: 0 0 100%; }                       /* full-width on phone */
  .kh-cs-arr   { width: 38px; height: 38px; font-size: 22px; top: 40%; }
  .kh-cs-prev  { left: 6px; }
  .kh-cs-next  { right: 6px; }
  .kh-cs-viewport { padding: 0 6px; gap: 12px; scroll-padding-left: 6px; }
  .kh-cs-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ==================================================================
   KHREGO-PHOTO-SECTION-BG — sections can have an uploaded scenic
   photo as their background. Darkening overlay keeps text readable.
   ================================================================== */
/* Background photos — clear image + soft gradient (readable text) */
.kh-photo-bg {
  position: relative;
  background-image: var(--kh-pb-src);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #0b1726;
  color: #fff;
}
.kh-photo-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
      rgba(11,23,38, calc(var(--kh-pb-dark, .35) * 0.55)) 0%,
      rgba(11,23,38, calc(var(--kh-pb-dark, .35) * 0.28)) 45%,
      rgba(11,23,38, var(--kh-pb-dark, .35)) 100%);
  pointer-events: none;
  z-index: 0;
}
.kh-photo-bg > * { position: relative; z-index: 1; }
.kh-photo-bg .section-title,
.kh-photo-bg .section-lead,
.kh-photo-bg .page-hero-title,
.kh-photo-bg .page-hero-sub,
.kh-photo-bg h1, .kh-photo-bg h2, .kh-photo-bg h3, .kh-photo-bg p {
  color: #fff !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.55);
}
.kh-photo-bg .section-tag,
.kh-photo-bg .page-hero-tag { color: var(--gold); }
@media (max-width: 900px) {
  .kh-photo-bg { background-attachment: scroll; }
}

/* ==================================================================
   KHREGO-XL-CARDS — make the photo the star of every card
   ================================================================== */

/* ---- Trek + Expedition cards (used on home, treks.html, expeditions.html, comparisons) ---- */
.pkg-card .pkg-hero {
  height: auto !important;            /* drop the fixed 240px */
  aspect-ratio: 4 / 3;                /* MUCH taller hero photo */
}
.pkg-card .pkg-hero img {
  transition: transform .7s var(--ease);
}
.pkg-card:hover .pkg-hero img { transform: scale(1.05); }

/* Tighter body so the photo gets more of the card */
.pkg-card .pkg-body { padding: 16px 18px 18px; }
.pkg-card .pkg-title { font-size: 20px; line-height: 1.22; margin-bottom: 6px; }
.pkg-card .pkg-desc-short { font-size: 14px; line-height: 1.5; }
.pkg-card .pkg-stats { gap: 8px 10px; margin: 10px 0 8px; }

/* ---- Village stay + Trek-and-Train + simple package cards ---- */
.package-card .pkg-image { aspect-ratio: 4 / 3 !important; }
.package-card .pkg-body { padding: 16px 18px 18px; }
.package-card .pkg-title { font-size: 20px; line-height: 1.22; }
.package-card .pkg-short { font-size: 14px; line-height: 1.5; }

/* ---- Mobile: keep photo dominant, drop padding more ---- */
@media (max-width: 720px) {
  .pkg-card .pkg-hero,
  .package-card .pkg-image { aspect-ratio: 4 / 3 !important; }
  .pkg-card .pkg-body,
  .package-card .pkg-body { padding: 14px 16px 18px; }
  .pkg-card .pkg-title,
  .package-card .pkg-title { font-size: 18px; }
}

/* ---- Carousel slides: cards stretch to fill the slide vertically so the
       photo grows with the available room ---- */
.kh-cs-slide .pkg-card,
.kh-cs-slide .package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kh-cs-slide .pkg-card .pkg-body,
.kh-cs-slide .package-card .pkg-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.kh-cs-slide .pkg-card .pkg-foot,
.kh-cs-slide .package-card .pkg-foot {
  margin-top: auto;     /* price row pinned to the bottom */
}

/* Optional: when the carousel is at 50% width on desktop, the cards are
   wide enough (~470px) that a 4:3 photo becomes a ~352px-tall HERO image. */

/* ==================================================================
   KHREGO-YOGA-AND-MEDITATION badges
   ================================================================== */

/* "Daily meditation" badge on every expedition card */
.pkg-medit-badge {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 11px 6px 9px;
  background: rgba(11, 23, 38, 0.78);
  color: #fff;
  border: 1px solid rgba(200, 162, 74, 0.85);
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.55);
}
.pkg-medit-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b1726;
  font-size: 13px;
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1;
}
.pkg-medit-text { color: var(--gold); }
@media (max-width: 720px) {
  .pkg-medit-badge { bottom: 10px; left: 10px; padding: 5px 9px 5px 7px; font-size: 10.5px; gap: 5px; }
  .pkg-medit-glyph { width: 17px; height: 17px; font-size: 11px; }
}

/* Yoga lotus on yoga-trek cards (top-right corner of photo) */
.pkg-yoga-lotus {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--gold);
  color: #0b1726;
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.55);
}
@media (max-width: 720px) {
  .pkg-yoga-lotus { width: 30px; height: 30px; font-size: 15px; top: 10px; right: 10px; }
}

/* Yoga section background tint on Teach and Learn page */
.tl-yoga { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft, rgba(200,162,74,0.04)) 100%); }

/* ==================================================================
   KHREGO-CONSULT — 30-min consultation button + team picker modal
   ================================================================== */

/* The "Book free 30-min consult" button in the package modal */
.btn-consult {
  background: transparent;
  border: 1px solid var(--gold-soft, rgba(200,162,74,0.5));
  color: var(--gold);
}
.btn-consult:hover {
  background: rgba(200,162,74,0.1);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-consult svg { stroke: var(--gold); }

/* The consult modal reuses .khv-reserve-modal styles; here are the
   pieces unique to picking a team member */
.khc-card .khv-rm-title { margin-bottom: 8px; }
.khc-team-list {
  display: grid; gap: 8px;
  max-height: 240px;
  overflow-y: auto;
  margin-bottom: 16px;
  padding: 6px;
  background: var(--bg-2);
  border-radius: 10px;
}
.khc-team-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: all .2s;
}
.khc-team-card:hover { border-color: var(--gold-soft); }
.khc-team-card input[type="radio"] {
  margin: 0;
  flex-shrink: 0;
  accent-color: var(--gold);
}
.khc-team-card:has(input:checked) {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200,162,74,0.18);
  background: rgba(200,162,74,0.05);
}
.khc-team-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.khc-team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.khc-team-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.khc-team-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.khc-team-role {
  font-size: 12px;
  color: var(--text-soft);
}
.khc-team-blurb {
  font-size: 12px;
  font-style: italic;
  color: var(--gold);
  margin-top: 2px;
}

/* 2-column form grid for name/email + phone/date */
.khc-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .khc-grid-2 { grid-template-columns: 1fr; gap: 12px; }
}

/* Style the select + date inputs same as the text inputs */
.khv-rm-field select,
.khv-rm-field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 10px 12px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  transition: border-color .15s;
  width: 100%;
  resize: vertical;
}
.khv-rm-field select:focus,
.khv-rm-field textarea:focus { outline: none; border-color: var(--gold); }

/* ==================================================================
   KHREGO-SINGING-BOWL — expedition add-on chip
   ================================================================== */
.pkg-addon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(200,162,74,0.08), rgba(200,162,74,0.02));
  border: 1px solid rgba(200,162,74,0.35);
  border-radius: 8px;
  font-size: 12.5px;
  color: var(--text);
}
.pkg-addon-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold);
  color: #0b1726;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.pkg-addon-text {
  flex: 1;
  line-height: 1.35;
}
.pkg-addon-text strong {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10.5px;
  display: block;
}
.pkg-addon-price {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--gold);
  font-size: 13.5px;
}

/* Hide the legacy meditation badge if any cached HTML still has it */
.pkg-medit-badge { display: none !important; }

/* ==================================================================
   KHREGO-EXPEDITION-CARD-PARITY — force expedition cards to match
   trek cards exactly (same photo aspect ratio, same heights).
   ================================================================== */
.pkg-card[data-kind="expedition"] .pkg-hero,
.pkg-card[data-kind="trek"]       .pkg-hero {
  height: auto !important;
  aspect-ratio: 4 / 3 !important;     /* identical */
  min-height: 0;
}
.pkg-card[data-kind="expedition"] .pkg-hero img,
.pkg-card[data-kind="trek"]       .pkg-hero img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* Match card body padding identically too */
.pkg-card[data-kind="expedition"] .pkg-body,
.pkg-card[data-kind="trek"]       .pkg-body {
  padding: 16px 18px 18px;
}

/* ==================================================================
   KHREGO-FULL-PAGE-GRID-BIG — make Treks / Expeditions / Village
   stay / Trek-and-Train / Yoga pages show the SAME card size as
   the home-page carousel: 2 big cards per row on desktop, 1 on
   mobile. Falls to 3 cards only on very large displays (1500px+).
   ================================================================== */

/* Default desktop: 2 large cards per row (~530px wide each, matches the
   home-page 2-up carousel exactly). */
.packages-grid {
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr)) !important;
  gap: 26px !important;
}

/* Tablet / small laptop — still 1 column to keep cards huge */
@media (max-width: 960px) {
  .packages-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Very large displays — allow 3 columns so we don't get giant lonely cards */
@media (min-width: 1500px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fill, minmax(440px, 1fr)) !important;
  }
}

/* Team page grid — same big-card treatment */
.team-grid-inner {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 22px !important;
}
@media (max-width: 720px) {
  .team-grid-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}

/* ==================================================================
   KHREGO-ACCLIM — altitude explainer page
   ================================================================== */
.acc-section { margin: 0 0 56px; }
.acc-section .section-title { font-family: Georgia, serif; line-height: 1.2; }
.acc-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.acc-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 10px; padding: 22px 22px 24px;
}
.acc-card h3 {
  font-family: Georgia, serif; font-size: 19px; line-height: 1.25;
  color: var(--text); margin: 0 0 12px;
}
.acc-sym, .acc-action, .acc-text { font-size: 14.5px; line-height: 1.65; margin: 0 0 8px; color: var(--text-soft); }
.acc-sym strong, .acc-action strong { color: var(--gold); }
.acc-rules { list-style: none; padding: 0; margin: 0; }
.acc-rules li {
  position: relative; padding: 14px 14px 14px 56px;
  background: var(--bg-2); border-left: 3px solid var(--gold);
  margin-bottom: 12px; border-radius: 6px;
  font-size: 15.5px; line-height: 1.55; color: var(--text);
}
.acc-rules li::before {
  content: '✕'; position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: #0b1726;
  border-radius: 50%; font-weight: 700; font-size: 13px;
}

/* ==================================================================
   KHREGO-PORTERS — alternating story cards
   ================================================================== */
.porter-grid { display: grid; gap: 48px; }
.porter-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.porter-photo {
  aspect-ratio: 3 / 4; overflow: hidden; background: #0b1726;
}
.porter-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.porter-card:hover .porter-photo img { transform: scale(1.03); }
.porter-body { padding: 32px 36px; }
.porter-meta {
  display: flex; gap: 14px; align-items: center;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 14px;
}
.porter-region { color: var(--gold); font-weight: 600; }
.porter-years { color: var(--text-soft); }
.porter-name {
  font-family: Georgia, serif; font-size: 32px; line-height: 1.15;
  font-weight: 600; margin: 0 0 20px; color: var(--text);
}
.porter-quote {
  font-family: Georgia, serif; font-size: 19px; line-height: 1.45;
  font-style: italic; color: var(--gold);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
  margin: 0 0 18px;
}
.porter-story { font-size: 15px; line-height: 1.7; color: var(--text-soft); margin: 0; }
@media (max-width: 720px) {
  .porter-card {
    grid-template-columns: 1fr !important;
    grid-template-areas: "photo" "body" !important;
  }
  .porter-photo { aspect-ratio: 4 / 3; }
  .porter-body { padding: 24px 22px 28px; }
  .porter-name { font-size: 24px; }
  .porter-quote { font-size: 16px; }
}

/* ==================================================================
   KHREGO-BEST-TIME — month × region heat-map
   ================================================================== */
/* ---- Best Time chart — responsive + interactive ---- */
.bt-wrap {
  background: #0e1c2e;
  border-radius: 16px;
  padding: 22px 18px;
  border: 1px solid var(--border);
}
.bt-mobile-hint {
  display: none;
  text-align: center;
  font-size: 12px; letter-spacing: .08em;
  color: rgba(243,234,216,.55);
  padding-bottom: 12px;
  font-style: italic;
}
@media (max-width: 880px) {
  .bt-mobile-hint { display: block; }
  .bt-wrap { padding: 16px 12px; }
}
.bt-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.bt-scroll::-webkit-scrollbar { height: 8px; }
.bt-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.bt-scroll::-webkit-scrollbar-track { background: transparent; }
.bt-table {
  width: 100%; border-collapse: separate; border-spacing: 4px;
  font-size: 13px;
}
.bt-table th, .bt-table td {
  padding: 10px 12px; text-align: center;
  font-weight: 500;
}
.bt-table th {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 600;
}
.bt-table .bt-region-h, .bt-table .bt-region { text-align: left; }
.bt-table .bt-region {
  font-family: Georgia, serif; font-weight: 600; font-size: 14px;
  color: var(--text);
}
.bt-table .bt-note-h, .bt-table .bt-note {
  text-align: left; font-size: 12.5px;
  color: var(--text-soft); font-style: italic;
}
.bt-cell {
  border-radius: 6px;
  font-weight: 700; color: #0b1726;
  min-width: 38px;
}
.bt-cell.bt-5 { background: #2e9d4a; color: #fff; }
.bt-cell.bt-4 { background: #a0d268; }
.bt-cell.bt-3 { background: #f5e3a3; }
.bt-cell.bt-2 { background: #f0a35a; color: #fff; }
.bt-cell.bt-1 { background: #cc4f3a; color: #fff; }
.bt-leg {
  display: inline-block; padding: 3px 9px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; color: #0b1726;
  margin: 0 6px;
}
.bt-leg.bt-5 { background: #2e9d4a; color: #fff; }
.bt-leg.bt-4 { background: #a0d268; }
.bt-leg.bt-3 { background: #f5e3a3; }
.bt-leg.bt-2 { background: #f0a35a; color: #fff; }
.bt-leg.bt-1 { background: #cc4f3a; color: #fff; }

/* ==================================================================
   KHREGO-INSURANCE — proof-of-cover band on sustainable-tourism page
   ================================================================== */
.ins-band {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 32px 36px;
  text-align: center;
}
.ins-head { margin-bottom: 32px; }
.ins-head .section-title { font-size: 28px; margin: 0; }
.ins-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}
.ins-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 22px;
  text-align: left;
}
.ins-card-gold { border-color: var(--gold); border-width: 2px; }
.ins-tier {
  display: block;
  font-size: 10.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 16px;
}
.ins-stats { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.ins-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 12px; border-bottom: 1px dashed var(--border);
}
.ins-stat:last-child { border-bottom: 0; padding-bottom: 0; }
.ins-lbl { font-size: 12.5px; color: var(--text-soft); }
.ins-num { font-family: Georgia, serif; font-size: 18px; font-weight: 700; color: var(--text); }
.ins-card-gold .ins-num { color: var(--gold); }
.ins-note { font-size: 12.5px; color: var(--text-soft); font-style: italic; margin: 0; }

.ins-proof {
  display: inline-block;
  max-width: 320px;
  margin: 0 auto;
  padding: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.ins-proof img {
  display: block; width: 100%; height: auto;
  border-radius: 6px; cursor: zoom-in;
  transition: transform .3s ease;
}
.ins-proof:hover img { transform: scale(1.02); }
.ins-proof-caption {
  margin: 10px 0 0; font-size: 12px; color: var(--text-soft); font-style: italic;
}
.ins-proof-empty { max-width: 480px; padding: 16px 18px; }

@media (max-width: 720px) {
  .ins-band { padding: 28px 18px; }
  .ins-head .section-title { font-size: 22px; }
  .ins-num { font-size: 16px; }
}

/* ==================================================================
   KHREGO-FULL-INCLUSIONS — categorised what's-in / what's-out
   ================================================================== */
.incl-pane {
  margin: 32px 0;
  padding: 28px 28px 24px;
  background: var(--bg-2);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.incl-yes { border-left: 4px solid #2e9d4a; }
.incl-no  { border-left: 4px solid #cc4f3a; }
.incl-pane-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.incl-pane-head h3 { margin: 0; font-size: 22px; line-height: 1.25; font-family: Georgia, serif; color: var(--text); }
.incl-pane-badge {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; color: #fff;
}
.incl-yes-badge { background: #2e9d4a; }
.incl-no-badge  { background: #cc4f3a; }
.incl-pane-lead { margin: 0 0 22px 46px; font-size: 13.5px; color: var(--text-soft); line-height: 1.6; }
.incl-cats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.incl-cat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px 20px 20px;
}
.incl-cat-head { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px dashed var(--border); }
.incl-cat-icon { font-size: 16px; line-height: 1; }
.incl-cat-head h4 { margin: 0; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.incl-cat-list { list-style: none; padding: 0; margin: 0; }
.incl-cat-list li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text);
}
.incl-cat-list li::before {
  content: '';
  position: absolute;
  left: 4px; top: 12px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.incl-no .incl-cat-list li::before { background: #cc4f3a; opacity: .7; }

@media (max-width: 720px) {
  .incl-pane { padding: 20px 18px 18px; margin: 24px 0; }
  .incl-pane-head h3 { font-size: 19px; }
  .incl-pane-lead { margin-left: 0; font-size: 13px; }
  .incl-cats { grid-template-columns: 1fr; gap: 14px; }
  .incl-cat { padding: 14px 16px 16px; }
}

/* ==================================================================
   KHREGO-MODAL-ADDON — singing-bowl band inside the package modal
   (only shown on expedition packages, replaces the front-card chip)
   ================================================================== */
.modal-addon-band {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 28px 0;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(200,162,74,0.12), rgba(200,162,74,0.02));
  border: 1px solid rgba(200,162,74,0.45);
  border-left: 5px solid var(--gold);
  border-radius: 14px;
}
.modal-addon-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #0b1726;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1;
}
.modal-addon-body { flex: 1; }
.modal-addon-eyebrow {
  display: block;
  font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700; margin-bottom: 6px;
}
.modal-addon-body h3 {
  font-family: Georgia, serif; font-size: 22px;
  margin: 0 0 10px; color: var(--text);
}
.modal-addon-body p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-soft); margin: 0 0 14px;
}
.modal-addon-foot {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.modal-addon-price {
  font-size: 18px; font-weight: 700; color: var(--gold);
  font-family: Georgia, serif;
}
.modal-addon-cta {
  font-size: 13.5px; font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(200,162,74,0.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.modal-addon-cta:hover { border-bottom-color: var(--gold); }

@media (max-width: 720px) {
  .modal-addon-band {
    flex-direction: column; align-items: flex-start;
    gap: 16px; padding: 18px 20px;
  }
  .modal-addon-icon { width: 52px; height: 52px; font-size: 26px; }
  .modal-addon-body h3 { font-size: 19px; }
}

/* ==================================================================
   KHREGO-TEAM-BIG — hero-sized team cards
   (avatar 320 px desktop / 200 px tablet / 240 px on phone for impact)
   Mobile-first: scales down gracefully, stays touch-friendly.
   ================================================================== */
.tm-grid-inner,
.team-grid-inner {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
  gap: 48px !important;
}
.tm-card {
  padding: 24px 16px !important;
  text-align: center;
}
.tm-avatar {
  width: 320px !important;
  height: 320px !important;
  max-width: 100% !important;
  border-radius: 50% !important;
  border: 4px solid rgba(200,162,74,0.55) !important;
  margin: 0 auto 24px !important;
  box-shadow: 0 24px 56px -16px rgba(0,0,0,.55) !important;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.tm-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tm-name {
  font-family: Georgia, serif !important;
  font-size: 28px !important;
  line-height: 1.15 !important;
  font-weight: 600 !important;
  margin: 0 0 8px;
}
.tm-role {
  font-size: 14px !important;
  letter-spacing: .08em;
  color: var(--gold) !important;
  max-width: 280px;
  margin: 0 auto !important;
  line-height: 1.45;
  /* Role is now ALWAYS visible (no longer hover-only) */
  max-height: none !important;
  opacity: 1 !important;
}
.tm-hint {
  margin: 18px auto 0 !important;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all .25s;
}
.tm-card:hover .tm-hint,
.tm-card:focus-visible .tm-hint {
  background: var(--gold);
  color: #0b1726;
  border-color: var(--gold);
}

/* ---- TABLET (700 – 1100 px): 1-2 per row, slightly smaller circle ---- */
@media (max-width: 1100px) {
  .tm-grid-inner,
  .team-grid-inner {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 36px !important;
  }
  .tm-avatar { width: 260px !important; height: 260px !important; margin-bottom: 20px !important; }
  .tm-name { font-size: 24px !important; }
}

/* ---- PHONE (≤ 720 px): 1 per row, photo still huge (~80vw) ---- */
@media (max-width: 720px) {
  .tm-grid-inner,
  .team-grid-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .tm-card { padding: 18px 12px !important; }
  .tm-avatar {
    width: min(80vw, 320px) !important;
    height: min(80vw, 320px) !important;
    margin-bottom: 18px !important;
    border-width: 3px !important;
  }
  .tm-name { font-size: 22px !important; }
  .tm-role { font-size: 13px !important; }
  .tm-hint { width: 34px; height: 34px; margin-top: 14px !important; }
}

/* ==================================================================
   KHREGO-SALES-BADGES — Best Seller / People's Choice / Recommended
   ================================================================== */
.pkg-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px 5px 7px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
}
.pkg-badge-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  font-size: 11px;
  font-weight: 700;
}
.pkg-badge-text { line-height: 1.2; }

/* BEST SELLER — gold/amber, the strongest */
.pkg-badge-bestseller {
  background: linear-gradient(135deg, #c9821a 0%, #c9a24a 50%, #eccb8a 100%);
}
.pkg-badge-bestseller .pkg-badge-glyph { color: #c9821a; }

/* PEOPLE'S CHOICE — warm red, heart accent */
.pkg-badge-popular {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.pkg-badge-popular .pkg-badge-glyph { color: #c0392b; }

/* RECOMMENDED — green check */
.pkg-badge-recommended {
  background: linear-gradient(135deg, #1f7a3a 0%, #2e9d4a 100%);
}
.pkg-badge-recommended .pkg-badge-glyph { color: #1f7a3a; }

@media (max-width: 720px) {
  .pkg-badge { top: 10px; right: 10px; font-size: 9.5px; padding: 4px 9px 4px 6px; gap: 5px; }
  .pkg-badge-glyph { width: 16px; height: 16px; font-size: 10px; }
}

/* ==================================================================
   KHREGO-BUGFIX-2026-06-16
   - Modal hero photo big & matches the card aspect ratio
   - Multi-image carousel fills the bigger hero properly
   - Enquiry chips for oxygen / heli / group on every expedition modal
   - Tighter spacing across page heros and modal body
   ================================================================== */

/* Make the multi-image carousel always fill the new bigger hero */
.pkg-modal-hero .pkg-cs {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
}
.pkg-modal-hero .pkg-cs-slide {
  position: absolute !important;
  inset: 0 !important;
}
.pkg-modal-hero .pkg-cs-slide img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Mobile: smaller min-height so the modal isn't all photo */
@media (max-width: 720px) {
  .pkg-modal-hero {
    min-height: 240px !important;
    max-height: 50vh !important;
    aspect-ratio: 4 / 3 !important;
  }
}

/* ==================================================================
   ENQUIRY CHIP TRAY — Oxygen / Helicopter / Group / Insurance / Permits
   Goes inside every package modal as clickable enquiry shortcuts.
   ================================================================== */
.pkg-enquire-tray {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin: 22px 0 8px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.pkg-enquire-tray-title {
  grid-column: 1 / -1;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); font-weight: 700;
  margin-bottom: 4px;
}
.pkg-enq-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  transition: all .2s;
}
.pkg-enq-chip:hover {
  border-color: var(--gold);
  background: rgba(200,162,74,0.06);
  color: var(--gold);
  transform: translateY(-1px);
}
.pkg-enq-chip-glyph {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gold); color: #0b1726;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.pkg-enq-chip-label { line-height: 1.25; min-width: 0; }
.pkg-enq-chip-arrow { margin-left: auto; opacity: .6; color: var(--gold); }
@media (max-width: 480px) {
  .pkg-enquire-tray { grid-template-columns: 1fr; padding: 12px; }
}

/* ==================================================================
   ADMIN-LIST-IDS — visible serial numbers in trek/expedition admin list
   ================================================================== */
.admin-list-item .admin-list-head h4 .row-id {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--gold); color: #0b1726;
  border-radius: 50%;
  font-size: 12px; font-weight: 700;
  margin-right: 10px;
  font-family: monospace;
}

/* Tighter modal body padding so the new bigger hero feels balanced */
.pkg-modal-body { padding: 32px 32px 36px; }
@media (max-width: 720px) {
  .pkg-modal-body { padding: 22px 18px 28px; }
}

/* ==================================================================
   KHREGO-CAROUSEL-POLISH — clean, premium carousel everywhere
   Overrides earlier carousel rules with a tighter, more elegant look.
   ================================================================== */

/* Container — a bit more breathing room around the cards */
.kh-cs {
  position: relative;
  width: 100%;
  padding: 0 6px;
}

/* Viewport — NATIVE scroll-snap (transform-based track removed: it set
   overflow:hidden which killed the JS-driven scrollBy/scrollTo and stopped
   the carousel from sliding). The mask keeps the soft edge fade. */
.kh-cs-viewport {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  border-radius: 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 24px, #000 calc(100% - 24px), transparent);
}
.kh-cs-viewport::-webkit-scrollbar { display: none; }

/* Track is display:contents so slides become direct flex children of the
   viewport — that is what scroll-snap-align snaps against. */
.kh-cs-track {
  display: contents;
}
.kh-cs-slide {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Arrows — bigger, gold-bordered, sit just outside the photo edge */
.kh-cs-arr {
  position: absolute !important;
  top: 42% !important;
  transform: translateY(-50%) !important;
  width: 52px !important; height: 52px !important;
  z-index: 6;
  border-radius: 50% !important;
  background: rgba(11, 23, 38, 0.85) !important;
  border: 1.5px solid var(--gold) !important;
  color: var(--gold) !important;
  font-size: 24px !important; font-weight: 300 !important;
  cursor: pointer;
  display: flex !important;
  align-items: center; justify-content: center;
  padding: 0 !important;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5);
  transition: all .25s ease !important;
}
.kh-cs-arr:hover {
  background: var(--gold) !important;
  color: #0b1726 !important;
  transform: translateY(-50%) scale(1.08) !important;
  box-shadow: 0 12px 32px -8px rgba(200,162,74,0.5);
}
.kh-cs-arr:active {
  transform: translateY(-50%) scale(0.96) !important;
}
.kh-cs-prev { left: -8px !important; }
.kh-cs-next { right: -8px !important; }

/* Dots — modern pill indicators with smoother active state */
.kh-cs-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  padding: 0 12px;
}
.kh-cs-dot {
  width: 24px; height: 4px;
  padding: 0; border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,0.12);
  cursor: pointer;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}
[data-theme="dark"] .kh-cs-dot {
  background: rgba(255,255,255,0.18);
}
.kh-cs-dot:hover {
  background: rgba(200,162,74,0.5);
  width: 28px;
}
.kh-cs-dot.is-active {
  width: 44px;
  height: 4px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.18);
}

/* Hover the carousel → arrows fade in slightly more prominent */
.kh-cs:hover .kh-cs-arr { opacity: 1; }

/* MOBILE — single-card view, smaller arrows, more elegant placement */
@media (max-width: 720px) {
  .kh-cs { padding: 0 4px; }
  .kh-cs-slide { flex: 0 0 100%; }
  .kh-cs-viewport { gap: 16px; }
  .kh-cs-arr {
    width: 42px !important; height: 42px !important;
    font-size: 20px !important;
    top: 38% !important;
  }
  .kh-cs-prev { left: -6px !important; }
  .kh-cs-next { right: -6px !important; }
  .kh-cs-dots { margin-top: 22px; gap: 5px; padding: 0 18px; }
  .kh-cs-dot { width: 20px; }
  .kh-cs-dot.is-active { width: 36px; }
  /* Disable side-fade mask on mobile to maximise photo area */
  .kh-cs-viewport {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

/* ==================================================================
   KHREGO-WHY — homepage "Why Khrego" trust block
   ================================================================== */
.why-khrego {
  padding: 64px 0 56px;
  background: var(--bg);
}
.why-khrego .section-head { margin-bottom: 40px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}
.why-card {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .4s var(--ease, ease), box-shadow .4s ease, border-color .3s;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 24px 56px -16px rgba(0,0,0,.35);
}
.why-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0b1726;
}
.why-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s ease;
}
.why-card:hover .why-photo img { transform: scale(1.06); }
.why-number {
  position: absolute; bottom: -14px; left: 22px;
  width: 56px; height: 56px;
  background: var(--gold); color: #0b1726;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: Georgia, serif; font-size: 22px; font-weight: 700;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,0.4);
  z-index: 2;
}
.why-body {
  flex: 1;
  display: flex; flex-direction: column;
  padding: 32px 26px 26px;
}
.why-badge {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.why-title {
  font-family: Georgia, serif;
  font-size: 24px; line-height: 1.2;
  font-weight: 600; color: var(--text);
  margin: 0 0 14px;
}
.why-blurb {
  font-size: 14.5px; line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 22px;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 16px 0;
  margin: 0 0 18px;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
}
.why-stat { text-align: center; }
.why-stat-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 19px; font-weight: 700;
  color: var(--gold);
  line-height: 1.1; margin-bottom: 4px;
}
.why-stat-lbl {
  display: block;
  font-size: 10.5px; letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-soft);
  line-height: 1.3;
}
.why-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 13px; font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.why-cta:hover { border-bottom-color: var(--gold); }
.why-cta svg { transition: transform .25s; }
.why-cta:hover svg { transform: translateX(3px); }


/* === Why Khrego — when rendered inside the standard carousel === */
.kh-cs .why-card,
.kh-cs-grid .why-card { height: 100%; }
.kh-cs-slide > .why-card,
.kh-cs-slide article.why-card { width: 100%; max-width: 100%; }
/* In the 2-or-fewer fallback (kh-cs-grid), still cap each card sensibly */
.kh-cs-grid .why-card { max-width: 520px; margin: 0 auto; }
/* Tablet: 1-column wider, photos still strong */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: 1fr; gap: 24px; max-width: 720px; margin: 0 auto; }
  .why-card {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: stretch;
  }
  .why-photo { aspect-ratio: auto; height: 100%; min-height: 240px; }
  .why-number { left: auto; right: -22px; bottom: 22px; }
  .why-body { padding: 26px 28px; }
}
@media (max-width: 720px) {
  .why-khrego { padding: 44px 0 36px; }
  .why-grid { gap: 18px; max-width: 100%; }
  .why-card { grid-template-columns: 1fr; }
  .why-photo { aspect-ratio: 16 / 10; min-height: 0; }
  .why-number { left: 18px; right: auto; bottom: -16px; width: 48px; height: 48px; font-size: 19px; }
  .why-body { padding: 28px 22px 22px; }
  .why-title { font-size: 20px; }
  .why-blurb { font-size: 14px; }
  .why-stats { grid-template-columns: repeat(3, 1fr); }
  .why-stat-num { font-size: 17px; }
}

/* ==================================================================
   KHREGO-SHARE-LINK — copy-link button in package modal action bar
   ================================================================== */
.btn-share-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .25s ease;
}
.btn-share-link:hover {
  background: var(--gold);
  color: #0b1726;
  border-color: var(--gold);
}
.btn-share-link svg { transition: transform .25s; }
.btn-share-link:hover svg { transform: rotate(-12deg); }

/* ==================================================================
   KHREGO-ADMIN-LOGO — show the brand mark on login + top bar
   ================================================================== */
.login-brand { text-align: center; }
.login-logo {
  display: block;
  margin: 0 auto 14px;
  width: 84px; height: 84px;
  object-fit: contain;
  border-radius: 16px;
  background: #0b1726;
  padding: 8px;
}
.admin-topbar-brand {
  display: flex; align-items: center; gap: 12px;
}
.admin-topbar-logo {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 6px;
  background: #0b1726;
  padding: 4px;
  flex-shrink: 0;
}
.admin-topbar-brand h1 { margin: 0; }


/* ==================================================================
   FOOTER v2 — 4-column layout with 14-peaks silhouette watermark
   ================================================================== */
.kh-footer-v2 {
  background: #0b1726;
  color: #f3ead8;
  position: relative;
  overflow: hidden;
  padding: 80px 0 28px;
  margin-top: 0;
}
[data-theme="light"] .kh-footer-v2 {
  background: #0b1726;            /* footer stays dark even in light mode */
  color: #f3ead8;
}
.footer-peaks-silhouette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  height: 180px;
  color: #c9a24a;                  /* gold-tinted stroke */
  opacity: 0.18;                   /* "14 peaks transparency" */
  pointer-events: none;
  z-index: 1;
}
.kh-footer-inner {
  position: relative;
  z-index: 2;
}
.kh-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
  gap: 50px;
  margin-bottom: 80px;             /* leave room for the peaks silhouette */
}
@media (max-width: 980px) {
  .kh-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 600px) {
  .kh-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .kh-footer-v2 { padding: 56px 0 20px; }
}
.kh-footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 19px; font-weight: 600;
  color: #ffffff;
  margin: 0 0 22px;
  letter-spacing: 0;
}
.kh-footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.kh-footer-col a {
  color: rgba(243, 234, 216, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  transition: color .2s;
}
.kh-footer-col a:hover { color: #c9a24a; }

/* Contact column — has icon rows instead of text links */
.kh-footer-contact h4 { margin-bottom: 18px; }
.kh-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  text-decoration: none;
  color: rgba(243, 234, 216, 0.85);
  font-size: 14.5px;
  line-height: 1.5;
  font-family: 'Outfit', sans-serif;
  transition: color .2s;
}
.kh-contact-row:hover { color: #ffffff; }
.kh-contact-row:hover .kh-contact-icn { transform: scale(1.04); }
.kh-contact-icn {
  width: 38px; height: 38px;
  flex-shrink: 0;
  background: #c9a24a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease;
}
.kh-contact-icn svg { width: 18px; height: 18px; display: block; }
.kh-contact-text {
  flex: 1;
  padding-top: 8px;
  word-break: break-word;
}
.kh-footer-copytext {
  font-size: 12.5px;
  color: rgba(243, 234, 216, 0.62);
  line-height: 1.65;
  margin: 18px 0 0;
}

/* Bottom strip — legal links + socials + compass */
.kh-footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 162, 74, 0.25);
}
.kh-footer-legal {
  display: flex; gap: 28px;
  font-family: 'Outfit', sans-serif;
}
.kh-footer-legal a {
  color: rgba(243, 234, 216, 0.78);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.kh-footer-legal a:hover { color: #c9a24a; }
.kh-footer-socials {
  display: flex; gap: 10px;
}
.khv-social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #c9a24a;
  color: #0b1726;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, background .2s;
}
.khv-social-icon:hover { transform: translateY(-2px); background: #e5c37a; }
.khv-social-icon svg { width: 16px; height: 16px; }
.kh-footer-compass {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 760px) {
  .kh-footer-bottom { flex-direction: column; align-items: center; gap: 18px; text-align: center; }
  .kh-footer-legal { flex-wrap: wrap; justify-content: center; gap: 14px 22px; }
}

/* Hide the old peaks-section-footer + trust-band + payment-band from clashing
   with the new footer style — we keep them visible but make sure they sit above */
.peaks-section-footer { position: relative; z-index: 1; }


/* ==================================================================
   PAGE TRANSITIONS — gold curtain reveal between pages
   ================================================================== */
.kh-page-transition {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  /* Sub-elements (two halves) slide outward to reveal page */
}
.kh-page-transition.is-done {
  display: none;                          /* fully out of the way, no paint cost */
}
.kh-pt-half {
  position: absolute;
  left: 0; right: 0;
  height: 51%;                            /* slight overlap so the seam never shows */
  background: #0b1726;                    /* midnight navy — same as footer */
  transition: transform .38s cubic-bezier(.65, 0, .25, 1);
  will-change: transform;
}
.kh-pt-top { top: 0;    transform: translateY(0); }
.kh-pt-bot { bottom: 0; transform: translateY(0); }

/* Once content is ready, the halves slide outward to reveal the page */
.kh-page-transition.is-open .kh-pt-top { transform: translateY(-101%); }
.kh-page-transition.is-open .kh-pt-bot { transform: translateY( 101%); }

/* Khrego mark in the centre — fades + scales away as the curtain opens */
.kh-pt-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: opacity .25s ease, transform .38s cubic-bezier(.65, 0, .25, 1);
  z-index: 1;
}
.kh-page-transition.is-open .kh-pt-mark {
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
}

/* Respect reduce-motion preference */
@media (prefers-reduced-motion: reduce) {
  .kh-pt-half, .kh-pt-mark { transition: none !important; }
  .kh-page-transition { display: none; }
}


/* ==================================================================
   NEWSLETTER signup band — sits just above the footer
   ================================================================== */
.kh-newsletter-band {
  background: linear-gradient(135deg, #0e1c2e 0%, #142639 100%);
  color: #f3ead8;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.kh-newsletter-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 30%, rgba(201,162,74,0.10), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(201,162,74,0.06), transparent 45%);
  pointer-events: none;
}
.kh-newsletter-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 880px) {
  .kh-newsletter-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
.kh-newsletter-copy { max-width: 540px; }
.kh-newsletter-tag {
  display: inline-block;
  font-size: 10.5px; letter-spacing: .28em;
  color: var(--gold); font-weight: 600;
  margin-bottom: 10px;
}
.kh-newsletter-copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 30px; line-height: 1.2; font-weight: 500;
  color: #ffffff;
  margin: 0 0 12px; letter-spacing: 0; text-transform: none;
}
.kh-newsletter-copy p {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(243, 234, 216, 0.78);
  margin: 0;
}
.kh-newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
  max-width: 540px;
  position: relative;
}
@media (max-width: 880px) { .kh-newsletter-form { margin: 0 auto; } }
@media (max-width: 560px) { .kh-newsletter-form { grid-template-columns: 1fr; } }
.kh-nl-input {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 74, 0.35);
  border-radius: 10px;
  padding: 14px 16px;
  color: #ffffff;
  font-size: 14.5px;
  font-family: 'Outfit', sans-serif;
  transition: border-color .2s, background .2s;
}
.kh-nl-input::placeholder { color: rgba(243, 234, 216, 0.48); }
.kh-nl-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.10);
}
.kh-nl-btn {
  background: var(--gold);
  color: #0b1726;
  border: 0;
  border-radius: 10px;
  padding: 0 22px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.kh-nl-btn:hover { background: #e5c37a; transform: translateY(-1px); }
.kh-nl-btn:disabled { opacity: .55; cursor: progress; }
.kh-nl-msg {
  grid-column: 1 / -1;
  font-size: 13px;
  padding: 4px 4px 0;
  min-height: 18px;
  letter-spacing: .02em;
}
.kh-nl-msg.is-ok  { color: #8ed1a8; }
.kh-nl-msg.is-err { color: #ffb087; }

/* Blog cards with Instagram embed */
.blog-card.has-ig .blog-img { display: none; }
.blog-ig-embed {
  padding: 14px 14px 0;
  background: var(--bg-2);
}
.blog-ig-embed .instagram-media {
  margin: 0 auto !important;
}
.blog-ig-mark {
  display: inline-block;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}


/* ==================================================================
   TERMS & CONDITIONS — dual tab switcher (trekking vs expedition)
   ================================================================== */
.terms-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0 0 36px;
}
@media (max-width: 640px) { .terms-tabs { grid-template-columns: 1fr; } }
.terms-tab {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  transition: border-color .2s, background .2s, transform .2s;
}
.terms-tab:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.terms-tab.is-active {
  border-color: var(--gold);
  border-width: 2px;
  padding: 21px 23px;
  background: linear-gradient(135deg, rgba(201,162,74,0.10), rgba(201,162,74,0.02));
}
.terms-tab-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--gold);
  color: #0b1726;
  border-radius: 10px;
  margin-bottom: 8px;
}
.terms-tab-icon svg { width: 22px; height: 22px; }
.terms-tab-label {
  font-family: 'Fraunces', serif;
  font-size: 19px; font-weight: 500;
  color: var(--text);
}
.terms-tab-sub {
  font-size: 12px;
  color: var(--text-soft);
  letter-spacing: .02em;
}
.terms-panel { animation: terms-fade .25s ease; }
@keyframes terms-fade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.terms-head {
  border-bottom: 1px solid var(--border);
  padding-bottom: 22px;
  margin-bottom: 28px;
}
.terms-head h2 {
  font-family: 'Fraunces', serif;
  font-size: 28px; line-height: 1.25; font-weight: 500;
  color: var(--text);
  margin: 0 0 12px; letter-spacing: 0; text-transform: none;
}
.terms-head p {
  font-size: 15px; line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
}
.terms-clause {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.terms-clause:last-child { border-bottom: 0; }
.terms-clause h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 10px;
  letter-spacing: .02em;
  text-transform: none;
}
.terms-clause p {
  font-size: 14.5px; line-height: 1.75;
  color: var(--text);
  margin: 0;
}
.terms-foot {
  margin-top: 40px;
  padding: 22px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-soft);
  border-top: 1px solid var(--border);
}
.terms-foot p { margin: 0 0 6px; }
.terms-foot a { color: var(--gold); text-decoration: none; }
.terms-foot a:hover { text-decoration: underline; }


/* ==================================================================
   PARALLAX + LAZY-LOAD (replaces the old curtain transition)
   ================================================================== */

/* Curtain transition disabled — keep CSS so any leftover DOM nodes stay invisible */
.kh-page-transition { display: none !important; }

/* Lazy-image fade-in — images start slightly translated + transparent, fade to full
   opacity when they enter the viewport. JS adds .kh-lazy-shown via IntersectionObserver. */
img.kh-lazy-in {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .55s cubic-bezier(.22, 1, .36, 1), transform .55s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
img.kh-lazy-in.kh-lazy-shown {
  opacity: 1;
  transform: translateY(0);
}

/* Parallax targets — give them GPU layers so the transform is buttery */
.hero-art,
.pkg-modal-hero img {
  will-change: transform;
  backface-visibility: hidden;
}
.page-hero,
section.kh-photo-bg {
  background-attachment: scroll;             /* override fixed — JS drives parallax */
  background-position-y: center;
}

/* Respect reduced-motion — disable both parallax and lazy fade */
@media (prefers-reduced-motion: reduce) {
  img.kh-lazy-in { opacity: 1; transform: none; transition: none; }
  .hero-art, .pkg-modal-hero img { transform: none !important; }
}


/* Dark mode (default) — deep navy backgrounds, cream text */
:root .blog-card,
[data-theme="dark"] .blog-card,
:root .sustain-card,
[data-theme="dark"] .sustain-card,
:root .gallery-item,
[data-theme="dark"] .gallery-item,
:root .review-card,
[data-theme="dark"] .review-card,
:root .gear-pack,
[data-theme="dark"] .gear-pack,
:root .faq-item,
[data-theme="dark"] .faq-item {
  background: var(--card-bg) !important;
  color: var(--text);
}

/* Light mode — white backgrounds, deep navy text */
[data-theme="light"] .blog-card,
[data-theme="light"] .sustain-card,
[data-theme="light"] .gallery-item,
[data-theme="light"] .review-card,
[data-theme="light"] .gear-pack,
[data-theme="light"] .faq-item {
  background: var(--card-bg) !important;
  color: var(--text);
}

/* Force ALL text INSIDE these cards to use theme-aware colors */
.blog-card, .blog-card .blog-body, .blog-card .blog-title, .blog-card h1, .blog-card h2, .blog-card h3, .blog-card h4 { color: var(--text); }
.blog-card .blog-excerpt, .blog-card .blog-date { color: var(--text-soft); }
.blog-card .blog-read { color: var(--gold); }

.sustain-card, .sustain-card h1, .sustain-card h2, .sustain-card h3, .sustain-card h4 { color: var(--text); }
.sustain-card p { color: var(--text-soft); }

.gallery-item .gallery-cap, .gallery-item .gallery-cap-title { color: var(--text); }
.gallery-item .gallery-cap-meta { color: var(--text-soft); }

.review-card, .review-card h1, .review-card h2, .review-card h3 { color: var(--text); }
.review-card-body, .review-card p { color: var(--text-soft); }

.gear-pack, .gear-pack h1, .gear-pack h2, .gear-pack h3, .gear-pack h4 { color: var(--text); }
.gear-pack p, .gear-pack li { color: var(--text-soft); }

.faq-item, .faq-item h1, .faq-item h2, .faq-item h3, .faq-item h4 { color: var(--text); }
.faq-item p { color: var(--text-soft); }

/* Also extend to the why-pillar and trip-why panels we added recently */
.trip-why-pillar { background: var(--card-bg-soft, var(--bg-2)) !important; color: var(--text); }
.trip-why-pillar h4 { color: var(--text); }
.trip-why-pillar p { color: var(--text-soft); }


/* ============ LIGHT MODE — switch everything to white + navy text ============ */
[data-theme="light"] .blog-card,
[data-theme="light"] .sustain-card,
[data-theme="light"] .gallery-item,
[data-theme="light"] .review-card,
[data-theme="light"] .gear-pack,
[data-theme="light"] .faq-item,
[data-theme="light"] .pillar-card,
[data-theme="light"] .about-pillar-card,
[data-theme="light"] .exp-cell,
[data-theme="light"] .itin-day,
[data-theme="light"] .trip-why-pillar {
  background-color: #ffffff !important;
  color: #1a2230 !important;                /* deep ink-navy */
}

[data-theme="light"] .blog-card h1, [data-theme="light"] .blog-card h2,
[data-theme="light"] .blog-card h3, [data-theme="light"] .blog-card h4,
[data-theme="light"] .sustain-card h1, [data-theme="light"] .sustain-card h2,
[data-theme="light"] .sustain-card h3, [data-theme="light"] .sustain-card h4,
[data-theme="light"] .pillar-card h1, [data-theme="light"] .pillar-card h2,
[data-theme="light"] .pillar-card h3, [data-theme="light"] .pillar-card h4,
[data-theme="light"] .about-pillar-card h1, [data-theme="light"] .about-pillar-card h2,
[data-theme="light"] .about-pillar-card h3,
[data-theme="light"] .gallery-cap-title, [data-theme="light"] .review-card h3,
[data-theme="light"] .gear-pack h3, [data-theme="light"] .faq-item h3,
[data-theme="light"] .exp-cell h3, [data-theme="light"] .itin-day-title,
[data-theme="light"] .trip-why-pillar h4 {
  color: #1a2230 !important;
}
[data-theme="light"] .blog-card p, [data-theme="light"] .sustain-card p,
[data-theme="light"] .pillar-card p, [data-theme="light"] .about-pillar-card p,
[data-theme="light"] .review-card-body, [data-theme="light"] .gear-pack p,
[data-theme="light"] .faq-item p, [data-theme="light"] .exp-cell p,
[data-theme="light"] .trip-why-pillar p, [data-theme="light"] .blog-excerpt,
[data-theme="light"] .blog-date, [data-theme="light"] .gallery-cap-meta {
  color: rgba(26,34,48,.72) !important;
}

/* Light-mode gold tone is deeper */
[data-theme="light"] .blog-read,
[data-theme="light"] .pillar-num,
[data-theme="light"] .gear-pack .gear-cat,
[data-theme="light"] .gallery-cap-title small {
  color: #966a18 !important;
}


/* ---- Best Time table: sticky region column on mobile ---- */
.bt-table th.bt-region,
.bt-table th.bt-region-h {
  position: sticky;
  left: 0;
  background: #0e1c2e;
  z-index: 2;
  box-shadow: 2px 0 8px -4px rgba(0,0,0,0.4);
  min-width: 130px;
  max-width: 200px;
}
@media (max-width: 600px) {
  .bt-table th.bt-region, .bt-table th.bt-region-h { min-width: 110px; font-size: 12px; }
  .bt-table th, .bt-table td { font-size: 12px; }
}

/* ---- Each cell becomes a clickable button (inherits the gold/red/etc colour) ---- */
.bt-cell {
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.bt-cell-btn {
  width: 100%;
  min-width: 38px;
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  color: inherit;
  background: transparent;
}
.bt-cell-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.18), 0 4px 12px rgba(0,0,0,0.25);
  z-index: 1;
  position: relative;
}
.bt-cell-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
/* Cell button inherits the bt-* colour from its parent td */
.bt-cell.bt-5 .bt-cell-btn { background: #2e9d4a; color: #fff; }
.bt-cell.bt-4 .bt-cell-btn { background: #a0d268; color: #14202c; }
.bt-cell.bt-3 .bt-cell-btn { background: #f5e3a3; color: #14202c; }
.bt-cell.bt-2 .bt-cell-btn { background: #f0a35a; color: #fff; }
.bt-cell.bt-1 .bt-cell-btn { background: #cc4f3a; color: #fff; }

/* ============ Popup card ============ */
.bt-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
}
.bt-popup.is-open { pointer-events: auto; opacity: 1; }
.bt-popup-back {
  position: absolute; inset: 0;
  background: rgba(11,23,38,.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.bt-popup-card {
  position: relative;
  width: 92%;
  max-width: 480px;
  background: #ffffff;
  color: #14202c;
  border-radius: 18px;
  padding: 36px 30px 28px;
  box-shadow: 0 30px 80px -16px rgba(0,0,0,.5);
  transform: translateY(20px) scale(.97);
  transition: transform .25s ease;
  max-height: 88vh;
  overflow-y: auto;
}
.bt-popup.is-open .bt-popup-card { transform: translateY(0) scale(1); }
[data-theme="dark"] .bt-popup-card,
:root .bt-popup-card {
  background: #14202c;
  color: #f3ead8;
}
.bt-popup-close {
  position: absolute; top: 14px; right: 16px;
  width: 32px; height: 32px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.06);
  font-size: 22px; line-height: 1; color: inherit;
  cursor: pointer;
  transition: background .15s;
}
.bt-popup-close:hover { background: rgba(0,0,0,0.12); }

.bt-popup-score {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  font-family: 'Fraunces', serif;
  font-size: 26px; font-weight: 600;
  margin-bottom: 14px;
  color: #fff;
}
.bt-popup-score.bt-5 { background: #2e9d4a; }
.bt-popup-score.bt-4 { background: #a0d268; color: #14202c; }
.bt-popup-score.bt-3 { background: #f5e3a3; color: #14202c; }
.bt-popup-score.bt-2 { background: #f0a35a; }
.bt-popup-score.bt-1 { background: #cc4f3a; }
.bt-popup-meaning {
  display: inline-block;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold, #c9a24a);
  font-weight: 600;
  margin-left: 14px;
  vertical-align: middle;
}
.bt-popup-title {
  font-family: 'Fraunces', serif;
  font-size: 24px; font-weight: 500;
  margin: 6px 0 8px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}
.bt-popup-note {
  font-size: 14px; line-height: 1.6;
  opacity: 0.78;
  margin: 0 0 18px;
}
.bt-popup-recs {
  border-top: 1px solid rgba(127,127,127,0.15);
  padding-top: 16px;
  margin-bottom: 18px;
}
.bt-popup-recs-h {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold, #c9a24a);
  font-weight: 600;
  margin-bottom: 10px;
}
.bt-popup-recs-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.bt-popup-recs-list li {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(201,162,74,0.08);
  border-radius: 8px;
  font-size: 14px;
}
.bt-popup-recs-list a {
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}
.bt-popup-recs-list a:hover { color: var(--gold, #c9a24a); }
.bt-popup-recs-days {
  font-size: 12px;
  opacity: 0.6;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
}
.bt-popup-no-recs {
  font-size: 13px; line-height: 1.55;
  opacity: 0.7;
  margin: 0;
}
.bt-popup-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.bt-popup-cta {
  flex: 1;
  min-width: 200px;
  background: var(--gold, #c9a24a);
  color: #0b1726;
  border: 0;
  border-radius: 10px;
  padding: 13px 18px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .04em;
  text-decoration: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s, transform .15s;
}
.bt-popup-cta:hover { background: #e5c37a; transform: translateY(-1px); }

/* Mobile tweaks for the popup */
@media (max-width: 560px) {
  .bt-popup-card { padding: 28px 22px 22px; }
  .bt-popup-title { font-size: 20px; }
  .bt-popup-score { width: 56px; height: 56px; font-size: 22px; }
}


/* =====================================================================
   THEME RESCUE v3 — UNIVERSAL card theme rules
   Every card / panel / pillar / tile / item on the site is forced to
   theme-aware colours. Dark mode = #0e1c2e bg / cream text;
   Light mode = #ffffff bg / deep-navy text. Hardcoded hex bypasses
   variable resolution problems. !important wins all specificity battles.
   ===================================================================== */

/* ---------- DARK MODE (default + [data-theme="dark"]) ---------- */
.blog-card,
.sustain-card,
.gallery-item,
.review-card,
.gear-pack,
.faq-item,
.pillar-card,
.about-pillar-card,
.exp-cell,
.itin-day,
.trip-why-pillar,
.tm-card,
.tm-modal-card,
.qz-card,
.cmp-panel,
.cmp-row,
.cmp-modal-inner,
.ready-panel,
.acc-card,
.terms-clause,
.admin-list-item,
.admin-section,
.admin-card,
.admin-terms-panel,
.bt-wrap,
.bt-popup-card,
.trip-why-expert,
.modal-addon-band,
.package-card,
.pkg-modal,
.pkg-modal-stats {
  background-color: #0e1c2e !important;
  color: #f3ead8 !important;
  border-color: rgba(201,162,74,.25);
}

/* Headings inside ALL dark cards */
.blog-card h1, .blog-card h2, .blog-card h3, .blog-card h4, .blog-card h5,
.sustain-card h1, .sustain-card h2, .sustain-card h3, .sustain-card h4,
.pillar-card h1, .pillar-card h2, .pillar-card h3, .pillar-card h4,
.about-pillar-card h1, .about-pillar-card h2, .about-pillar-card h3,
.trip-why-pillar h1, .trip-why-pillar h2, .trip-why-pillar h3, .trip-why-pillar h4,
.exp-cell h1, .exp-cell h2, .exp-cell h3, .exp-cell h4,
.tm-card h1, .tm-card h2, .tm-card h3,
.review-card h3,
.gear-pack h3,
.faq-item h3,
.acc-card h3,
.itin-day-title,
.gallery-cap-title,
.terms-clause h3,
.trip-why-expert h3,
.cmp-panel h1, .cmp-panel h2, .cmp-panel h3,
.ready-panel h1, .ready-panel h2, .ready-panel h3 {
  color: #f3ead8 !important;
}

/* Body text inside ALL dark cards */
.blog-card p, .blog-excerpt,
.sustain-card p,
.pillar-card p, .pillar-body, .about-pillar-card p,
.trip-why-pillar p,
.exp-cell p, .exp-desc,
.tm-card p,
.review-card-body, .review-card p,
.gear-pack p, .gear-pack li,
.faq-item p,
.acc-card p,
.itin-day-detail,
.terms-clause p,
.trip-why-expert-body,
.cmp-panel p,
.ready-panel p,
.cmp-sub, .qz-desc, .ready-notes, .tm-modal-bio,
.gallery-cap-meta,
.blog-date {
  color: rgba(243,234,216,.72) !important;
}

/* Gold accents inside cards stay gold (links, labels, eyebrows) */
.blog-read,
.pillar-num,
.blog-cat,
.gear-pack .gear-cat,
.section-tag,
.trip-why-expert-tag,
.trip-why-pillars-tag,
.terms-tab-icon,
.exp-num,
.faq-question-tag {
  color: #c9a24a !important;
}

/* ---------- LIGHT MODE OVERRIDES ---------- */
[data-theme="light"] .blog-card,
[data-theme="light"] .sustain-card,
[data-theme="light"] .gallery-item,
[data-theme="light"] .review-card,
[data-theme="light"] .gear-pack,
[data-theme="light"] .faq-item,
[data-theme="light"] .pillar-card,
[data-theme="light"] .about-pillar-card,
[data-theme="light"] .exp-cell,
[data-theme="light"] .itin-day,
[data-theme="light"] .trip-why-pillar,
[data-theme="light"] .tm-card,
[data-theme="light"] .tm-modal-card,
[data-theme="light"] .qz-card,
[data-theme="light"] .cmp-panel,
[data-theme="light"] .cmp-row,
[data-theme="light"] .cmp-modal-inner,
[data-theme="light"] .ready-panel,
[data-theme="light"] .acc-card,
[data-theme="light"] .terms-clause,
[data-theme="light"] .admin-list-item,
[data-theme="light"] .admin-section,
[data-theme="light"] .admin-card,
[data-theme="light"] .admin-terms-panel,
[data-theme="light"] .bt-wrap,
[data-theme="light"] .bt-popup-card,
[data-theme="light"] .trip-why-expert,
[data-theme="light"] .modal-addon-band,
[data-theme="light"] .package-card,
[data-theme="light"] .pkg-modal,
[data-theme="light"] .pkg-modal-stats {
  background-color: #ffffff !important;
  color: #14202c !important;
  border-color: rgba(150,106,24,.32);
}

[data-theme="light"] .blog-card h1, [data-theme="light"] .blog-card h2,
[data-theme="light"] .blog-card h3, [data-theme="light"] .blog-card h4,
[data-theme="light"] .sustain-card h1, [data-theme="light"] .sustain-card h2,
[data-theme="light"] .sustain-card h3, [data-theme="light"] .sustain-card h4,
[data-theme="light"] .pillar-card h1, [data-theme="light"] .pillar-card h2,
[data-theme="light"] .pillar-card h3, [data-theme="light"] .pillar-card h4,
[data-theme="light"] .about-pillar-card h3,
[data-theme="light"] .trip-why-pillar h4,
[data-theme="light"] .exp-cell h3,
[data-theme="light"] .tm-card h3,
[data-theme="light"] .review-card h3,
[data-theme="light"] .gear-pack h3,
[data-theme="light"] .faq-item h3,
[data-theme="light"] .acc-card h3,
[data-theme="light"] .itin-day-title,
[data-theme="light"] .gallery-cap-title,
[data-theme="light"] .terms-clause h3,
[data-theme="light"] .trip-why-expert h3,
[data-theme="light"] .cmp-panel h3,
[data-theme="light"] .ready-panel h3 {
  color: #14202c !important;
}

[data-theme="light"] .blog-card p, [data-theme="light"] .blog-excerpt,
[data-theme="light"] .sustain-card p,
[data-theme="light"] .pillar-card p, [data-theme="light"] .pillar-body, [data-theme="light"] .about-pillar-card p,
[data-theme="light"] .trip-why-pillar p,
[data-theme="light"] .exp-cell p, [data-theme="light"] .exp-desc,
[data-theme="light"] .tm-card p,
[data-theme="light"] .review-card-body, [data-theme="light"] .review-card p,
[data-theme="light"] .gear-pack p, [data-theme="light"] .gear-pack li,
[data-theme="light"] .faq-item p,
[data-theme="light"] .acc-card p,
[data-theme="light"] .itin-day-detail,
[data-theme="light"] .terms-clause p,
[data-theme="light"] .trip-why-expert-body,
[data-theme="light"] .cmp-panel p,
[data-theme="light"] .ready-panel p,
[data-theme="light"] .cmp-sub, [data-theme="light"] .qz-desc,
[data-theme="light"] .ready-notes, [data-theme="light"] .tm-modal-bio,
[data-theme="light"] .gallery-cap-meta,
[data-theme="light"] .blog-date {
  color: rgba(20,32,44,.72) !important;
}

[data-theme="light"] .blog-read,
[data-theme="light"] .pillar-num,
[data-theme="light"] .blog-cat,
[data-theme="light"] .gear-pack .gear-cat,
[data-theme="light"] .section-tag,
[data-theme="light"] .trip-why-expert-tag,
[data-theme="light"] .trip-why-pillars-tag,
[data-theme="light"] .terms-tab-icon,
[data-theme="light"] .exp-num,
[data-theme="light"] .faq-question-tag {
  color: #966a18 !important;
}


/* =====================================================================
   LIGHT MODE — comprehensive contrast pass
   Makes EVERY text element strongly readable against cream/white bg.
   Forces clean ink-navy on body text, deep gold on accents.
   ===================================================================== */
[data-theme="light"] {
  /* Tighter, more readable colour scale */
  --text:         #0e1a2a;                  /* near-black ink for max contrast */
  --text-soft:    rgba(14,26,42,.78);       /* still readable but softer */
  --text-faint:   rgba(14,26,42,.55);
  --gold:         #8a5e10;                  /* deeper gold reads strongly on cream */
  --gold-hi:      #b08020;
  --gold-soft:    #6a4810;
  --border:       rgba(138,94,16,.32);
  --border-strong:rgba(138,94,16,.55);
}

/* Body text in light mode — make every text variant explicitly visible */
[data-theme="light"] body { color: #0e1a2a; }
[data-theme="light"] p,
[data-theme="light"] li,
[data-theme="light"] span,
[data-theme="light"] td,
[data-theme="light"] dd,
[data-theme="light"] dt { color: inherit; }

/* Page heroes — strong dark titles on cream */
[data-theme="light"] .page-hero,
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #faf5e9 0%, #efe6d0 100%);
  color: #0e1a2a;
}
[data-theme="light"] .page-hero-title,
[data-theme="light"] .hero-title,
[data-theme="light"] .page-hero-title em,
[data-theme="light"] .hero-title em {
  color: #0e1a2a !important;
}
[data-theme="light"] .page-hero-title em,
[data-theme="light"] .hero-title em {
  color: #8a5e10 !important;
}
[data-theme="light"] .page-hero-sub,
[data-theme="light"] .hero-sub {
  color: rgba(14,26,42,.78) !important;
}
[data-theme="light"] .page-hero-tag,
[data-theme="light"] .hero-eyebrow {
  color: #8a5e10 !important;
}

/* Section heads — eyebrow / title / lead */
[data-theme="light"] .section-tag {
  color: #8a5e10 !important;
}
[data-theme="light"] .section-title,
[data-theme="light"] .section-title em {
  color: #0e1a2a !important;
}
[data-theme="light"] .section-title em {
  color: #8a5e10 !important;
}
[data-theme="light"] .section-lead {
  color: rgba(14,26,42,.78) !important;
}

/* Headings everywhere on the page */
[data-theme="light"] h1, [data-theme="light"] h2,
[data-theme="light"] h3, [data-theme="light"] h4, [data-theme="light"] h5 {
  color: #0e1a2a;
}

/* Closing block + closing line */
[data-theme="light"] .closing-line,
[data-theme="light"] .closing-para { color: #0e1a2a !important; }
[data-theme="light"] .closing-para { color: rgba(14,26,42,.78) !important; }

/* Plan-and-CTA blocks */
[data-theme="light"] .container .lead,
[data-theme="light"] .lead { color: rgba(14,26,42,.78); }

/* Trust + payment bands */
[data-theme="light"] .trust-band, [data-theme="light"] .payment-band {
  background: #f1e7d2;
  color: #0e1a2a;
}
[data-theme="light"] .trust-band-title, [data-theme="light"] .payment-band-title {
  color: #8a5e10 !important;
}

/* Article (depth) blocks I added on teach-and-learn — force dark text */
[data-theme="light"] article.reveal {
  color: #0e1a2a;
}
[data-theme="light"] article.reveal p { color: rgba(14,26,42,.82) !important; }
[data-theme="light"] article.reveal h2, [data-theme="light"] article.reveal h3 {
  color: #0e1a2a !important;
}

/* FAQ <details> summary + content */
[data-theme="light"] summary { color: #0e1a2a !important; }
[data-theme="light"] details > div p,
[data-theme="light"] details p { color: rgba(14,26,42,.78) !important; }

/* Links inside body content (not menu/nav) — clearer gold */
[data-theme="light"] article a:not(.btn):not(.kh-contact-row):not(.cd-btn):not(.bt-popup-cta) {
  color: #8a5e10;
}
[data-theme="light"] article a:not(.btn):hover { color: #6a4810; }

/* About / sustainability bullet stats */
[data-theme="light"] .about-stat-num, [data-theme="light"] .stat-num {
  color: #8a5e10 !important;
}
[data-theme="light"] .about-stat-lbl, [data-theme="light"] .stat-lbl {
  color: rgba(14,26,42,.62) !important;
}

/* Region / route labels on package cards */
[data-theme="light"] .pkg-region,
[data-theme="light"] .pkg-modal-region {
  background: rgba(14,26,42,.85);
  color: #fff8e1;
  border: 1px solid rgba(14,26,42,.3);
}

/* Sticky region column in best-time chart */
[data-theme="light"] .bt-table th.bt-region,
[data-theme="light"] .bt-table th.bt-region-h {
  background: #ffffff !important;
  color: #0e1a2a !important;
}
[data-theme="light"] .bt-wrap { background: #f1e7d2 !important; border-color: rgba(138,94,16,.32); }
[data-theme="light"] .bt-mobile-hint { color: rgba(14,26,42,.62); }

/* Footer — keep always dark, but make sure copy is readable */
.kh-footer-v2, .kh-footer-v2 *,
[data-theme="light"] .kh-footer-v2, [data-theme="light"] .kh-footer-v2 *,
.kh-newsletter-band, .kh-newsletter-band *,
[data-theme="light"] .kh-newsletter-band, [data-theme="light"] .kh-newsletter-band * {
  /* Footer + newsletter band stay dark in BOTH themes — overrides above */
}
[data-theme="light"] .kh-footer-v2 { color: #f3ead8; }
[data-theme="light"] .kh-newsletter-band { color: #f3ead8; }

/* Form labels + inputs */
[data-theme="light"] label,
[data-theme="light"] .field-label,
[data-theme="light"] .form-label { color: #0e1a2a; }
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder { color: rgba(14,26,42,.5) !important; }

/* Modal body text */
[data-theme="light"] .pkg-modal-body p,
[data-theme="light"] .pkg-modal-body li,
[data-theme="light"] .pkg-modal-body { color: #0e1a2a; }
[data-theme="light"] .pkg-modal-body p { color: rgba(14,26,42,.78); }
[data-theme="light"] .pkg-modal h3 { color: #8a5e10 !important; }

/* Honest tweaks for filter pills (region/expedition filters) */
[data-theme="light"] .team-pill,
[data-theme="light"] .trek-pill,
[data-theme="light"] .exp-pill {
  background: #ffffff;
  border-color: rgba(138,94,16,.3);
  color: #0e1a2a;
}
[data-theme="light"] .team-pill.active,
[data-theme="light"] .trek-pill.active,
[data-theme="light"] .exp-pill.active {
  background: #8a5e10;
  color: #ffffff;
  border-color: #8a5e10;
}

/* Header text in light mode (sticky bar at top) */
[data-theme="light"] .topnav a,
[data-theme="light"] .quick-nav-link {
  color: #0e1a2a;
}
[data-theme="light"] .topnav a:hover,
[data-theme="light"] .quick-nav-link:hover { color: #8a5e10; }


/* =====================================================================
   PARALLAX MOUNTAIN LOADER — replaces the old centered logo splash
   Three SVG ridges slide up from below at different speeds; logo fades up.
   ===================================================================== */
.kh-intro-parallax {
  position: relative;
  width: 100vw; height: 100vh;
  background: linear-gradient(180deg, #0b1726 0%, #122234 60%, #0e1c2e 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.kh-intro-mtn {
  position: absolute;
  left: 0; right: 0;
  width: 100%;
  height: 60%;
  bottom: 0;
  transform: translateY(20%);
  opacity: 0;
}
.kh-intro-mtn-back  { bottom: 30%; height: 38%; animation: kh-mtn-rise 0.55s cubic-bezier(.2,.8,.2,1) 0.02s forwards; }
.kh-intro-mtn-mid   { bottom: 15%; height: 48%; animation: kh-mtn-rise 0.55s cubic-bezier(.2,.8,.2,1) 0.09s forwards; }
.kh-intro-mtn-front { bottom: 0;   height: 56%; animation: kh-mtn-rise 0.55s cubic-bezier(.2,.8,.2,1) 0.16s forwards; }
@keyframes kh-mtn-rise {
  0%   { transform: translateY(60%); opacity: 0; }
  100% { transform: translateY(0);    opacity: 1; }
}
.kh-intro-centre {
  position: relative; z-index: 5;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  animation: kh-centre-rise .45s cubic-bezier(.2,.8,.2,1) 0.22s forwards;
}
@keyframes kh-centre-rise {
  0%   { opacity: 0; transform: translateY(20px) scale(.96); }
  100% { opacity: 1; transform: translateY(0)   scale(1); }
}
.kh-intro-parallax .kh-intro-mark { display: inline-block; }
.kh-intro-parallax .kh-intro-mark svg,
.kh-intro-parallax .kh-intro-img {
  width: 110px; height: auto; display: block; margin: 0 auto;
}
.kh-intro-parallax .kh-intro-words { margin-top: 18px; }
.kh-intro-parallax .kh-intro-name {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 500; letter-spacing: .18em;
  color: #c9a24a;
}
.kh-intro-parallax .kh-intro-name span { display: inline-block; }
.kh-intro-parallax .kh-intro-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; letter-spacing: .42em;
  color: rgba(243,234,216,.62);
  text-transform: uppercase;
  margin-top: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .kh-intro-mtn, .kh-intro-centre { animation: none !important; opacity: 1 !important; transform: none !important; }
}
@media (max-width: 720px) {
  .kh-intro-parallax .kh-intro-mark svg { width: 86px; }
  .kh-intro-parallax .kh-intro-name { font-size: 26px; letter-spacing: .14em; }
}

/* ==================================================================
   DEDICATED TRIP PAGES (trip.html) — themed via site variables
   Solid gold fills use #c9a24a + navy text so they read in BOTH modes
   (var(--gold) goes dark in light mode and is used only for accents).
   ================================================================== */
.tp-crumb{font-size:12.5px;color:var(--text-faint);padding:104px 0 2px}
.tp-crumb a{color:var(--text-soft)}.tp-crumb b{color:var(--gold)}
.tp-hero{position:relative;border-radius:22px;overflow:hidden;margin:6px 0 0;line-height:0;box-shadow:var(--shadow-md)}
.tp-hero>img{width:100%;height:auto;max-height:520px;object-fit:cover;display:block}
.tp-hero-ov{display:none}
.tp-hero-info{margin:0 0 18px}
.tp-badges{display:flex;gap:8px;margin-bottom:12px;flex-wrap:wrap}
.tp-badge{background:var(--gold);color:#0b1726;font-size:11.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;padding:6px 13px;border-radius:100px}
.tp-badge.g{background:transparent;color:var(--text-soft);border:1px solid var(--border-strong)}
.tp-hero-info h1{color:var(--text);font-family:'Fraunces',serif;font-weight:600;font-size:42px;line-height:1.12;max-width:900px}
.tp-hero-info .tp-hero-sub{color:var(--text-soft);margin-top:10px;font-size:16px;line-height:1.62;max-width:none}
.tp-statbar{max-width:1160px;margin:-46px auto 0;position:relative;z-index:3;display:grid;grid-template-columns:repeat(5,1fr);gap:1px;background:var(--border);border:1px solid var(--border);border-radius:16px;overflow:hidden;box-shadow:var(--shadow-md)}
.tp-statbar>div{background:var(--card-bg);padding:15px 16px;display:flex;align-items:center;gap:11px}
.tp-si{width:24px;height:24px;stroke:var(--gold);flex:0 0 auto}
.tp-stat-t{min-width:0}
.tp-statbar .k{font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.08em}
.tp-statbar .v{font-size:19px;font-weight:600;font-family:'Fraunces',serif}
.tp-grid{display:grid;grid-template-columns:1fr 384px;gap:38px;align-items:start;padding:24px 0 72px}
.tp-sec{background:var(--card-bg);border:1px solid var(--border);border-radius:18px;padding:26px 30px;margin-bottom:22px}
.tp-sec-h{display:flex;align-items:center;gap:14px;margin-bottom:18px}
.tp-num{width:30px;height:30px;border-radius:9px;background:var(--bg-3);color:var(--gold);font-family:'Fraunces',serif;font-weight:600;font-size:14px;display:flex;align-items:center;justify-content:center;border:1px solid var(--border);flex:0 0 auto}
.tp-i{stroke:var(--gold);fill:none;flex:0 0 auto;width:22px;height:22px}
.tp-i-h{width:24px;height:24px}
.tp-sec-h h2{font-family:'Fraunces',serif;font-weight:600;font-size:23px;margin:0}
.tp-sec-h h2 em{font-style:italic;color:var(--gold)}
.tp-tag{margin-left:auto;font-size:11px;color:var(--gold);letter-spacing:.13em;text-transform:uppercase}
.tp-lead{color:var(--text-soft);font-size:16px;line-height:1.7}
.tp-hl{list-style:none;margin:15px 0 0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:9px}
.tp-hl li{display:flex;gap:9px;color:var(--text-soft);font-size:14.5px}
.tp-hl li svg{width:17px;height:17px;stroke:var(--gold);margin-top:3px;flex:0 0 auto}
.tp-dgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:13px}
.tp-dtile{background:var(--bg-2);border:1px solid var(--border);border-radius:12px;padding:14px 16px;display:flex;gap:12px;align-items:center}
.tp-dtile .t{font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.05em}
.tp-dtile .v{font-size:16px;font-weight:600;color:var(--text)}
.tp-sizes{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.tp-sizecard{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:18px}
.tp-sizecard .n{font-family:'Fraunces',serif;font-size:24px;color:var(--gold)}
.tp-sizecard .lbl{font-weight:600;margin-top:2px;color:var(--text)}
.tp-sizecard p{font-size:14px;color:var(--text-soft);margin-top:4px}
.tp-gal{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:10px}
.tp-gal img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:12px;display:block;transition:.25s;cursor:zoom-in}
.tp-gal img:hover{transform:scale(1.02);opacity:.94;box-shadow:0 10px 26px rgba(16,32,64,.16)}
.tp-gal[data-n="1"] img{aspect-ratio:16/9}
/* 3 photos: big feature left + two stacked right, no empty gap */
.tp-gal[data-n="3"]{grid-template-columns:1.8fr 1fr;grid-auto-rows:1fr;min-height:300px}
.tp-gal[data-n="3"] img{aspect-ratio:auto;height:100%}
.tp-gal[data-n="3"] .big{grid-row:1/3}
@media(max-width:640px){
  .tp-gal,.tp-gal[data-n="3"]{grid-template-columns:1fr 1fr;grid-auto-rows:auto;min-height:0}
  .tp-gal img,.tp-gal[data-n="3"] img{aspect-ratio:4/3;height:auto}
  .tp-gal[data-n="3"] .big{grid-column:1/-1;grid-row:auto}
}
/* ---- Photo lightbox (click to enlarge) ---- */
.tp-lb{position:fixed;inset:0;z-index:100000;display:none;align-items:center;justify-content:center;padding:28px;background:rgba(8,13,22,.94);backdrop-filter:blur(3px)}
.tp-lb.on{display:flex;animation:tpLbIn .22s ease}
@keyframes tpLbIn{from{opacity:0}to{opacity:1}}
.tp-lb-stage{margin:0;max-width:95vw;max-height:92vh;display:flex;flex-direction:column;align-items:center;gap:12px}
.tp-lb-img{max-width:95vw;max-height:85vh;object-fit:contain;border-radius:10px;box-shadow:0 40px 120px rgba(0,0,0,.6)}
.tp-lb-cap{color:rgba(255,255,255,.82);font-size:13px;text-align:center;max-width:70ch}
.tp-lb-x{position:absolute;top:16px;right:20px;width:46px;height:46px;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:26px;line-height:1;cursor:pointer;transition:.2s}
.tp-lb-nav{position:absolute;top:50%;transform:translateY(-50%);width:54px;height:54px;border:0;border-radius:50%;background:rgba(255,255,255,.12);color:#fff;font-size:30px;line-height:1;cursor:pointer;transition:.2s}
.tp-lb-prev{left:18px}.tp-lb-next{right:18px}
.tp-lb-x:hover,.tp-lb-nav:hover{background:rgba(201,162,74,.85);color:#0b1726}
.tp-lb-count{position:absolute;bottom:18px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,.75);font-size:12.5px;letter-spacing:.06em}
@media(max-width:600px){.tp-lb-nav{width:42px;height:42px;font-size:24px}.tp-lb-prev{left:6px}.tp-lb-next{right:6px}.tp-lb-img{max-height:78vh}}
.tp-map{height:290px;border-radius:14px;overflow:hidden;border:1px solid var(--border);position:relative;background:var(--bg-2)}
.tp-map-note{position:absolute;left:12px;bottom:11px;font-size:11.5px;color:var(--text-faint);background:color-mix(in srgb,var(--card-bg) 82%,transparent);padding:4px 9px;border-radius:7px}
.tp-chart{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:12px 10px 6px}
.tp-note{font-size:13px;color:var(--text-faint);margin-top:12px}
.tp-itin-top{display:flex;align-items:center;gap:10px;margin-bottom:12px}
.tp-daytabs{display:flex;gap:6px;overflow-x:auto;padding-bottom:4px;flex:1}
.tp-daytab{flex:0 0 auto;width:34px;height:34px;border-radius:9px;border:1px solid var(--border);background:var(--bg-2);color:var(--text-soft);font-family:'Fraunces',serif;font-weight:600;font-size:13px;cursor:pointer;transition:.2s}
.tp-daytab.on{background:#c9a24a;color:#0b1726;border-color:#c9a24a}
.tp-navbtn{width:38px;height:38px;border-radius:10px;border:1px solid var(--border);background:var(--bg-2);color:var(--gold);font-size:18px;cursor:pointer;flex:0 0 auto}
.tp-numtog{display:block;text-align:right;font-size:12px;color:var(--text-faint);margin-bottom:10px}
.tp-dayview{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:22px 24px;min-height:140px}
.tp-dayview .top{display:flex;align-items:center;gap:14px;margin-bottom:10px}
.tp-daynum{width:46px;height:46px;border-radius:12px;background:#c9a24a;color:#0b1726;font-family:'Fraunces',serif;font-weight:700;font-size:20px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.tp-dayview h3{font-family:'Fraunces',serif;font-weight:600;font-size:20px;margin:0}
.tp-daymeta{display:flex;gap:16px;margin-top:3px}
.tp-daymeta span{font-size:12.5px;color:var(--gold);display:flex;align-items:center;gap:5px}
.tp-daymeta svg{width:14px;height:14px;stroke:var(--gold)}
.tp-dayview p{color:var(--text-soft);font-size:15px;line-height:1.7;margin:0}
.tp-months{display:grid;grid-template-columns:repeat(12,1fr);gap:6px;align-items:end;height:120px}
.tp-mo{display:flex;flex-direction:column;align-items:center;gap:6px;height:100%;justify-content:flex-end}
.tp-mo .bar{width:100%;border-radius:6px 6px 0 0}
.tp-mo .lab{font-size:10.5px;color:var(--text-faint)}
.tp-mo.prime .bar{background:#2e9d4a}.tp-mo.good .bar{background:#c9a24a}.tp-mo.ok .bar{background:#d9b98a}.tp-mo.avoid .bar{background:#c0503a}
.tp-wkey{display:flex;gap:16px;margin-top:14px;font-size:12px;color:var(--text-soft);flex-wrap:wrap}
.tp-wkey span{display:flex;align-items:center;gap:6px}.tp-wd{width:11px;height:11px;border-radius:3px;display:inline-block}
.tp-wnote{margin-top:10px;font-size:13px;color:var(--text-soft);font-style:italic}
.tp-gear{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.tp-gearcol h4{font-size:14px;color:var(--gold);text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px;display:flex;gap:8px;align-items:center}
.tp-gearcol h4 svg{width:17px;height:17px;stroke:var(--gold)}
.tp-gearcol ul{list-style:none;margin:0;padding:0;display:grid;gap:7px}
.tp-gearcol li{font-size:13.5px;color:var(--text-soft);display:flex;gap:8px}
.tp-gearcol li svg{width:15px;height:15px;stroke:var(--gold);margin-top:3px;flex:0 0 auto}
.tp-pillars{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.tp-pillar{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:18px}
.tp-pillar svg{width:26px;height:26px;stroke:var(--gold);margin-bottom:10px}
.tp-pillar h4{font-family:'Fraunces',serif;font-size:15.5px;margin:0 0 5px;color:var(--text)}
.tp-pillar p{font-size:13.5px;color:var(--text-soft);margin:0}
.tp-guidecta{margin-top:16px;background:var(--bg-3);border:1px solid var(--border);border-radius:14px;padding:18px 20px;display:flex;align-items:center;gap:16px;flex-wrap:wrap}
.tp-guidecta .gt{flex:1;min-width:220px}.tp-guidecta h4{font-family:'Fraunces',serif;font-size:16px;margin:0 0 3px;color:var(--text)}.tp-guidecta p{font-size:13.5px;color:var(--text-soft);margin:0}
.tp-revs{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.tp-rev{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:20px}
.tp-stars{color:#c9a24a;font-size:14px;letter-spacing:2px;margin-bottom:8px}
.tp-rev p{font-size:14.5px;color:var(--text-soft);font-style:italic;margin:0}
.tp-who{display:flex;align-items:center;gap:10px;margin-top:14px}
.tp-av{width:36px;height:36px;border-radius:50%;background:#c9a24a;color:#0b1726;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:13px}
.tp-who .nm{font-size:14px;font-weight:600;color:var(--text)}.tp-who .tr{font-size:12px;color:var(--text-faint)}
.tp-ie{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.tp-ie ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}.tp-ie li{display:flex;gap:9px;font-size:14px;color:var(--text-soft)}
.tp-ie li svg{width:16px;height:16px;margin-top:3px;flex:0 0 auto}
.tp-ie .inc svg{stroke:#2e9d4a}.tp-ie .exc svg{stroke:#c0503a}
.tp-ie h4{font-size:14px;text-transform:uppercase;letter-spacing:.06em;margin-bottom:10px;color:var(--text-faint)}
.tp-side{position:sticky;top:96px;display:grid;gap:16px}
.tp-pricecard{background:var(--card-bg);border:1px solid var(--border);border-radius:18px;padding:24px;box-shadow:var(--shadow-md)}
.tp-pc-head{display:flex;align-items:center;gap:8px;margin-bottom:4px;font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.1em}
.tp-pc-head svg{width:18px;height:18px;stroke:var(--gold)}
.tp-price{font-family:'Fraunces',serif;font-size:36px;font-weight:600;color:var(--text)}.tp-price small{font-size:14px;color:var(--text-faint);font-family:'Outfit',sans-serif;font-weight:400}
.tp-pay{margin:16px 0;border-top:1px dashed var(--border);border-bottom:1px dashed var(--border);padding:14px 0;display:grid;gap:9px}
.tp-pay .row{display:flex;justify-content:space-between;font-size:13.5px}.tp-pay .l{color:var(--text-soft)}.tp-pay .r{font-weight:600;color:var(--text)}
.tp-dephd{font-size:11px;color:var(--text-faint);text-transform:uppercase;letter-spacing:.08em;margin-bottom:8px}
.tp-deps{display:grid;gap:8px;margin-bottom:16px}
.tp-dep{display:flex;justify-content:space-between;align-items:center;background:var(--bg-2);border:1px solid var(--border);border-radius:10px;padding:9px 12px;font-size:13.5px;color:var(--text)}
.tp-dep .spots{font-size:11.5px;color:var(--gold)}
.tp-btn{display:block;width:100%;text-align:center;padding:13px;border-radius:100px;font-weight:600;font-size:14.5px;cursor:pointer;border:1px solid #c9a24a;text-decoration:none;box-sizing:border-box}
.tp-gold{background:#c9a24a;color:#0b1726;margin-bottom:9px}.tp-ghost{background:transparent;color:var(--gold)}
.tp-trust{margin-top:12px;font-size:11.5px;color:var(--text-faint);text-align:center;line-height:1.6}
.tp-mini{background:var(--card-bg);border:1px solid var(--border);border-radius:16px;padding:18px}
.tp-mini h4{font-family:'Fraunces',serif;font-size:15px;margin:0 0 5px;display:flex;gap:8px;align-items:center;color:var(--text)}.tp-mini h4 svg{width:19px;height:19px;stroke:var(--gold)}
.tp-mini p{font-size:13px;color:var(--text-soft);margin:0 0 11px}
@media(max-width:920px){.tp-grid{grid-template-columns:1fr}.tp-side{position:static}.tp-statbar{grid-template-columns:repeat(3,1fr)}.tp-dgrid,.tp-pillars,.tp-gear{grid-template-columns:1fr 1fr}.tp-sizes,.tp-ie,.tp-revs,.tp-hl{grid-template-columns:1fr}.tp-gal{grid-template-columns:1fr 1fr}.tp-hero-info h1{font-size:32px}}

/* ==================================================================
   LOGO APPEAR LOADER — dim → bright in ~1s, then wordmark fades in
   ================================================================== */
.kh-appear-wrap{flex-direction:column;gap:16px;text-align:center}
.kh-appear-mark{opacity:.06;transform:scale(.9);animation:khIntro 1.5s cubic-bezier(.2,.8,.2,1) .1s forwards;display:flex;align-items:center;justify-content:center}
.kh-appear-img{width:min(420px,78vw);height:auto;display:block}
.kh-appear-svg{width:104px;height:104px}
.kh-appear-svg{width:100%;height:100%;display:block;overflow:visible}
.kh-appear-img{width:100%;height:100%;object-fit:contain;display:block}
.kh-appear-name{font-family:'Fraunces',serif;font-weight:600;font-size:32px;letter-spacing:.16em;color:var(--gold);opacity:0;animation:khFade .28s ease-out .22s forwards}
.kh-appear-sub{font-size:10.5px;letter-spacing:.42em;text-transform:uppercase;color:var(--text-soft);opacity:0;animation:khFade .28s ease-out .3s forwards;margin-top:2px}
@keyframes khBrighten{0%{opacity:.1}100%{opacity:1}}
@keyframes khIntro{0%{opacity:.06;transform:scale(.9)}100%{opacity:1;transform:scale(1)}}
@keyframes khFade{0%{opacity:0}100%{opacity:1}}
@media (prefers-reduced-motion: reduce){
  .kh-appear-mark,.kh-appear-name,.kh-appear-sub{animation:none !important;opacity:1 !important}
}

/* ==================================================================
   iOS LIQUID-GLASS NAVBAR — bubble pills + frosted glass dropdowns
   ================================================================== */
@media (min-width:1024px){
  .quick-nav{gap:6px}
  .quick-nav a,
  .quick-nav .nav-with-drop > .quick-nav-link{
    padding:7px 14px;border-radius:100px;border:1px solid transparent;
    transition:background .22s var(--ease),border-color .22s var(--ease),color .22s}
  .quick-nav a::after{display:none !important}
  .quick-nav a:hover,.quick-nav a.active,
  .quick-nav .nav-with-drop:hover > .quick-nav-link,
  .quick-nav .nav-with-drop:focus-within > .quick-nav-link{
    background:rgba(201,162,74,.15);border-color:rgba(201,162,74,.34);color:var(--gold);
    -webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px)}
}
/* frosted-liquid dropdown panel (readable on any background) */
.nav-drop{
  border-radius:22px !important;padding:8px !important;overflow:hidden !important;
  background:rgba(250,247,240,.80) !important;
  -webkit-backdrop-filter:blur(34px) saturate(190%) !important;backdrop-filter:blur(34px) saturate(190%) !important;
  border:1px solid rgba(255,255,255,.6) !important;
  box-shadow:0 26px 60px -18px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.6) !important;
  transition:opacity .28s cubic-bezier(.2,.9,.3,1.2), transform .32s cubic-bezier(.2,.9,.3,1.3), visibility .28s !important}
[data-theme="dark"] .nav-drop{background:rgba(18,32,50,.72) !important;border-color:rgba(201,162,74,.34) !important}
.nav-drop::before{display:block !important;content:'' !important;position:absolute;inset:0;border-radius:inherit;pointer-events:none;z-index:0;
  background:linear-gradient(120deg,transparent 34%,rgba(255,255,255,.38) 50%,transparent 66%);background-size:260% 100%;
  animation:khLiquid 6.5s linear infinite;opacity:.55}
.nav-drop-item{position:relative;z-index:1}
@keyframes khLiquid{0%{background-position:170% 0}100%{background-position:-70% 0}}
.nav-drop::after{background:rgba(250,247,240,.80) !important;border-color:rgba(255,255,255,.6) !important}
[data-theme="dark"] .nav-drop::after{background:rgba(18,32,50,.72) !important;border-color:rgba(201,162,74,.34) !important}
.nav-with-drop:hover .nav-drop,.nav-with-drop:focus-within .nav-drop{
  transform:translateX(-50%) translateY(0) scale(1) !important}
/* liquid sheen sweep */
.nav-drop{position:absolute}
.nav-drop .kh-sheen,.nav-drop-inner{position:relative}
.nav-drop-item{border-radius:15px !important;padding:11px 14px !important}
.nav-drop-item::before{display:none !important}
.nav-drop-item:hover,.nav-drop-item:focus-visible{background:rgba(120,140,170,.16) !important}
[data-theme="dark"] .nav-drop-item:hover{background:rgba(201,162,74,.14) !important}
.nav-drop-label{color:#14202c !important}
.nav-drop-blurb{color:rgba(20,32,44,.62) !important}
.nav-drop-item-arrow{color:rgba(20,32,44,.4) !important}
.nav-drop-item:hover .nav-drop-label{color:#8a5e10 !important}
.nav-drop-item:hover .nav-drop-item-arrow{color:#8a5e10 !important}
[data-theme="dark"] .nav-drop-label{color:#f3ead8 !important}
[data-theme="dark"] .nav-drop-blurb{color:rgba(243,234,216,.66) !important}
[data-theme="dark"] .nav-drop-item:hover .nav-drop-label{color:var(--gold) !important}

/* ==================================================================
   PER-PAGE PDF — floating button + print styles (crisp vector PDF)
   ================================================================== */
@media (max-width:720px){.kh-pdf-btn{left:14px;bottom:14px;padding:10px 13px;font-size:0}.kh-pdf-btn svg{width:19px;height:19px}}
.print-head,.print-foot{display:none}
@media print{
  .header,#siteFooter,.kh-footer,.whats-float,.kh-pdf-btn,#leadMagnet,#khrego-loader,
  .menu-overlay,.lang-select,.theme-toggle,.menu-trigger,.kh-cs-arr,.kh-cs-dots,
  .compare-tray,.tp-side,.reveal-hidden,video,.kh-intro{display:none !important}
  html,body{background:#fff !important}
  body,p,li,span,td,th,div,h1,h2,h3,h4,h5,a{color:#14202c !important}
  em,.section-title em,.page-hero-title em{color:#8a5e10 !important}
  a{text-decoration:none !important}
  .container,.tp-grid,main{max-width:100% !important;grid-template-columns:1fr !important}
  section,.tp-sec,.sec,article{page-break-inside:avoid;break-inside:avoid;background:#fff !important;border-color:#e4dcc7 !important}
  .print-head{display:block !important;border-bottom:2px solid #c9a24a;padding-bottom:8px;margin-bottom:14px}
  .print-head b{font-family:'Fraunces',serif;font-size:18px;color:#0b1726 !important;letter-spacing:.08em}
  .print-head span{float:right;font-size:11px;color:#8a5e10 !important}
  .print-foot{display:block !important;position:fixed;bottom:6mm;left:0;right:0;text-align:center;font-size:10px;color:#6a6152 !important;border-top:1px solid #e4dcc7;padding-top:5px}
  @page{margin:16mm 14mm 20mm}
}


/* ==================================================================
   iOS-STYLE SMOOTH LOADING — gentle content ease-in on first paint
   ================================================================== */
#khrego-loader.hidden{transform:scale(1.04)}
body.kh-enter .page-hero,
body.kh-enter .hero,
body.kh-enter #tripRoot > .container:first-child + *,
body.kh-enter main > section:first-of-type{
  animation:khPageIn .7s cubic-bezier(.2,.8,.2,1) both}
@keyframes khPageIn{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:none}}
@media (prefers-reduced-motion:reduce){
  body.kh-enter .page-hero,body.kh-enter .hero,body.kh-enter main > section:first-of-type{animation:none}
  .nav-drop::before{animation:none !important}
}

/* ==================================================================
   TRIP PAGES — phone tightening (was only one breakpoint at 920px)
   ================================================================== */
@media (max-width:600px){
  .tp-hero{height:300px;border-radius:16px}
  .tp-hero-info{margin:0 0 14px}
  .tp-hero-info h1{font-size:26px}
  .tp-hero-info .tp-hero-sub{font-size:15px}
  .tp-statbar{grid-template-columns:repeat(2,1fr);margin-top:-28px}
  .tp-grid{padding:22px 0 56px;gap:22px}
  .tp-sec{padding:20px 18px;border-radius:14px}
  .tp-sec-h h2{font-size:20px}
  .tp-dgrid,.tp-pillars,.tp-gear,.tp-gal{grid-template-columns:1fr}
  .tp-hl{grid-template-columns:1fr}
  .tp-price{font-size:30px}
  .tp-crumb{padding:96px 0 2px;font-size:11.5px}
}

/* trip page — downward day-by-day itinerary list */
.tp-days{display:flex;flex-direction:column;gap:10px}
.tp-day{background:var(--bg-2);border:1px solid var(--border);border-radius:14px;padding:16px 18px}
.tp-day-h{display:flex;align-items:center;gap:14px;margin-bottom:8px}
.tp-day .tp-daynum{width:40px;height:40px;border-radius:11px;background:#c9a24a;color:#0b1726;font-family:'Fraunces',serif;font-weight:700;font-size:17px;display:flex;align-items:center;justify-content:center;flex:0 0 auto}
.tp-day-tt{display:flex;flex-direction:column;gap:2px}
.tp-day-tt h4{font-family:'Fraunces',serif;font-weight:600;font-size:16.5px;margin:0;color:var(--text)}
.tp-day-alt{font-size:12px;color:var(--gold);display:flex;align-items:center;gap:5px}
.tp-day-alt svg{width:13px;height:13px;stroke:var(--gold)}
.tp-day p{margin:0;color:var(--text-soft);font-size:14.5px;line-height:1.65}

/* ==================================================================
   TRIP PAGES — lighter, simpler styling (keep all sections)
   ================================================================== */
.tp-grid{gap:42px}
.tp-sec{padding:24px 30px;margin-bottom:26px;border-color:color-mix(in srgb,var(--border) 60%,transparent)}
.tp-sec-h{margin-bottom:15px}
.tp-sec-h h2{font-size:21px}
.tp-dtile,.tp-sizecard,.tp-pillar,.tp-rev,.tp-day{border-color:color-mix(in srgb,var(--border) 55%,transparent)}
.tp-lead{font-size:15.5px}

/* Teach & Learn family — distinct accent colours (recolours the gold accents) */
.tp-acc-train{--gold:#2f74a8;--gold-hi:#3f8cc4}
.tp-acc-yoga{--gold:#2f8f5e;--gold-hi:#3fa76a}
.tp-acc-village{--gold:#b3672a;--gold-hi:#cf7f3c}
/* solid fills follow the accent, with legible text */
.tp-acc-train .tp-badge,.tp-acc-train .tp-daynum,.tp-acc-train .tp-day .tp-daynum,.tp-acc-train .tp-btn.tp-gold,.tp-acc-train .tp-av{background:#2f74a8 !important;border-color:#2f74a8 !important;color:#fff !important}
.tp-acc-train .tp-stars{color:#2f74a8 !important}
.tp-acc-yoga .tp-badge,.tp-acc-yoga .tp-daynum,.tp-acc-yoga .tp-day .tp-daynum,.tp-acc-yoga .tp-btn.tp-gold,.tp-acc-yoga .tp-av{background:#2f8f5e !important;border-color:#2f8f5e !important;color:#fff !important}
.tp-acc-yoga .tp-stars{color:#2f8f5e !important}
.tp-acc-village .tp-badge,.tp-acc-village .tp-daynum,.tp-acc-village .tp-day .tp-daynum,.tp-acc-village .tp-btn.tp-gold,.tp-acc-village .tp-av{background:#b3672a !important;border-color:#b3672a !important;color:#fff !important}
.tp-acc-village .tp-stars{color:#b3672a !important}

/* Nav items never wrap (keeps 'Teach and Learn' + caret on one line) */
.quick-nav a,.quick-nav .nav-with-drop > .quick-nav-link{white-space:nowrap}

/* ==================================================================
   INTRO — three parts fly in and join at the centre (~1s, no text)
   ================================================================== */
.kh-join{width:100vw;height:100vh;background:radial-gradient(ellipse 80% 60% at 50% 50%,#102347 0%,#07142b 60%,#04101e 100%);display:flex;align-items:center;justify-content:center}
.kh-join-svg{width:150px;height:150px;overflow:visible}
.kh-join-img{width:150px;height:auto;opacity:0;animation:khFade .5s ease-out .1s forwards}
.kh-join .kj{transform-box:fill-box;transform-origin:50% 50%;opacity:0}
.kh-join .kj1{animation:kjoin1 .72s cubic-bezier(.2,.8,.25,1) .05s forwards}
.kh-join .kj2{animation:kjoin2 .72s cubic-bezier(.2,.8,.25,1) .05s forwards}
.kh-join .kj3{animation:kjoin3 .72s cubic-bezier(.2,.8,.25,1) .05s forwards}
@keyframes kjoin1{0%{opacity:0;transform:translateY(-48px) scale(.85)}100%{opacity:1;transform:translateY(0) scale(1)}}
@keyframes kjoin2{0%{opacity:0;transform:translate(-44px,36px) scale(.85)}100%{opacity:1;transform:translate(0,0) scale(1)}}
@keyframes kjoin3{0%{opacity:0;transform:translate(44px,36px) scale(.85)}100%{opacity:1;transform:translate(0,0) scale(1)}}
@media (prefers-reduced-motion:reduce){.kh-join .kj,.kh-join-img{animation:none !important;opacity:1 !important;transform:none !important}}

.tp-hero > img{will-change:transform}

/* ==================================================================
   NAV ITEMS — soft always-on highlight pills (easy to recognise)
   ================================================================== */
@media (min-width:1024px){
  .quick-nav a,
  .quick-nav .nav-with-drop > .quick-nav-link{
    background: rgba(201,162,74,.10);
    border: 1px solid rgba(201,162,74,.22);
  }
  .quick-nav a:hover,
  .quick-nav .nav-with-drop:hover > .quick-nav-link,
  .quick-nav .nav-with-drop:focus-within > .quick-nav-link{
    background: rgba(201,162,74,.20);
    border-color: rgba(201,162,74,.42);
    color: var(--gold);
  }
  .quick-nav a.active,
  .quick-nav .nav-with-drop.active > .quick-nav-link{
    background: rgba(201,162,74,.26);
    border-color: rgba(201,162,74,.55);
    color: var(--gold);
  }
}

/* ==================================================================
   NAV BORDER CLEANUP — remove stacked/overlapping borders
   Keep: soft highlight fills + the dropdown panel's single edge.
   ================================================================== */
@media (min-width:1024px){
  .quick-nav a,
  .quick-nav .nav-with-drop > .quick-nav-link,
  .quick-nav a:hover,
  .quick-nav a.active,
  .quick-nav .nav-with-drop:hover > .quick-nav-link,
  .quick-nav .nav-with-drop:focus-within > .quick-nav-link,
  .quick-nav .nav-with-drop.active > .quick-nav-link{
    border-color: transparent !important;
  }
}
/* dropdown rows: no per-row border or divider — just a soft rounded hover fill */
.nav-drop-item,
.nav-drop-item:hover,
.nav-drop-item:focus-visible{ border: 0 !important; }
.nav-drop-item + .nav-drop-item{ border-top: 0 !important; }
/* let the descriptions wrap tidily instead of running off the edge */
.nav-drop-blurb{ white-space: normal; overflow-wrap: anywhere; }

/* ===================================================================
   BUBBLE CARDS — one soft, rounded "bubble" language for every card
   =================================================================== */
:root{ --bubble-r:20px; --bubble-shadow:0 10px 30px rgba(16,32,64,.10), 0 2px 6px rgba(16,32,64,.06); --bubble-shadow-h:0 18px 44px rgba(16,32,64,.16), 0 4px 10px rgba(16,32,64,.08); }
[data-theme="dark"]{ --bubble-shadow:0 12px 34px rgba(0,0,0,.45), 0 2px 6px rgba(0,0,0,.35); --bubble-shadow-h:0 20px 50px rgba(0,0,0,.55), 0 4px 12px rgba(0,0,0,.4); }

.pkg-card,.package-card,.p14-card,.pc-card,.blog-card,.sustain-card,
.testi-card,.trust-card,.why-card,.pillar-card,.tm-card,.khc-card,
.khc-team-card,.porter-card,.acc-card,.ins-card,.khv-rm-card,.qz-card,
.tp-sec,.tp-pricecard,.tp-sizecard{
  border-radius:var(--bubble-r) !important;
  box-shadow:var(--bubble-shadow);
  overflow:hidden;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s cubic-bezier(.2,.8,.2,1);
  -webkit-backface-visibility:hidden; backface-visibility:hidden;
}
.pkg-card:hover,.package-card:hover,.p14-card:hover,.pc-card:hover,.blog-card:hover,
.sustain-card:hover,.testi-card:hover,.trust-card:hover,.why-card:hover,
.pillar-card:hover,.tm-card:hover,.khc-card:hover,.khc-team-card:hover,
.porter-card:hover,.acc-card:hover,.ins-card:hover,.khv-rm-card:hover,.qz-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--bubble-shadow-h);
}
/* keep media hugging the rounded top corners */
.pkg-card>img,.package-card>img,.p14-card>img,.pc-card>img,.blog-card>img,
.sustain-card>img,.khc-card>img,.tm-card>img,
.pkg-card .pc-media,.package-card .pc-media,.pc-card .pc-media{
  border-top-left-radius:var(--bubble-r); border-top-right-radius:var(--bubble-r);
}
@media (prefers-reduced-motion:reduce){
  .pkg-card,.package-card,.p14-card,.pc-card,.blog-card,.sustain-card,.testi-card,
  .trust-card,.why-card,.pillar-card,.tm-card,.khc-card,.khc-team-card,.porter-card,
  .acc-card,.ins-card,.khv-rm-card,.qz-card{ transition:none; }
}

/* ===================================================================
   THEME FIX — always-dark sections (newsletter + footer) must keep
   LIGHT text in LIGHT mode. The global "[data-theme=light] h1..h5"
   rule was turning these headings dark-on-dark (invisible).
   =================================================================== */
[data-theme="light"] .kh-newsletter-band h1,
[data-theme="light"] .kh-newsletter-band h2,
[data-theme="light"] .kh-newsletter-band h3,
[data-theme="light"] .kh-newsletter-copy h2,
[data-theme="light"] .kh-footer-v2 h1,
[data-theme="light"] .kh-footer-v2 h2,
[data-theme="light"] .kh-footer-v2 h3,
[data-theme="light"] .kh-footer-v2 h4,
[data-theme="light"] .kh-footer-col h4,
[data-theme="light"] .footer-col h4,
[data-theme="light"] .footer h4 { color: #ffffff !important; }

[data-theme="light"] .kh-newsletter-copy p,
[data-theme="light"] .kh-newsletter-band p,
[data-theme="light"] .kh-footer-v2 p,
[data-theme="light"] .kh-footer-v2 li,
[data-theme="light"] .kh-footer-col a,
[data-theme="light"] .footer-col a { color: rgba(243,234,216,.82) !important; }

[data-theme="light"] .kh-newsletter-tag,
[data-theme="light"] .kh-footer-col h4 .accent,
[data-theme="light"] .footer-col h4 .accent { color: #e5c37a !important; }

/* Smooth, visible cross-fade only while the user is actively toggling */
html.theme-anim, html.theme-anim body,
html.theme-anim *, html.theme-anim *::before, html.theme-anim *::after {
  transition: background-color .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), fill .45s var(--ease) !important;
}

/* ===================================================================
   .regions-bg bands ("Why train on the trail?" etc.) — force a light
   background + readable dark text in LIGHT mode so they can never end
   up dark-on-dark, regardless of any stale/cached rule.
   =================================================================== */
html:not([data-theme="dark"]) .regions-bg,
html:not([data-theme="dark"]) section.regions-bg {
  background: linear-gradient(180deg, #faf5e9 0%, #f1e7d2 100%) !important;
}
html:not([data-theme="dark"]) .regions-bg h1,
html:not([data-theme="dark"]) .regions-bg h2,
html:not([data-theme="dark"]) .regions-bg h3,
html:not([data-theme="dark"]) .regions-bg h4,
html:not([data-theme="dark"]) .regions-bg p,
html:not([data-theme="dark"]) .regions-bg li,
html:not([data-theme="dark"]) .regions-bg .reveal,
html:not([data-theme="dark"]) .regions-bg article { color: #14202c !important; }

/* elevation profile — per-day dots (hover to enlarge; native tooltip shows details) */
.tp-elev-dot{transition:r .15s ease; cursor:pointer}
.tp-elev-dot:hover{r:5.5}

/* ===== Collapsible admin cards (click header to expand/collapse) ===== */
.admin-list-head{cursor:pointer;user-select:none}
.admin-list-head>h4{position:relative;padding-left:22px}
.admin-list-head>h4::before{content:'▾';position:absolute;left:0;top:1px;color:var(--gold);font-size:13px;transition:transform .15s}
.admin-list-item.collapsed .admin-list-head>h4::before{content:'▸'}
.admin-list-item.collapsed>*:not(.admin-list-head){display:none !important}
.admin-list-item.collapsed{padding-bottom:14px}
.admin-list-item.collapsed .admin-list-head{margin-bottom:0}



/* ===== Auto-justify prose site-wide so content aligns itself everywhere =====
   Applies justified + hyphenated alignment to the content areas where text is
   added. Centered section intros (.section-lead) keep their centering. */
.tp-sec p, .tp-hero-info .tp-hero-sub, .tp-day > p,
.blog-body p, #aboutParas p, .about-copy p, .closing-para,
.faq-item p, .faq-a, .terms-clause p, .pkg-modal-body p, .pkg-body p,
.why-body, .pillar-body, .porter-body p, .acc-card p, .exp-cell p,
.gear-pack p, .trip-why-expert-body, .lm-body-text, .khv-rm-lead,
.incl-pane-lead, .kh-newsletter-copy p, .modal-addon-body, .tl-body p, .tl-text,
.sustain-card p, .qz-desc, .qz-rec-desc, article p{
  text-align:justify;
  text-justify:inter-word;
  -webkit-hyphens:auto;hyphens:auto;
  overflow-wrap:break-word;
}
/* keep intentionally-centered blocks centered even with the broad justify above */
.section-lead, .section-head.center p, [style*="text-align:center"], [style*="text-align: center"]{ text-align:center !important; }
/* on phones, justify looks cramped — fall back to left */
@media(max-width:600px){
  .tp-sec p,.tp-hero-info .tp-hero-sub,.tp-day > p,.blog-body p,#aboutParas p,.about-copy p,
  .faq-item p,.terms-clause p,.pkg-modal-body p,.pkg-body p,.why-body,.pillar-body,article p{
    text-align:left;hyphens:manual;
  }
}

/* ====================================================================
   HEADER WORDMARK LOCKUP (2026-07) — final
   KHREGO = Tussilago ; tagline = Montserrat SemiBold Italic.
   Tagline is sized + spaced to sit FLUSH with KHREGO on both the left
   and right edges. The lockup is FROZEN: it does not resize, reflow,
   or move when the page is scrolled.
==================================================================== */
.header .brand{ align-items:center; }
.header .brand .brand-mark,
.header .brand .brand-mark-img,
.header .brand .kh-mark-svg{ width:46px !important; height:46px !important; }

.header .brand .brand-text{
  display:flex; flex-direction:column; align-items:stretch;
  width:max-content; gap:5px; line-height:1;
}
.header .brand .brand-name{
  font-family:'Tussilago','Montserrat','Arial',sans-serif !important;
  font-weight:900 !important;
  font-size:24px !important;
  letter-spacing:.04em !important;
  line-height:1 !important;
  white-space:nowrap;
}
.header .brand .brand-tagline{
  font-family:'Montserrat','Arial',sans-serif !important;
  font-weight:600 !important;
  font-style:italic !important;
  font-size:11px !important;
  line-height:1 !important;
  color:var(--text) !important;      /* same colour as KHREGO — switches with theme */
  text-align:justify;
  text-align-last:justify;   /* spread words to fill KHREGO width exactly */
  letter-spacing:normal !important;
}

/* FROZEN on scroll — identical size + no vertical shift */
.header.scrolled{ padding:12px 0 !important; }
.header.scrolled .brand .brand-mark,
.header.scrolled .brand .brand-mark-img,
.header.scrolled .brand .kh-mark-svg{ width:46px !important; height:46px !important; }
.header.scrolled .brand .brand-name{ font-size:24px !important; }
.header.scrolled .brand .brand-tagline{ font-size:11px !important; }

/* Small phones — scale the whole lockup down together (still flush, still
   frozen on scroll because both lines scale by the same ratio) */
@media (max-width:520px){
  .header .brand .brand-mark,
  .header .brand .brand-mark-img,
  .header .brand .kh-mark-svg,
  .header.scrolled .brand .brand-mark,
  .header.scrolled .brand .brand-mark-img,
  .header.scrolled .brand .kh-mark-svg{ width:40px !important; height:40px !important; }
  .header .brand .brand-name,
  .header.scrolled .brand .brand-name{ font-size:21px !important; }
  .header .brand .brand-tagline,
  .header.scrolled .brand .brand-tagline{ font-size:9.5px !important; }
}

/* ====================================================================
   TRIP PAGE — quick-facts strip, stylized route map, custom-trip CTA
==================================================================== */
.tp-qf{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:14px 20px; margin:0 0 22px; padding:18px 20px;
  background:var(--card-bg); border:1px solid var(--border); border-radius:16px;
}
.tp-qfitem{ display:flex; align-items:center; gap:12px; min-width:0; }
.tp-qfitem .tp-qfi{
  width:42px; height:42px; flex:0 0 42px; padding:9px; border-radius:12px;
  background:rgba(201,162,74,.14); color:var(--gold); stroke:var(--gold);
}
.tp-qft{ min-width:0; }
.tp-qft .qk{ font-family:'Outfit',sans-serif; font-size:12px; letter-spacing:.02em; color:var(--gold); font-weight:600; }
.tp-qft .qv{ font-size:15px; font-weight:600; color:var(--text); line-height:1.25; word-break:break-word; }

/* Stylized route map */
.tp-map.tp-map-svg{
  border:1px solid var(--border); border-radius:16px; overflow:hidden;
  background:var(--bg-2); box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}
.tp-map.tp-map-svg svg{ display:block; width:100%; height:auto; }
.tp-map.tp-map-svg circle{ cursor:default; }

/* Design-your-own-trip CTA */
.tp-custom{
  margin:34px 0 8px; padding:34px 30px; border-radius:20px;
  background:linear-gradient(135deg,#0e3170 0%,#0a1f44 100%);
  color:var(--cream,#f7f0df); text-align:center; position:relative; overflow:hidden;
}
.tp-custom::after{
  content:''; position:absolute; right:-40px; top:-40px; width:180px; height:180px;
  background:radial-gradient(circle,rgba(201,162,74,.20),transparent 70%);
}
.tp-custom-in{ position:relative; max-width:640px; margin:0 auto; }
.tp-custom-in .tp-i-h{ width:44px; height:44px; color:var(--gold); stroke:var(--gold); margin:0 auto 8px; display:block; }
.tp-custom h3{ font-family:'Fraunces',serif; font-size:26px; color:#fff; margin:4px 0 10px; }
.tp-custom p{ color:rgba(247,240,223,.86); font-size:15px; line-height:1.65; margin:0 auto 20px; }
.tp-custom-btns{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
.tp-custom .tp-ghost{ color:#fff; border-color:rgba(255,255,255,.4); }
.tp-custom .tp-ghost:hover{ background:rgba(255,255,255,.08); }
@media (max-width:560px){ .tp-custom{ padding:26px 18px; } .tp-custom h3{ font-size:22px; } }

/* ====================================================================
   TRIP PAGE — competitor-style hero facts band (Khrego brand)
==================================================================== */
.tp-factsband{ color:#f7f0df; padding:18px 0 8px; }
/* rounded 'bubble' panel */
.tp-facts{
  display:grid; grid-template-columns:1.05fr 1.15fr 1fr; gap:34px; align-items:center;
  background:linear-gradient(135deg,#12213a 0%,#0b1726 100%);
  border-radius:24px; padding:34px 42px;
  box-shadow:0 18px 46px rgba(11,23,38,.22), inset 0 1px 0 rgba(255,255,255,.04);
}
.tp-facts.tp-facts-2col{ grid-template-columns:1fr 1.25fr; gap:48px; }
.tp-facts.tp-facts-2col .tp-facts-stats{ padding-left:44px; border-left:1px solid rgba(247,240,223,.12); }
/* left: id + rating + share */
.tp-facts-id h1{ font-family:'Fraunces',serif; font-size:26px; line-height:1.15; color:#fff; margin:10px 0 6px; }
.tp-facts-days{ font-size:24px; font-weight:700; color:#fff; letter-spacing:.01em; }
.tp-pyr{ display:flex; flex-direction:column-reverse; align-items:flex-start; gap:3px; margin-bottom:4px; }
.tp-pyr-row{ height:6px; border-radius:2px; background:rgba(201,162,74,.28); }
.tp-pyr-row.on{ background:var(--gold); }
.tp-rate{ display:flex; align-items:center; gap:7px; margin:10px 0 6px; font-size:14px; color:#f7f0df; }
.tp-rate .tp-stars{ color:var(--gold); letter-spacing:1px; font-size:15px; }
.tp-rate b{ color:#fff; }
.tp-rate .lbl{ color:rgba(247,240,223,.75); }
.tp-share .lbl{ display:block; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color:rgba(247,240,223,.6); margin:6px 0 8px; }
.tp-share-ic{ display:flex; gap:9px; }
.tp-share-ic a{ width:34px; height:34px; border-radius:50%; display:grid; place-items:center; border:1px solid rgba(247,240,223,.28); color:#f7f0df; transition:.2s; }
.tp-share-ic a:hover{ background:var(--gold); border-color:var(--gold); color:#0b1726; }
.tp-shi{ width:16px; height:16px; stroke:currentColor; fill:none; }
/* middle: stats with gold circle icons */
.tp-facts-stats{ display:flex; flex-direction:column; gap:12px; }
.tp-fstat{ display:grid; grid-template-columns:44px auto 1fr; align-items:center; gap:14px; padding-bottom:12px; border-bottom:1px solid rgba(247,240,223,.10); }
.tp-fstat:last-child{ border-bottom:0; padding-bottom:0; }
.tp-fsi-w{ width:44px; height:44px; border-radius:50%; background:var(--gold); display:grid; place-items:center; }
.tp-fsi{ width:22px; height:22px; stroke:#fff; fill:none; }
.tp-fstat .k{ color:rgba(247,240,223,.82); font-size:14.5px; }
.tp-fstat .v{ color:#fff; font-weight:600; font-size:15px; text-align:right; }
/* right: contact + CTAs */
.tp-facts-cta{ display:flex; flex-direction:column; gap:12px; }
.tp-fc-line{ display:flex; align-items:center; gap:11px; color:#fff; font-size:17px; padding-bottom:12px; border-bottom:1px solid rgba(247,240,223,.18); word-break:break-word; }
.tp-fc-line:hover{ color:var(--gold); }
.tp-fci{ width:20px; height:20px; stroke:currentColor; fill:none; flex:0 0 20px; }
.tp-cbtn{ display:flex; align-items:center; justify-content:center; gap:10px; padding:13px 18px; border-radius:6px; font-weight:600; font-size:15px; transition:.2s; }
.tp-cbtn.ghost{ background:#fff; color:var(--gold); }
.tp-cbtn.ghost:hover{ background:#f3ead3; }
.tp-cbtn.gold{ background:var(--gold); color:#0b1726; }
.tp-cbtn.gold:hover{ filter:brightness(1.06); }
.tp-arrow{ width:20px; height:20px; stroke:currentColor; fill:none; }

/* sticky gold tab bar */
.tp-tabsbar{ position:sticky; top:72px; z-index:90; background:var(--gold); box-shadow:0 2px 10px rgba(0,0,0,.12); }
.tp-tabs{ display:flex; gap:2px; overflow-x:auto; scrollbar-width:none; }
.tp-tabs::-webkit-scrollbar{ display:none; }
.tp-tabs a{ display:flex; align-items:center; gap:8px; padding:15px 18px; color:#3a2c10; font-size:14px; font-weight:500; white-space:nowrap; border-bottom:3px solid transparent; }
.tp-tabs a .tp-tabi{ width:17px; height:17px; stroke:currentColor; fill:none; opacity:.85; }
.tp-tabs a:hover{ background:rgba(0,0,0,.06); }
.tp-tabs a.on{ background:rgba(0,0,0,.14); color:#0b1726; font-weight:600; }
.tp-sec{ scroll-margin-top:120px; }

@media (max-width:960px){
  .tp-facts{ grid-template-columns:1fr 1fr; gap:26px; padding:28px 26px; }
  .tp-facts.tp-facts-2col{ grid-template-columns:1fr; gap:24px; }
  .tp-facts.tp-facts-2col .tp-facts-stats{ padding-left:0; border-left:0; border-top:1px solid rgba(247,240,223,.12); padding-top:22px; }
  .tp-facts-cta{ grid-column:1 / -1; max-width:420px; }
}
@media (max-width:640px){
  .tp-facts{ grid-template-columns:1fr; gap:22px; }
  .tp-facts-cta{ max-width:none; }
  .tp-tabsbar{ top:60px; }
  .tp-sec{ scroll-margin-top:132px; }
  .tp-facts-id h1{ font-size:22px; }
}

/* ====================================================================
   TRIP PAGE — Design-your-own-trip form (backend booking_create)
==================================================================== */
.tp-customform{ margin:34px 0 8px; }
.tp-cf-in{ background:var(--card-bg); border:1px solid var(--border); border-left:6px solid var(--gold);
  border-radius:18px; padding:30px 34px; }
.tp-cf-head{ margin-bottom:20px; }
.tp-cf-head .tp-i-h{ width:40px; height:40px; color:var(--gold); stroke:var(--gold); margin-bottom:6px; }
.tp-cf-kick{ display:block; font-size:12px; letter-spacing:.16em; color:var(--gold); font-weight:600; }
.tp-cf-head h3{ font-family:'Fraunces',serif; font-size:28px; color:var(--text); margin:4px 0 6px; }
.tp-cf-head p{ color:var(--text-soft,#6b6455); font-size:15px; margin:0; max-width:640px; }
.tp-cf-grid{ display:grid; grid-template-columns:1fr 1fr; gap:16px 22px; }
.tp-cf label{ display:flex; flex-direction:column; gap:7px; font-size:13.5px; font-weight:600; color:var(--text); }
.tp-cf-full{ margin-top:16px; }
.tp-cf input, .tp-cf select, .tp-cf textarea{
  font:inherit; font-weight:400; font-size:14.5px; color:var(--text);
  background:var(--bg); border:1px solid var(--border); border-radius:9px; padding:11px 13px; width:100%;
  transition:border-color .15s, box-shadow .15s;
}
.tp-cf textarea{ resize:vertical; min-height:96px; }
.tp-cf input:focus, .tp-cf select:focus, .tp-cf textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,162,74,.18);
}
.tp-cf-foot{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:20px; }
.tp-cf-foot .tp-btn{ width:auto; padding:13px 26px; }
.tp-cf-note{ font-size:13px; color:var(--text-soft,#6b6455); }
.tp-cf-msg{ margin-top:14px; padding:12px 16px; border-radius:10px; font-size:14px; }
.tp-cf-msg.ok{ background:rgba(46,157,74,.12); color:#1f7a3c; border:1px solid rgba(46,157,74,.35); }
.tp-cf-msg.err{ background:rgba(192,80,58,.10); color:#a5432e; border:1px solid rgba(192,80,58,.32); }
@media (max-width:640px){
  .tp-cf-grid{ grid-template-columns:1fr; }
  .tp-cf-in{ padding:24px 18px; }
  .tp-cf-head h3{ font-size:23px; }
}

/* ====================================================================
   TRIP PAGE — optional add-ons (bubble cards)
==================================================================== */
.tp-addons{ display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; }
.tp-addon{ background:var(--card-bg); border:1px solid var(--border); border-radius:16px; padding:16px 18px;
  transition:transform .18s, box-shadow .18s; }
.tp-addon:hover{ transform:translateY(-2px); box-shadow:0 10px 26px rgba(11,23,38,.10); }
.tp-addon-h{ display:flex; align-items:center; gap:9px; margin-bottom:6px; }
.tp-addon-h .tp-i{ width:20px; height:20px; stroke:var(--gold); fill:none; flex:0 0 20px; }
.tp-addon-h h4{ font-family:'Fraunces',serif; font-size:16px; color:var(--text); margin:0; flex:1; }
.tp-addon-price{ font-weight:700; font-size:14px; color:var(--gold); white-space:nowrap; }
.tp-addon p{ font-size:13.5px; color:var(--text-soft,#6b6455); line-height:1.5; margin:0; }

/* Admin — standard package content textareas */
.std-lbl{ display:flex; flex-direction:column; gap:7px; margin-bottom:16px;
  font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-soft,#6b6455); font-weight:600; }
.std-lbl textarea{ width:100%; padding:11px 13px; background:var(--bg-2); border:1px solid var(--border);
  border-radius:8px; color:var(--text); font:inherit; font-size:14px; letter-spacing:0; text-transform:none; line-height:1.5; resize:vertical; }
.std-lbl textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,162,74,.18); }

/* ====================================================================
   TRIP PAGE — related trips (bottom of page)
==================================================================== */
.tp-related{ margin:40px 0 20px; }
.tp-related-h{ display:flex; align-items:baseline; gap:12px; margin-bottom:16px; }
.tp-related-h h2{ font-family:'Fraunces',serif; font-size:24px; font-weight:400; color:var(--text); margin:0; }
.tp-related-h h2 em{ font-style:italic; color:var(--gold); }
.tp-relgrid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.tp-relcard{ display:flex; flex-direction:column; background:var(--card-bg); border:1px solid var(--border);
  border-radius:14px; overflow:hidden; transition:transform .18s, box-shadow .18s; }
.tp-relcard:hover{ transform:translateY(-3px); box-shadow:0 14px 32px rgba(11,23,38,.14); }
.tp-relimg{ display:block; height:118px; background-size:cover; background-position:center; background-color:#1a2c44; position:relative; }
.tp-reltag{ position:absolute; top:10px; left:10px; background:var(--gold); color:#0b1726; font-size:10px; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase; padding:4px 10px; border-radius:20px; }
.tp-relbody{ padding:12px 14px; display:flex; flex-direction:column; gap:8px; }
.tp-relbody .nm{ font-family:'Fraunces',serif; font-size:15.5px; color:var(--text); line-height:1.25; }
.tp-relbody .mt{ display:flex; justify-content:space-between; align-items:center; font-size:12.5px; color:var(--text-soft,#6b6455); }
.tp-relbody .mt b{ color:var(--gold); font-size:14px; }
@media (max-width:820px){ .tp-relgrid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .tp-relgrid{ grid-template-columns:1fr; } }

/* Home showcase video — responsive YouTube/Vimeo embed */
.khv-embed{ position:relative; width:100%; padding-top:56.25%; border-radius:14px; overflow:hidden; background:#0b1726; }
.khv-embed iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ====================================================================
   HOME — Upcoming highlight projects ("On the horizon")
==================================================================== */
.upcoming-section{ padding:88px 0; }
.upcoming-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px; }
.up-card{ background:var(--card-bg); border:1px solid var(--border); border-radius:16px; overflow:hidden;
  display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s; }
.up-card:hover{ transform:translateY(-4px); box-shadow:0 16px 40px rgba(11,23,38,.14); }
.up-thumb{ height:172px; background-size:cover; background-position:center;
  background-image:linear-gradient(160deg,#2c476f,#0b1726); position:relative; }
.up-badge{ position:absolute; top:12px; left:12px; background:#0b1726; color:var(--gold);
  font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; padding:5px 11px; border-radius:6px; }
.up-body{ padding:18px 20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.up-body h3{ font-family:'Fraunces',serif; font-size:19px; color:var(--text); margin:0; line-height:1.25; }
.up-body p{ font-size:14px; color:var(--text-soft,#6b6455); line-height:1.55; margin:0; flex:1; }
.up-cta{ display:inline-flex; align-items:center; gap:7px; color:var(--gold); font-weight:600; font-size:14px; margin-top:4px; }
.up-cta svg{ width:16px; height:16px; transition:transform .2s; }
.up-cta:hover svg{ transform:translateX(3px); }
@media (max-width:900px){ .upcoming-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .upcoming-grid{ grid-template-columns:1fr; } .upcoming-section{ padding:60px 0; } }

/* Hero slideshow layers */
.hero .hero-art .hero-slide{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:0; transition:opacity 1.4s ease;
}
.hero .hero-art .hero-slide.is-active{ opacity:1; }
