/*
Theme Name:  Mantra Adventures v5
Description: Luxury Himalayan Travel — Nepal, Bhutan & Tibet
Version:     5.7
Text Domain: mantraadv
*/

/* ─────────────────────────────────────────────
   FONTS — matching Everest Luxury Holidays
   Mohave           : display / headings,
     excellent on screen, used for all headings
   Nunito Sans      : clean readable body
     readable humanist sans for body copy
───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Mohave:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&family=Nunito+Sans:ital,opsz,wght@0,6..12,300;0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,300;1,6..12,400&display=swap');

/* ─────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────── */
:root {
  /* ── Mantra Adventures v4 Palette ── */
  --gold:         #f08f3f;   /* warm orange — primary accent */
  --gold-light:   #ffad58;   /* light amber — highlights */
  --gold-pale:    rgba(240,143,63,.1);
  --gold-dark:    #c96f1e;

  /* Brand blues */
  --primary:      #007ead;   /* teal blue */
  --primary-dark: #08506c;   /* deep teal */

  /* Neutrals — cool teal-tinted */
  --ink:          #08506c;   /* deep teal — headings */
  --ink-2:        #0a3d52;
  --ink-3:        #0d2f3e;
  --white:        #FFFFFF;
  --cream:        #f4fafe;   /* very light teal tint */
  --cream-2:      #e8f4fa;
  --stone:        #c8dfe8;   /* teal-tinted border */
  --mist:         #3d6b7a;   /* body text */
  --fog:          #6b96a4;   /* captions */

  /* Typography */
  --font-display: 'Mohave', sans-serif;
  --font-body:    'Nunito Sans', sans-serif;

  /* Motion */
  --ease:  cubic-bezier(.25,.46,.45,.94);
  --trans: all .32s cubic-bezier(.25,.46,.45,.94);

  /* Shadows */
  --sh-sm: 0 2px 14px rgba(8,80,108,.07);
  --sh-md: 0 6px 32px rgba(8,80,108,.11);
  --sh-lg: 0 18px 56px rgba(8,80,108,.16);
}

/* ─────────────────────────────────────────────
   RESET
───────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  /* Do NOT set overflow-x:hidden here — it clips fixed-position dropdowns.
     Horizontal overflow is prevented on .site-wrap instead. */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Prevent horizontal scroll without clipping fixed dropdowns */
.site-wrap { overflow-x: clip; }
/* No padding-top here — handled in header section below */
img { max-width:100%; height:auto; display:block; }
a   { text-decoration:none; color:inherit; transition:var(--trans); }
ul  { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:var(--font-body); }
.container { max-width:1220px; margin:0 auto; padding:0 40px; }

/* ─────────────────────────────────────────────
   TYPOGRAPHY
   Mohave: geometric display, great at large sizes,
   tight spacing, strong character
   Nunito Sans: rounded, readable, friendly body
───────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: .01em;
}
em { font-style:italic; }

/* Nunito Sans body — slightly more line height for rounded letters */
p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--mist);
  font-weight: 400;
}

/* Eyebrow labels */
.section-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--section-label, var(--gold));
  display: block;
  margin-bottom: 5px;
}


.section-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:30px; }
.section-header-left h2 { font-size: clamp(28px, 3.2vw, 46px); color: var(--section-heading, var(--ink)); }

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items:center; gap:8px;
  padding: 14px 34px;
  background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white));
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  border: 2px solid var(--btn-bg, var(--gold)); transition: var(--trans);
}
.btn-primary:hover { background: var(--btn-hover-bg, var(--ink)); border-color: var(--btn-hover-bg, var(--ink)); color: var(--btn-txt, var(--white)); }

.btn-outline {
  display: inline-flex; align-items:center; gap:8px;
  padding: 12px 32px;
  border: 2px solid var(--btn-ol-border, var(--gold)); color: var(--btn-ol-txt, var(--gold));
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  background: transparent; transition: var(--trans);
}
.btn-outline:hover { background: var(--btn-ol-hover-bg, var(--gold)); color: var(--btn-ol-hover-txt, var(--white)); border-color: var(--btn-ol-hover-bg, var(--gold)); }

.btn-white {
  display: inline-flex; align-items:center; gap:8px;
  padding: 14px 34px;
  background: var(--white); border: 2px solid var(--white); color: var(--ink);
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  transition: var(--trans);
}
.btn-white:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ─────────────────────────────────────────────
   HEADER v5 — White header (Nepal Hiking Team style)
   Top utility bar + white main nav
───────────────────────────────────────────── */

/* ── Top utility bar ── */
.header-topbar {
  background: var(--ink);
  padding: 7px 0;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}
.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.header-topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-topbar-left a,
.header-topbar-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  transition: color .2s;
}
.header-topbar-left a:hover { color: var(--gold-light); }
.header-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-topbar-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s;
}
.header-topbar-right a:hover { color: var(--gold-light); }
.header-topbar-phone {
  color: var(--gold-light) !important;
  font-weight: 700 !important;
  font-size: 12px !important;
}

/* ── Header wrap — static, scrolls away with page (no longer sticky) ── */
#site-header-wrap {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  overflow: visible;
}

/* ── Main white header — sits inside the wrap ── */
#site-header {
  position: relative;
  width: 100%;
  background: var(--header-bg, #ffffff);
  border-bottom: 1px solid var(--header-border, var(--stone));
  padding: 0;
  box-shadow: 0 2px 12px rgba(8,80,108,.08);
  transition: box-shadow .32s var(--ease);
  overflow: visible;
}
#site-header-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(8,80,108,.14);
}

/* ── Body offset removed — header now in normal flow ── */
body                    { padding-top: 0 !important; }
body.is-front-page      { padding-top: 0 !important; }
body.is-front-page .hero {
  margin-top: 0;
  padding-top: 0;
  height: 100vh;
  min-height: 640px;
}

/* ── WordPress admin bar ── */
.admin-bar #site-header-wrap          { top: 0; }
.admin-bar body                       { padding-top: 0 !important; }
.admin-bar body.is-front-page         { padding-top: 0 !important; }
.admin-bar body.is-front-page .hero   { margin-top: 0; padding-top: 0; }
@media screen and (max-width: 782px) {
  .admin-bar #site-header-wrap        { top: 0; }
  .admin-bar body                     { padding-top: 0 !important; }
  .admin-bar body.is-front-page .hero { margin-top: 0; padding-top: 0; }
}
body:not(.is-front-page) #site-header { background: var(--header-bg, #ffffff); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 68px;
  overflow: visible;
}

/* Logo */
.site-logo { flex-shrink: 0; }
.site-logo a {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .02em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}
.site-logo a span { color: var(--gold); }
.site-logo img { height: 44px; width: auto; }

/* Nav links — dark on white */
.primary-nav-wrap { flex: 1; display: flex; justify-content: center; overflow: visible; }
.primary-nav { display: flex; align-items: center; gap: 0; list-style: none; overflow: visible; }
.primary-nav > li { position: relative; overflow: visible; }
.primary-nav > li > a {
  display: flex;
  align-items: center;
  padding: 22px 13px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--nav-link, var(--ink));
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
  border-bottom: 3px solid transparent;
}
.primary-nav > li > a:hover,
.primary-nav > li:hover > a,
.primary-nav > li.is-open > a {
  color: var(--nav-link-hover, var(--gold));
  border-bottom-color: var(--nav-link-hover, var(--gold));
}
/* Caret arrow on parent items */
.nav-caret {
  font-size: 9px;
  margin-left: 4px;
  opacity: .65;
  display: inline-block;
  transition: transform .22s ease;
  line-height: 1;
}
.primary-nav > li:hover > a .nav-caret,
.primary-nav > li.is-open > a .nav-caret { transform: rotate(180deg); opacity: 1; }

/* Show dropdowns on hover (desktop) AND on .is-open (touch/click) */
.primary-nav li:hover > .dropdown,
.primary-nav li.is-open > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.primary-nav li:hover > .mega-dropdown,
.primary-nav li.is-open > .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown — white panel */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 32px rgba(8,80,108,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .22s, transform .22s, visibility .22s;
  z-index: 9999;
  list-style: none;
}
.dropdown li a {
  display: block;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--mist);
  border-bottom: 1px solid var(--stone);
  text-decoration: none;
  transition: color .18s, background .18s, padding-left .18s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--gold);
  background: var(--cream);
  padding-left: 24px;
}

/* Mega dropdown — white */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: 580px;
  background: #ffffff;
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 40px rgba(8,80,108,.12);
  padding: 28px 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s, transform .22s, visibility .22s;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  z-index: 9999;
}
.mega-col h6 {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--stone);
}
.mega-col a {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--mist);
  padding: 5px 0;
  text-decoration: none;
  transition: color .18s, padding-left .18s;
}
.mega-col a:hover { color: var(--gold); padding-left: 6px; }

/* CTA button in header */
.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-cta .btn-primary {
  padding: 10px 20px;
  font-size: 11px;
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}
.header-cta .btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
/* Hamburger — dark bars on white bg */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: 1px solid var(--stone);
  padding: 7px;
  flex-shrink: 0;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  transition: var(--trans);
}

/* Mobile overlay + drawer — keep dark */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1999;
  opacity: 0; pointer-events: none;
  transition: opacity .32s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(340px,90vw); height: 100vh;
  background: var(--mobile-menu-bg, var(--ink));
  z-index: 2000;
  padding: 80px 36px 48px;
  overflow-y: auto;
  transition: right .38s var(--ease);
}
.mobile-menu.open { right: 0; }
.mobile-close {
  position: absolute; top: 22px; right: 22px;
  color: var(--mobile-menu-txt, var(--white)); font-size: 28px; line-height: 1;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--mobile-menu-txt, rgba(255,255,255,.8));
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  transition: color .22s, padding-left .22s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--nav-link-hover, var(--gold-light)); padding-left: 8px; }

/* Mobile sub-menu accordion */
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav-toggle-row a {
  border-bottom: none;
  flex: 1;
}
.mobile-sub-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 16px;
  padding: 14px 6px;
  cursor: pointer;
  transition: transform .25s ease, color .2s;
  line-height: 1;
  flex-shrink: 0;
}
.mobile-sub-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
  color: var(--gold-light);
}
.mobile-sub-menu {
  display: none;
  padding: 6px 0 6px 16px;
  border-left: 2px solid rgba(255,255,255,.12);
  margin: 0 0 4px;
}
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu a {
  font-size: 15px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-family: var(--font-body);
}

/* Sticky CTA */
.sticky-enquire {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white));
  padding: 13px 22px;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  box-shadow: 0 6px 24px rgba(240,143,63,.4);
  transition: var(--trans);
  text-decoration: none;
}
.sticky-enquire:hover { background: var(--stats-bg, var(--ink)); color: var(--btn-txt, var(--white)); box-shadow: none; transform: translateY(-2px); }

/* ── Responsive header ── */
@media (max-width: 1023px) {
  .primary-nav-wrap { display: none; }

  .header-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .header-topbar-left { display: none; }
}
@media (max-width: 479px) {
  .sticky-enquire { bottom: 16px; right: 16px; padding: 10px 16px; font-size: 10px; }
}

/* ─────────────────────────────────────────────
   HERO — full-viewport cinematic banner
   Overlay: strong vignette + text-contrast layer
───────────────────────────────────────────── */
.hero {
  position:relative; height:calc(100vh - 36px); min-height:640px;
  display:flex; align-items:center; overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  transform:scale(1.06);
  animation:heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { from{transform:scale(1.06)} to{transform:scale(1)} }

/* ── HERO OVERLAY: gradient ensuring text readability ── */
.hero-overlay {
  position:absolute; inset:0;
  background:
    linear-gradient(
      to right,
      color-mix(in srgb, var(--hero-overlay, #08506c) 80%, transparent) 0%,
      color-mix(in srgb, var(--hero-overlay, #08506c) 52%, transparent) 45%,
      color-mix(in srgb, var(--hero-overlay, #08506c) 15%, transparent) 100%
    ),
    linear-gradient(
      to top,
      color-mix(in srgb, var(--hero-overlay-end, #0d2f3e) 50%, transparent) 0%,
      transparent 50%
    );
}

.hero-content { position:relative; z-index:2; max-width:660px; animation:heroUp .9s ease-out .25s both; }
@keyframes heroUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

.hero-eyebrow {
  font-family:var(--font-body); font-size:11px; font-weight:700;
  letter-spacing:.28em; text-transform:uppercase; color:var(--hero-label, var(--gold-light));
  margin-bottom:18px; display:flex; align-items:center; gap:14px;
}
.hero-eyebrow::before { content:''; display:block; width:40px; height:1px; background:var(--hero-label, var(--gold-light)); }

.hero h1 {
  font-size: clamp(44px, 6.2vw, 84px);
  font-weight: 700; color: var(--hero-heading, var(--white));
  line-height: 1.08; margin-bottom: 20px; letter-spacing: -.02em;
}
.hero h1 em { font-style:italic; color:var(--hero-label, var(--gold-light)); font-weight:400; }

.hero-desc {
  font-size:17px; font-weight:300; color:rgba(255,255,255,.82);
  margin-bottom:38px; max-width:490px; line-height:1.78;
}
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }

.hero-scroll {
  position:absolute; bottom:38px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  color:rgba(255,255,255,.42); font-size:10px; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  animation:bounce 2.4s ease-in-out infinite;
}
.hero-scroll::after { content:''; width:1px; height:46px; background:linear-gradient(to bottom,rgba(255,255,255,.42),transparent); }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Destination tabs bottom-right */
.hero-destinations { position:absolute; bottom:0; right:0; z-index:2; display:flex; }
.hero-dest-tab { width:185px; height:118px; position:relative; overflow:hidden; cursor:pointer; }
.hero-dest-tab img { width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.hero-dest-tab:hover img { transform:scale(1.08); }
/* ── each tab has its own readable overlay ── */
.hero-dest-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,80,108,.75) 0%, rgba(8,80,108,.22) 60%, transparent 100%);
  display:flex; flex-direction:column; justify-content:flex-end; padding:14px;
  transition:background .28s;
}
.hero-dest-tab:hover .hero-dest-overlay { background:linear-gradient(to top,rgba(8,80,108,.88) 0%,rgba(8,80,108,.35) 60%,transparent 100%); }
.hero-dest-overlay span { font-family:var(--font-display); font-size:16px; font-style:italic; color:var(--white); font-weight:400; text-shadow:0 1px 6px rgba(0,0,0,.4); }
.hero-dest-overlay small { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--gold-light); }

/* ─────────────────────────────────────────────
   DESTINATIONS GRID
   Each card has a strong readable overlay
───────────────────────────────────────────── */
.section-destinations { padding:96px 0; background:var(--section-alt-bg, var(--cream)); }
.dest-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }

/* Column variants — set by Customizer */
.dest-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.dest-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.dest-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

.dest-card { position:relative; overflow:hidden; aspect-ratio:3/4; cursor:pointer; display:block; }
.dest-card img { width:100%; height:100%; object-fit:cover; transition:transform .65s var(--ease); }
.dest-card:hover img { transform:scale(1.07); }
/* Strong overlay — text always readable regardless of image brightness */
.dest-card-overlay {
  position:absolute; inset:0;
  background:linear-gradient(
    to top,
    rgba(8,80,108,.88) 0%,
    rgba(8,80,108,.44) 40%,
    rgba(8,80,108,.08) 70%,
    transparent 100%
  );
  display:flex; flex-direction:column; justify-content:flex-end; padding:26px;
  transition:background .28s;
}
.dest-card:hover .dest-card-overlay {
  background:linear-gradient(to top, rgba(8,80,108,.94) 0%, rgba(8,80,108,.55) 45%, rgba(8,80,108,.12) 70%, transparent 100%);
}
.dest-card-count { font-family:var(--font-body); font-size:10px; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-light); margin-bottom:6px; }
.dest-card h3 { font-family:var(--font-display); font-size:25px; font-weight:700; color:var(--white); text-shadow:0 2px 8px rgba(0,0,0,.3); letter-spacing:-.01em; }
.dest-card-arrow { position:absolute; top:18px; right:18px; width:34px; height:34px; border:1px solid rgba(255,255,255,.38); display:flex; align-items:center; justify-content:center; color:var(--white); font-size:15px; opacity:0; transform:translateY(-6px); transition:opacity .26s,transform .26s; }
.dest-card:hover .dest-card-arrow { opacity:1; transform:translateY(0); }

/* ─────────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────────── */
.section-about { padding:108px 0; background:var(--card-bg, var(--white)); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-text h2 { font-size:clamp(28px,3.2vw,44px); margin-bottom:22px; }
.about-text p { font-size:16px; line-height:1.84; margin-bottom:18px; }
.about-text p strong { color:var(--ink); font-weight:700; }

/* ── About: Read More / Read Less ── */
.about-extra-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.about-extra-content[aria-expanded="true"] {
  max-height: 600px;
  opacity: 1;
}
.about-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  margin: 6px 0 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s, gap .2s;
}
.about-read-more-btn:hover { color: var(--ink); gap: 12px; }
.about-read-more-icon svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  flex-shrink: 0;
}
.about-read-more-btn.is-open .about-read-more-icon svg {
  transform: rotate(45deg);
}
.about-features { display:grid; grid-template-columns:4fr 4fr 4fr 4fr; gap:16px; margin:32px 0; }
.about-feature { padding:20px 22px; border:1px solid var(--stone); transition:border-color .22s,box-shadow .22s; }
.about-feature:hover { border-color:var(--gold); box-shadow:var(--sh-sm); }
.about-feature-icon { width:44px; height:44px; margin-bottom:14px; display:flex; align-items:center; justify-content:center; border:1px solid var(--stone); background:var(--cream); color:var(--gold); transition:all .22s; }
.about-feature-icon svg { width:20px; height:20px; stroke:var(--gold); }
.about-feature:hover .about-feature-icon { background:var(--gold); border-color:var(--gold); }
.about-feature:hover .about-feature-icon svg { stroke:var(--white); }
.about-feature h4 { font-family:var(--font-body); font-size:12px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--ink); margin-bottom:5px; }
.about-feature p { font-size:13px; margin:0; line-height:1.6; }

.about-images { position:relative; height:570px; }
.about-img-main { position:absolute; top:0; right:0; width:80%; height:70%; overflow:hidden; }
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-img-secondary { position:absolute; bottom:0; left:0; width:52%; height:44%; overflow:hidden; border:8px solid var(--white); box-shadow:var(--sh-md); }
.about-img-secondary img { width:100%; height:100%; object-fit:cover; }
.about-img-badge { position:absolute; bottom:68px; right:-14px; background:var(--gold); color:var(--white); padding:20px 24px; text-align:center; box-shadow:var(--sh-md); }
.about-img-badge strong { display:block; font-family:var(--font-display); font-size:40px; font-weight:700; line-height:1; }
.about-img-badge span { font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; opacity:.9; display:block; margin-top:4px; }

/* ─────────────────────────────────────────────
   STATS BANNER
───────────────────────────────────────────── */
.section-stats { background:var(--stats-bg, var(--ink)); padding:52px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-item { text-align:center; padding:0 30px; border-right:1px solid rgba(255,255,255,.1); }
.stat-item:last-child { border-right:none; }

/* ── Stat icons ── */
.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stat-icon svg {
  width:  var(--stat-icon-size, 36px);
  height: var(--stat-icon-size, 36px);
  stroke: var(--stat-icon-color, var(--stats-number, #f08f3f));
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.stat-item:hover .stat-icon svg {
  transform: scale(1.12);
  opacity: 0.9;
}

.stat-number { font-family:var(--font-display); font-size:54px; font-weight:700; color:var(--stats-number, var(--gold-light)); line-height:1; margin-bottom:8px; }
.stat-label { font-family:var(--font-body); font-size:11px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--stats-txt, rgba(255,255,255,.78)); }

/* ─────────────────────────────────────────────
   TRIPS GRID
───────────────────────────────────────────── */
.section-trips { padding:96px 0; background:var(--section-alt-bg, var(--cream)); }
.trips-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:26px; margin-bottom:44px; }

.trip-card { background:var(--card-bg, var(--white)); overflow:hidden; transition:transform .38s var(--ease),box-shadow .38s; box-shadow:var(--sh-sm); }
.trip-card:hover { transform:translateY(-5px); box-shadow:var(--sh-lg); }
.trip-card-img { position:relative; overflow:hidden; aspect-ratio:4/3; }
.trip-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .62s ease; }
.trip-card:hover .trip-card-img img { transform:scale(1.07); }
/* ── Card image has dark bottom overlay for badge readability ── */
.trip-card-img::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:50%;
  background:linear-gradient(to top,rgba(8,80,108,.42),transparent);
  pointer-events:none;
}
.trip-card-badge {
  position:absolute; top:14px; left:14px; z-index:2;
  background:var(--badge-bg, var(--gold)); color:var(--badge-txt, var(--white));
  font-family:var(--font-body); font-size:10px; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase; padding:4px 12px;
}
.trip-card-body { padding:22px 24px 24px; }
.trip-meta { display:flex; gap:14px; margin-bottom:9px; }
.trip-meta span { font-size:11px; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--fog); }
.trip-meta span::before { content:'—'; color:var(--btn-bg, var(--gold)); margin-right:4px; font-size:9px; }
.trip-card h3 { font-family:var(--font-display); font-size:19px; font-weight:700; margin-bottom:15px; line-height:1.32; }
.trip-card h3 a { color:var(--card-title, var(--ink)); transition:color .22s; }
.trip-card h3 a:hover { color:var(--btn-bg, var(--gold)); }
.trip-card-footer { display:flex; justify-content:space-between; align-items:center; padding-top:16px; border-top:1px solid var(--card-border, var(--stone)); }
.trip-price small { display:block; font-size:10px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--fog); margin-bottom:2px; }
.trip-price strong { font-family:var(--font-display); font-size:23px; font-weight:700; color:var(--card-title, var(--ink)); }
.trip-price strong span { font-size:13px; }
.trip-link { font-family:var(--font-body); font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--btn-bg, var(--gold)); display:inline-flex; align-items:center; gap:5px; transition:color .22s,gap .22s; }
.trip-link::after { content:'→'; }
.trip-link:hover { color:var(--card-title, var(--ink)); gap:10px; }
.trips-cta { text-align:center; }

/* ─────────────────────────────────────────────
   WELLNESS PARALLAX BANNER
   Strong overlay so white text is ALWAYS readable
───────────────────────────────────────────── */
.section-wellness {
  position:relative; padding:108px 0;
  background-attachment:fixed; background-size:cover; background-position:center;
  overflow:hidden;
}
.section-wellness::before {
  content:''; position:absolute; inset:0; z-index:0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--cta-bg, #08506c) 72%, transparent) 0%,
    color-mix(in srgb, var(--cta-bg, #08506c) 55%, transparent) 50%,
    color-mix(in srgb, var(--cta-bg, #08506c) 68%, transparent) 100%
  );
}
/* Extra vignette for depth */
.section-wellness::after {
  content:''; position:absolute; inset:0; z-index:0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(0,0,0,.42) 100%);
  pointer-events:none;
}
.wellness-content { position:relative; z-index:2; text-align:center; max-width:680px; margin:0 auto; }
.wellness-content h2 { font-size:clamp(32px,5vw,60px); color:var(--cta-txt, var(--white)); margin-bottom:18px; font-weight:700; text-shadow:0 2px 16px rgba(0,0,0,.4); }
.wellness-content p { font-size:17px; font-weight:300; color:var(--cta-txt, rgba(255,255,255,.82)); margin-bottom:34px; }

/* ─────────────────────────────────────────────
   FEATURED TRIP
───────────────────────────────────────────── */
/* ─────────────────────────────────────────────
   FEATURED TRIP OF THE MONTH
───────────────────────────────────────────── */
.section-featured {
  background: var(--ink);
  padding: 80px 0;
}

.featured-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.featured-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.07);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}

/* ── Image side ── */
.featured-image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .9s cubic-bezier(.25,.46,.45,.94);
}

.featured-inner:hover .featured-image img {
  transform: scale(1.04);
}

/* Gradient bleed from image into content */
.featured-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 55%, rgba(8,80,108,.92) 100%),
    linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 40%);
  pointer-events: none;
}

/* Activity badges on image */
.featured-image-badges {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.featured-badge {
  display: inline-block;
  padding: 5px 12px;
  background: var(--gold);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

/* Price pill bottom-left of image */
.featured-price-pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(240,143,63,.3);
  padding: 10px 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.featured-price-pill small {
  font-size: 10px;
  color: rgba(255,255,255,.5);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.featured-price-pill strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-light);
}

/* ── Content side ── */
.featured-content {
  background: var(--ink);
  padding: 52px 52px 52px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,.06);
}

.featured-dest {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.featured-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}

.featured-content > p {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.82;
  margin-bottom: 0;
}

/* Stats row */
.featured-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.07);
}

.featured-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.featured-stat:nth-child(even) { border-right: none; }
.featured-stat:nth-last-child(-n+2) { border-bottom: none; }

.featured-stat > span {
  color: var(--gold);
  flex-shrink: 0;
}

.featured-stat small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 3px;
}

.featured-stat strong {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
}

/* Footer: price + CTAs */
.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-price-block {
  display: flex;
  flex-direction: column;
}

.featured-price-block small {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 2px;
}

.featured-price-block strong {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.featured-ctas {
  display: flex;
  gap: 10px;
}

.featured-btn-view {
  border-color: rgba(255,255,255,.2) !important;
  color: rgba(255,255,255,.8) !important;
}

.featured-btn-view:hover {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* ─────────────────────────────────────────────
   FIXED DEPARTURES
───────────────────────────────────────────── */
.section-departures { padding:96px 0; background:var(--card-bg, var(--white)); }
/* departure CSS consolidated below */

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
.section-testimonials { padding:96px 0; background:var(--stats-bg, var(--ink)); }
.section-testimonials .section-header-left h2 { color:var(--stats-txt, var(--white)); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.testimonial-card { background:rgba(255,255,255,.04); padding:32px; border:1px solid rgba(255,255,255,.07); transition:border-color .28s,background .28s; }
.testimonial-card:hover { border-color:rgba(240,143,63,.32); background:rgba(255,255,255,.065); }
.testimonial-stars { display:flex; gap:3px; margin-bottom:16px; }
.testimonial-stars span { color:var(--gold); font-size:14px; }
.testimonial-card blockquote { font-family:var(--font-display); font-size:16px; font-style:italic; font-weight:400; color:rgba(255,255,255,.82); line-height:1.76; margin-bottom:22px; }
.testimonial-author { display:flex; align-items:center; gap:12px; padding-top:16px; border-top:1px solid rgba(255,255,255,.07); }
.testimonial-avatar { width:42px; height:42px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:17px; font-style:italic; color:var(--white); flex-shrink:0; }
.testimonial-author-info h5 { font-family:var(--font-body); font-size:13px; font-weight:700; color:var(--white); margin-bottom:2px; }
.testimonial-author-info span { font-size:12px; font-weight:400; color:rgba(255,255,255,.44); }

/* ─────────────────────────────────────────────
   BLOG GRID
───────────────────────────────────────────── */
.section-blog { padding:96px 0; background:var(--section-alt-bg, var(--cream)); }

/* ─────────────────────────────────────────────
   ARTICLE ARCHIVE — arc-* classes
   Editorial magazine aesthetic
───────────────────────────────────────────── */

/* Hero */
.arc-hero {
  position: relative;
  background: var(--ink);
  padding: 80px 0 72px;
  overflow: hidden;
}
.arc-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(var(--gold-rgb,197,153,83),.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(8,80,108,.0) 0%, rgba(8,80,108,.55) 100%);
  pointer-events: none;
}
.arc-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.arc-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.arc-hero-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .5;
}
.arc-hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px,5.5vw,72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.arc-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,.52);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.7;
}
.arc-hero-count {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  border: 1px solid rgba(255,255,255,.14);
  padding: 6px 16px;
  border-radius: 20px;
}

/* Filter strip */
.arc-filter-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--stone);
  position: sticky;
  top: 104px;
  z-index: 50;
}
.admin-bar .arc-filter-wrap { top: 136px; }
.arc-filter {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.arc-filter::-webkit-scrollbar { display: none; }
.arc-filter-btn {
  flex-shrink: 0;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.arc-filter-btn:hover { color: var(--ink); }
.arc-filter-btn.active { color: var(--gold); border-bottom-color: var(--gold); }
.arc-filter-count {
  font-size: 10px;
  font-weight: 600;
  color: var(--fog);
  background: var(--cream);
  border-radius: 10px;
  padding: 1px 6px;
}
.arc-filter-btn.active .arc-filter-count { background: rgba(var(--gold-rgb,197,153,83),.12); color: var(--gold); }

/* Body */
.arc-body {
  background: var(--cream);
  padding: 52px 0 96px;
}

/* Featured article */
.arc-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  margin-bottom: 52px;
  box-shadow: 0 4px 32px rgba(8,80,108,.07);
}
.arc-featured-img-wrap {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: block;
}
.arc-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}
.arc-featured:hover .arc-featured-img { transform: scale(1.04); }
.arc-featured-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,80,108,.3) 0%, transparent 60%);
}
.arc-featured-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.arc-featured-body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.arc-featured-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.arc-meta-date, .arc-meta-rt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--fog);
  text-transform: uppercase;
}
.arc-meta-sep { color: var(--stone); font-size: 14px; }
.arc-featured-title {
  font-family: var(--font-display);
  font-size: clamp(22px,2.4vw,34px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.arc-featured-title a { color: var(--ink); transition: color .2s; }
.arc-featured-title a:hover { color: var(--gold); }
.arc-featured-excerpt {
  font-size: 15px;
  color: var(--mist);
  line-height: 1.78;
  margin-bottom: 32px;
  flex: 1;
}
.arc-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--stone);
}
.arc-author { display: flex; align-items: center; gap: 12px; }
.arc-author-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--stone); }
.arc-author-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.arc-author-role { font-size: 11px; color: var(--fog); margin-top: 1px; }
.arc-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 22px;
  transition: background .2s, gap .2s;
  white-space: nowrap;
}
.arc-featured-cta:hover { background: var(--gold-dark, #b07d2a); gap: 10px; }

/* Grid label */
.arc-grid-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--fog);
}
.arc-grid-rule { flex: 1; height: 1px; background: var(--stone); }

/* Article cards grid */
.arc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Individual card */
.arc-card {
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  transition: box-shadow .32s, transform .32s;
  opacity: 0;
  transform: translateY(18px);
}
.arc-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .5s ease, transform .5s ease, box-shadow .32s, border-color .32s;
}
.arc-card:hover {
  box-shadow: 0 8px 36px rgba(8,80,108,.11);
  transform: translateY(-3px);
  border-color: rgba(197,153,83,.3);
}
.arc-card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
}
.arc-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.arc-card:hover .arc-card-img { transform: scale(1.06); }
.arc-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,80,108,.28) 0%, transparent 50%);
  transition: opacity .3s;
}
.arc-card:hover .arc-card-img-overlay { opacity: .7; }
.arc-card-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.4;
}
.arc-card-rt {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.88);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}
.arc-card-body { padding: 22px 24px 24px; }
.arc-card-meta { margin-bottom: 8px; }
.arc-card-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--fog);
}
.arc-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -.005em;
}
.arc-card-title a { color: var(--ink); transition: color .2s; }
.arc-card-title a:hover { color: var(--gold); }
.arc-card-excerpt {
  font-size: 13.5px;
  color: var(--mist);
  line-height: 1.72;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.arc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--stone);
}
.arc-card-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--fog);
}
.arc-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--stone);
}
.arc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap .2s, color .2s;
}
.arc-card-link:hover { gap: 8px; color: var(--gold-dark, #b07d2a); }

/* Pagination */
.arc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.arc-pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 12px 22px;
  transition: background .2s, border-color .2s, color .2s, gap .2s;
}
.arc-pag-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.arc-pag-btn:hover svg { stroke: var(--white); }
.arc-pag-prev:hover { gap: 12px; }
.arc-pag-next:hover { gap: 12px; }
.arc-pag-info {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fog);
}

/* Empty state */
.arc-empty {
  text-align: center;
  padding: 80px 0 60px;
}
.arc-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 24px;
}
.arc-empty-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
}
.arc-empty-sub {
  font-size: 15px;
  color: var(--mist);
  margin-bottom: 28px;
}

/* ── Responsive ─────────────────────────────────────────────── */

.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:34px; }
.blog-card-img { overflow:hidden; aspect-ratio:16/10; margin-bottom:20px; position:relative; }
/* ── Subtle bottom overlay on blog card images ── */
.blog-card-img::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:40%;
  background:linear-gradient(to top,rgba(8,80,108,.3),transparent);
  pointer-events:none;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .55s; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-meta { display:flex; gap:14px; margin-bottom:9px; align-items:center; }
.blog-card-date { font-size:12px; font-weight:400; color:var(--fog); }
.blog-card-cat { font-size:10px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:var(--section-label, var(--gold)); }
.blog-card h3 { font-family:var(--font-display); font-size:21px; font-weight:700; line-height:1.36; margin-bottom:9px; }
.blog-card h3 a { color:var(--card-title, var(--ink)); }
.blog-card h3 a:hover { color:var(--btn-bg, var(--gold)); }
.blog-read-more { font-size:11px; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:6px; transition:color .2s,gap .2s; }
.blog-read-more::after { content:'→'; }
.blog-read-more:hover { color:var(--ink); gap:10px; }

/* ─────────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────────── */
.section-faq {
  padding: 96px 0;
  background: var(--faq-bg, var(--cream, #f0f7fb));
}

/* Header — centred, eyebrow label with flanking lines */
.faq-header {
  text-align: center;
  margin-bottom: 52px;
}
.faq-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.faq-header .section-label::before,
.faq-header .section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--section-label, var(--gold));
  border-radius: 2px;
}
.faq-header h2 {
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--faq-heading-color, var(--ink));
  margin: 0 0 14px;
  line-height: 1.15;
}
.faq-subheading {
  font-size: 16px;
  color: var(--ink-2);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* FAQ card container */
.faq-list {
  max-width: var(--faq-list-width, 740px);
  margin: 0 auto;
  background: var(--faq-card-bg, var(--white));
  border: 1px solid var(--faq-card-border, var(--stone, #d4e6ef));
  border-radius: 4px;
  overflow: hidden;
}

/* Individual FAQ item */
.faq-item {
  border-bottom: 1px solid var(--faq-divider, var(--stone, #d4e6ef));
}
.faq-item:last-child {
  border-bottom: none;
}

/* Question button */
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.18s ease;
}
.faq-question:hover {
  background: var(--faq-hover-bg, rgba(0,120,170,0.04));
}
.faq-item.is-open .faq-question {
  background: var(--faq-open-bg, rgba(0,120,170,0.05));
}

.faq-question-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--faq-question-color, var(--primary, var(--ink-2)));
  flex: 1;
}

/* +/- circle icon */
.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--faq-icon-color, var(--primary, var(--gold)));
  position: absolute;
  top: 0; left: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.faq-icon-minus {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}
.faq-item.is-open .faq-icon-plus {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}
.faq-item.is-open .faq-icon-minus {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Answer panel */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding: 0 28px 24px;
  border-top: 1px solid var(--faq-divider, var(--stone, #d4e6ef));
}
.faq-answer-inner p {
  font-size: 15px;
  line-height: 1.78;
  color: var(--faq-answer-color, var(--ink-2));
  margin: 14px 0 0;
}
.faq-answer-inner p:first-child { margin-top: 14px; }

/* ─────────────────────────────────────────────
   PAGE HERO (inner pages)
   Strong overlay so title is always readable
───────────────────────────────────────────── */
.page-hero {
  height:44vh; min-height:320px;
  background-size:cover; background-position:center;
  display:flex; align-items:center; position:relative;
}
/* ── Two-layer overlay: overall dark + bottom vignette ── */
.page-hero::before {
  content:''; position:absolute; inset:0;
  background:
    rgba(8,80,108,.56),
    linear-gradient(to top, rgba(8,80,108,.45) 0%, transparent 50%);
}
.page-hero-content { position:relative; z-index:1; }
.page-hero-content h1 {
  font-size:clamp(32px,5vw,62px); font-weight:700;
  color:var(--white); margin-bottom:10px;
  text-shadow:0 2px 14px rgba(0,0,0,.35);
}
/* Breadcrumb — dark background (hero images, dark sections) */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
}

/* Links */
.breadcrumb a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .18s;
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
}
.breadcrumb a:hover { color: var(--gold-light); }

/* Separator */
.breadcrumb span:not(:last-child),
.breadcrumb .sep {
  color: rgba(255,255,255,.35);
  text-shadow: none;
  user-select: none;
}

/* Current page (last span) */
.breadcrumb > span:last-child,
.breadcrumb .current {
  color: rgba(255,255,255,.6);
  text-shadow: 0 1px 4px rgba(0,0,0,.4);
}

/* Light background variant */
.breadcrumb--light a           { color: var(--gold-dark); text-shadow: none; }
.breadcrumb--light a:hover     { color: var(--gold); }
.breadcrumb--light span        { color: var(--fog); text-shadow: none; }
.breadcrumb--light > span:last-child { color: var(--ink); }

/* ─────────────────────────────────────────────
   SINGLE TRIP PAGE — Light tab nav, show on scroll
───────────────────────────────────────────── */

/* Hidden by default — always out of flow so it never causes layout shift.
   Just slides in from top when user scrolls past hero. */
.tour-tabs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,.07);
    box-shadow: 0 2px 14px rgba(0,0,0,.06);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform .32s ease, opacity .32s ease, visibility 0s linear .32s;
    z-index: 500;
}
/* Visible state — slides down into view */
.tour-tabs-nav.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform .32s ease, opacity .32s ease, visibility 0s linear 0s;
}
.admin-bar .tour-tabs-nav { top: 32px; }
@media (max-width: 782px) {
    .admin-bar .tour-tabs-nav { top: 46px; }
}

.tour-tabs-nav .container {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
}
.tour-tabs-nav .container::-webkit-scrollbar { display: none; }

.tour-tab-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #525252;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
}
.tour-tab-link svg {
    flex-shrink: 0;
    color: var(--gold, #d9901e);
    opacity: .85;
    transition: opacity .18s;
}
.tour-tab-link:hover {
    color: var(--ink, #1c1c1c);
}
.tour-tab-link:hover svg,
.tour-tab-link.active svg {
    opacity: 1;
}
.tour-tab-link.active {
    color: var(--ink, #1c1c1c);
    border-bottom-color: var(--gold, #d9901e);
}

@media (max-width: 640px) {
    .tour-tab-link {
        padding: 13px 12px;
        font-size: 12px;
        gap: 6px;
    }
    .tour-tab-link svg { width: 15px; height: 15px; }
}

/* Keep these single-trip rules as-is */
.itin-item { border-bottom:1px solid var(--card-border, var(--stone)); }
.itin-toggle { width:100%; display:flex; align-items:center; gap:16px; padding:17px 0; background:none; border:none; cursor:pointer; text-align:left; }
.itin-body { overflow:hidden; transition:max-height .5s ease; }
.pkg-tier { cursor:pointer; text-align:center; transition:all .28s; border-bottom:3px solid transparent; }
.pkg-tier.active { background:var(--stats-bg, var(--ink))!important; border-bottom-color:var(--pkg-gold-border, var(--gold))!important; }
.tour-layout { display:grid; grid-template-columns:1fr 365px; gap:52px; align-items:start; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer-newsletter { background:var(--newsletter-bg, var(--ink-3)); padding:42px 0; }
.footer-newsletter .container { display:flex; justify-content:space-between; align-items:center; gap:34px; flex-wrap:wrap; }
.footer-newsletter h4 { font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--newsletter-txt, var(--white)); }
.footer-newsletter p { font-size:14px; font-weight:300; color:rgba(255,255,255,.44); }
.newsletter-form { display:flex; min-width:370px; }
.newsletter-form input { flex:1; padding:13px 18px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.10); border-right:none; color:var(--newsletter-txt, var(--white)); font-family:var(--font-body); font-size:14px; font-weight:400; outline:none; transition:var(--trans); }
.newsletter-form input::placeholder { color:rgba(255,255,255,.28); }
.newsletter-form input:focus { border-color:var(--btn-bg, var(--gold)); background:rgba(255,255,255,.09); }
.newsletter-form button { padding:13px 24px; background:var(--btn-bg, var(--gold)); color:var(--btn-txt, var(--white)); font-family:var(--font-body); font-size:11px; font-weight:700; letter-spacing:.14em; text-transform:uppercase; transition:var(--trans); }
.newsletter-form button:hover { background:var(--white); color:var(--ink); }

#site-footer { background:var(--footer-bg, var(--ink)); padding:68px 0 0; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; padding:0 0 52px; border-bottom:1px solid var(--footer-border, rgba(255,255,255,.07)); }
/* Footer logo — white via CSS filter */
.footer-logo-wrap { margin-bottom:18px; }
.footer-logo-wrap a { display:inline-block; text-decoration:none; }
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  /* Converts any colour logo to pure white */
  filter: brightness(0) invert(1);
  opacity: .92;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: 1; }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--footer-heading, var(--white));
  letter-spacing: .04em;
}

.footer-brand p { font-size:14px; font-weight:300; color:var(--footer-txt, rgba(255,255,255,.44)); line-height:1.8; margin-bottom:20px; }

/* Social icons in footer brand column */
.footer-social-icons {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.footer-social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social-icons a:hover {
  border-color: var(--footer-link-hover, var(--gold));
  color: var(--footer-link-hover, var(--gold-light));
  background: rgba(240,143,63,.08);
}
.footer-contact-item { display:flex; align-items:flex-start; gap:12px; margin-bottom:14px; font-size:13px; color:var(--footer-txt, rgba(255,255,255,.6)); line-height:1.5; }
.footer-contact-item a { color:var(--footer-txt, rgba(255,255,255,.6)); text-decoration:none; transition:color .2s; }
.footer-contact-item a:hover { color:var(--footer-link-hover, var(--gold-light)); }
.footer-contact-icon { color:var(--footer-link-hover, var(--gold)); flex-shrink:0; margin-top:2px; display:flex; align-items:center; }
.footer-contact-icon svg { display:block; }
.footer-col h5 { font-family:var(--font-body); font-size:11px; font-weight:700; letter-spacing:.22em; text-transform:uppercase; color:var(--footer-heading, var(--white)); margin-bottom:20px; }
.footer-col ul li { margin-bottom:8px; }
.footer-col ul li a { font-size:13px; font-weight:300; color:var(--footer-link, rgba(255,255,255,.44)); display:flex; align-items:center; gap:6px; transition:color .2s,padding-left .2s; }
.footer-col ul li a::before { content:'—'; font-size:8px; color:var(--footer-link-hover, var(--gold)); }
.footer-col ul li a:hover { color:var(--footer-link-hover, var(--gold-light)); padding-left:4px; }
.footer-trust { display:flex; gap:14px; align-items:center; padding:20px 0; border-top:1px solid rgba(255,255,255,.06); flex-wrap:wrap; }
.footer-trust-label { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.24); margin-right:4px; flex-shrink:0; }
.footer-trust span:first-child { font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.24); margin-right:4px; }
.trust-badge { padding:4px 12px; border:1px solid rgba(255,255,255,.10); font-size:11px; color:rgba(255,255,255,.36); letter-spacing:.07em; }
/* Trust logo images */
.trust-logo-img {
  display: block;
  height: 40px; /* overridden by inline style */
  width: auto;
  object-fit: contain;
  opacity: 0.65;
  filter: brightness(0) invert(1); /* make logos white by default */
  transition: opacity .22s ease;
}
.trust-logo-link { display:inline-flex; align-items:center; }
.trust-logo-link:hover .trust-logo-img,
.trust-logo-img:hover { opacity: 1; }
.footer-bottom { padding:18px 0; border-top:1px solid var(--footer-border, rgba(255,255,255,.06)); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.footer-bottom p { font-size:12px; font-weight:400; color:var(--footer-bottom-txt, rgba(255,255,255,.26)); letter-spacing:.04em; }
/* .footer-social moved to .footer-social-icons in brand column */

/* ═══════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE SYSTEM
   Base = mobile (320px+)
   sm   = 480px+   (large phones)
   md   = 768px+   (tablets)
   lg   = 1024px+  (small desktop)
   xl   = 1240px+  (wide desktop)
═══════════════════════════════════════════════════════ */

/* ── Base (mobile) overrides for desktop defaults above ── */
/* Container is already padded; these override grid cols */

/* Destinations: 1 col on mobile */
.dest-grid               { grid-template-columns: 1fr; }
/* Trips grid: 1 col on mobile */
.trips-grid              { grid-template-columns: 1fr; margin-bottom: 36px; }
/* About: single column mobile */
.about-grid              { grid-template-columns: 1fr; gap: 40px; }
.about-images            { height: 300px; }
.about-features          { grid-template-columns: 1fr; }
/* Stats: 2-col mobile */
.stats-grid              { grid-template-columns: 1fr 1fr; }
.stat-item               { padding: 18px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
.stat-item:nth-child(odd){ border-right: 1px solid rgba(255,255,255,.1); }
.stat-item:last-child,
.stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
/* Testimonials: 1 col */
.testimonials-grid       { grid-template-columns: 1fr; }
/* Blog: 1 col */
.sp-layout                { grid-template-columns: 1fr; }
.sp-sidebar               { position: static; top: auto; }
.blog-grid               { grid-template-columns: 1fr; }
/* Article archive: 1 col on mobile */
.arc-grid                { grid-template-columns: 1fr; }
.arc-featured            { grid-template-columns: 1fr; }
.arc-featured-img-wrap   { min-height: 240px; }
.arc-featured-body       { padding: 28px 24px 32px; }
.arc-filter-wrap         { top: 104px; }
/* Featured: stacked */
.featured-inner          { grid-template-columns: 1fr; }
.featured-image          { min-height: 320px; }
.featured-image::after   { background: linear-gradient(to bottom, transparent 50%, rgba(8,80,108,.95) 100%); }
.featured-content        { padding: 32px 24px 36px; }
.featured-stats          { grid-template-columns: repeat(2,1fr); }
.featured-footer         { flex-direction: column; align-items: flex-start; gap: 16px; }
/* Footer */
.footer-top              { grid-template-columns: 1fr; gap: 28px; }
.footer-newsletter .container { flex-direction: column; }
.newsletter-form         { min-width: unset; width: 100%; }
/* Section header: stacked */
.section-header          { flex-direction: column; align-items: flex-start; gap: 12px; }
/* Single trip */
.tour-layout             { grid-template-columns: 1fr !important; }
/* Hero */
.hero h1                 { font-size: 36px; }
.hero-desc               { font-size: 15px; }
.hero-actions            { flex-direction: column; gap: 10px; }
.hero-destinations       { display: none; }
/* Container padding on mobile */
.container               { padding: 0 18px; }
/* Section padding reduction */
.section-destinations,
.section-about,
.section-trips,
.section-departures,
.section-testimonials,
.section-faq,
.section-blog            { padding: 60px 0; }
.section-stats           { padding: 36px 0; }
.section-wellness        { padding: 72px 0; }
/* Nav */
.primary-nav             { display: none; }
.header-cta              { display: none; }
.hamburger               { display: flex; }
/* Booking page */
.bk-grid-2               { grid-template-columns: 1fr; }
.bk-pkg-grid             { grid-template-columns: 1fr; }
.bk-step-text            { display: none; }
.bk-card                 { padding: 20px 16px; }
/* Stat number mobile */
.stat-number             { font-size: 36px; }
.stat-icon svg           { width: var(--stat-icon-size, 26px); height: var(--stat-icon-size, 26px); }

/* ── sm: 480px+ ── */
@media (min-width: 480px) {
  .dest-grid             { grid-template-columns: repeat(2, 1fr); }
  /* 2-col variant stays 2 cols from 480px up */
  .dest-grid-cols-2      { grid-template-columns: repeat(2, 1fr); }
  .trips-grid            { grid-template-columns: repeat(2, 1fr); }
  .about-features        { grid-template-columns: repeat(4, 1fr); }
  .hero h1               { font-size: clamp(36px, 8vw, 52px); }
  .hero-actions          { flex-direction: row; }
  .bk-pkg-grid           { grid-template-columns: repeat(3, 1fr); }
  .stat-number           { font-size: 44px; }
}

/* ── md: 768px+ ── */
@media (min-width: 768px) {
  .container             { padding: 0 28px; }
  .dest-grid             { grid-template-columns: repeat(2, 1fr); }
  /* Column variants at tablet */
  .dest-grid-cols-2      { grid-template-columns: repeat(2, 1fr); }
  .dest-grid-cols-3      { grid-template-columns: repeat(3, 1fr); }
  .dest-grid-cols-4      { grid-template-columns: repeat(2, 1fr); } /* 4-col stays 2-up at tablet */
  .trips-grid            { grid-template-columns: repeat(2, 1fr); }
  .about-grid            { grid-template-columns: 1fr 1fr; gap: 52px; }
  .about-images          { height: 420px; }
  .stats-grid            { grid-template-columns: repeat(4, 1fr); }
  .stat-item             { border-right: 1px solid rgba(255,255,255,.22); border-bottom: none; }
  .stat-item:nth-child(odd){ border-right: 1px solid rgba(255,255,255,.22); }
  .stat-item:last-child  { border-right: none; }
  .testimonials-grid     { grid-template-columns: repeat(2, 1fr); }
  .blog-grid             { grid-template-columns: repeat(2, 1fr); }
  .arc-grid              { grid-template-columns: repeat(2, 1fr); }
  .sp-layout             { grid-template-columns: 1fr 280px; gap: 40px; }
  .sp-sidebar            { position: sticky; top: 124px; }
  .arc-featured          { grid-template-columns: 1fr 1fr; }
  .arc-featured-img-wrap { min-height: 320px; }
  .featured-inner        { grid-template-columns: 1.1fr 1fr; }
  .featured-image        { min-height: 440px; }
  .featured-content      { padding: 52px 40px; }
  .featured-image::after { display: block; }
  .footer-top            { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-newsletter .container { flex-direction: row; }
  .newsletter-form       { min-width: 340px; width: auto; }
  .section-header        { flex-direction: row; align-items: flex-end; gap: 0; }
  .primary-nav           { display: flex; }
  .header-cta            { display: flex; }
  .hamburger             { display: none; }
  .hero h1               { font-size: clamp(44px, 6.2vw, 84px); }
  .hero-desc             { font-size: 17px; }
  .hero-actions          { flex-direction: row; }
  .hero-destinations     { display: flex; }
  .section-destinations,
  .section-about,
  .section-trips,
  .section-departures,
  .section-testimonials,
  .section-faq,
  .section-blog          { padding: 80px 0; }
  .section-wellness      { padding: 96px 0; }
  .bk-grid-2             { grid-template-columns: 1fr 1fr; }
  .bk-step-text          { display: block; }
  .bk-card               { padding: 32px; }
  .stat-number           { font-size: 54px; }
}

/* ── lg: 1024px+ ── */
@media (min-width: 1024px) {
  .container             { padding: 0 40px; }
  .dest-grid             { grid-template-columns: repeat(4, 1fr); }
  /* Column variants at desktop — honour the customizer choice */
  .dest-grid-cols-2      { grid-template-columns: repeat(2, 1fr); }
  .dest-grid-cols-3      { grid-template-columns: repeat(3, 1fr); }
  .dest-grid-cols-4      { grid-template-columns: repeat(4, 1fr); }
  .trips-grid            { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid     { grid-template-columns: repeat(3, 1fr); }
  .blog-grid             { grid-template-columns: repeat(3, 1fr); }
  .arc-grid              { grid-template-columns: repeat(3, 1fr); }
  .sp-layout             { grid-template-columns: 1fr 300px; gap: 64px; }
  .footer-top            { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; }
  .about-grid            { gap: 80px; }
  .about-images          { height: 570px; }
  .tour-layout           { grid-template-columns: 1fr 365px !important; }
  .section-destinations,
  .section-about,
  .section-trips,
  .section-departures,
  .section-testimonials,
  .section-faq,
  .section-blog          { padding: 96px 0; }
  .section-wellness      { padding: 108px 0; }
}

/* ── xl: 1240px+ ── */
@media (min-width: 1240px) {
  .container             { padding: 0 40px; }
}


:root {
  --dep-cols: 2.6fr 1.5fr 1.5fr 1.1fr 120px;
  --dep-pad-h: 20px;
  --dep-gap: 14px;
}

/* ═══════════════════════════════════════
   DEPARTURE TABLE — homepage + single trip
═══════════════════════════════════════ */

/* Filter bar */
.dep-filter-bar {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--stone); border-bottom: none;
}
.dep-filter-group { display: flex; align-items: center; gap: 8px; }
.dep-filter-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--fog); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.dep-filter-label svg { color: var(--gold); }
.dep-select {
  padding: 6px 28px 6px 10px;
  border: 1px solid var(--stone); background: var(--white);
  font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink);
  cursor: pointer; outline: none; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%2396928B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center;
  min-width: 130px; transition: border-color .15s;
}
.dep-select:focus { border-color: var(--gold); }
.dep-count { font-size: 12px; color: var(--fog); margin-left: auto; }

/* The table itself */
.dep-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--stone);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
}
.dep-table thead tr { background: var(--stats-bg, var(--ink)); }
.dep-table thead th {
  padding: 10px 16px;
  font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); text-align: left; white-space: nowrap; border: none;
}
.dep-table tbody tr {
  border-bottom: 1px solid var(--card-border, var(--stone));
  transition: background .15s;
}
.dep-table tbody tr:last-child { border-bottom: none; }
.dep-table tbody tr:hover { background: var(--section-alt-bg, var(--cream)); }
.dep-table tbody td { padding: 14px 16px; vertical-align: middle; border: none; }

/* Trip name */
.dep-name-link {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  color: var(--card-title, var(--ink)); line-height: 1.3; display: block; transition: color .18s;
}
.dep-name-link:hover { color: var(--btn-bg, var(--gold)); }
.dep-name-sub {
  display: block; margin-top: 2px;
  font-size: 11px; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--fog);
}

/* Date */
.dep-d { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--card-title, var(--ink)); }
.dep-m { font-size: 13px; font-weight: 700; color: var(--btn-bg, var(--gold)); text-transform: uppercase; letter-spacing: .05em; }
.dep-y { font-size: 12px; color: var(--fog); }
.dep-ret  { font-size: 11px; color: var(--fog); }
.dep-note { font-size: 11px; color: var(--btn-bg, var(--gold)); font-weight: 700; }

/* Status pill */
.dep-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; white-space: nowrap;
}
.dep-pill i {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  font-style: normal; display: inline-block;
}

/* Price */
.dep-price     { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--card-title, var(--ink)); display: inline; }
.dep-price-sub { font-size: 10px; font-weight: 600; color: var(--fog); display: inline; letter-spacing: .04em; margin-left: 2px; }

/* Book button */
.dep-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; white-space: nowrap;
  background: var(--stats-bg, var(--ink)); color: var(--btn-txt, var(--white));
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  transition: background .18s;
}
.dep-btn:hover { background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white)); }
.dep-btn svg   { transition: transform .18s; }
.dep-btn:hover svg { transform: translateX(3px); }
.dep-full { font-size: 11px; font-weight: 700; color: var(--fog); letter-spacing: .08em; text-transform: uppercase; }

/* ── Departure: hidden rows & See More toggle ── */
.dep-row-hidden { display: none !important; }

.dep-see-more-wrap {
  text-align: center;
  padding: 14px 0 4px;
  border-top: 1px solid var(--stone);
  margin-top: 0;
}
.dep-see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid var(--stone);
  padding: 9px 22px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--primary, var(--ink));
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.dep-see-more-btn:hover {
  border-color: var(--btn-bg, var(--gold));
  color: var(--btn-bg, var(--gold));
  background: var(--section-alt-bg, var(--cream));
}

/* ── Review: hidden rows ── */
.rv-hidden { display: none; }

/* Empty state */
.dep-empty-state { text-align: center; padding: 48px 24px; color: var(--fog); border: 1px solid var(--stone); }
.dep-empty-state svg { color: var(--gold); margin: 0 auto 14px; display: block; }
.dep-empty-state h4 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.dep-empty-state p  { font-size: 14px; margin-bottom: 20px; }

/* Pagination footer */
#depFooter { border: 1px solid var(--stone); border-top: none; background: var(--cream-2); }
#depShowMore { text-align: center; padding: 14px 20px; border-bottom: 1px solid var(--stone); }
#depPagination { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; flex-wrap: wrap; gap: 10px; }

/* Trip page */
.trip-departures-section { scroll-margin-top: 60px; }

/* Mobile — stack as cards below 640px */
@media(max-width:640px){
  .dep-filter-bar { gap: 10px; }
  .dep-select { min-width: 0; width: 100%; }
  .dep-filter-group { width: 100%; }
  .dep-filter-label { min-width: 70px; }
  .dep-count { margin-left: 0; }
  .dep-table, .dep-table tbody, .dep-table tbody tr, .dep-table tbody td { display: block; width: 100%; }
  .dep-table thead { display: none; }
  .dep-table tbody tr { border: 1px solid var(--stone); margin-bottom: 8px; padding: 4px 0; }
  .dep-table tbody tr:last-child { border-bottom: 1px solid var(--stone); }
  .dep-table tbody td {
    padding: 8px 14px;
    border-bottom: 1px solid var(--cream-2);
    display: flex; align-items: center; gap: 12px;
  }
  .dep-table tbody td:last-child { border-bottom: none; }
  .dep-table tbody td::before {
    content: attr(data-label);
    font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: var(--fog); min-width: 90px; flex-shrink: 0;
  }
  .dep-btn { width: 100%; justify-content: center; }
}

/* ─────────────────────────────────────────────
   TRIP CARD — REDESIGNED (v2)
   With SVG meta icons, cleaner layout,
   next departure badge
───────────────────────────────────────────── */

/* Replace old trip-meta with icon version */
.trip-meta-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
/* Trip type pill — shown above meta icons row on every card */
.trip-type-pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border: 1px solid rgba(240,143,63,.3);
  padding: 3px 10px;
  margin-bottom: 8px;
}

.trip-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--mist);
  background: var(--cream);
  padding: 4px 10px;
  border: 1px solid var(--stone);
}
.trip-meta-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Next departure badge on card image */
.trip-card-dep-badge {
  position: absolute;
  bottom: 12px; right: 12px; z-index: 2;
  background: rgba(8,80,108,.86);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em;
  padding: 5px 10px;
  display: inline-flex; align-items: center; gap: 5px;
  backdrop-filter: blur(4px);
}
.trip-card-dep-badge svg { color: var(--gold-light); }

/* Card CTA button replacing old text link */
.trip-card-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 18px;
  background: var(--stats-bg, var(--ink));
  color: var(--stats-txt, var(--white));
  font-family: var(--font-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  transition: var(--trans);
}
.trip-card-cta svg { transition: transform .22s; }
.trip-card-cta:hover { background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white)); }
.trip-card-cta:hover svg { transform: translateX(3px); }

/* Trip price refinement */
.trip-price strong sup {
  font-size: 13px; font-weight: 700;
  vertical-align: super;
}

/* ─────────────────────────────────────────────
   TRIP CARD — MOBILE RESPONSIVE FIXES
   On 2-column grid (480px–767px) the card width
   is ~160–220px — too narrow for price + CTA
   side-by-side. Stack them vertically instead.
   Also tighten padding and font sizes so nothing
   overflows or overlaps on small screens.
───────────────────────────────────────────── */
@media (max-width: 767px) {

  /* Stack price and CTA button vertically */
  .trip-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  /* CTA button full-width for easy tap */
  .trip-card-cta {
    width: 100%;
    justify-content: center;
  }

  /* Reduce card body padding so content fits */
  .trip-card-body {
    padding: 14px 14px 16px;
  }

  /* Slightly smaller title on narrow cards */
  .trip-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  /* Price size reduction so it doesn't overflow */
  .trip-price strong {
    font-size: 18px;
  }

  /* Wrap meta icon pills so they don't overflow */
  .trip-meta-icons {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Smaller meta pills on mobile */
  .trip-meta-item {
    font-size: 11px;
    padding: 3px 8px;
  }

  /* Ensure trip type pill wraps cleanly */
  .trip-type-pill {
    font-size: 9px;
    padding: 2px 8px;
  }

  /* Slightly reduce dep badge size */
  .trip-card-dep-badge {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* On very small phones (< 400px) force single column
   so cards are never impossibly narrow */
@media (max-width: 399px) {
  .trips-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ─────────────────────────────────────────────
   TRIP SINGLE — META ICONS ROW
   The "at a glance" stats bar beneath the hero
───────────────────────────────────────────── */
/* ── TRIP META GRID 3×3 ── */
.trip-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--stone);
  margin-bottom: 52px;
  overflow: hidden;
}

.trip-meta-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--white);
  transition: background .2s;
}

/* Remove right border on every 3rd cell */
.trip-meta-cell:nth-child(3n) { border-right: none; }

/* Remove bottom border on last row cells */
.trip-meta-cell:nth-last-child(-n+3) { border-bottom: none; }

.trip-meta-cell:hover { background: var(--cream); }

.trip-meta-cell-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.trip-meta-cell-icon svg {
  width: 30px;
  height: 30;
  stroke: var(--gold);
}

.trip-meta-cell-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.trip-meta-cell-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--fog);
  display: block;
}

.trip-meta-cell-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive */
@media (max-width: 767px) {
  .trip-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-meta-cell:nth-child(3n)   { border-right: 1px solid var(--stone); }
  .trip-meta-cell:nth-child(2n)   { border-right: none; }
  .trip-meta-cell:nth-last-child(-n+3) { border-bottom: 1px solid var(--stone); }
  .trip-meta-cell:nth-last-child(-n+2) { border-bottom: none; }
  .trip-meta-cell:last-child       { border-bottom: none; }
}

/* ─────────────────────────────────────────────
   BOOKING PAGE — multi-step form
───────────────────────────────────────────── */

/* Step indicators */
.bk-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}
.bk-steps::-webkit-scrollbar { display: none; }

.bk-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bk-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--stone);
  color: var(--fog);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s;
  flex-shrink: 0;
}
.bk-step-text strong {
  display: block;
  font-size: 13px; font-weight: 700;
  color: var(--fog);
  transition: color .3s;
}
.bk-step-text small {
  font-size: 11px;
  color: var(--fog);
  opacity: .7;
}
.bk-step.active .bk-step-num { background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white)); }
.bk-step.active .bk-step-text strong { color: var(--ink); }
.bk-step.done .bk-step-num { background: var(--ink); color: var(--white); }
.bk-step-line {
  flex: 1; min-width: 24px; height: 1px;
  background: var(--stone); margin: 0 8px;
}

/* Panels */
.bk-panel { display: none; }
.bk-panel.active { display: block; animation: fadeUp .3s ease-out; }
@keyframes fadeUp { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }

/* Card */
.bk-card {
  background: var(--card-bg, var(--white));
  border: 1px solid var(--card-border, var(--stone));
  padding: 32px;
  margin-bottom: 0;
}
.bk-card-title {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--card-title, var(--ink)); margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.bk-card-title svg { color: var(--gold); }

/* Navigation */
.bk-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 0;
  gap: 12px;
}
.bk-back-btn {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mist); background: none; border: none; cursor: pointer;
  padding: 8px 0; transition: color .2s;
}
.bk-back-btn:hover { color: var(--ink); }

/* Fields */
.bk-field-group { margin-bottom: 20px; }
.bk-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--label-txt, var(--mist)); margin-bottom: 8px;
}
.bk-label svg { color: var(--btn-bg, var(--gold)); }
.bk-req { color: var(--btn-bg, var(--gold)); font-size: 14px; }
.bk-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--input-border, var(--stone));
  background: var(--input-bg, var(--white));
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: var(--input-txt, var(--ink));
  outline: none;
  transition: border .2s;
  -webkit-appearance: none;
}
.bk-input:focus { border-color: var(--input-focus, var(--gold)); }
.bk-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Package grid */
.bk-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 6px;
}
.bk-pkg {
  border: 2px solid var(--stone);
  padding: 16px 14px;
  cursor: pointer;
  text-align: center;
  transition: border-color .22s, background .22s;
}
.bk-pkg:hover { border-color: var(--btn-bg, var(--gold-light)); }
.bk-pkg.active {
  border-color: var(--pkg-gold-border, var(--gold));
  background: var(--gold-pale);
}
.bk-pkg-icon { width:40px;height:40px;margin:0 auto 12px;display:flex;align-items:center;justify-content:center;border:1.5px solid rgba(150,146,139,.25);background:rgba(150,146,139,.06); }
.bk-pkg-icon svg { width:18px;height:18px; }
.bk-pkg.active .bk-pkg-icon { border-color:rgba(240,143,63,.4);background:rgba(240,143,63,.1); }
.bk-pkg.active .bk-pkg-icon svg { stroke:var(--btn-bg, var(--gold-light)); }
.bk-pkg-name { font-size: 13px; font-weight: 700; color: var(--card-title, var(--ink)); margin-bottom: 3px; }
.bk-pkg-desc { font-size: 11px; color: var(--fog); line-height: 1.4; margin-bottom: 8px; }
.bk-pkg-price { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--btn-bg, var(--gold)); }

/* Trip summary in step 0 */
.bk-trip-summary {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--stone);
  margin-bottom: 24px;
  align-items: center;
}
.bk-trip-img {
  width: 90px; height: 68px; overflow: hidden; flex-shrink: 0;
}
.bk-trip-img img { width:100%; height:100%; object-fit:cover; }
.bk-trip-info h3 {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin-bottom: 6px; line-height: 1.3;
}
.bk-trip-meta { display:flex; gap:10px; flex-wrap:wrap; }
.bk-trip-meta span {
  display:inline-flex; align-items:center; gap:4px;
  font-size:11px; font-weight:700; color:var(--mist);
}
.bk-trip-meta svg { color:var(--gold); }

/* Selected departure display */
.bk-dep-selected {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--cream);
  border: 1px solid var(--gold);
}
.bk-dep-icon { color: var(--gold); flex-shrink: 0; }
.bk-dep-selected strong { display: block; font-size: 15px; font-weight: 700; color: var(--ink); }
.bk-dep-selected span { font-size: 13px; color: var(--mist); }
.bk-dep-selected small { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--fog); display: block; margin-top: 3px; }

/* Booking summary sidebar */
.bk-summary-card {
  background: var(--card-bg, var(--white));
  border: 1px solid var(--card-border, var(--stone));
  overflow: hidden;
}
.bk-summary-header {
  background: var(--stats-bg, var(--ink));
  padding: 18px 20px;
}
.bk-summary-header h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  color: var(--stats-txt, var(--white));
}
.bk-summary-body { padding: 0; }
.bk-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--card-border, var(--stone));
}
.bk-sum-label {
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--fog);
  display: inline-flex; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.bk-sum-label svg { color: var(--btn-bg, var(--gold)); }
.bk-sum-val {
  font-size: 13px; font-weight: 700; color: var(--card-title, var(--ink));
  text-align: right; line-height: 1.4;
}
.bk-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--gold-pale);
  border-top: 2px solid var(--pkg-gold-border, var(--gold));
}
.bk-summary-total span {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-dark);
}
.bk-summary-total strong {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700; color: var(--card-title, var(--ink));
}

/* Booking page main 2-col layout (form + sidebar) */
.bk-main-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

/* ═══════════════════════════════════════════════════
   BOOKING PAGE — COMPREHENSIVE MOBILE FIXES
   Targets all inline-style layouts that break on
   small screens. Selectors are deliberately broad
   so they work regardless of inline styles present.
   Breakpoints:
     800px  — tablet: stack sidebar below form
     600px  — large phone: collapse pkg grid to 1 col
     480px  — small phone: tighten everything
═══════════════════════════════════════════════════ */

/* ── 800px: stack the main form + sidebar ── */
@media (max-width: 800px) {

  /* Existing */
  .bk-grid-2      { grid-template-columns: 1fr; }
  .bk-pkg-grid    { grid-template-columns: repeat(3, 1fr); }
  .bk-step-text   { display: none; }
  .bk-card        { padding: 20px 16px; }

  /* ── MAIN LAYOUT: override the inline 1fr 340px grid ── */
  /* The wrapping grid lives inside #bk-form-wrap > .container > div */
  .bk-main-layout,
  #bk-form-wrap > div,
  #bk-form-wrap [style*="grid-template-columns:1fr 340px"],
  #bk-form-wrap [style*="grid-template-columns: 1fr 340px"] {
    display: block !important;
  }

  /* Sidebar: remove sticky, add top margin, full width */
  #bkSummary,
  .bk-summary-card {
    position: static !important;
    margin-top: 32px;
    width: 100%;
  }

  /* ── TRUST BADGES: stack vertically ── */
  #bk-form-wrap [style*="display:flex"][style*="gap:24px"],
  .bk-trust-badges {
    flex-direction: column !important;
    gap: 12px !important;
  }

  /* ── STEP INDICATOR: shrink so it fits ── */
  .bk-steps     { gap: 0; }
  .bk-step-line { flex: 1; min-width: 12px; }
  .bk-step-num  { width: 30px; height: 30px; font-size: 11px; }

  /* ── PACKAGE CARDS: allow 3-up but reduce padding ── */
  .bk-pkg { padding: 12px 8px; }
  .bk-pkg-icon  { width: 32px; height: 32px; margin-bottom: 8px; }
  .bk-pkg-name  { font-size: 12px; }
  .bk-pkg-desc  { font-size: 10px; }
  .bk-pkg-price { font-size: 14px; }

  /* ── LIVE CALCULATOR: stack price breakdown ── */
  #bk-live-calc > div {
    flex-direction: column !important;
    gap: 12px !important;
  }
  #bk-live-calc [style*="text-align:right"] {
    text-align: left !important;
  }
  #bk-calc-total { font-size: 30px !important; }

  /* ── REVIEW STEP: total row ── */
  #bk-review [style*="display:flex"] {
    flex-wrap: wrap;
    gap: 6px;
  }
  #bk-review [style*="font-size:28px"] {
    font-size: 22px !important;
  }

  /* ── STEP 3 summary card ── */
  .bk-panel[data-panel="3"] [style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column !important;
    gap: 12px !important;
  }
  .bk-panel[data-panel="3"] [style*="text-align:right"] {
    text-align: left !important;
  }
  #bk-final-total { font-size: 28px !important; }

  /* ── DEPARTURE BUTTONS: wrap cleanly ── */
  #bk-dep-btns {
    flex-direction: column !important;
  }
  #bk-dep-btns button {
    width: 100% !important;
    justify-content: flex-start !important;
  }

  /* ── DEPARTURE selected box: allow wrap ── */
  .bk-dep-selected {
    flex-wrap: wrap;
    gap: 10px;
  }
  .bk-dep-selected a {
    margin-left: 0 !important;
    width: 100%;
  }

  /* ── TRIP SELECTOR cards grid: 1 col ── */
  #trip-card-list {
    grid-template-columns: 1fr !important;
  }

  /* ── TRIP SELECTOR card footer: stack on narrow ── */
  #trip-card-list .ts-card [style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column;
    gap: 10px;
  }
  #trip-card-list .ts-card [style*="display:flex"][style*="justify-content:space-between"] span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* ── NAVIGATION buttons: full width on small screens ── */
  .bk-nav {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .bk-nav .btn-primary,
  .bk-nav button[type="submit"] {
    width: 100%;
    justify-content: center;
  }
  .bk-nav .bk-back-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  /* ── SUCCESS screen buttons: stack ── */
  .bk-panel[data-panel="success"] [style*="display:flex"][style*="gap:12px"] {
    flex-direction: column;
  }
  .bk-panel[data-panel="success"] a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ── 600px: collapse package grid to 1 column ── */
@media (max-width: 600px) {
  .bk-pkg-grid { grid-template-columns: 1fr !important; }

  /* Pkg card: horizontal layout (icon left, text right) */
  .bk-pkg {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 14px 16px;
  }
  .bk-pkg-icon {
    flex-shrink: 0;
    margin: 0;
    width: 36px; height: 36px;
  }
  .bk-pkg-body { flex: 1; min-width: 0; }
  .bk-pkg-price { font-size: 15px; }

  /* Live calc total: smaller font */
  #bk-calc-total { font-size: 26px !important; }

  /* Group label: tighter padding */
  #bk-group-label { font-size: 12px; padding: 10px 12px; }

  /* Tier buttons: full width */
  #bk-tier-btn-row { flex-direction: column; }
  #bk-tier-btn-row .bk-tier-btn { width: 100%; justify-content: space-between; }
}

/* ── 480px: very small phones ── */
@media (max-width: 480px) {
  /* Booking hero */
  #bk-form-wrap { padding: 0; }

  /* Step numbers only — no lines */
  .bk-step-line { display: none; }
  .bk-steps     { gap: 6px; justify-content: center; }

  /* Pax counter: full width */
  #btn-pax-minus,
  #btn-pax-plus  { flex: 1; }

  /* Summary sidebar totals: smaller */
  .bk-summary-total strong { font-size: 18px; }

  /* Container padding */
  .container { padding: 0 14px; }
}

/* ─────────────────────────────────────────────
   GROUP PRICING TABLE
   Shown on single trip page inside Package Options
───────────────────────────────────────────── */
/* ── GROUP PRICE TABLE ── */
.group-price-table {
  border: 1px solid var(--stone);
  overflow: hidden;
}

/* Header row */
.gpt-header {
  display: grid;
  gap: 0;
  background: var(--ink);
  padding: 11px 20px;
  align-items: center;
}
.gpt-header span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.gpt-header svg { color: var(--gold); }

/* Data rows */
.gpt-row {
  position: relative;
  display: grid;
  gap: 0;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--stone);
  background: var(--white);
  transition: background .18s;
}
.gpt-row:last-child { border-bottom: none; }
.gpt-row:hover { background: var(--cream); }

.gpt-row.gpt-popular {
  background: var(--gold-pale);
  border-left: 3px solid var(--pkg-gold-border, var(--gold));
}
.gpt-row.gpt-popular:hover { background: #f0e8d4; }

/* "Most Popular" badge */
.gpt-badge {
  position: absolute;
  top: -1px; right: 16px;
  background: var(--popular-bg, var(--gold));
  color: var(--popular-txt, var(--white));
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
}

/* Base cell */
.gpt-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
  justify-content: center;
}

/* Group size cell */
.gpt-group {
  flex-direction: row;
  align-items: center;
  gap: 9px;
}
.gpt-group svg   { color: var(--gold); flex-shrink: 0; }
.gpt-group strong {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

/* Price amount — shared base */
.gpt-amount {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  display: block;
}
.gpt-amount-silver { font-size: 16px; color: #2d6e87; }
.gpt-amount-gold   { font-size: 20px; color: var(--gold-dark); }
.gpt-amount-plat   { font-size: 16px; color: #007ead; }

/* "/ person" label */
.gpt-unit {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--fog);
  margin-top: 1px;
  display: block;
}
.gpt-unit-gold { color: var(--gold); }
.gpt-unit-plat { color: #007ead; }

/* Savings cell */
.gpt-save-badge {
  display: inline-block;
  background: var(--saving-bg, rgba(42,138,90,.1));
  color: var(--saving-txt, #1a7a44);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  letter-spacing: .03em;
}
.gpt-saving small {
  font-size: 10px;
  color: var(--fog);
  margin-top: 2px;
  display: block;
}

/* Footer */
.gpt-footer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding: 12px 20px;
  background: var(--cream);
  border-top: 1px solid var(--stone);
}
.gpt-footer span {
  font-size: 12px;
  color: var(--mist);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.gpt-footer svg { color: #2a8a5a; }

.gpt-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--stats-bg, var(--ink));
  color: var(--stats-txt, var(--white));
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s;
}
.gpt-book-btn:hover { background: var(--btn-bg, var(--gold)); color: var(--btn-txt, var(--white)); }

/* Package label — hidden on desktop, shown on mobile above each price */
.gpt-pkg-label {
  display: none;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

/* Price cells row wrapper — transparent on desktop */
.gpt-prices-row {
  display: contents; /* acts as if the wrapper doesn't exist in desktop grid */
}

/* ── GROUP PRICING TABLE — MOBILE ────────────────────
   On small screens the 5-column grid becomes unreadable.
   We switch each row to a card layout:
     top:    group label  |  savings badge
     middle: 3 package price pills in a row
     bottom: Book button full-width
──────────────────────────────────────────────────── */
@media (max-width: 700px) {

  /* ── Section header: stack title + button ── */
  .group-price-table ~ * ,
  [style*="group-price"] {
    flex-wrap: wrap;
  }

  /* Hide the desktop column header row */
  .gpt-header { display: none; }

  /* Each tier row becomes a self-contained card */
  .gpt-row {
    display: block !important;
    padding: 16px 16px 14px !important;
    border-bottom: 1px solid var(--stone);
    position: relative;
  }

  /* ── Row top: group label + savings side by side ── */
  .gpt-row .gpt-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
  }
  .gpt-row .gpt-group strong {
    font-size: 15px;
  }

  /* Move savings badge next to label */
  .gpt-saving {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    float: right;
    margin-top: 0;
  }
  .gpt-save-badge {
    font-size: 11px;
    padding: 3px 8px;
  }
  .gpt-saving small { display: none; }

  /* ── 3 price pills in a row ── */
  .gpt-cell-silver,
  .gpt-cell-gold,
  .gpt-cell-plat {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    width: calc(33.33% - 6px);
    padding: 10px 6px;
    border: 1px solid var(--stone);
    background: var(--cream);
    text-align: center;
  }
  /* Lay the three price cells out as a flex row */
  .gpt-row::after {
    content: '';
    display: table;
    clear: both;
  }
  /* Wrap the three price cells in a flex row using a pseudo container trick */
  .gpt-prices-row {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
  }

  /* ── Price amounts: slightly smaller on mobile ── */
  .gpt-amount-silver { font-size: 14px; }
  .gpt-amount-gold   { font-size: 16px; }
  .gpt-amount-plat   { font-size: 14px; }

  /* Show package labels above each price on mobile */
  .gpt-pkg-label { display: block; }
  .gpt-pkg-label[style] { display: block !important; }
  .gpt-cell-silver .gpt-pkg-label { color: #2d6e87; }
  .gpt-cell-gold   .gpt-pkg-label { color: var(--gold-dark); }
  .gpt-cell-plat   .gpt-pkg-label { color: #007ead; }

  /* Activate the price row wrapper as a real flex container */
  .gpt-prices-row {
    display: flex !important;
    gap: 6px;
    margin-bottom: 10px;
  }
  .gpt-prices-row .gpt-cell {
    flex: 1;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 10px 6px;
    border: 1px solid var(--stone);
    background: var(--cream);
    text-align: center;
    min-width: 0;
  }
  .gpt-cell-gold {
    border-color: rgba(240,143,63,.4) !important;
    background: var(--gold-pale) !important;
  }

  /* ── Book button: full width ── */
  .gpt-book-btn {
    width: 100% !important;
    justify-content: center !important;
    margin-top: 4px;
    padding: 11px 16px;
    font-size: 12px;
  }

  /* ── Footer: stack vertically ── */
  .gpt-footer {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .gpt-footer > div {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .gpt-footer > div:last-child {
    flex-direction: column !important;
    gap: 8px !important;
  }
  .gpt-footer a {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
    box-sizing: border-box;
  }
  .gpt-footer span {
    font-size: 12px;
  }
}

/* ── Departure footer: Show More + Pagination ── */
#depFooter {
  border: 1px solid var(--stone);
  border-top: none;
  background: var(--cream-2);
}
#depShowMore {
  text-align: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--stone);
}
#depPagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  flex-wrap: wrap;
  gap: 10px;
}

/* ═══════════════════════════════════════
   SINGLE POST SIDEBAR — sp-* classes
═══════════════════════════════════════ */

/* Layout */
.sp-sidebar {
  position: sticky;
  top: 124px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.admin-bar .sp-sidebar { top: 156px; }

/* Single post 2-col layout */
.sp-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}

/* Shared widget shell */
.sp-widget {
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
}
.sp-widget-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--fog);
  padding: 14px 18px;
  border-bottom: 1px solid var(--stone);
  background: var(--cream);
}
.sp-widget-head svg { color: var(--gold); flex-shrink: 0; }

/* ── Reading progress ── */
.sp-progress-wrap {
  background: var(--white);
  border: 1px solid var(--stone);
  padding: 14px 18px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sp-progress-bar-track {
  flex: 1;
  height: 4px;
  background: var(--stone);
  border-radius: 2px;
  overflow: hidden;
}
.sp-progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--primary, #08506c));
  border-radius: 2px;
  width: 0%;
  transition: width .3s ease;
}
.sp-progress-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--fog);
  white-space: nowrap;
  min-width: 52px;
  text-align: right;
}

/* ── Table of Contents ── */
.sp-toc-nav {
  padding: 8px 0;
}
.sp-toc-link {
  display: block;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mist);
  line-height: 1.45;
  border-left: 2px solid transparent;
  transition: color .18s, border-color .18s, background .18s;
  text-decoration: none;
}
.sp-toc-h3 {
  padding-left: 30px;
  font-size: 12px;
  color: var(--fog);
}
.sp-toc-link:hover {
  color: var(--gold);
  background: rgba(197,153,83,.05);
}
.sp-toc-link.active {
  color: var(--gold);
  border-left-color: var(--gold);
  font-weight: 700;
  background: rgba(197,153,83,.06);
}

/* ── Share buttons ── */
.sp-share-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--stone);
}
.sp-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: opacity .18s, filter .18s;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}
.sp-share-btn:hover { opacity: .88; filter: brightness(1.08); }
.sp-share-fb  { background: #e8f0fe; color: #1877f2; }
.sp-share-x   { background: #f0f0f0; color: #000; }
.sp-share-wa  { background: #e8f8ec; color: #128c4e; }
.sp-share-li  { background: #e8f2f9; color: #0a66c2; }
.sp-share-copy {
  grid-column: 1 / -1;
  background: var(--cream);
  color: var(--fog);
  border-top: 1px solid var(--stone);
  transition: background .18s, color .18s;
}
.sp-share-copy:hover { background: var(--stone); color: var(--ink); }
.sp-share-copy.copied { background: var(--ink); color: var(--white) !important; }

/* ── CTA widget ── */
.sp-cta-widget {
  background: var(--ink);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sp-cta-widget::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 60% at 50% 110%, rgba(197,153,83,.22), transparent 70%);
  pointer-events: none;
}
.sp-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(197,153,83,.15);
  border: 1px solid rgba(197,153,83,.3);
  border-radius: 50%;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
}
.sp-cta-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.25;
  position: relative;
}
.sp-cta-sub {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
}
.sp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 12px 24px;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
  transition: background .2s, gap .2s;
  position: relative;
}
.sp-cta-btn:hover { background: var(--gold-dark, #b07d2a); gap: 10px; }
.sp-cta-secondary {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.38);
  transition: color .2s;
  position: relative;
}
.sp-cta-secondary:hover { color: rgba(255,255,255,.7); }

/* ── Related articles ── */
.sp-related-list { padding: 8px 0; }
.sp-related-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 18px;
  border-bottom: 1px solid var(--stone);
  text-decoration: none;
  transition: background .18s;
}
.sp-related-item:last-child { border-bottom: none; }
.sp-related-item:hover { background: var(--cream); }
.sp-related-img-wrap {
  width: 66px;
  height: 50px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
}
.sp-related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.sp-related-item:hover .sp-related-img { transform: scale(1.06); }
.sp-related-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.sp-related-cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.sp-related-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.38;
  transition: color .18s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sp-related-item:hover .sp-related-title { color: var(--gold); }
.sp-related-rt {
  font-size: 10px;
  color: var(--fog);
  font-weight: 500;
}

/* ═══════════════════════════════════════
   PROSE CONTENT (blog/page body text)
═══════════════════════════════════════ */
.prose-content { font-size:16px; line-height:1.85; color:var(--mist); }
.prose-content h2 { font-family:var(--font-display); font-size:clamp(22px,2.8vw,32px); font-weight:600; color:var(--ink); margin:48px 0 16px; line-height:1.2; }
.prose-content h3 { font-family:var(--font-display); font-size:clamp(18px,2.2vw,24px); font-weight:600; color:var(--ink); margin:36px 0 12px; }
.prose-content h4 { font-size:16px; font-weight:700; color:var(--ink); margin:28px 0 10px; letter-spacing:.02em; }
.prose-content p  { margin-bottom:22px; }
.prose-content p:last-child { margin-bottom:0; }
.prose-content a  { color:var(--gold); text-decoration:underline; text-underline-offset:3px; }
.prose-content a:hover { color:var(--gold-dark); }
.prose-content ul,
.prose-content ol { padding-left:24px; margin-bottom:22px; }
.prose-content li { margin-bottom:8px; line-height:1.75; }
.prose-content ul li { list-style:disc; }
.prose-content ol li { list-style:decimal; }
.prose-content blockquote {
  margin:36px 0; padding:22px 28px 22px 32px;
  background:var(--cream); border-left:3px solid var(--gold);
  font-family:var(--font-display); font-size:18px; font-weight:500;
  font-style:italic; color:var(--ink); line-height:1.55;
}
.prose-content blockquote p { margin:0; font-size:inherit; color:inherit; }
.prose-content img { max-width:100%; height:auto; margin:28px 0; }
.prose-content figure { margin:36px 0; }
.prose-content figcaption { font-size:12px; color:var(--fog); text-align:center; margin-top:8px; }
.prose-content hr { border:none; border-top:1px solid var(--stone); margin:48px 0; }
.prose-content pre { background:var(--ink); color:rgba(255,255,255,.85); padding:24px; overflow-x:auto; margin:28px 0; font-size:14px; line-height:1.6; }
.prose-content code { background:var(--cream-2); padding:2px 6px; font-size:13px; color:var(--ink); }
.prose-content table { width:100%; border-collapse:collapse; margin:28px 0; font-size:14px; }
.prose-content th { background:var(--ink); color:rgba(255,255,255,.7); padding:10px 14px; text-align:left; font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.prose-content td { padding:11px 14px; border-bottom:1px solid var(--stone); }
.prose-content tr:hover td { background:var(--cream); }

/* Pagination (WordPress) */
.page-numbers { display:inline-flex; gap:5px; flex-wrap:wrap; justify-content:center; }
.page-numbers a,
.page-numbers span {
  display:inline-flex; align-items:center; justify-content:center;
  min-width:36px; height:36px; padding:0 10px;
  border:1px solid var(--stone); background:var(--white);
  font-family:var(--font-body); font-size:13px; font-weight:700; color:var(--ink);
  transition:all .18s;
}
.page-numbers a:hover { background:var(--btn-bg, var(--gold)); border-color:var(--btn-bg, var(--gold)); color:var(--btn-txt, var(--white)); }
.page-numbers span.current { background:var(--btn-bg, var(--gold)); border-color:var(--btn-bg, var(--gold)); color:var(--btn-txt, var(--white)); }
.page-numbers .prev,.page-numbers .next { letter-spacing:.08em; font-size:11px; min-width:auto; padding:0 14px; }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
@media (max-width:767px) {
  /* Review list page — stack sidebar above grid on mobile */
  .rv-layout { grid-template-columns:1fr !important; }
}

/* ═══════════════════════════════════════
   ACTIVITY TYPES SECTION
   4-column grid under hero
═══════════════════════════════════════ */
.section-activities {
  background: var(--white);
  padding: 64px 0 72px;   /* top padding so it doesn't attach to hero */
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Column layout modifiers */
.activities-grid--2 { grid-template-columns: repeat(2, 1fr); }
.activities-grid--3 { grid-template-columns: repeat(3, 1fr); }
.activities-grid--4 { grid-template-columns: repeat(4, 1fr); }

.activity-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--stone);
  overflow: hidden;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  position: relative;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  border-color: var(--gold);
}

/* Image */
.activity-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.activity-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.activity-card:hover .activity-card-img img {
  transform: scale(1.07);
}

/* Gold overlay strip on hover */
.activity-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(240,143,63,.45) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .28s;
}

.activity-card:hover .activity-card-img::after {
  opacity: 1;
}

/* Content area */
.activity-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  background: var(--white);
  transition: background .28s;
}

.activity-card:hover .activity-card-body {
  background: var(--cream);
}

.activity-card-count {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.activity-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
  transition: color .2s;
}

.activity-card:hover .activity-card-name {
  color: var(--gold-dark);
}

.activity-card-desc {
  font-size: 13px;
  color: var(--mist);
  line-height: 1.6;
  margin: 2px 0 0;
}

.activity-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--stone);
  transition: gap .2s, color .2s;
}

.activity-card:hover .activity-card-cta {
  gap: 10px;
  color: var(--gold-dark);
}

/* Responsive — collapse to 2 cols on tablet regardless of setting */
@media (max-width: 1024px) {
  .activities-grid,
  .activities-grid--3,
  .activities-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .activities-grid,
  .activities-grid--2,
  .activities-grid--3,
  .activities-grid--4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .activity-card-name { font-size: 16px; }
  .activity-card-body { padding: 14px 14px 16px; }
}

/* ═══════════════════════════════════════
   TRIP OVERVIEW SECTION
═══════════════════════════════════════ */

/* The main excerpt heading */
.trip-overview-heading {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.38;
  color: var(--ink);
  margin: 10px 0 26px;
  padding-left: 20px;
  border-left: 3px solid var(--gold);
  letter-spacing: -.01em;
}

/* Highlights box */
.trip-highlights-box {
  background: var(--cream);
  border: 1px solid var(--stone);
  border-top: 3px solid var(--gold);
  padding: 22px 26px;
  margin-bottom: 28px;
}

.trip-highlights-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}
.trip-highlights-header svg { color: var(--gold); }

.trip-highlights-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trip-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
}

.trip-hl-bullet {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  flex-shrink: 0;
}
.trip-hl-bullet svg { color: var(--white); }

/* Body prose */
.trip-overview-body {
  font-size: 15.5px;
  line-height: 1.88;
  color: var(--mist);
}
.trip-overview-body p { margin-bottom: 1.2em; }
.trip-overview-body p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .trip-highlights-list { grid-template-columns: 1fr; }
  .trip-overview-heading { font-size: 24px; padding-left: 14px; }
}

/* ── FAQ mobile tweaks ── */
@media (max-width: 640px) {
  .faq-header            { margin-bottom: 36px; }
  .faq-header h2         { font-size: 28px; }
  .faq-header .section-label::before,
  .faq-header .section-label::after { width: 24px; }
  .faq-question          { padding: 18px 20px; gap: 14px; }
  .faq-question-text     { font-size: 14px; }
  .faq-answer-inner      { padding: 0 20px 20px; }
  .faq-answer-inner p    { font-size: 14px; }
  .faq-icon svg          { width: 24px; height: 24px; }
  .faq-icon              { width: 24px; height: 24px; }
}

/* ═══════════════════════════════════════
   CONTACT PAGE — RESPONSIVE OVERRIDES
   Scoped overrides for the inline grid/padding
   styles in page-contact.php. Uses !important
   only where needed to beat inline style="".
═══════════════════════════════════════ */

/* Tablet & below — stack the form + sidebar */
@media (max-width: 1023px) {
    .mc-main-grid {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .mc-sidebar {
        position: static !important;
        top: auto !important;
    }
    .mc-main {
        padding: 48px 0 64px !important;
    }
}

/* Phone — single-column everything */
@media (max-width: 767px) {
    /* Hero tightens */
    .mc-hero {
        padding: 56px 0 40px !important;
    }
    .mc-hero-stats {
        gap: 20px !important;
        width: 100%;
    }
    .mc-hero-stats > div {
        flex: 1;
    }

    /* Channels bar — stack vertically so phone/email/whatsapp don't cramp */
    .mc-channels {
        grid-template-columns: 1fr !important;
    }
    .mc-channels > a {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, .22);
    }
    .mc-channels > a:last-child {
        border-bottom: none;
    }

    /* Form 2-column rows collapse to one column */
    .mc-form-row {
        grid-template-columns: 1fr !important;
    }

    /* Main section padding */
    .mc-main {
        padding: 36px 0 56px !important;
    }
}

/* Very small phones — ensure stats don't overflow */
@media (max-width: 400px) {
    .mc-hero-stats {
        gap: 12px !important;
    }
    .mc-hero-stats strong {
        font-size: 24px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE OVERRIDES
   Hook-class overrides for pages that style layout inline.
   Affects: page-about, single, single-trip, page-reviews,
   page-submit-review. Uses !important only where needed
   to beat inline style="".
═══════════════════════════════════════════════════════ */

/* ── Tablet & below (≤ 1023px) ──────────────────────── */
@media (max-width: 1023px) {

    /* About — values section stacks */
    .mc-values-grid {
        grid-template-columns: 1fr !important;
        gap: 48px !important;
    }

    /* Reviews page — sidebar drops below */
    .mc-rev-layout {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }
    .mc-rev-sidebar {
        position: static !important;
        top: auto !important;
    }

    /* Submit review — form + sidebar stack */
    .mc-sr-layout {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }
    .mc-sr-sidebar {
        position: static !important;
        top: auto !important;
    }
}

/* ── Phone (≤ 767px) ────────────────────────────────── */
@media (max-width: 767px) {

    /* About — values section gap tighter; cert badge inline */
    .mc-values-grid {
        gap: 32px !important;
    }
    .mc-cert-badge {
        position: static !important;
        bottom: auto !important;
        right: auto !important;
        margin-top: 14px !important;
        padding: 18px 22px !important;
    }

    /* Single post — prev/next navigation stacks */
    .mc-post-nav {
        grid-template-columns: 1fr !important;
    }

    /* Single trip — package options stack */
    .mc-pkg-grid {
        grid-template-columns: 1fr !important;
    }

    /* Single trip — gallery single column, reset first-item spans */
    .mc-trip-gallery {
        grid-template-columns: 1fr !important;
    }
    .mc-trip-gallery > div {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: 220px !important;
        aspect-ratio: 16 / 10 !important;
    }

    /* Single trip — includes/excludes stack */
    .mc-incl-grid {
        grid-template-columns: 1fr !important;
    }

    /* NOTE: Pricing table (.gpt-header / .gpt-row / .gpt-cell / .gpt-pkg-label)
       already has a mobile card layout at @media (max-width: 700px) above.
       No duplicate rules here. */

    /* Submit review — 2-col form rows collapse */
    .mc-sr-form-row {
        grid-template-columns: 1fr !important;
    }
}


/* ═══════════════════════════════════════════════════════
   SMALL SCREEN (≤ 480px) — fine-grained tightening
   Targets phones like Vivo X300 Pro, iPhone mini, Pixel etc.
   where the 767px rules fire but spacing/fonts still feel
   oversized on a ~400-430px viewport.
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

    /* ── Container: tighter side padding ── */
    .container { padding-left: 14px !important; padding-right: 14px !important; }

    /* ── Page hero sections: less vertical padding ── */
    .mc-hero            { padding: 44px 0 32px !important; }
    .page-hero          { min-height: 300px !important; }
    .page-hero h1       { font-size: 26px !important; }

    /* ── Contact page ── */
    .mc-main            { padding: 28px 0 44px !important; }
    /* Form section wrappers (black "01/02/03" strips) */
    .mc-main .mc-main-grid > div > form > div > div:first-child {
        padding: 11px 14px !important;
    }
    /* Form section content padding */
    .mc-main .mc-main-grid > div > form > div > div:last-child {
        padding: 16px 14px !important;
    }
    /* Contact labels/inputs tighten */
    .mc-main label { font-size: 9px !important; }
    .mc-main input, .mc-main select, .mc-main textarea {
        padding: 11px 13px !important;
        font-size: 13px !important;
    }
    /* Channels bar (Call/Email/WhatsApp) tighter */
    .mc-channels > a { padding: 13px 16px !important; gap: 10px !important; }
    .mc-channels svg { width: 16px !important; height: 16px !important; }

    /* Hero stats — shrink the numbers */
    .mc-hero-stats { gap: 10px !important; }
    .mc-hero-stats strong { font-size: 22px !important; }
    .mc-hero-stats span { font-size: 8px !important; }

    /* ── Single trip ── */
    /* Departure table rows tighter */
    .dep-table tbody td { padding: 10px 12px !important; }
    .dep-btn            { padding: 7px 12px !important; font-size: 10px !important; }
    .dep-price          { font-size: 14px !important; }
    .dep-see-more-btn   { padding: 10px 18px !important; font-size: 11px !important; }
    /* Package option tiers */
    .mc-pkg-grid > div  { padding: 18px 14px !important; }
    /* Trip sections — reduce scroll-margin & bottom margin */
    #overview, #itinerary, #route, #options, #pricing, #departures,
    #galleries, #faqs, #why { margin-bottom: 44px !important; }
    /* Section headings */
    .tour-layout h2 { font-size: 22px !important; }
    /* Includes/Excludes items */
    .mc-incl-grid > div { padding: 18px !important; }
    /* Group price table rows even tighter */
    .gpt-row { padding: 14px 12px !important; }
    .gpt-group strong { font-size: 14px !important; }

    /* ── Single post / article ── */
    /* Author box */
    article [style*="margin-top:52px"][style*="padding:28px 30px"] {
        padding: 20px 18px !important;
        gap: 14px !important;
        flex-direction: column !important;
    }
    /* Post nav cells */
    .mc-post-nav a { padding: 16px 18px !important; }

    /* ── About page ── */
    /* Mission quote smaller */
    section[style*="padding:36px 0"] p,
    div[style*="padding:36px 0"] p { font-size: 16px !important; }
    /* Story section padding */
    /* Values items */
    .mc-values-grid [style*="margin-bottom:28px"] { margin-bottom: 20px !important; }

    /* ── Submit review ── */
    .mc-sr-layout form > div { padding-left: 0; padding-right: 0; }

    /* ── Universal: sections with hard-coded large padding ── */
    [style*="padding:96px 0"] { padding: 52px 0 !important; }
    [style*="padding:72px 0"] { padding: 44px 0 !important; }
    [style*="padding:64px 0"] { padding: 40px 0 !important; }

    /* ── Buttons: prevent long labels from overflowing ── */
    .btn-primary, .btn-outline {
        font-size: 11px !important;
        padding: 11px 22px !important;
    }
}

/* ── Ultra-small (≤ 360px) — edge cases like old iPhone SE ── */
@media (max-width: 360px) {
    .container { padding-left: 12px !important; padding-right: 12px !important; }
    .mc-hero-stats strong { font-size: 20px !important; }
    .page-hero h1 { font-size: 22px !important; }
    .dep-table tbody td { padding: 9px 10px !important; font-size: 12px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   TRIP SINGLE — Redesigned banner area (v2)
   Compact title strip + gallery-grid banner (1 main + 4 thumbs)
   Inspired by nepalhikingteam.com / acethehimalaya.com pattern
═══════════════════════════════════════════════════════════════ */

/* Title strip — sits above the gallery, compact */
.trip-title-strip {
    background: var(--cream, #f8f5ee);
    padding: 18px 0 26px;
    border-bottom: 1px solid rgba(0,0,0,.05);
}
.trip-title-strip .breadcrumb {
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--mist, #8a8480);
    letter-spacing: .04em;
}
.trip-title-strip .breadcrumb a {
    color: var(--mist, #8a8480);
    text-decoration: none;
    transition: color .2s;
}
.trip-title-strip .breadcrumb a:hover { color: var(--ink, #1c1c1c); }
.trip-title-strip .breadcrumb span { margin: 0 8px; color: rgba(0,0,0,.2); }
.trip-title-badge {
    display: inline-block;
    background: var(--gold, #d9901e);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 5px 13px;
    margin-bottom: 12px;
}
.trip-title-h1 {
    font-family: var(--font-display, Georgia, serif);
    font-size: clamp(26px, 4.2vw, 52px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--ink, #1c1c1c);
    margin: 0;
}

/* Gallery banner — the visual hero */
.trip-gallery-banner {
    background: var(--cream, #f8f5ee);
    padding: 0 0 8px;
}
.trip-gallery-grid {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 520px;
    border-radius: 8px;
    overflow: hidden;
}
.tgb-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: rgba(0,0,0,.05);
}
.tgb-thumb {
    overflow: hidden;
    cursor: pointer;
    position: relative;
    background: rgba(0,0,0,.05);
}
.trip-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
    display: block;
}
.trip-gallery-grid > div:hover img { transform: scale(1.04); }

/* "+N more photos" overlay on the last visible thumb */
.tgb-more-overlay {
    position: absolute;
    inset: 0;
    background: rgba(28,28,28,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-display, Georgia, serif);
    font-size: 18px;
    font-style: italic;
    letter-spacing: .02em;
    pointer-events: none;
}

/* Floating "View all X photos" button on bottom-right of main image */
.tgb-view-all {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #fff;
    color: var(--ink, #1c1c1c);
    border: none;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,.18);
    transition: transform .18s, box-shadow .18s;
    border-radius: 4px;
    z-index: 5;
}
.tgb-view-all:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,.24);
}

/* Adaptive grids when fewer images exist */
.trip-gallery-grid[data-count="1"] { grid-template-columns: 1fr; grid-template-rows: 1fr; }
.trip-gallery-grid[data-count="1"] .tgb-main { grid-column: 1; grid-row: 1; }
.trip-gallery-grid[data-count="2"] { grid-template-columns: 2fr 1fr; grid-template-rows: 1fr; }
.trip-gallery-grid[data-count="2"] .tgb-main { grid-row: 1; }
.trip-gallery-grid[data-count="3"] { grid-template-columns: 2fr 1fr; }

/* ─── Tablet: stack main + 4 thumbs in a row ─── */
@media (max-width: 1024px) {
    .trip-gallery-grid {
        height: auto;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 320px 160px;
    }
    .tgb-main {
        grid-column: 1 / 5;
        grid-row: 1;
    }
    .tgb-thumb { grid-row: 2; }
}

/* ─── Mobile: just main image + "View all" button ─── */
@media (max-width: 640px) {
    .trip-title-strip {
        padding: 16px 0 14px;
    }
    .trip-title-strip .breadcrumb {
        font-size: 11px;
        margin-bottom: 10px;
        white-space: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }
    .trip-title-strip .breadcrumb::-webkit-scrollbar { display: none; }
    .trip-gallery-banner { padding: 0 0 6px; }
    .trip-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 220px 90px;
        gap: 4px;
        height: auto;
    }
    .tgb-main {
        grid-column: 1 / 3;
        grid-row: 1;
    }
    .tgb-thumb { grid-row: 2; }
    /* Only show first 2 thumbs on mobile; hide the rest to keep grid clean */
    .tgb-thumb-3, .tgb-thumb-4 { display: none; }
    /* If only 2 thumbs visible and more exist, promote the 2nd thumb to be the "+N" tile */
    .trip-gallery-grid[data-count="3"] .tgb-thumb-2,
    .trip-gallery-grid[data-count="4"] .tgb-thumb-2,
    .trip-gallery-grid[data-count="5"] .tgb-thumb-2 {
        position: relative;
    }
    .tgb-view-all {
        bottom: 10px;
        right: 10px;
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   BOOKING SIDEBAR CARD — Light, professional
═══════════════════════════════════════════════════════════════ */
.bk-sidebar-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    margin-bottom: 14px;
}

/* Price header — cream band at top */
.bk-price-header {
    background: linear-gradient(135deg, #fafaf7 0%, #f5f1e8 100%);
    padding: 22px 24px 18px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.bk-price-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--mist, #8a8480);
    margin-bottom: 6px;
}
.bk-price-amount {
    font-family: var(--font-display, Georgia, serif);
    font-size: 38px;
    font-weight: 700;
    color: var(--ink, #1c1c1c);
    line-height: 1;
    margin-bottom: 4px;
}
.bk-price-currency {
    font-size: 18px;
    font-weight: 600;
    color: var(--mist, #8a8480);
    margin-right: 4px;
    vertical-align: top;
    position: relative;
    top: 6px;
}
.bk-price-sub {
    display: block;
    font-size: 12px;
    color: var(--mist, #8a8480);
    letter-spacing: .02em;
}

/* Group discount table — collapsible */
.bk-group-table {
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.bk-group-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 7px;
    padding: 14px 24px;
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink, #1c1c1c);
    cursor: pointer;
    transition: background .18s;
}
.bk-group-header:hover { background: rgba(0,0,0,.02); }
.bk-group-header-left {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.bk-group-header svg { color: var(--gold, #d9901e); }
.bk-group-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--gold, #d9901e);
    background: rgba(217,144,30,.08);
    border-radius: 50%;
    transition: transform .25s, background .18s;
}
.bk-group-header:hover .bk-group-toggle {
    background: rgba(217,144,30,.18);
}

/* Body — animated max-height for smooth collapse */
.bk-group-body {
    overflow: hidden;
    max-height: 400px;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 24px 14px;
}
.bk-group-table[data-collapsed="true"] .bk-group-body {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.bk-group-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.bk-group-table thead th {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mist, #8a8480);
    text-align: left;
    padding: 6px 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.bk-group-table thead th:last-child { text-align: right; }
.bk-group-table tbody td {
    padding: 9px 0;
    font-size: 13px;
    color: var(--ink, #1c1c1c);
    border-bottom: 1px solid rgba(0,0,0,.04);
}
.bk-group-table tbody tr:last-child td { border-bottom: none; }
.bk-group-table tbody td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--gold-dark, #a66a10);
}

/* Primary buttons */
.bk-actions {
    padding: 18px 24px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bk-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 18px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 4px;
    transition: all .22s;
    text-align: center;
    border: 1.5px solid transparent;
    cursor: pointer;
}
.bk-btn-primary {
    background: var(--gold, #d9901e);
    color: #fff;
    border-color: var(--gold, #d9901e);
}
.bk-btn-primary:hover {
    background: var(--gold-dark, #a66a10);
    border-color: var(--gold-dark, #a66a10);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(217,144,30,.28);
}
.bk-btn-secondary {
    background: #fff;
    color: var(--ink, #1c1c1c);
    border-color: rgba(0,0,0,.14);
}
.bk-btn-secondary:hover {
    background: var(--ink, #1c1c1c);
    color: #fff;
    border-color: var(--ink, #1c1c1c);
}

/* Secondary action row: whatsapp / call / pdf */
.bk-secondary {
    display: flex;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.bk-secondary-link {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--mist, #8a8480);
    text-decoration: none;
    transition: color .18s, background .18s;
    border-right: 1px solid rgba(0,0,0,.06);
}
.bk-secondary-link:last-child { border-right: none; }
.bk-secondary-link:hover {
    color: var(--ink, #1c1c1c);
    background: rgba(0,0,0,.02);
}
.bk-secondary-link.bk-whatsapp:hover {
    color: #25D366;
}
.bk-secondary-link svg { opacity: .75; }

/* Trust signals */
.bk-trust {
    list-style: none;
    padding: 16px 24px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.bk-trust li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #525252;
}
.bk-trust li svg { color: var(--gold, #d9901e); flex-shrink: 0; }

/* Mobile adjustments */
@media (max-width: 900px) {
    .bk-sidebar-card {
        border-radius: 4px;
    }
    .bk-price-amount { font-size: 34px; }
    .bk-actions, .bk-trust { padding-left: 18px; padding-right: 18px; }
    .bk-group-header { padding-left: 18px; padding-right: 18px; }
    .bk-group-body { padding-left: 18px; padding-right: 18px; }
    .bk-price-header { padding: 18px 18px 16px; }
}
