/* ==========================================================================
   Heaven Tours & Travels — Tourly design system
   Navy palette · Poppins/Montserrat · pill buttons · unified sticky header
   ========================================================================== */

/* ---------- CUSTOM PROPERTIES ---------- */
:root {
  /* Brand blue #087bc2 */
  --brand-blue: #087bc2;
  --bright-navy-blue: #087bc2;
  --bright-navy-blue-hover: #0669a6;
  --united-nations-blue: #2a95d4;
  --oxford-blue: #063a5c;
  --yale-blue: #075a8f;
  --blue-ncs: #087bc2;
  --gunmetal: #0a2f45;
  --gunmetal-2: #0d3a52;
  --cadet-blue-crayola: #8eb9d4;
  --cadet-blue-crayola-a20: rgba(142, 185, 212, 0.2);
  --cultured: hsl(0, 0%, 93%);
  --cultured-2: hsl(0, 0%, 96%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --black-a5: hsla(0, 0%, 0%, 0.05);
  --gray-web: hsl(210, 9%, 42%);
  --text-muted: hsl(215, 12%, 55%);
  --border-soft: hsl(214, 20%, 90%);
  --surface-alt: hsl(210, 33%, 98%);

  /* fonts — match Google Fonts loaded in HTML */
  --ff-poppins: 'Plus Jakarta Sans', 'Poppins', system-ui, sans-serif;
  --ff-montserrat: 'Plus Jakarta Sans', 'Montserrat', system-ui, sans-serif;

  /* type scale */
  --fs-1: 3.5rem;
  --fs-2: 2.8rem;
  --fs-3: 2.3rem;
  --fs-4: 1.8rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;
  --fs-8: 1.1rem;
  --fs-9: 0.875rem;
  --fs-10: 0.813rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;

  --section-padding: 72px;

  --shadow-1: 0 1px 3px hsla(209, 40%, 20%, 0.06), 0 4px 16px hsla(209, 40%, 20%, 0.05);
  --shadow-2: 0 8px 24px hsla(209, 40%, 20%, 0.08), 0 2px 8px hsla(209, 40%, 20%, 0.04);
  --shadow-3: 0 16px 40px hsla(209, 40%, 20%, 0.1), 0 4px 12px hsla(209, 40%, 20%, 0.05);
  --shadow-btn: 0 4px 14px rgba(8, 123, 194, 0.32);

  --radius-4: 4px;
  --radius-8: 8px;
  --radius-12: 12px;
  --radius-24: 24px;
  --radius-circle: 50%;

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

  /* ---- compatibility aliases (used by JS-rendered inline styles) ---- */
  --deep-ocean: var(--oxford-blue);
  --aqua-teal: var(--bright-navy-blue);
  --muted-slate: hsl(210, 8%, 40%);
  --sandy-white: var(--cultured-2);
  --coral-gold: hsl(28, 80%, 52%);
  --title-wave-img: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' fill='none'%3E%3Cpath d='M1 4 C10 1.5 14 6.5 24 4 S38 1.5 48 4 S62 6.5 72 4 S86 1.5 96 4 S110 6.5 119 4' stroke='%23087bc2' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  --title-wave-img-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 8' fill='none'%3E%3Cpath d='M1 4 C10 1.5 14 6.5 24 4 S38 1.5 48 4 S62 6.5 72 4 S86 1.5 96 4 S110 6.5 119 4' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
  --price-green: #ffffff;
  --price-green-bright: #ffffff;
  --price-green-light: rgba(255, 255, 255, 0.85);
  --ios-secondary: hsl(210, 8%, 45%);
  --font-display: var(--ff-montserrat);
  --font-body: var(--ff-poppins);
  --font-accent: var(--ff-poppins);
  --radius-card: 16px;
  --radius-ios-lg: 20px;
  --shadow-card: var(--shadow-2);
  --glass-bg-strong: var(--white);
  --glass-bg: var(--white);
  --glass-border: var(--cadet-blue-crayola-a20);
  --glass-blur: blur(0);
  --glass-shadow-lg: var(--shadow-2);
}

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

li { list-style: none; }
a { text-decoration: none; color: inherit; }
a, img, span, input, button, select, textarea, ion-icon { display: block; }
img { max-width: 100%; height: auto; }
iframe { max-width: 100%; }
input, button, select, textarea { background: none; border: none; font: inherit; }
input, select, textarea { width: 100%; }
button { cursor: pointer; }
ion-icon { pointer-events: none; }
address { font-style: normal; }

html { font-family: var(--ff-poppins); scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--gunmetal);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.nav-active { overflow: hidden; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cultured); }
::-webkit-scrollbar-thumb { background: var(--cadet-blue-crayola); border-radius: 10px; }

/* ---------- REUSED ---------- */
.container { max-width: 1180px; width: 100%; margin-inline: auto; padding-inline: clamp(16px, 4vw, 28px); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--ff-montserrat);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
  letter-spacing: 0.02em;
  padding: 13px 30px;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
  cursor: pointer;
  min-height: 46px;
  border: 2px solid transparent;
}
.btn:focus-visible { outline: 2px solid var(--bright-navy-blue); outline-offset: 3px; }
.btn-primary {
  background: var(--bright-navy-blue);
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--bright-navy-blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px hsla(214, 57%, 51%, 0.35);
}
.btn-secondary {
  background: var(--white);
  color: var(--oxford-blue);
  border-color: hsla(0, 0%, 100%, 0.35);
  box-shadow: var(--shadow-1);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--bright-navy-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
.btn-outline {
  background: transparent;
  color: var(--bright-navy-blue);
  border: 2px solid var(--bright-navy-blue);
}
.btn-outline:hover { background: var(--bright-navy-blue); color: var(--white); }
.btn-whatsapp { background: #25D366; color: var(--white); display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.btn-whatsapp:hover { background: #1da851; color: var(--white); }
.btn-gold { background: var(--coral-gold); color: var(--white); }
.btn-gold:hover { background: var(--white); color: var(--coral-gold); box-shadow: var(--shadow-1); }
.btn-sm { padding: 9px 20px; font-size: var(--fs-10); }
.btn .icon { display: inline-block; vertical-align: middle; }

.section { padding-block: var(--section-padding); }

.section-subtitle,
.eyebrow {
  color: var(--bright-navy-blue);
  font-family: var(--ff-montserrat);
  font-size: var(--fs-10);
  text-transform: uppercase;
  font-weight: var(--fw-600);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: block;
}

.h1, .h2, .h3, .section-title {
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  line-height: 1.25;
  font-weight: var(--fw-700);
  letter-spacing: -0.02em;
}
.h2, .section-title { font-size: var(--fs-3); }
.h3 { font-size: var(--fs-4); }
.section-title { margin-bottom: 16px; }

/* decorative wave tucked under the title text (not floating in the section) */
.title-wave {
  display: block;
  width: min(110px, 70%);
  height: 8px;
  margin: 0 auto;
  background: var(--title-wave-img) center / 100% 100% no-repeat;
}
.section-head .section-title,
.section-head .h2.section-title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 18px;
  padding-bottom: 14px;
}
.section-head .section-title::after,
.section-head .h2.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(110px, 85%);
  height: 8px;
  background: var(--title-wave-img) center / 100% 100% no-repeat;
}
.page-hero h1,
.hero-title {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin-bottom: 20px;
  padding-bottom: 14px;
}
.page-hero h1::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(110px, 70%);
  height: 8px;
  background: var(--title-wave-img-light) center / 100% 100% no-repeat;
}
.hero-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transform: none;
  width: min(110px, 70%);
  height: 8px;
  background: var(--title-wave-img-light) left center / 100% 100% no-repeat;
}
.page-hero-content,
.hero-content { text-align: left; }
@media (max-width: 767px) {
  .page-hero-content,
  .hero-content { text-align: center; }
  .page-hero h1,
  .hero-title { display: inline-block; }
  .page-hero h1::after {
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
  }
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
  }
}

.section-text {
  color: var(--text-muted);
  font-size: var(--fs-8);
  line-height: 1.75;
  max-width: 640px;
  margin-inline: auto;
}
.section-head .section-text { margin-top: 4px; }

.media-cover { width: 100%; height: 100%; object-fit: cover; }

/* icon helpers from icons.js */
.icon-inline { display: inline-block; vertical-align: middle; }
.icon-stars { display: inline-flex; }
.icon-star { color: #f6a609; }

/* ==========================================================================
   HEADER — professional fixed bar (hidden on home until scroll)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  isolation: isolate;
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    transform 0.4s var(--cubic-out),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

body.has-cover-hero .header:not(.active) {
  transform: translateY(-110%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
body.has-cover-hero .header.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body:not(.has-cover-hero) { padding-top: 68px; }
body:has(.page-hero) { padding-top: 0; }

.header-bar {
  position: relative;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(214, 20%, 90%);
  box-shadow: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.header.active .header-bar {
  border-color: hsl(214, 22%, 88%);
  box-shadow: 0 1px 0 rgba(6, 58, 92, 0.04), 0 8px 24px rgba(6, 58, 92, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 68px;
  padding-block: 0;
}

.header .logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header .logo img,
.nav-logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 180px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.header .logo:hover img { opacity: 0.85; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: 0.8125rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.header-phone .hdr-ico {
  color: var(--bright-navy-blue);
  flex-shrink: 0;
}
.header-phone:hover { color: var(--bright-navy-blue); }
.header-phone:focus-visible {
  outline: 2px solid var(--bright-navy-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.header-cta {
  padding: 9px 20px;
  min-height: 40px;
  font-size: 0.75rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 6px;
  box-shadow: none;
}
.header-cta:hover {
  box-shadow: none;
  transform: none;
}

.header-divider {
  width: 1px;
  height: 22px;
  background: var(--border-soft);
  flex-shrink: 0;
}

.nav-open-btn,
.nav-close-btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--oxford-blue);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.nav-open-btn:hover,
.nav-close-btn:hover {
  background: hsl(210, 33%, 96%);
  color: var(--bright-navy-blue);
}

.hdr-ico { display: block; }
.ion-icon-fallback { display: inline-flex; align-items: center; justify-content: center; line-height: 1; }
.ion-icon-fallback .ion-svg { display: block; }

.navbar-link { color: var(--gunmetal); }
.navbar-panel-footer { display: none; }

.social-link {
  color: var(--oxford-blue);
  font-size: 16px;
  border: 1px solid var(--border-soft);
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  display: grid;
  place-items: center;
}
.social-link:hover {
  background: var(--oxford-blue);
  color: var(--white);
  border-color: var(--oxford-blue);
}

/* desktop navbar */
@media (min-width: 992px) {
  .nav-open-btn { display: none; }
  .navbar-top { display: none; }
  .navbar-panel-footer { display: none !important; }

  .navbar {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
  }
  .navbar-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
  }
  .navbar-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--gunmetal);
    font-family: var(--ff-montserrat);
    font-weight: var(--fw-500);
    font-size: 0.8125rem;
    letter-spacing: 0.02em;
    padding: 8px 14px;
    transition: color 0.2s ease;
  }
  .navbar-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 1.5px;
    background: var(--oxford-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
  }
  .navbar-link:hover { color: var(--oxford-blue); }
  .navbar-link:hover::after,
  .navbar-link.active::after { transform: scaleX(1); }
  .navbar-link.active {
    color: var(--oxford-blue);
    font-weight: var(--fw-600);
  }

  .has-dropdown {
    position: relative;
  }
  .nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    opacity: 0.45;
    transition: transform 0.25s var(--cubic-out), opacity 0.2s ease;
  }
  .has-dropdown:hover > .navbar-link .nav-caret,
  .has-dropdown:focus-within > .navbar-link .nav-caret {
    transform: rotate(180deg);
    opacity: 1;
  }

  .nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 300px;
    margin: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid hsl(214, 22%, 90%);
    border-radius: 14px;
    box-shadow:
      0 4px 6px rgba(6, 58, 92, 0.03),
      0 18px 48px rgba(6, 58, 92, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    display: none;
    transition:
      opacity 0.22s ease,
      transform 0.28s var(--cubic-out),
      visibility 0.22s ease;
    z-index: 120;
  }
  .nav-dropdown--wide { width: min(420px, calc(100vw - 32px)); }
  .nav-dropdown--compact { width: 280px; }
  .nav-dropdown[aria-label="Packages"] { width: 320px; }

  .nav-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }
  .nav-dropdown::after {
    content: "";
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 1px solid hsl(214, 22%, 90%);
    border-top: 1px solid hsl(214, 22%, 90%);
    transform: translateX(-50%) rotate(45deg);
  }

  .has-dropdown:hover > .nav-dropdown,
  .has-dropdown:focus-within > .nav-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown-heading {
    margin: 0 0 10px;
    padding: 0 6px 8px;
    border-bottom: 1px solid hsl(214, 20%, 93%);
    color: var(--text-muted);
    font-family: var(--ff-montserrat);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-dropdown-list,
  .nav-dropdown-grid {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .nav-dropdown a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--gunmetal);
    text-decoration: none;
    position: relative;
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  }
  .nav-dropdown a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 2.5px;
    border-radius: 2px;
    background: var(--bright-navy-blue);
    opacity: 0;
    transform: scaleY(0.4);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    background: hsl(210, 45%, 97%);
    transform: translateX(2px);
  }
  .nav-dropdown a:hover::before,
  .nav-dropdown a:focus-visible::before {
    opacity: 1;
    transform: scaleY(1);
  }

  .nav-dd-title {
    display: block;
    font-family: var(--ff-montserrat);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--oxford-blue);
    letter-spacing: 0.01em;
    line-height: 1.3;
  }
  .nav-dd-meta {
    display: block;
    font-size: 0.74rem;
    font-weight: 500;
    color: hsl(214, 12%, 48%);
    line-height: 1.4;
    margin-top: 1px;
  }
  .nav-dropdown a:hover .nav-dd-title {
    color: var(--bright-navy-blue);
  }

  .nav-dropdown-all {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
    padding: 11px 12px !important;
    border-radius: 9px;
    background: hsla(209, 92%, 40%, 0.07);
    color: var(--bright-navy-blue) !important;
    font-family: var(--ff-montserrat);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .nav-dropdown-all::before { display: none !important; }
  .nav-dropdown-all:hover,
  .nav-dropdown-all:focus-visible {
    background: hsla(209, 92%, 40%, 0.12) !important;
    transform: none !important;
  }
  .nav-dropdown-all span {
    display: inline-block;
    transition: transform 0.2s ease;
  }
  .nav-dropdown-all:hover span { transform: translateX(3px); }

  .has-dropdown:hover > .nav-dropdown .nav-dropdown-grid > li,
  .has-dropdown:hover > .nav-dropdown .nav-dropdown-list > li,
  .has-dropdown:focus-within > .nav-dropdown .nav-dropdown-grid > li,
  .has-dropdown:focus-within > .nav-dropdown .nav-dropdown-list > li {
    animation: navDdIn 0.32s var(--cubic-out) both;
  }
  .has-dropdown:hover > .nav-dropdown li:nth-child(1),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(1) { animation-delay: 0.02s; }
  .has-dropdown:hover > .nav-dropdown li:nth-child(2),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(2) { animation-delay: 0.05s; }
  .has-dropdown:hover > .nav-dropdown li:nth-child(3),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(3) { animation-delay: 0.08s; }
  .has-dropdown:hover > .nav-dropdown li:nth-child(4),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(4) { animation-delay: 0.11s; }
  .has-dropdown:hover > .nav-dropdown li:nth-child(5),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(5) { animation-delay: 0.14s; }
  .has-dropdown:hover > .nav-dropdown li:nth-child(6),
  .has-dropdown:focus-within > .nav-dropdown li:nth-child(6) { animation-delay: 0.17s; }
}

@keyframes navDdIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 992px) and (max-width: 1140px) {
  .header-phone span:not(.hdr-ico) { display: none; }
  .header-phone { gap: 0; }
  .navbar-link { padding: 8px 10px; font-size: 0.75rem; }
  .header-cta { padding: 8px 14px; }
  .header-divider { display: none; }
}

/* mobile slide-in */
@media (max-width: 991px) {
  .header-inner { min-height: 60px; gap: 12px; }
  body:not(.has-cover-hero) { padding-top: 60px; }
  .header .logo img,
  .nav-logo-img { height: 38px; max-width: 150px; }

  .header-phone span:not(.hdr-ico) { display: none; }
  .header-phone {
    padding: 0;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    border-radius: 8px;
  }
  .header-cta,
  .header-divider { display: none; }

  .navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(320px, 88vw);
    height: 100dvh;
    background: linear-gradient(180deg, #062637 0%, #0a3a52 55%, #0b4a66 100%);
    z-index: 60;
    padding: 20px 22px calc(28px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(104%);
    visibility: hidden;
    transition: transform 0.35s var(--cubic-out), visibility 0.35s;
    box-shadow: -16px 0 40px rgba(0, 0, 0, 0.35);
  }
  .navbar.active {
    transform: translateX(0);
    visibility: visible;
  }

  .navbar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 18px;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .navbar-top .logo img {
    max-width: 140px;
    height: 36px;
    width: auto;
    object-fit: contain;
  }
  .navbar .nav-close-btn {
    color: #fff;
  }
  .navbar .nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .navbar-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1 1 auto;
  }
  .navbar-link {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--ff-montserrat);
    font-weight: var(--fw-500);
    font-size: 1rem;
    letter-spacing: 0.01em;
    padding: 14px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .navbar-list li:last-child .navbar-link { border-bottom: none; }
  .navbar-link::after { display: none; }
  .navbar-link:hover,
  .navbar-link.active {
    color: #7dd3f0;
    padding-left: 4px;
  }
  .navbar-link.active { font-weight: var(--fw-600); }

  .has-dropdown > .navbar-link {
    justify-content: space-between;
    gap: 12px;
  }
  .nav-caret {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.55;
    transition: transform 0.2s ease;
  }
  .has-dropdown.open > .navbar-link .nav-caret { transform: rotate(180deg); }
  .nav-dropdown {
    display: none;
    margin: 0 0 10px;
    padding: 4px 0 12px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .has-dropdown.open > .nav-dropdown { display: block; }
  .nav-dropdown-heading {
    margin: 4px 0 8px;
    padding: 0 4px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .nav-dropdown-list,
  .nav-dropdown-grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
  }
  .nav-dropdown a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 10px 4px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-dropdown li:last-child a { border-bottom: none; }
  .nav-dd-title {
    display: block;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
  }
  .nav-dd-meta {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
  }
  .nav-dropdown-all {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
    padding: 12px 10px !important;
    border: none !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #e8f7fc !important;
    font-size: 0.85rem;
    font-weight: 700;
  }
  .nav-dropdown-all:hover,
  .nav-dropdown-all:focus-visible {
    background: rgba(255, 255, 255, 0.22) !important;
    color: #fff !important;
  }

  .navbar-panel-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
  .navbar-panel-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-family: var(--ff-montserrat);
    font-weight: var(--fw-600);
    font-size: 0.9rem;
    text-decoration: none;
  }
  .navbar-panel-phone .hdr-ico { color: #7dd3f0; }
  .navbar-panel-cta {
    width: 100%;
    min-height: 46px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.75rem;
    box-shadow: none;
  }
  .navbar-panel-social {
    display: flex;
    gap: 8px;
  }
  .navbar-panel-social .social-link {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* Invisible tap layer to close menu — no dim/scrim */
  .overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.3s ease;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
  }
  .overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header,
  .header-bar,
  .header-inner,
  .header .logo img,
  .navbar,
  .navbar-link::after,
  .nav-dropdown,
  .nav-dropdown a {
    transition: none !important;
  }
  .has-dropdown:hover > .nav-dropdown li,
  .has-dropdown:focus-within > .nav-dropdown li {
    animation: none !important;
  }
}

/* ==========================================================================
   HERO — full-viewport cover + inquiry bar
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-block: 0;
  overflow: hidden;
}
.hero-bg,
.hero-slideshow { position: absolute; inset: 0; z-index: -2; }
.hero-bg { background: var(--oxford-blue) url("../images/beaches/main.jpg") center/cover no-repeat; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s ease, transform 7s ease-out;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, hsla(209, 61%, 10%, 0.35) 0%, transparent 42%, hsla(209, 61%, 8%, 0.55) 100%),
    linear-gradient(105deg, hsla(209, 61%, 10%, 0.88) 0%, hsla(209, 55%, 18%, 0.5) 55%, hsla(209, 50%, 22%, 0.28) 100%);
}
.hero-body {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  padding-block: 72px 24px;
  min-height: 0;
}
.hero-content { max-width: 680px; }
.hero .eyebrow { color: hsla(0, 0%, 100%, 0.85); font-size: var(--fs-10); }
.hero-title, .hero h1 {
  color: var(--white);
  font-family: var(--ff-montserrat);
  font-size: var(--fs-1);
  line-height: 1.12;
  font-weight: var(--fw-800);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-title .accent, .hero .accent { color: hsl(200, 85%, 65%); }
.hero-sub, .hero-text {
  color: hsla(0, 0%, 100%, 0.88);
  font-size: var(--fs-8);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 540px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-search {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  padding: 0 0 calc(28px + env(safe-area-inset-bottom, 0px));
}
.hero-search-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid hsl(214, 24%, 91%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 12px 32px rgba(6, 58, 92, 0.14),
    0 28px 56px rgba(6, 58, 92, 0.12);
}
.hero-search-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  min-width: 0;
}
.hero-search .input-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 64px;
  height: 100%;
  padding: 10px 14px;
  border-radius: 14px;
  background: hsl(210, 33%, 98%);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.hero-search .input-wrapper:hover {
  background: hsl(210, 40%, 97%);
  border-color: hsl(214, 30%, 88%);
}
.hero-search .input-wrapper:focus-within {
  background: #fff;
  border-color: rgba(8, 123, 194, 0.45);
  box-shadow: 0 0 0 3px rgba(8, 123, 194, 0.12);
}
.hero-field-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--bright-navy-blue);
  background: rgba(8, 123, 194, 0.1);
}
.hero-field-icon svg { display: block; }
.hero-field-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.hero-search .input-label {
  display: block;
  color: var(--text-muted);
  font-family: var(--ff-montserrat);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.2;
}
.hero-search .input-field,
.hero-search select.input-field {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
  outline: none;
  min-height: 26px;
  line-height: 1.25;
  color-scheme: light;
}
.hero-search .input-field:focus,
.hero-search select.input-field:focus {
  outline: none;
  box-shadow: none;
}
.hero-search select.input-field {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23087bc2' d='M1.4 1.4 6 6l4.6-4.6L12 2.8 6 8.8 0 2.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}
.guest-stepper {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 26px;
}
.guest-btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  border-radius: 50%;
  border: 1px solid hsl(214, 20%, 86%);
  background: #fff;
  color: var(--oxford-blue);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  flex: 0 0 auto;
}
.guest-btn:hover {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
  color: #fff;
}
.guest-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.guest-input {
  width: 1.75rem !important;
  min-height: 26px !important;
  text-align: center;
  -moz-appearance: textfield;
  padding: 0 !important;
}
.guest-input::-webkit-outer-spin-button,
.guest-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.hero-search input[type="date"].input-field {
  min-width: 0;
}
.hero-date-field {
  position: relative;
  display: block;
  min-height: 26px;
}
.hero-date-display {
  display: block;
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 26px;
  pointer-events: none;
  letter-spacing: 0.01em;
}
.hero-date-display.is-empty {
  color: var(--text-muted);
  font-weight: 500;
}
.hero-date-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 1;
  min-height: 26px !important;
}
.hero-search input[type="date"].input-field::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-search-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(8, 123, 194, 0.28);
}
.hero-search-btn span {
  display: inline;
  white-space: nowrap;
}
.hero-search-btn svg {
  display: block;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.hero-search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(8, 123, 194, 0.34);
}
.hero-search-btn:hover svg { transform: translateX(3px); }
.hero-search-note {
  margin: 10px 4px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (min-width: 700px) {
  .hero-search-fields {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (min-width: 992px) {
  .hero-search-form {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    padding: 10px;
  }
  .hero-search-fields {
    flex: 1 1 auto;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr) minmax(0, 1.05fr) minmax(0, 1.05fr);
    gap: 8px;
    align-items: stretch;
  }
  .hero-search .input-wrapper {
    min-height: 72px;
    padding: 12px 14px;
  }
  .hero-search-btn {
    width: auto;
    align-self: stretch;
    min-width: 176px;
    padding-inline: 20px;
    border-radius: 14px;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero-search-note {
    text-align: left;
    margin-left: 6px;
  }
  .hero-body { padding-block: 80px 24px; }
}

@media (max-width: 991.98px) {
  /* Keep guest controls easy to tap on phones */
  .guest-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }
}

/* legacy standalone tour-search (kept for compatibility) */
.tour-search {
  background: linear-gradient(135deg, var(--bright-navy-blue) 0%, var(--yale-blue) 100%);
  padding-block: 44px;
  margin-top: -1px;
}
.tour-search-form {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr;
}
.tour-search .input-wrapper { position: relative; }
.tour-search .input-label {
  color: var(--white);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.tour-search .input-field,
.tour-search select.input-field {
  background: var(--white);
  color: var(--gunmetal);
  padding: 14px 20px;
  border-radius: var(--radius-12);
  font-size: var(--fs-9);
  outline: none;
  border: 1px solid transparent;
  box-shadow: var(--shadow-1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tour-search .input-field:focus,
.tour-search select.input-field:focus {
  border-color: hsla(0, 0%, 100%, 0.5);
  box-shadow: 0 0 0 3px hsla(0, 0%, 100%, 0.2);
}
.tour-search .search-submit-wrapper { display: flex; align-items: flex-end; }
.tour-search .btn { width: 100%; }

@media (min-width: 768px) {
  .tour-search-form { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .tour-search-form { grid-template-columns: repeat(5, 1fr); align-items: end; }
}

/* ==========================================================================
   POPULAR DESTINATIONS (popular-card)
   ========================================================================== */
.grid-list {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 580px) { .grid-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 992px) { .grid-list { grid-template-columns: repeat(3, 1fr); } }

.section-head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: 48px; }

.popular-head .section-text {
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Mobile expandable destinations carousel — hidden on desktop */
.popular-dest-carousel {
  display: none;
}

.popular-grid > li {
  display: flex;
  min-width: 0;
  height: 100%;
}

.popular-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--border-soft);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  isolation: isolate;
  background: hsl(209, 45%, 12%);
  text-decoration: none;
  color: inherit;
}
.popular-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-3); }
.popular-card:focus-visible {
  outline: 3px solid rgba(8, 123, 194, 0.45);
  outline-offset: 3px;
}
.popular-card .card-img {
  position: relative;
  flex: 1 1 auto;
  min-height: 280px;
  height: 360px;
  margin: 0;
  overflow: hidden;
}
.popular-card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, hsla(209, 61%, 8%, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.35s ease;
}
.popular-card:hover .card-img::after { opacity: 0.85; }
.popular-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.05) contrast(1.04);
}
.popular-card:hover .card-img img { transform: scale(1.08); filter: saturate(1.1) contrast(1.05); }
.popular-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--oxford-blue);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(6, 58, 92, 0.12);
}
.popular-card .card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: -48px 14px 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 18px 16px;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(6, 58, 92, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.8);
  min-height: 132px;
}
.popular-card .card-subtitle {
  color: var(--bright-navy-blue);
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.popular-card .card-title {
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: var(--fs-6);
  font-weight: var(--fw-700);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.popular-card:hover .card-title { color: var(--bright-navy-blue); }
.popular-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid hsl(214, 24%, 92%);
}
.popular-card .card-rating {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  color: var(--oxford-blue);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  line-height: 1;
}
.popular-card .card-rating ion-icon,
.popular-card .card-rating .ion-icon-fallback,
.popular-card .card-rating .icon-star {
  font-size: 13px;
  color: #e8a317;
  width: 13px;
  height: 13px;
}
.popular-card .card-link {
  color: var(--bright-navy-blue);
  font-weight: 700;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: gap 0.2s ease;
}
.popular-card:hover .card-link { gap: 8px; }

.popular-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.popular-cta .btn { min-width: 200px; }

@media (min-width: 992px) {
  .popular-card .card-img { height: 380px; min-height: 380px; }
  .popular-card .card-content {
    margin: -56px 16px 16px;
    padding: 20px 20px 18px;
    min-height: 140px;
  }
}

/* ==========================================================================
   PACKAGES (package-card)
   ========================================================================== */
.package .grid-list { grid-template-columns: 1fr; }

.package-head .section-text {
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-muted);
}

.package-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-soft);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}
.package-card:hover { box-shadow: var(--shadow-3); transform: translateY(-5px); }
.package-card:focus-within {
  outline: 3px solid rgba(8, 123, 194, 0.35);
  outline-offset: 2px;
}
.package-card .card-banner {
  height: 220px;
  overflow: hidden;
  position: relative;
  display: block;
  background: linear-gradient(145deg, hsl(209, 45%, 16%), hsl(200, 40%, 28%));
  flex-shrink: 0;
  text-decoration: none;
}
.package-card .card-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsla(209, 61%, 8%, 0.08) 0%, transparent 35%, hsla(209, 61%, 8%, 0.28) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.package-card .card-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 45%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-18deg) translateX(-120%);
  z-index: 2;
  pointer-events: none;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.package-card:hover .card-banner::after { transform: skewX(-18deg) translateX(320%); }
.package-card .card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.06) contrast(1.04);
}
.package-card:hover .card-banner img { transform: scale(1.08); filter: saturate(1.12) contrast(1.05); }
.package-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: rgba(232, 140, 48, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: var(--fw-700);
  padding: 7px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 14px rgba(180, 90, 20, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.package-card .card-content {
  padding: 20px 20px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.package-card .card-kicker {
  margin: 0 0 6px;
  color: var(--bright-navy-blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.package-card .card-title {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin: 0 0 4px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.package-card .card-title a {
  color: inherit;
  text-decoration: none;
}
.package-card .card-title a:hover { color: var(--bright-navy-blue); }
.package-card .card-occasion {
  margin: 0 0 10px;
  color: hsl(214, 12%, 46%);
  font-size: 0.78rem;
  font-weight: 600;
}
.package-card .card-text {
  color: var(--gray-web);
  font-size: var(--fs-9);
  margin: 0 0 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.package-card .card-stay {
  margin: 0 0 10px;
  color: var(--gunmetal);
  font-size: 0.82rem;
  line-height: 1.45;
}
.package-card .card-stay strong {
  color: var(--oxford-blue);
  font-weight: 700;
}
.package-card .card-highlights {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  display: grid;
  gap: 5px;
}
.package-card .card-highlights li {
  position: relative;
  padding-left: 14px;
  color: hsl(214, 14%, 36%);
  font-size: 0.8rem;
  line-height: 1.4;
}
.package-card .card-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bright-navy-blue);
}
.package-card .card-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: auto 0 0;
  padding: 14px 0 0;
  border-top: 1px solid hsl(214, 24%, 92%);
}
.package-card .card-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%;
  color: var(--gunmetal);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  padding: 6px 10px;
  border-radius: 999px;
  background: hsl(210, 33%, 97%);
  border: 1px solid hsl(214, 24%, 91%);
}
.package-card .card-meta-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 28ch;
}
.package-card .card-meta-item .icon-inline {
  color: var(--bright-navy-blue);
  flex-shrink: 0;
}
.package-card .card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: linear-gradient(135deg, var(--oxford-blue) 0%, hsl(209, 55%, 20%) 100%);
  padding: 16px 20px;
  margin-top: auto;
}
.package-card .card-price-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.package-card .card-price .price { color: var(--white); }
.package-card .card-price .price-wrapper {
  color: #ffffff;
  font-family: var(--ff-montserrat);
  font-size: var(--fs-4);
  font-weight: var(--fw-800);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0;
  text-shadow: none;
}
.package-card .card-price .price-wrapper span {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-9);
  font-weight: var(--fw-500);
}
.package-card .card-price .rating-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  color: #ffd166;
  font-size: var(--fs-9);
  line-height: 1;
}
.package-card .card-price .reviews {
  color: var(--cadet-blue-crayola);
  font-size: var(--fs-10);
}
.package-card .card-price .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.package-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.package-cta .btn { min-width: 200px; }

@media (min-width: 992px) {
  .package-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
    height: auto;
  }
  .package-card .card-banner {
    width: 260px;
    flex: 0 0 260px;
    height: auto;
    min-height: 0;
    align-self: stretch;
  }
  .package-card .card-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .package-card .card-content {
    justify-content: flex-start;
    padding: 22px 24px;
    overflow: visible;
  }
  .package-card .card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 4px;
  }
  .package-card .card-text {
    margin-bottom: 10px;
    min-height: 0;
    -webkit-line-clamp: 3;
  }
  .package-card .card-meta-list {
    margin-top: auto;
    padding-top: 12px;
  }
  .package-card .card-meta-item span { max-width: 32ch; }
  .package-card .card-price {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    padding: 22px 24px;
    min-width: 190px;
    max-width: 220px;
    flex-shrink: 0;
    align-self: stretch;
    margin-top: 0;
  }
  .package-card .card-price .price-wrapper { font-size: var(--fs-3); }
  .package-card .card-price .btn { width: 100%; justify-content: center; }
}

/* filter tabs (packages / gallery / home) */
.filter-tabs, .pkg-filter-tabs, .gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-bottom: 36px;
}
.filter-tab {
  background: var(--white);
  color: var(--gunmetal);
  border: 1px solid var(--border-soft);
  padding: 10px 20px;
  border-radius: 100px;
  font-family: var(--ff-montserrat);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  transition: all 0.2s ease;
  min-height: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.filter-tab:hover { border-color: var(--bright-navy-blue); color: var(--bright-navy-blue); background: var(--surface-alt); }
.filter-tab.active {
  background: var(--bright-navy-blue);
  color: var(--white);
  border-color: var(--bright-navy-blue);
  box-shadow: var(--shadow-btn);
}

/* Home packages occasion dropdown — mobile only (custom, not native select) */
.pkg-filter-dropdown {
  display: none;
  position: relative;
  width: 100%;
  margin: 0 0 36px;
  z-index: 5;
}
.pkg-filter-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 14px 18px;
  border: 1.5px solid rgba(8, 123, 194, 0.22);
  border-radius: 14px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f9fc 100%);
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: 1rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 22px rgba(6, 58, 92, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.pkg-filter-dropdown__trigger:hover,
.pkg-filter-dropdown.is-open .pkg-filter-dropdown__trigger {
  border-color: var(--bright-navy-blue);
  box-shadow:
    0 0 0 4px rgba(8, 123, 194, 0.14),
    0 10px 24px rgba(6, 58, 92, 0.12);
}
.pkg-filter-dropdown__trigger:focus-visible {
  outline: 3px solid rgba(8, 123, 194, 0.35);
  outline-offset: 2px;
}
.pkg-filter-dropdown__label {
  text-align: left;
}
.pkg-filter-dropdown__chevron {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  background: center / 16px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23087bc2' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  transition: transform 0.25s ease;
}
.pkg-filter-dropdown.is-open .pkg-filter-dropdown__chevron {
  transform: rotate(180deg);
}
.pkg-filter-dropdown__list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  margin: 0;
  padding: 8px;
  list-style: none;
  border: 1px solid rgba(8, 123, 194, 0.14);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(6, 58, 92, 0.16);
  overflow: hidden;
  transform-origin: top center;
  animation: pkgDropIn 0.22s ease;
}
.pkg-filter-dropdown__list[hidden] {
  display: none !important;
}
@keyframes pkgDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pkg-filter-dropdown__option {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--oxford-blue);
  font-family: var(--ff-montserrat);
  font-size: 0.95rem;
  font-weight: var(--fw-600);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}
.pkg-filter-dropdown__option:hover,
.pkg-filter-dropdown__option:focus-visible {
  background: rgba(8, 123, 194, 0.08);
  color: var(--bright-navy-blue);
  outline: none;
}
.pkg-filter-dropdown__option.is-selected {
  background: var(--bright-navy-blue);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.pkg-filter-dropdown__option.is-selected:hover {
  background: var(--bright-navy-blue);
  color: #fff;
}

.packages-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 992px) {
  .packages-grid { gap: 24px; }
}
.package-card.hidden { display: none; }

@media (prefers-reduced-motion: reduce) {
  .package-card .card-banner::after,
  .popular-card .card-img img,
  .package-card .card-banner img,
  .gallery-item img,
  .dest-page-card-img img {
    transition: none !important;
    transform: none !important;
  }
  .package-card:hover,
  .popular-card:hover,
  .gallery-item:hover,
  .dest-page-card:hover {
    transform: none;
  }
}

/* ==========================================================================
   GALLERY — mixed bento mosaic (desktop) / snap slider (mobile)
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 6px;
  grid-auto-flow: dense;
  align-items: stretch;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 170px;
    gap: 8px;
  }
}

@media (min-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 8px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: none;
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: block;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
  background: hsl(209, 61%, 10%);
  border: none;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  z-index: 1;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, hsla(209, 61%, 8%, 0.62) 100%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.08) contrast(1.05);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.16) contrast(1.08);
}

/* Mixed tile sizes — packed with dense flow to avoid empty holes */
@media (min-width: 768px) {
  .gallery-item--hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .gallery-item--tall {
    grid-column: span 1;
    grid-row: span 2;
  }
  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .gallery-item--square {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  background: transparent;
  color: var(--white);
  padding: 28px 16px 14px;
  font-size: var(--fs-9);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  opacity: 1;
  transform: none;
  z-index: 2;
  pointer-events: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.gallery-item--hero .gallery-caption {
  font-size: var(--fs-7);
  padding: 40px 18px 16px;
}

/* Mobile: horizontal snap slider instead of mosaic */
@media (max-width: 767.98px) {
  .gallery-grid {
    display: flex;
    grid-template-columns: unset;
    grid-auto-rows: unset;
    grid-auto-flow: unset;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: clamp(16px, 4vw, 28px);
    padding-block: 4px 8px;
    padding-inline: clamp(16px, 4vw, 28px);
    margin-inline: calc(clamp(16px, 4vw, 28px) * -1);
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item,
  .gallery-item--hero,
  .gallery-item--tall,
  .gallery-item--wide,
  .gallery-item--square {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    max-width: min(82vw, 320px);
    height: auto;
    aspect-ratio: 3 / 4;
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
  }

  .gallery-item--hero .gallery-caption,
  .gallery-caption {
    font-size: 0.85rem;
    padding: 32px 14px 12px;
  }

  .gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 14px;
  }
  .gallery-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: hsla(209, 40%, 45%, 0.28);
    transition: width 0.25s ease, background 0.25s ease;
    cursor: pointer;
    position: relative;
  }
  .gallery-dot::before {
    content: "";
    position: absolute;
    inset: -12px;
  }
  .gallery-dot.active {
    width: 20px;
    background: var(--bright-navy-blue);
  }
}
@media (min-width: 768px) {
  .gallery-dots { display: none; }
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: hsla(0, 0%, 0%, 0.92);
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
}
.lightbox.open { display: grid; }
.lightbox-content { max-width: 90vw; max-height: 82vh; }
.lightbox-content img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: var(--radius-8); }
.lightbox-caption { color: var(--white); text-align: center; margin-top: 14px; font-size: var(--fs-9); }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  background: hsla(0, 0%, 100%, 0.12);
  width: 48px; height: 48px;
  min-width: 44px; min-height: 44px;
  border-radius: var(--radius-circle);
  font-size: 26px;
  display: grid; place-items: center;
}
.lightbox-close { top: max(12px, env(safe-area-inset-top, 0px)); right: max(12px, env(safe-area-inset-right, 0px)); }
.lightbox-prev { left: max(8px, env(safe-area-inset-left, 0px)); top: 50%; transform: translateY(-50%); }
.lightbox-next { right: max(8px, env(safe-area-inset-right, 0px)); top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--bright-navy-blue); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta { background: var(--bright-navy-blue); }
.cta .container {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
}
.cta .section-subtitle { color: hsla(0, 0%, 100%, 0.8); }
.cta .cta-title { color: var(--white); font-family: var(--ff-montserrat); font-size: var(--fs-3); text-transform: uppercase; font-weight: var(--fw-700); }
.cta .cta-text { color: var(--cultured); margin-top: 8px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   FOOTER — masthead brand | links + contact | bottom bar (exact design)
   ========================================================================== */
.footer {
  background: hsl(210, 45%, 9%);
  color: hsla(0, 0%, 100%, 0.7);
}

/* Hide footer during boot; soft full-page loader covers the viewport */
html.js-loading:not(.page-ready) .footer {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
html.page-ready .footer {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.45s ease 0.08s;
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: transparent;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.page-loader-spin {
  width: 34px;
  height: 34px;
  border: 2.5px solid hsla(214, 22%, 78%, 0.85);
  border-top-color: var(--bright-navy-blue, hsl(209, 78%, 35%));
  border-radius: 50%;
  animation: pageLoaderSpin 0.7s linear infinite;
}
.page-loader-text {
  font-family: var(--ff-montserrat, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxford-blue, hsl(209, 61%, 16%));
}
html.page-ready .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@keyframes pageLoaderSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader-spin { animation: none; border-top-color: hsla(214, 22%, 78%, 0.85); }
  html.page-ready .footer,
  .page-loader { transition: none; }
}
.footer-top.section {
  padding-block: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 40px);
}
.footer-top .container {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
  align-items: start;
}

/* —— Top: logo | copy | social —— */
.footer-brand {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 0 28px;
  margin: 0 0 28px;
  border: 0;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
}
@media (min-width: 900px) {
  .footer-brand {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas: "logo copy social";
    align-items: center;
    column-gap: 36px;
    row-gap: 0;
    padding-bottom: 32px;
    margin-bottom: 32px;
  }
  .footer-brand .footer-logo { grid-area: logo; }
  .footer-brand .footer-text { grid-area: copy; }
  .footer-brand .footer-social { grid-area: social; justify-self: end; }
}
.footer-brand .footer-logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.footer-brand .footer-logo img {
  display: block;
  width: auto;
  height: clamp(88px, 10vw, 120px);
  max-width: min(340px, 100%);
  object-fit: contain;
  margin: 0;
}
.footer-brand .footer-text {
  font-size: 0.94rem;
  line-height: 1.7;
  margin: 0;
  max-width: 54ch;
  color: hsla(0, 0%, 100%, 0.72);
}
.footer-social-label { display: none; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social a {
  color: var(--white);
  border: 1px solid hsla(0, 0%, 100%, 0.22);
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
  background: var(--bright-navy-blue);
  border-color: var(--bright-navy-blue);
  transform: none;
}
.footer-social a .icon-social { width: 16px; height: 16px; }

/* —— Middle: Quick Links | Contact —— */
@media (min-width: 700px) {
  .footer-top .container {
    grid-template-columns: 0.85fr 1.25fr;
    column-gap: 56px;
    row-gap: 0;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 992px) {
  .footer-top .container {
    grid-template-columns: 0.9fr 1.35fr;
    column-gap: 80px;
  }
}

.footer-list { padding-top: 0; }
.footer-list-title {
  color: var(--white);
  font-family: var(--ff-montserrat);
  font-size: 0.78rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}
.footer-list-title::after { display: none; }

.footer-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-list:not(.footer-list--contact) ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 28px;
  row-gap: 2px;
}
.footer-link {
  padding-block: 7px;
  font-size: 0.92rem;
  color: hsla(0, 0%, 100%, 0.68);
  transition: color 0.2s ease;
  display: inline-block;
  min-height: 34px;
  line-height: 1.35;
}
.footer-link:hover {
  color: var(--white);
  padding-left: 0;
}
.footer-links-list .footer-link,
.footer-list-item { padding-block: 7px; }
.footer-bottom-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding-block: 4px;
  font-size: 0.84rem;
  color: hsla(0, 0%, 100%, 0.55);
}
.footer-bottom-link:hover { color: var(--white); }

.footer-list--contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
@media (min-width: 700px) {
  .footer-list--contact { margin-top: 0; }
}
.footer-contact-item {
  padding: 0;
  margin: 0;
  font-size: var(--fs-9);
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: stretch;
  background: none;
  border: 0;
  border-radius: 0;
  color: hsla(0, 0%, 100%, 0.78);
  line-height: 1.5;
}
.footer-contact-item:has(.icon-contact),
.footer-contact-item:has(svg.icon-contact) {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: start;
}
.footer-contact-item:last-child { margin-bottom: 0; }
.footer-contact-item a { display: inline !important; color: inherit; }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item .icon-contact {
  color: hsl(207, 90%, 54%);
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
}
.footer-contact-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  grid-column: 2;
}
.footer-contact-label {
  display: block;
  font-size: 0.66rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.42);
}
.footer-contact-value {
  color: hsla(0, 0%, 100%, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
  word-break: break-word;
}

.footer-contact-value--phones {
  display: flex !important;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3em 0.4em;
  max-width: 100%;
}
.footer-contact-value--phones::-webkit-scrollbar { display: none; }
.footer-contact-value--phones a {
  display: inline !important;
  flex: 0 0 auto;
  white-space: nowrap;
  font-weight: var(--fw-600);
  color: var(--white);
}
.footer-contact-value--phones .footer-phone-sep {
  display: inline !important;
  flex: 0 0 auto;
  opacity: 0.45;
}

.footer-newsletter-text { font-size: var(--fs-9); margin-bottom: 14px; }
.newsletter-form { position: relative; }
.newsletter-form .email-field {
  background: var(--gunmetal-2);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 100px;
  font-size: var(--fs-9);
  margin-bottom: 12px;
  border: 1px solid var(--cadet-blue-crayola-a20);
}
.newsletter-form .btn { width: 100%; }

/* —— Bottom bar —— */
.footer-bottom {
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  background: transparent;
}
.footer-bottom .container {
  padding-block: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
}
.copyright {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.45;
  color: hsla(0, 0%, 100%, 0.5);
}
.copyright a {
  display: inline;
  color: hsla(0, 0%, 100%, 0.72);
}
.copyright a:hover { color: var(--white); }
.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-bottom-list li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.85em;
  margin-inline: 14px;
  background: hsla(0, 0%, 100%, 0.22);
  vertical-align: -0.1em;
}

/* go-top */
.go-top {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  background: var(--bright-navy-blue);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: var(--radius-circle);
  display: grid; place-items: center;
  font-size: 22px;
  z-index: 4;
  box-shadow: var(--shadow-2);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: var(--transition-1);
}
.go-top.active { opacity: 1; visibility: visible; transform: translateY(0); }

/* whatsapp float */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: calc(24px + env(safe-area-inset-left, 0px));
  background: #25D366;
  width: 54px; height: 54px;
  border-radius: var(--radius-circle);
  display: grid; place-items: center;
  z-index: 5;
  box-shadow: var(--shadow-2);
  animation: waPulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; }
@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 hsla(142, 70%, 49%, 0.5); }
  70% { box-shadow: 0 0 0 14px hsla(142, 70%, 49%, 0); }
  100% { box-shadow: 0 0 0 0 hsla(142, 70%, 49%, 0); }
}

/* fixed vertical social rail — original solid style */
.social-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-rail .icon-content {
  position: relative;
  list-style: none;
}
.social-rail .tooltip {
  position: absolute;
  top: 50%;
  right: calc(100% + 12px);
  transform: translateY(-50%) translateX(6px);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}
.social-rail .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}
.social-rail a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  border: 1px solid hsl(214, 20%, 90%);
  box-shadow: 0 4px 14px rgba(6, 58, 92, 0.1);
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.social-rail a:hover {
  color: #fff;
  border-color: transparent;
  box-shadow: 3px 2px 28px rgba(0, 0, 0, 0.14);
}
.social-rail a svg {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  display: block;
}
.social-rail a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: height 0.3s ease-in-out;
}
.social-rail a:hover .filled { height: 100%; }
.social-rail a[data-social="facebook"] .filled,
.social-rail a[data-social="facebook"] ~ .tooltip { background-color: #1877f2; }
.social-rail a[data-social="instagram"] .filled,
.social-rail a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-rail a[data-social="whatsapp"] .filled,
.social-rail a[data-social="whatsapp"] ~ .tooltip { background-color: #25d366; }
.social-rail a[data-social="google"] .filled,
.social-rail a[data-social="google"] ~ .tooltip { background-color: #ea4335; }

@media (max-width: 991px) {
  .social-rail {
    right: 12px;
    gap: 10px;
    z-index: 3;
  }
  .social-rail a {
    width: 42px;
    height: 42px;
  }
  .social-rail a svg {
    width: 20px;
    height: 20px;
  }
  .social-rail .tooltip { display: none; }
}

@media (max-width: 575px) {
  .social-rail { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .social-rail .tooltip,
  .social-rail a,
  .social-rail a .filled { transition: none; }
}

/* ==========================================================================
   PAGE HERO / BREADCRUMB
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 140px 60px;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom, hsla(209, 61%, 12%, 0.55), hsla(209, 61%, 16%, 0.75));
}
.page-hero-content { max-width: 720px; padding-inline: 16px; }
.page-hero .eyebrow { color: var(--white); opacity: 0.9; }
.page-hero h1 {
  color: var(--white);
  font-family: var(--ff-montserrat);
  font-size: var(--fs-2);
  font-weight: var(--fw-800);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero p { color: var(--cultured); font-size: var(--fs-8); }

.pkg-nights-switcher {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.pkg-nights-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid hsla(0, 0%, 100%, 0.35);
  border-radius: 8px;
  background: hsla(0, 0%, 100%, 0.1);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: var(--fw-600);
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
a.pkg-nights-option:hover {
  background: hsla(0, 0%, 100%, 0.22);
  border-color: hsla(0, 0%, 100%, 0.65);
  transform: translateY(-1px);
}
.pkg-nights-option.is-active {
  background: var(--white);
  border-color: var(--white);
  color: var(--oxford-blue);
  cursor: default;
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; margin-bottom: 18px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group label { color: var(--oxford-blue); font-size: var(--fs-9); font-weight: var(--fw-600); margin-bottom: 8px; display: block; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-12);
  padding: 14px 18px;
  font-size: var(--fs-9);
  color: var(--gunmetal);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bright-navy-blue);
  box-shadow: 0 0 0 3px hsla(214, 57%, 51%, 0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #ef4444; }
.form-error { color: #ef4444; font-size: var(--fs-10); margin-top: 5px; display: block; min-height: 1em; }
.form-success {
  display: none;
  background: hsla(214, 57%, 51%, 0.1);
  border: 1px solid var(--bright-navy-blue);
  color: var(--yale-blue);
  padding: 14px 18px;
  border-radius: var(--radius-8);
  margin-bottom: 18px;
  font-size: var(--fs-9);
}
.form-success.show { display: block; }

/* contact page */
.quick-contact-section {
  padding-block: 48px 16px;
  background: var(--white);
}

.quick-contact-intro {
  text-align: center;
  margin-bottom: 24px;
}

.quick-contact-eyebrow {
  color: var(--bright-navy-blue);
  font-size: 0.72rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.quick-contact-title {
  font-family: var(--ff-montserrat);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  color: var(--oxford-blue);
  font-weight: var(--fw-700);
  margin: 0;
}

.quick-contact-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

@media (min-width: 720px) {
  .quick-contact-rail {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

@media (min-width: 1100px) {
  .quick-contact-rail {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.quick-contact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 18px 16px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--cultured);
  border-radius: 14px;
  box-shadow: var(--shadow-1);
  min-height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.quick-contact-glow {
  display: none;
}

.quick-contact-card:hover,
.quick-contact-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  outline: none;
}

.quick-contact-card:hover .quick-contact-icon,
.quick-contact-card:focus-visible .quick-contact-icon {
  transform: scale(1.04);
}

.quick-contact-card--call { border-top: 3px solid #3b82f6; }
.quick-contact-card--call .quick-contact-icon {
  background: hsla(217, 91%, 60%, 0.1);
  color: #2563eb;
}
.quick-contact-card--call .quick-contact-label { color: #2563eb; }
.quick-contact-card--call .quick-contact-action {
  background: hsla(217, 91%, 60%, 0.08);
  color: #2563eb;
}
.quick-contact-card--call:hover { border-color: #93c5fd; }

.quick-contact-card--whatsapp { border-top: 3px solid #22c55e; }
.quick-contact-card--whatsapp .quick-contact-icon {
  background: hsla(142, 71%, 45%, 0.1);
  color: #16a34a;
}
.quick-contact-card--whatsapp .quick-contact-label { color: #16a34a; }
.quick-contact-card--whatsapp .quick-contact-action {
  background: hsla(142, 71%, 45%, 0.08);
  color: #16a34a;
}
.quick-contact-card--whatsapp:hover { border-color: #86efac; }

.quick-contact-card--email { border-top: 3px solid #f97316; }
.quick-contact-card--email .quick-contact-icon {
  background: hsla(25, 95%, 53%, 0.1);
  color: #ea580c;
}
.quick-contact-card--email .quick-contact-label { color: #ea580c; }
.quick-contact-card--email .quick-contact-action {
  background: hsla(25, 95%, 53%, 0.08);
  color: #ea580c;
}
.quick-contact-card--email:hover { border-color: #fdba74; }

.quick-contact-card--visit { border-top: 3px solid #8b5cf6; }
.quick-contact-card--visit .quick-contact-icon {
  background: hsla(258, 90%, 66%, 0.1);
  color: #7c3aed;
}
.quick-contact-card--visit .quick-contact-label { color: #7c3aed; }
.quick-contact-card--visit .quick-contact-action {
  background: hsla(258, 90%, 66%, 0.08);
  color: #7c3aed;
}
.quick-contact-card--visit:hover { border-color: #c4b5fd; }

.quick-contact-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  margin: 0;
  border-radius: 12px;
  transition: transform 0.22s ease;
}

.quick-contact-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
}

.quick-contact-label {
  font-size: 0.7rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.quick-contact-value {
  font-family: var(--ff-montserrat);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  font-weight: var(--fw-700);
  color: var(--oxford-blue);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.quick-contact-meta {
  font-size: var(--fs-10);
  color: var(--gray-web);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.quick-contact-action {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-section,
.booking-section {
  padding-block: calc(var(--section-padding) + 12px);
}

.booking-section {
  background: var(--cultured-2);
  margin-top: 32px;
}

.contact-section {
  margin-top: 8px;
  background: var(--white);
}

.contact-grid,
.booking-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .booking-grid {
    grid-template-columns: 1.55fr 1fr;
    gap: 32px;
    align-items: start;
  }

  .contact-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: stretch;
  }
}

.booking-form-panel {
  background: var(--white);
  border: 1px solid var(--cultured);
  border-radius: var(--radius-16, 16px);
  padding: 20px 16px;
  box-shadow: var(--shadow-1);
}

@media (min-width: 640px) {
  .booking-form-panel { padding: 24px 22px; }
}

@media (min-width: 992px) {
  .booking-form-panel { padding: 26px 24px; }
}

.booking-form-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--cultured);
}

.booking-eyebrow {
  color: var(--bright-navy-blue);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.booking-form-col h2,
.contact-details h2 {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  margin-bottom: 6px;
}

.booking-summary h3,
.booking-steps h3,
.booking-help h3 {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  margin-bottom: 12px;
  font-size: var(--fs-6);
}

.booking-subhead {
  color: var(--gray-web);
  margin-bottom: 0;
  font-size: var(--fs-9);
  line-height: 1.45;
}

.contact-details .booking-subhead {
  margin-bottom: 18px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.form-section {
  border: 0;
  margin: 0 0 14px;
  padding: 0;
  min-width: 0;
}

.form-section--last {
  margin-bottom: 10px;
}

.form-section-title {
  display: block;
  width: 100%;
  float: none;
  padding: 0;
  margin: 0 0 10px;
  font-family: var(--ff-montserrat);
  font-size: 0.78rem;
  font-weight: var(--fw-700);
  color: var(--oxford-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-section .form-row {
  margin-bottom: 0;
  gap: 12px;
}

.form-section .form-group {
  margin-bottom: 12px;
}

.form-section .form-group--last {
  margin-bottom: 0;
}

.form-section .form-group label {
  margin-bottom: 5px;
  font-size: 0.8rem;
}

.booking-form-panel .form-group input,
.booking-form-panel .form-group select,
.booking-form-panel .form-group textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  font-size: var(--fs-9);
}

.booking-form-panel .form-group textarea {
  min-height: 78px;
  resize: vertical;
}

.booking-form-panel .form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' 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 12px center;
  padding-right: 36px;
}

.booking-form-panel .form-error {
  min-height: 0;
  margin-top: 3px;
}

@media (min-width: 720px) {
  .booking-form-panel .form-row--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .booking-form-panel .form-row--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.booking-form-actions {
  margin-top: 4px;
  padding-top: 4px;
}

.booking-submit {
  width: 100%;
  min-height: 46px;
  justify-content: center;
}

.booking-disclaimer {
  color: var(--gray-web);
  font-size: var(--fs-10);
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}

.booking-side-col > *,
.contact-info-col > * {
  margin-bottom: 0;
}

.booking-side-sticky {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 992px) {
  .booking-side-sticky {
    position: sticky;
    top: 96px;
  }
}

.contact-details,
.booking-summary,
.booking-steps,
.booking-help {
  background: var(--white);
  border: 1px solid var(--cultured);
  border-radius: var(--radius-12);
  padding: 18px 16px;
  box-shadow: var(--shadow-1);
}

@media (min-width: 640px) {
  .contact-details,
  .booking-summary,
  .booking-steps,
  .booking-help {
    padding: 18px 20px;
  }
}

.contact-item {
  padding-block: 10px;
  font-size: var(--fs-9);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--gunmetal);
  border-bottom: 1px solid var(--cultured);
}

.contact-item:last-of-type {
  border-bottom: 0;
  margin-bottom: 4px;
}

.contact-item .icon-contact {
  color: var(--bright-navy-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item a {
  display: inline !important;
}

.contact-item a:hover {
  color: var(--bright-navy-blue);
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--bright-navy-blue);
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
  text-decoration: none;
}

.contact-map-link:hover {
  text-decoration: underline;
}

.contact-map-col,
.map-embed {
  min-width: 0;
  height: 100%;
}

.map-embed {
  overflow: hidden;
  border-radius: var(--radius-12);
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-1);
  background: var(--white);
  min-height: 280px;
}

.map-embed iframe {
  border-radius: 0;
  display: block;
  width: 100%;
  min-height: 360px;
  height: 100%;
}

.booking-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.booking-trust li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.booking-trust .trust-ic {
  color: var(--bright-navy-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-trust strong {
  color: var(--oxford-blue);
  display: block;
  font-size: var(--fs-9);
  margin-bottom: 2px;
}

.booking-trust span {
  color: var(--gray-web);
  font-size: var(--fs-10);
  line-height: 1.4;
}

.booking-steps ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-steps li {
  display: flex;
  gap: 12px;
}

.booking-steps li span {
  background: var(--bright-navy-blue);
  color: var(--white);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: var(--radius-circle);
  display: grid;
  place-items: center;
  font-weight: var(--fw-600);
  font-size: var(--fs-9);
}

.booking-steps strong {
  color: var(--oxford-blue);
  font-size: var(--fs-9);
  display: block;
  margin-bottom: 2px;
}

.booking-steps p {
  color: var(--gray-web);
  font-size: var(--fs-10);
  line-height: 1.4;
}

.booking-help p {
  color: var(--gray-web);
  font-size: var(--fs-9);
  margin-bottom: 14px;
  line-height: 1.45;
}

.booking-help-btn {
  width: 100%;
  margin-bottom: 10px;
  justify-content: center;
}

.booking-help-btn:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   PACKAGE / DESTINATION DETAIL
   ========================================================================== */
.detail-layout { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 992px) { .detail-layout { grid-template-columns: 2fr 1fr; align-items: start; } }
.detail-section { margin-bottom: 34px; }
.detail-section h2 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-4); margin-bottom: 14px; }
.detail-section p { color: var(--gray-web); }
.highlights-list { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 580px) { .highlights-list { grid-template-columns: 1fr 1fr; } }
.highlights-list li { position: relative; padding-left: 26px; color: var(--gunmetal); font-size: var(--fs-9); }
.highlights-list li::before { content: "✓"; position: absolute; left: 0; color: var(--bright-navy-blue); font-weight: var(--fw-700); }

.accordion-item { border: 1px solid var(--cultured); border-radius: var(--radius-8); margin-bottom: 12px; overflow: hidden; background: var(--white); }
.accordion-header { padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 12px; min-height: 44px; }
.accordion-header span:first-child { color: var(--bright-navy-blue); font-weight: var(--fw-700); }
.accordion-header > div { color: var(--oxford-blue); font-weight: var(--fw-600); font-family: var(--ff-montserrat); font-size: var(--fs-9); }
.accordion-icon { transition: var(--transition-1); color: var(--bright-navy-blue); }
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body-inner { padding: 0 20px 18px; color: var(--gray-web); font-size: var(--fs-9); }

.inclusion-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 580px) { .inclusion-grid { grid-template-columns: 1fr 1fr; } }
.inclusion-col h3 { font-family: var(--ff-montserrat); color: var(--oxford-blue); margin-bottom: 12px; }
.inclusion-col ul { display: flex; flex-direction: column; gap: 8px; }
.inclusion-col li { position: relative; padding-left: 24px; color: var(--gunmetal); font-size: var(--fs-9); }
.inclusion-col li::before { content: "✓"; position: absolute; left: 0; color: #16a34a; font-weight: var(--fw-700); }
.inclusion-col.exclusions li::before { content: "✕"; color: #ef4444; }

.detail-sidebar .sidebar-card {
  background: var(--white);
  border: 1px solid var(--cultured);
  border-radius: var(--radius-12);
  padding: 26px;
  box-shadow: var(--shadow-2);
  position: sticky;
  top: 160px;
}
.sidebar-price {
  font-family: var(--ff-montserrat);
  color: #087bc2;
  font-size: clamp(1.75rem, 6vw, 3.2rem);
  font-weight: var(--fw-800);
  letter-spacing: -0.03em;
  line-height: 1.05;
  word-break: break-word;
}
.sidebar-price-unit {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0 8px;
}
.sidebar-price-unit-label {
  color: var(--oxford-blue);
  font-size: var(--fs-10);
  font-weight: var(--fw-600);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.sidebar-price-select {
  width: 100%;
  appearance: none;
  background: var(--cultured-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23087bc2' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E") no-repeat right 14px center / 12px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-8);
  padding: 11px 36px 11px 14px;
  font-size: var(--fs-9);
  font-weight: var(--fw-600);
  color: var(--gunmetal);
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sidebar-price-select:focus {
  border-color: var(--bright-navy-blue);
  box-shadow: 0 0 0 3px hsla(214, 57%, 51%, 0.12);
}
.sidebar-price-note { color: var(--gray-web); font-size: var(--fs-10); margin-bottom: 18px; }
.sidebar-meta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sidebar-meta span { display: flex; gap: 8px; align-items: center; color: var(--gunmetal); font-size: var(--fs-9); }
.sidebar-meta .icon-inline { color: var(--bright-navy-blue); }
.detail-sidebar .btn { width: 100%; margin-bottom: 10px; }

.inquiry-section { background: var(--cultured-2); padding-block: var(--section-padding); }
.inquiry-form { max-width: 760px; margin-inline: auto; background: var(--white); padding: clamp(20px, 4vw, 32px); border-radius: var(--radius-12); box-shadow: var(--shadow-1); }
.similar-packages h2 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-4); margin-bottom: 24px; }

.not-found { text-align: center; padding-block: 100px; }
.not-found h2 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-3); margin-bottom: 12px; }
.not-found p { color: var(--gray-web); margin-bottom: 20px; }

/* destinations page cards */
.dest-page-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 700px) {
  .dest-page-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (min-width: 1100px) {
  .dest-page-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.dest-page-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px hsla(209, 45%, 14%, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.3s ease;
  box-sizing: border-box;
}
.dest-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px hsla(209, 45%, 14%, 0.12);
  border-color: hsla(214, 57%, 51%, 0.28);
}
.dest-page-card:focus-visible {
  outline: 3px solid rgba(8, 123, 194, 0.35);
  outline-offset: 3px;
}
.dest-page-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  background: hsl(209, 45%, 14%);
  flex-shrink: 0;
}
.dest-page-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, hsla(209, 61%, 8%, 0.05) 35%, hsla(209, 61%, 8%, 0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.dest-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
  filter: saturate(1.06) contrast(1.04);
}
.dest-page-card:hover .dest-page-card-img img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.06);
}
.dest-page-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 6px;
  background: hsla(0, 0%, 100%, 0.92);
  color: var(--oxford-blue);
  font-size: 0.68rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  box-shadow: 0 4px 12px hsla(209, 45%, 14%, 0.12);
}
.dest-page-card-body {
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  text-align: left;
}
.dest-page-card-tagline {
  display: block;
  color: var(--bright-navy-blue);
  font-size: 0.72rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  line-height: 1.35;
  min-height: 1.35em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dest-page-card-body h3 {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: clamp(1.12rem, 1.8vw, 1.32rem);
  font-weight: var(--fw-700);
  line-height: 1.3;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  overflow-wrap: anywhere;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-page-card-body > p {
  color: var(--gray-web);
  font-size: var(--fs-9);
  line-height: 1.6;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.8em;
}
.dest-page-highlights {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1 1 auto;
  min-height: 5.4em;
}
.dest-page-highlights li {
  position: relative;
  padding-left: 14px;
  color: var(--gunmetal);
  font-size: 0.8rem;
  font-weight: var(--fw-500);
  line-height: 1.4;
}
.dest-page-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bright-navy-blue);
}
.dest-page-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  color: var(--bright-navy-blue);
  font-size: 0.85rem;
  font-weight: var(--fw-700);
  letter-spacing: 0.01em;
  transition: gap 0.25s ease, color 0.2s ease;
}
.dest-page-card:hover .dest-page-card-cta {
  gap: 10px;
  color: var(--yale-blue);
}

.dest-info-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
}
@media (min-width: 992px) {
  .dest-info-grid {
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 48px;
  }
}
.best-months {
  background: var(--cultured-2);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 24px;
  position: sticky;
  top: 96px;
  box-sizing: border-box;
  width: 100%;
}
.best-months h3 {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  margin: 0 0 10px;
  font-size: var(--fs-7);
  line-height: 1.3;
}
.dest-detail-heading {
  margin-bottom: 1.5rem;
}
.dest-related-packages {
  background: var(--sandy-white);
}
.dest-related-packages .section-head {
  margin-bottom: 36px;
}
.dest-related-packages .section-text {
  max-width: 560px;
  margin-inline: auto;
}
.dest-related-packages .packages-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 700px) {
  .dest-related-packages .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media (min-width: 1100px) {
  .dest-related-packages .packages-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* Keep related package cards vertical on desktop (not the listing row layout) */
@media (min-width: 992px) {
  .dest-related-packages .package-card {
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }
  .dest-related-packages .package-card .card-banner {
    width: 100%;
    flex: 0 0 auto;
    height: 200px;
    min-height: 200px;
    align-self: auto;
  }
  .dest-related-packages .package-card .card-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .dest-related-packages .package-card .card-content {
    padding: 18px 18px 14px;
    overflow: hidden;
  }
  .dest-related-packages .package-card .card-title {
    font-size: var(--fs-6);
    min-height: 2.6em;
  }
  .dest-related-packages .package-card .card-text {
    -webkit-line-clamp: 2;
    margin-bottom: 8px;
    min-height: 3.2em;
  }
  .dest-related-packages .package-card .card-stay,
  .dest-related-packages .package-card .card-highlights {
    display: none;
  }
  .dest-related-packages .package-card .card-meta-list {
    margin-top: auto;
    padding-top: 12px;
  }
  .dest-related-packages .package-card .card-meta-item span {
    max-width: 18ch;
  }
  .dest-related-packages .package-card .card-price {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 18px;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: auto;
  }
  .dest-related-packages .package-card .card-price .price-wrapper {
    font-size: var(--fs-5);
  }
  .dest-related-packages .package-card .card-price .btn {
    width: auto;
    flex-shrink: 0;
  }
}
@media (min-width: 1100px) {
  .dest-related-packages .package-card {
    min-height: 0;
  }
  .dest-related-packages .package-card .card-banner {
    width: 100%;
    flex: 0 0 auto;
    height: 210px;
  }
}
.dest-highlights-section {
  background: var(--cultured-2);
}
.dest-info-grid .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.month-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.month-pill { background: var(--white); border: 1px solid var(--cadet-blue-crayola); color: var(--gray-web); font-size: var(--fs-10); padding: 6px 12px; border-radius: 100px; }
.month-pill.active { background: var(--bright-navy-blue); color: var(--white); border-color: var(--bright-navy-blue); }
.dest-detail-copy {
  margin: 0 0 1.75rem;
  color: var(--gray-web);
  line-height: 1.75;
  font-size: var(--fs-9);
  max-width: 68ch;
}
.dest-detail-subhead {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: var(--fs-6);
  margin: 0 0 0.9rem;
  line-height: 1.3;
}
.dest-detail-list {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 10px;
}
.dest-detail-list li {
  position: relative;
  padding-left: 16px;
  color: var(--gunmetal);
  font-size: var(--fs-9);
  line-height: 1.5;
}
.dest-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bright-navy-blue);
}
.dest-best-time-text {
  font-size: 0.9rem;
  color: var(--gray-web);
  margin: 0 0 1rem;
  line-height: 1.6;
}
.dest-activities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 2rem;
}
.activity-tag {
  background: hsla(214, 57%, 51%, 0.1);
  color: var(--yale-blue);
  font-size: var(--fs-10);
  padding: 7px 12px;
  border-radius: 100px;
  line-height: 1.2;
}

.dest-detail-hero-content,
.page-hero-content {
  text-align: center;
  margin-inline: auto;
  width: 100%;
  max-width: 760px;
  padding-inline: 16px;
  box-sizing: border-box;
}
.dest-detail-tagline {
  display: block;
  color: hsla(0, 0%, 100%, 0.88);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--fs-10);
  font-weight: 600;
  margin-bottom: 10px;
}
.dest-detail-title {
  color: var(--white);
  font-family: var(--ff-montserrat);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: var(--fw-800);
  text-transform: none;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 auto 14px;
  max-width: 18ch;
  overflow-wrap: anywhere;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}
.dest-detail-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(110px, 70%);
  height: 8px;
  background: var(--title-wave-img-light) center / 100% 100% no-repeat;
}

/* ==========================================================================
   ABOUT / VALUES / TIMELINE / TRUST
   ========================================================================== */
.timeline { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-item { background: var(--white); border: 1px solid var(--cultured); border-top: 4px solid var(--bright-navy-blue); border-radius: var(--radius-8); padding: 24px; box-shadow: var(--shadow-1); }
.timeline-year { font-family: var(--ff-montserrat); font-size: var(--fs-4); color: var(--bright-navy-blue); font-weight: var(--fw-700); margin-bottom: 8px; }
.timeline-item h3 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-7); margin-bottom: 8px; }
.timeline-item p { color: var(--gray-web); font-size: var(--fs-9); }

.values-grid { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { text-align: center; background: var(--white); border: 1px solid var(--cultured); border-radius: var(--radius-12); padding: 32px 24px; box-shadow: var(--shadow-1); transition: var(--transition-1); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.value-icon, .why-icon, .service-icon {
  display: grid; place-items: center;
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  background: hsla(214, 57%, 51%, 0.1);
  color: var(--bright-navy-blue);
  border-radius: var(--radius-circle);
}
.value-card h3 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-6); margin-bottom: 10px; }
.value-card p { color: var(--gray-web); font-size: var(--fs-9); }

.trust-badges {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.trust-badge {
  text-align: center;
  background: var(--white);
  border-radius: 16px;
  padding: 22px 16px;
  box-shadow: var(--shadow-1);
  border: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 112px;
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
}
.trust-badge-value {
  display: block;
  font-family: var(--ff-montserrat);
  color: var(--bright-navy-blue);
  font-size: var(--fs-6);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}
.trust-badge-label {
  display: block;
  color: var(--gray-web);
  font-size: var(--fs-10);
  line-height: 1.4;
  max-width: 16ch;
  margin: 0;
}

/* why-us grid (home) */
.why-grid { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-12);
  padding: 32px 22px;
  box-shadow: var(--shadow-1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.why-card h3 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-7); margin-bottom: 10px; }
.why-card p { color: var(--gray-web); font-size: var(--fs-10); }

/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */
.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--gunmetal);
  color: var(--cultured);
  z-index: 50;
  transform: translateY(100%);
  transition: var(--transition-1);
}
.cookie-consent.show { transform: translateY(0); }
.cookie-consent-inner { max-width: 1200px; margin-inline: auto; padding: 18px 16px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.cookie-consent-inner p { font-size: var(--fs-9); }
.cookie-consent-inner a { color: var(--bright-navy-blue); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 10px; }

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
/* Visible by default — only hide after JS marks above-fold as .in-view
   (html.reveal-ready). Prevents footer flash during page transitions. */
.reveal, .reveal-stagger > * {
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.reveal-ready .reveal:not(.in-view),
html.reveal-ready .reveal-stagger:not(.in-view) > * {
  opacity: 0;
  transform: translateY(28px);
}
html.reveal-ready .reveal.in-view,
html.reveal-ready .reveal-stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
html.reveal-ready .reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
html.reveal-ready .reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
html.reveal-ready .reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
html.reveal-ready .reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
html.reveal-ready .reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.4s; }
@media (prefers-reduced-motion: reduce) {
  html.reveal-ready .reveal:not(.in-view),
  html.reveal-ready .reveal-stagger:not(.in-view) > *,
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  * { scroll-behavior: auto !important; }
}

/* Reserve space for JS-filled shells so footer cannot jump into the viewport */
#detail-content,
#dest-detail-content {
  min-height: 72vh;
}
#packages-grid,
#home-packages-grid,
#gallery-grid,
#destinations-grid,
#destinations-page-grid {
  min-height: 280px;
}
.page-shell-loading {
  display: grid;
  place-items: center;
  min-height: inherit;
  padding: 48px 20px;
  color: var(--gray-web);
  font-family: var(--ff-montserrat);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-shell-loading::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
  border: 2px solid hsla(214, 22%, 82%, 0.9);
  border-top-color: var(--bright-navy-blue);
  border-radius: 50%;
  animation: shellSpin 0.7s linear infinite;
}
@keyframes shellSpin {
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .page-shell-loading::before { animation: none; border-top-color: hsla(214, 22%, 82%, 0.9); }
}

/* ==========================================================================
   RESPONSIVE — phones & small tablets
   ========================================================================== */
@media (max-width: 767px) {
  :root {
    --fs-1: 2.2rem;
    --fs-2: 1.75rem;
    --fs-3: 1.45rem;
    --section-padding: 48px;
  }

  .container {
    padding-inline: max(16px, env(safe-area-inset-left, 0px));
    padding-inline-end: max(16px, env(safe-area-inset-right, 0px));
  }

  /* Prevent iOS input zoom */
  .form-group input,
  .form-group select,
  .form-group textarea,
  .hero-search .input-field,
  .tour-search .input-field,
  .newsletter-form .email-field {
    font-size: 16px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
  .hero-body { padding-block: max(72px, calc(env(safe-area-inset-top, 0px) + 64px)) 16px; }
  .hero-content { max-width: 100%; }
  .hero-title, .hero h1 {
    margin-bottom: 12px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .hero-sub, .hero-text {
    font-size: var(--fs-9);
    margin-bottom: 20px;
    max-width: 100%;
    margin-inline: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .hero-actions {
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: center;
  }
  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    min-height: 46px;
    padding-inline: 12px;
    font-size: 0.88rem;
    white-space: nowrap;
  }
  .hero-search {
    display: none;
  }

  /* Popular destinations: expandable horizontal carousel */
  .popular-grid[hidden],
  .popular-dest-carousel[hidden] {
    display: none !important;
  }
  .popular-dest-carousel:not([hidden]) {
    display: flex;
    align-items: flex-end;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -16px;
    padding: 12px 16px 28px;
  }
  .popular-dest-carousel:not([hidden])::-webkit-scrollbar { display: none; }

  .popular-expand-item {
    flex: 0 0 auto;
    position: relative;
    width: 200px;
    height: 280px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    scroll-snap-align: center;
    background-color: hsl(209, 45%, 12%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: width 0.4s ease, box-shadow 0.4s ease;
    border: none;
    padding: 0;
    text-align: left;
    color: #fff;
  }
  .popular-expand-item:last-child { margin-right: 6px; }
  .popular-expand-item.active {
    width: min(270px, 78vw);
    box-shadow: 6px 10px 18px rgba(0, 0, 0, 0.28);
  }
  .popular-expand-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.92));
    pointer-events: none;
  }
  .popular-expand-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--oxford-blue);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  .popular-expand-desc {
    position: relative;
    z-index: 1;
    padding: 0 14px 10px;
    color: #fff;
    overflow: hidden;
    transform: translateY(calc(100% - 42px));
    transition: transform 0.4s ease;
  }
  .popular-expand-item.active .popular-expand-desc {
    transform: none;
  }
  .popular-expand-desc h3 {
    margin: 0 0 8px;
    font-family: var(--ff-montserrat);
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 700;
    color: #fff;
  }
  .popular-expand-desc p {
    margin: 0 0 10px;
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.35s ease 0.12s, transform 0.35s ease 0.12s;
  }
  .popular-expand-item.active .popular-expand-desc p {
    opacity: 1;
    transform: translateY(0);
  }
  .popular-expand-cta {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: hsl(200, 85%, 72%);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease 0.18s, transform 0.35s ease 0.18s;
  }
  .popular-expand-item.active .popular-expand-cta {
    opacity: 1;
    transform: translateY(0);
  }

  .popular-head .section-text {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .popular-head .section-title,
  .popular-head .h2.section-title {
    display: inline-block;
  }
  .popular-head .section-title::after,
  .popular-head .h2.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
  }

  .popular-card .card-img { height: 260px; min-height: 260px; }
  .popular-card .card-content {
    margin: -40px 12px 12px;
    padding: 14px 16px 14px;
    min-height: 120px;
  }
  .popular-card .card-title { font-size: var(--fs-7); }
  .popular-card .card-subtitle { min-height: 2.4em; font-size: 0.66rem; }
  .popular-cta { margin-top: 28px; }
  .package-card .card-banner { height: 200px; }
  .package-card .card-content { padding: 16px 16px 14px; }
  .package-card .card-title { font-size: var(--fs-6); }
  .package-card .card-text { min-height: 0; margin-bottom: 12px; }
  .package-card .card-price { padding: 14px 16px; flex-wrap: wrap; }
  .package-cta { margin-top: 28px; }
  .dest-page-card-img { height: 200px; }
  .dest-page-card-body { padding: 18px 16px 16px; }
  .dest-page-card-badge { top: 12px; left: 12px; }
  .dest-page-card-body > p { min-height: 0; -webkit-line-clamp: 3; }
  .dest-page-card-body h3 { min-height: 0; }
  .dest-page-highlights { min-height: 0; }
  .dest-page-grid { gap: 18px; }
  .page-intro { margin-bottom: 28px; padding-inline: 2px; }
  .dest-info-grid { gap: 28px; }
  .best-months {
    position: static;
    padding: 20px 16px;
  }
  .dest-detail-copy { max-width: none; }
  .dest-detail-hero-content,
  .page-hero-content { padding-inline: 12px; }
  .experience-card { padding: 18px 16px; gap: 14px; }
  .experience-icon { width: 44px; height: 44px; font-size: 20px; }

  .section-head { margin-bottom: 28px; padding-inline: 4px; }
  .section-text { font-size: var(--fs-9); }

  .tour-search { padding-block: 28px; }
  .tour-search-form { gap: 12px; }
  .tour-search .btn { min-height: 48px; }

  .filter-tabs, .pkg-filter-tabs, .gallery-filters {
    gap: 8px;
    margin-bottom: 24px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: -4px;
    padding-inline: 4px;
  }
  /* Home packages: custom dropdown instead of cutting pill tabs */
  #home-pkg-tabs {
    display: none !important;
  }
  .pkg-filter-dropdown {
    display: block;
    margin-bottom: 20px;
  }
  .pkg-filter-dropdown[hidden] {
    display: none !important;
  }
  .pkg-toolbar .pkg-filter-tabs {
    margin-bottom: 0;
    margin-inline: 0;
  }
  .filter-tabs::-webkit-scrollbar,
  .pkg-filter-tabs::-webkit-scrollbar,
  .gallery-filters::-webkit-scrollbar { display: none; }
  .filter-tab {
    padding: 10px 16px;
    font-size: 0.75rem;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .services-grid { gap: 12px; }
  .service-card { padding: 16px 14px; gap: 12px; }
  .service-card__icon { width: 48px; height: 48px; border-radius: 12px; }
  .service-card__icon svg { width: 24px; height: 24px; }

  .why-grid { gap: 12px; }
  .why-card { padding: 20px 12px; }
  .why-card h3 { font-size: var(--fs-9); }
  .why-icon, .value-icon, .service-icon { width: 52px; height: 52px; margin-bottom: 12px; }

  .trust-badges { gap: 12px; }
  .trust-badge { padding: 16px 10px; min-height: 100px; }
  .trust-badge-value { font-size: var(--fs-7); }
  .trust-badge-note { margin-top: 18px; padding-inline: 4px; }
  .gallery-cta { margin-top: 28px; }

  .cta .container { flex-direction: column; text-align: center; gap: 18px; }
  .cta-actions { justify-content: center; width: 100%; }
  .cta-actions .btn { flex: 1 1 100%; }

  .footer { padding-bottom: env(safe-area-inset-bottom, 0px); }
  .footer-top { padding-bottom: 48px; }
  .footer-top .container {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-brand {
    grid-column: auto;
    gap: 14px;
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
  .footer-brand .footer-logo {
    padding: 0;
    border-radius: 0;
    background: none;
  }
  .footer-brand .footer-logo img { height: 84px; max-width: 260px; }
  .footer-brand .footer-text { max-width: none; font-size: 0.9rem; }
  .footer-list--contact { margin-top: 28px; }
  .footer-contact-value--phones { font-size: 0.8rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 12px; }
  .footer-bottom-list { justify-content: center; }
  .footer-bottom-list li:not(:last-child)::after { margin-inline: 10px; }
  .copyright {
    white-space: normal;
    font-size: 0.78rem;
  }

  /* Float slot: WA left · chat right · go-top above chat */
  .go-top {
    bottom: calc(148px + env(safe-area-inset-bottom, 0px));
    right: calc(16px + env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
  }
  .whatsapp-float {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    left: calc(16px + env(safe-area-inset-left, 0px));
    width: 52px;
    height: 52px;
  }

  .detail-sidebar .sidebar-card { position: static; padding: 20px 16px; }
  .detail-section { margin-bottom: 28px; }
  .page-hero {
    min-height: 34vh;
    padding-block: max(96px, calc(env(safe-area-inset-top, 0px) + 72px)) 40px;
  }
  .page-hero h1 { overflow-wrap: anywhere; }
  .page-hero-content { padding-inline: 12px; }

  .quick-contact-rail { gap: 12px; }
  .quick-contact-card { padding: 18px 16px; }
  .booking-section { margin-top: 28px; }
  .contact-details, .booking-summary, .booking-steps, .booking-help { padding: 18px 16px; }
  .booking-form-panel { padding: 20px 16px; }
  .map-embed { min-height: 260px; }
  .map-embed iframe { min-height: 260px; }

  .accordion-header { padding: 14px 16px; }
  .accordion-body-inner { padding: 0 16px 16px; }
  .faq-q { padding: 16px 16px 16px 18px; gap: 12px; min-height: 54px; }
  .faq-a-inner { padding: 0 18px; }
  .faq-item.open .faq-a-inner { padding: 0 18px 18px; }
  .faq-toggle,
  .faq-q > span:last-child { width: 30px; height: 30px; }
  .faq-toggle::before,
  .faq-q > span:last-child::before { width: 11px; }
  .faq-toggle::after,
  .faq-q > span:last-child::after { height: 11px; }
  .faq-cta { margin-top: 28px; }
  .faq-head { padding-inline: 4px; }
  .faq-head .section-text {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .faq-list { max-width: 100%; }

  .testimonial-card { padding: 20px 16px 18px; }
  .testimonials-cta { margin-top: 28px; }
  .testimonials-cta .btn { min-width: 0; width: 100%; max-width: 320px; }

  /* Mobile testimonials — professional single-card slider */
  .testimonials-head {
    text-align: center;
    padding-inline: 8px;
    margin-bottom: 24px;
  }
  .testimonials-head .section-title,
  .testimonials-head .h2.section-title {
    display: inline-block;
    max-width: 100%;
  }
  .testimonials-head .section-title::after,
  .testimonials-head .h2.section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-position: center;
  }
  .testimonials-head .section-text {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 4px;
    overflow-wrap: anywhere;
  }

  .testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    overflow: hidden;
  }
  .testimonials-grid {
    display: flex !important;
    width: 100%;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
    margin: 0;
    padding: 4px 0 8px;
    touch-action: pan-y;
    will-change: transform;
  }
  .testimonials-slider .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex !important;
    flex-direction: column;
    height: auto;
    min-height: 0;
    margin: 0;
    padding: 24px 22px 20px;
    border-radius: 16px;
    border: 1px solid hsl(214, 24%, 88%);
    border-left: 3px solid var(--bright-navy-blue);
    box-shadow: 0 8px 24px rgba(6, 58, 92, 0.08);
    background: #fff;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    overflow: hidden;
  }
  .testimonials-slider .testimonial-card:hover {
    transform: none !important;
    box-shadow: 0 8px 24px rgba(6, 58, 92, 0.08);
  }
  .testimonials-slider .testimonial-card::before,
  .testimonials-slider .testimonial-card::after {
    display: none !important;
    content: none !important;
  }
  .testimonials-slider .testimonial-quote-mark {
    display: none;
  }
  .testimonials-slider .testimonial-stars--top {
    display: flex;
    margin-bottom: 14px;
  }
  .testimonials-slider .testimonial-stars--top svg {
    width: 16px;
    height: 16px;
  }
  .testimonials-slider .testimonial-text {
    font-style: normal;
    font-size: 0.92rem;
    line-height: 1.65;
    color: hsl(215, 20%, 28%);
    margin: 0 0 18px;
    padding: 0;
    -webkit-line-clamp: 7;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .testimonials-slider .testimonial-footer {
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid hsl(214, 24%, 90%);
    width: 100%;
  }
  .testimonials-slider .testimonial-avatar {
    width: 44px;
    height: 44px;
    background: rgba(8, 123, 194, 0.12);
    color: var(--bright-navy-blue);
    font-size: 0.75rem;
  }
  .testimonials-slider .testimonial-person {
    flex: 1 1 auto;
    min-width: 0;
    gap: 4px;
  }
  .testimonials-slider .testimonial-author {
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.3;
  }
  .testimonials-slider .testimonial-meta {
    display: none;
  }
  .testimonials-slider .testimonial-source {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 8px;
    font-size: 0.72rem;
    color: var(--gray-web);
  }
  .testimonials-slider .testimonial-stars--inline {
    display: none;
  }
  .testimonials-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 14px 0 4px;
  }
  .testimonials-dots[hidden] {
    display: none !important;
  }
  .testimonials-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 123, 194, 0.22);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }
  .testimonials-dot.is-active {
    width: 22px;
    background: var(--bright-navy-blue);
  }
  .process-step { padding: 22px 14px; }
  .experience-card { padding: 16px; gap: 12px; }
  .timeline-item { padding: 18px 16px; }
  .value-card { padding: 24px 18px; }

  .section:has(.gallery-grid):not(.home-gallery) .container { overflow-x: clip; }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
  .cookie-consent-actions { width: 100%; }
  .cookie-consent-actions .btn { flex: 1 1 auto; min-height: 44px; }

  .not-found-page { padding: 48px 16px; }
  .not-found-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  :root {
    --fs-1: 1.95rem;
    --fs-2: 1.55rem;
    --section-padding: 40px;
  }

  .why-grid { grid-template-columns: 1fr; gap: 10px; }
  .why-card {
    padding: 18px 16px;
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4px 14px;
    align-items: start;
  }
  .why-card .why-icon { margin: 0; grid-column: 1; grid-row: 1 / span 2; align-self: center; }
  .why-card h3 { grid-column: 2; grid-row: 1; margin-bottom: 0; font-size: var(--fs-8); }
  .why-card p { grid-column: 2; grid-row: 2; font-size: var(--fs-10); }

  .trust-badges { gap: 10px; }
  .popular-card .card-img { height: 240px; min-height: 240px; }
  .package-card .card-banner { height: 180px; }
  .hero-search-btn { min-height: 50px; font-size: 0.9rem; }
  .grid-list { gap: 20px; }
  .packages-grid { gap: 16px; }
}

@media (max-width: 360px) {
  .header .logo img,
  .nav-logo-img { height: 34px; max-width: 130px; }
  .hero-title, .hero h1 { font-size: 1.7rem; }
  .filter-tab { padding: 9px 12px; }
  .package-card .card-price .price-wrapper { font-size: var(--fs-5); }
}

/* legal + faq shared */
.legal-section, .faq-section { padding-block: var(--section-padding); }
.legal-content { max-width: 800px; margin-inline: auto; }
.legal-content h2 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-5); margin: 28px 0 12px; }
.legal-content p, .legal-content li { color: var(--gray-web); line-height: 1.7; margin-bottom: 10px; font-size: var(--fs-9); }
.legal-content ul { padding-left: 20px; margin-bottom: 16px; }
.legal-content a { color: var(--bright-navy-blue); text-decoration: underline; }
.legal-updated { font-size: var(--fs-10); color: var(--gray-web); margin-bottom: 24px; }

.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.faq-item:last-child { margin-bottom: 0; }
.faq-item:hover { box-shadow: var(--shadow-2); }
.faq-item.open {
  border-color: rgba(8, 123, 194, 0.3);
  box-shadow: 0 10px 28px rgba(6, 58, 92, 0.1);
}
.faq-q {
  width: 100%;
  padding: 18px 20px;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-600);
  font-size: var(--fs-9);
  color: var(--oxford-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  text-align: left;
  background: transparent;
  border: none;
  line-height: 1.45;
  -webkit-tap-highlight-color: transparent;
}
.faq-q:focus-visible {
  outline: 3px solid rgba(8, 123, 194, 0.28);
  outline-offset: -3px;
}
.faq-q-text {
  flex: 1 1 auto;
  min-width: 0;
  text-wrap: pretty;
}
.faq-toggle,
.faq-q > span:last-child {
  flex: 0 0 auto;
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--bright-navy-blue);
  background: rgba(8, 123, 194, 0.1);
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  transition: background 0.25s ease, color 0.25s ease;
}
/* CSS plus / minus icon (hides text "+") */
.faq-toggle::before,
.faq-toggle::after,
.faq-q > span:last-child::before,
.faq-q > span:last-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.faq-toggle::before,
.faq-q > span:last-child::before {
  width: 12px;
  height: 2px;
}
.faq-toggle::after,
.faq-q > span:last-child::after {
  width: 2px;
  height: 12px;
}
.faq-item.open .faq-toggle,
.faq-item.open .faq-q > span:last-child {
  background: var(--bright-navy-blue);
  color: #fff;
}
.faq-item.open .faq-toggle::after,
.faq-item.open .faq-q > span:last-child::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 20px;
  color: var(--gray-web);
  font-size: var(--fs-9);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.35s ease;
}
.faq-item.open .faq-a-inner {
  opacity: 1;
  transform: translateY(0);
  padding: 0 20px 20px;
}

.faq-head {
  text-align: center;
}
.faq-head .section-title,
.faq-head .h2.section-title {
  display: inline-block;
  max-width: 100%;
}
.faq-head .section-title::after,
.faq-head .h2.section-title::after {
  left: 50%;
  transform: translateX(-50%);
  background-position: center;
}
.faq-head .section-text {
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-list {
  max-width: 760px;
  margin-inline: auto;
  width: 100%;
}
.faq-preview .faq-list {
  max-width: 720px;
}
.faq-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.faq-cta .btn { min-width: 180px; }

/* ── STATS STRIP ── */
.stats-strip {
  position: relative;
  padding-block: 32px 40px;
  background:
    linear-gradient(180deg, hsl(210, 28%, 97%) 0%, var(--white) 100%);
}
.stats-board {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid hsla(214, 22%, 86%, 0.9);
  box-shadow:
    0 1px 0 hsla(0, 0%, 100%, 0.8) inset,
    0 22px 50px hsla(210, 45%, 18%, 0.1);
  background: var(--white);
}
.stats-featured {
  position: relative;
  min-height: 360px;
  color: var(--white);
  isolation: isolate;
}
.stats-featured-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.stats-featured-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, hsla(209, 70%, 10%, 0.35) 0%, transparent 28%),
    linear-gradient(115deg, hsla(209, 78%, 10%, 0.88) 0%, hsla(209, 60%, 16%, 0.72) 45%, hsla(199, 55%, 24%, 0.5) 100%);
}
.stats-featured-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
  height: 100%;
  min-height: 360px;
  padding: 26px 24px 28px;
}
.stats-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.14);
  border: 1px solid hsla(0, 0%, 100%, 0.24);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: var(--ff-montserrat);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.95);
}
.stats-featured-main { max-width: 34ch; }
.stats-featured-number,
.stats-rail .stat-number {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 0.06em;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 0;
}
.stats-featured-number {
  font-size: clamp(3.2rem, 10vw, 4.8rem);
  color: var(--white);
  margin-bottom: 12px;
}
.stats-featured-number .stat-plus,
.stats-rail .stat-number .stat-plus {
  color: hsl(199, 92%, 74%);
  font-size: 0.68em;
  font-weight: 700;
}
.stats-rail .stat-number .stat-star {
  margin-left: 0.12em;
  color: #f0b429;
  font-size: 0.55em;
  line-height: 1;
}
.stats-featured-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.stats-featured-text {
  color: hsla(0, 0%, 100%, 0.8);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0 0 20px;
}
.stats-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: hsla(0, 0%, 100%, 0.14);
  border: 1px solid hsla(0, 0%, 100%, 0.28);
  font-family: var(--ff-montserrat);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.stats-featured-link::after {
  content: "→";
  transition: transform 0.2s ease;
}
.stats-featured-link:hover {
  background: hsla(0, 0%, 100%, 0.22);
  transform: translateY(-1px);
}
.stats-featured-link:hover::after { transform: translateX(3px); }
.stats-rail-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 26px 22px 28px;
  background:
    linear-gradient(165deg, hsl(210, 40%, 98%) 0%, var(--white) 55%);
  border-top: 1px solid var(--border-soft);
}
.stats-rail-label {
  margin: 0;
  font-family: var(--ff-montserrat);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bright-navy-blue);
}
.stats-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.stats-rail .stat-item {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--border-soft);
}
.stats-rail .stat-item:first-child {
  padding-top: 4px;
  border-top: none;
}
.stats-rail .stat-number {
  font-size: clamp(1.9rem, 3.5vw, 2.35rem);
  color: var(--oxford-blue);
}
.stats-rail .stat-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  text-align: left;
  min-width: 0;
}
.stats-rail .stat-copy strong {
  font-family: var(--ff-montserrat);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--oxford-blue);
}
.stats-rail .stat-copy span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--gray-web);
}
@media (min-width: 900px) {
  .stats-strip { padding-block: 44px 56px; }
  .stats-board {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.86fr);
    min-height: 440px;
  }
  .stats-featured,
  .stats-featured-body {
    min-height: 100%;
  }
  .stats-featured-body {
    padding: 32px 36px 36px;
    gap: 48px;
  }
  .stats-rail-wrap {
    border-top: none;
    border-left: 1px solid var(--border-soft);
    padding: 40px 36px;
    gap: 22px;
  }
  .stats-rail .stat-item {
    grid-template-columns: 6rem 1fr;
    gap: 16px;
    padding: 22px 0;
  }
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 580px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (min-width: 992px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-12);
  padding: 20px 18px;
  box-shadow: var(--shadow-1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--service-accent, var(--bright-navy-blue));
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: hsla(214, 57%, 51%, 0.2);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--service-accent, var(--bright-navy-blue));
  box-shadow: 0 8px 20px hsla(214, 57%, 51%, 0.22);
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  display: block;
}

.service-card__body { min-width: 0; flex: 1; }
.service-card__body h4 {
  font-family: var(--ff-montserrat);
  font-size: var(--fs-8);
  font-weight: var(--fw-700);
  color: var(--oxford-blue);
  margin-bottom: 6px;
  line-height: 1.3;
}
.service-card__body p {
  font-size: var(--fs-10);
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.service-card--flights { --service-accent: hsl(214, 72%, 48%); }
.service-card--resorts { --service-accent: hsl(192, 82%, 38%); }
.service-card--transfers { --service-accent: hsl(262, 52%, 52%); }
.service-card--cruise { --service-accent: hsl(209, 68%, 38%); }
.service-card--meals { --service-accent: hsl(28, 85%, 52%); }
.service-card--activities { --service-accent: hsl(152, 58%, 38%); }

.service-card--flights .service-card__icon { box-shadow: 0 8px 20px hsla(214, 72%, 48%, 0.28); }
.service-card--resorts .service-card__icon { box-shadow: 0 8px 20px hsla(192, 82%, 38%, 0.28); }
.service-card--transfers .service-card__icon { box-shadow: 0 8px 20px hsla(262, 52%, 52%, 0.28); }
.service-card--cruise .service-card__icon { box-shadow: 0 8px 20px hsla(209, 68%, 38%, 0.28); }
.service-card--meals .service-card__icon { box-shadow: 0 8px 20px hsla(28, 85%, 52%, 0.28); }
.service-card--activities .service-card__icon { box-shadow: 0 8px 20px hsla(152, 58%, 38%, 0.28); }

@media (min-width: 992px) {
  .service-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 22px;
    gap: 18px;
  }
  .service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }
  .service-card__icon svg { width: 28px; height: 28px; }
}

/* ── TESTIMONIALS ── */
.testimonials-head .section-text {
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-muted);
}
.testimonials-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-1);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--bright-navy-blue);
  opacity: 0.12;
  font-family: Georgia, 'Times New Roman', serif;
  pointer-events: none;
}
.testimonial-quote-mark {
  display: none;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 14px;
  color: #e8a317;
}
.testimonial-stars svg {
  width: 15px;
  height: 15px;
  display: block;
  fill: currentColor;
  flex-shrink: 0;
}
.testimonial-stars svg.is-empty {
  fill: #d5dae2;
  opacity: 1;
}
@media (min-width: 768px) {
  .testimonials-grid .testimonial-card:nth-child(n+7) {
    display: none;
  }
}
.testimonial-stars--inline {
  margin-bottom: 0;
  gap: 2px;
}
.testimonial-stars--inline svg {
  width: 12px;
  height: 12px;
}
.testimonial-text {
  color: var(--gunmetal);
  font-size: var(--fs-9);
  line-height: 1.7;
  margin: 0 0 20px;
  font-style: normal;
  flex: 1 1 auto;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  quotes: none;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid hsl(214, 24%, 92%);
}
.testimonial-avatar {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 123, 194, 0.12);
  color: var(--bright-navy-blue);
  font-family: var(--ff-montserrat);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.testimonial-person {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial-author {
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-700);
  font-style: normal;
  color: var(--oxford-blue);
  font-size: var(--fs-9);
  line-height: 1.3;
  margin: 0;
}
.testimonial-meta {
  font-size: var(--fs-10);
  color: var(--gray-web);
  margin: 0;
  line-height: 1.35;
}
.testimonial-source {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin: 0;
  font-size: 0.72rem;
  color: var(--gray-web);
  font-weight: 500;
  line-height: 1.2;
}
.testimonial-google-icon {
  flex: 0 0 auto;
  display: block;
}
.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.testimonials-cta .btn { min-width: 240px; }
.testimonials-dots {
  display: none;
}

@media (min-width: 992px) {
  .testimonial-card { padding: 30px 26px 24px; }
  .testimonials-cta { margin-top: 44px; }
}

/* ── BOOKING PROCESS ── */
.process-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-12);
  padding: 28px 18px;
  border: 1px solid var(--cultured);
  box-shadow: var(--shadow-1);
  position: relative;
}
.process-num {
  width: 44px; height: 44px;
  background: var(--bright-navy-blue);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--ff-montserrat);
  font-weight: var(--fw-700);
  margin: 0 auto 14px;
  font-size: var(--fs-7);
}
.process-step h3 { font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-8); margin-bottom: 8px; }
.process-step p { color: var(--gray-web); font-size: var(--fs-10); line-height: 1.6; }

/* ── EXPERIENCE HIGHLIGHTS ── */
.experience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 768px) { .experience-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 992px) { .experience-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.experience-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-1);
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.experience-card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.experience-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: hsla(214, 57%, 51%, 0.1);
  color: var(--bright-navy-blue);
  border-radius: var(--radius-8);
  display: grid;
  place-items: center;
  font-size: 22px;
}
.experience-card > div:last-child {
  flex: 1;
  min-width: 0;
}
.experience-card h3 {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: var(--fs-8);
  margin: 0 0 6px;
  line-height: 1.3;
}
.experience-card p {
  color: var(--gray-web);
  font-size: var(--fs-10);
  line-height: 1.65;
  margin: 0;
}

/* ── PAGE INTRO BLOCK ── */
.page-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  padding-inline: 4px;
}
.page-intro p {
  color: var(--gray-web);
  font-size: var(--fs-9);
  line-height: 1.75;
  margin: 0 0 12px;
  text-wrap: pretty;
}
.page-intro p:last-child { margin-bottom: 0; }

/* ── PACKAGES LIST — finder, toolbar, island links ── */
.pkg-finder {
  margin-top: -36px;
  position: relative;
  z-index: 2;
  padding-bottom: 8px;
}
.pkg-finder-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-16, 16px);
  padding: 18px;
  box-shadow: var(--shadow-2);
}
.pkg-finder-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg-finder-field label {
  font-family: var(--ff-montserrat);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--oxford-blue);
}
.pkg-finder-field input,
.pkg-finder-field select {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--gunmetal);
  background: var(--surface-alt, #f7f9fc);
}
.pkg-finder-field input:focus,
.pkg-finder-field select:focus {
  outline: 2px solid color-mix(in srgb, var(--bright-navy-blue) 35%, transparent);
  border-color: var(--bright-navy-blue);
}
.pkg-finder-submit { width: 100%; justify-content: center; min-height: 48px; }

.pkg-toolbar {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft, hsl(214, 20%, 90%));
}
.pkg-toolbar-head {
  max-width: 40rem;
}
.pkg-toolbar-head h2 {
  font-family: var(--ff-abril-fatface, var(--ff-fraunces, Georgia, serif));
  color: var(--oxford-blue);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.pkg-toolbar-meta {
  margin: 0;
  color: hsl(214, 12%, 42%);
  font-size: 0.95rem;
  line-height: 1.55;
  white-space: normal;
}
.pkg-toolbar-meta #pkg-count {
  font-weight: 700;
  color: var(--oxford-blue);
  font-variant-numeric: tabular-nums;
}
.pkg-toolbar-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-filter-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.pkg-filter-label {
  display: block;
  font-family: var(--ff-montserrat);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: hsl(214, 10%, 48%);
}
.pkg-toolbar .pkg-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  width: 100%;
}
.pkg-toolbar .filter-tab {
  padding: 9px 16px;
  min-height: 40px;
  font-size: 0.8rem;
}
.pkg-filter-tabs--occasion { margin-bottom: 0; }
@media (min-width: 700px) {
  .pkg-filter-row {
    flex-direction: row;
    align-items: center;
    gap: 16px 20px;
  }
  .pkg-filter-label {
    flex: 0 0 5.5rem;
    padding-top: 0;
  }
  .pkg-toolbar .pkg-filter-tabs {
    flex: 1;
    width: auto;
  }
}
.pkg-empty {
  text-align: center;
  color: var(--gray-web);
  padding: 28px 12px 8px;
  font-size: var(--fs-9);
}
.pkg-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.pkg-more-wrap[hidden] { display: none; }
.pkg-more-btn {
  min-width: min(280px, 100%);
}
.package-card .price-note {
  display: block;
  margin-top: 2px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: none;
}
.detail-stay {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--surface-alt);
  color: var(--gunmetal);
  font-size: var(--fs-9);
}
.detail-meal-plan {
  margin: 0 0 16px;
}
.detail-meal-plan a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-montserrat);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  color: var(--bright-navy-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}
.detail-meal-plan a:hover {
  color: var(--yale-blue);
  text-decoration: underline;
}
.pkg-dests { background: var(--white); }
.pkg-dest-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}
.pkg-dest-grid a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  text-decoration: none;
  background:
    linear-gradient(135deg, hsla(210, 40%, 98%, 0.95), hsla(199, 55%, 96%, 0.9));
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.pkg-dest-grid a:hover {
  border-color: var(--bright-navy-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-1);
}
.pkg-dest-grid span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-web);
  font-weight: 600;
}
.pkg-dest-grid strong {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: var(--fs-7);
  font-weight: 700;
}
@media (min-width: 575px) {
  .pkg-finder-form {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
  .pkg-finder-submit { grid-column: 1 / -1; }
  .pkg-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .pkg-finder { margin-top: -48px; }
  .pkg-finder-form {
    grid-template-columns: 1.4fr 1fr 1fr auto;
    padding: 20px 22px;
  }
  .pkg-finder-submit {
    grid-column: auto;
    width: auto;
    min-width: 180px;
  }
  .pkg-toolbar {
    gap: 32px;
    margin-bottom: 36px;
    padding-bottom: 32px;
  }
  .pkg-dest-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

/* ── INCLUSION LIST ── */
.inclusion-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .inclusion-grid { grid-template-columns: repeat(2, 1fr); } }
.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--cultured);
  border-radius: var(--radius-8);
}
.inclusion-item ion-icon,
.inclusion-item .ion-icon-fallback { color: var(--bright-navy-blue); font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.inclusion-item strong { display: block; font-family: var(--ff-montserrat); color: var(--oxford-blue); font-size: var(--fs-9); margin-bottom: 4px; }
.inclusion-item span { color: var(--gray-web); font-size: var(--fs-10); line-height: 1.5; }

.faq-category-title {
  font-family: var(--ff-montserrat);
  color: var(--oxford-blue);
  font-size: var(--fs-5);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--bright-navy-blue);
}
.faq-category-title:first-child { margin-top: 0; }
.faq-a a { color: var(--bright-navy-blue); text-decoration: underline; }

/* ==========================================================================
   PROFESSIONAL POLISH — layout rhythm & refinements
   ========================================================================== */

/* subtle decorative background — use on selected sections only */
.section.section-bg-image {
  position: relative;
  background:
    linear-gradient(hsla(0, 0%, 100%, 0.91), hsla(0, 0%, 100%, 0.91)),
    url("../images/backgrounds/bg.jpeg") center / cover no-repeat;
  background-attachment: scroll;
}
.section.section-bg-image.section-alt,
.section.section-bg-image.package,
.section.section-bg-image.why-us {
  background:
    linear-gradient(hsla(210, 33%, 98%, 0.9), hsla(210, 33%, 98%, 0.9)),
    url("../images/backgrounds/bg.jpeg") center / cover no-repeat;
}
@media (min-width: 992px) {
  .section.section-bg-image { background-attachment: fixed; }
  .section.section-bg-image.section-alt,
  .section.section-bg-image.package,
  .section.section-bg-image.why-us {
    background-attachment: fixed;
  }
}

/* subtle section backgrounds — content blocks only */
.section.package,
.section.why-us,
.section.section-alt { background: var(--surface-alt); }

/* CTA band */
.cta {
  background: linear-gradient(135deg, var(--bright-navy-blue) 0%, var(--yale-blue) 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, hsla(0, 0%, 100%, 0.08), transparent);
  pointer-events: none;
}
.cta .cta-title { letter-spacing: -0.02em; text-transform: none; }
.cta .cta-text { line-height: 1.7; max-width: 520px; }

/* FAQ accordion */
.faq-item {
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item:hover { box-shadow: var(--shadow-2); }
.faq-q { padding: 20px 22px; font-size: var(--fs-9); line-height: 1.45; }

/* trust badges */
.section.trust {
  background: var(--white);
}
.section.trust.section-alt {
  background: var(--surface-alt);
}
.trust-badge-note {
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
  font-size: var(--fs-10);
  line-height: 1.65;
  color: var(--gray-web);
}
.trust-badge-note a {
  color: var(--bright-navy-blue);
  font-weight: 600;
}

.gallery-head .section-text {
  max-width: 560px;
  margin-inline: auto;
  line-height: 1.7;
  color: var(--text-muted);
}
.gallery-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.gallery-cta .btn { min-width: 200px; }

/* Home gallery preview — editorial header + framed mosaic */
.home-gallery {
  background:
    linear-gradient(180deg, hsl(210, 28%, 97%) 0%, var(--white) 42%, var(--white) 100%);
}
.home-gallery-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.home-gallery-intro {
  max-width: 38rem;
}
.home-gallery-intro .section-title {
  text-align: left;
  display: inline-block;
  position: relative;
  margin-bottom: 14px;
  padding-bottom: 14px;
}
.home-gallery-intro .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(110px, 70%);
  height: 8px;
  background: var(--title-wave-img) left center / 100% 100% no-repeat;
}
.home-gallery-intro .section-subtitle {
  text-align: left;
}
.home-gallery-intro .section-text {
  text-align: left;
  margin: 0;
  max-width: 42ch;
  color: var(--gray-web);
  line-height: 1.7;
}
.home-gallery-cta {
  display: none;
}
.home-gallery-mobile-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.home-gallery-frame {
  position: relative;
  padding: 8px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 44px hsla(210, 40%, 18%, 0.08);
}
.home-gallery-grid.gallery-grid {
  gap: 8px;
  grid-auto-rows: 140px;
  border-radius: 16px;
  overflow: hidden;
}
.home-gallery-grid .gallery-item {
  border-radius: 12px;
}
.home-gallery-grid .gallery-item--hero {
  border-radius: 14px;
}
.home-gallery-grid .gallery-caption {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.home-gallery-grid .gallery-item:hover .gallery-caption,
.home-gallery-grid .gallery-item:focus-visible .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.home-gallery-grid .gallery-item--hero .gallery-caption {
  opacity: 1;
  transform: none;
}
/* Explicit mosaic so no empty cells (overrides dense auto-pack holes) */
@media (min-width: 768px) and (max-width: 1099.98px) {
  .home-gallery-grid.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 168px);
    grid-auto-rows: unset;
    grid-auto-flow: unset;
  }
  .home-gallery-grid .gallery-item--hero,
  .home-gallery-grid .gallery-item--tall,
  .home-gallery-grid .gallery-item--wide,
  .home-gallery-grid .gallery-item--square {
    grid-column: auto;
    grid-row: auto;
  }
  .home-gallery-grid .gallery-item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
  .home-gallery-grid .gallery-item:nth-child(2) { grid-area: 1 / 3 / 3 / 4; }
  .home-gallery-grid .gallery-item:nth-child(3) { grid-area: 3 / 1 / 4 / 2; }
  .home-gallery-grid .gallery-item:nth-child(4) { grid-area: 3 / 2 / 4 / 3; }
  .home-gallery-grid .gallery-item:nth-child(5) { grid-area: 3 / 3 / 5 / 4; }
  .home-gallery-grid .gallery-item:nth-child(6) { grid-area: 4 / 1 / 5 / 3; }
  .home-gallery-grid .gallery-item:nth-child(n+7) { display: none; }
}
@media (min-width: 1100px) {
  .home-gallery-grid.gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 196px);
    grid-auto-rows: unset;
    grid-auto-flow: unset;
  }
  .home-gallery-grid .gallery-item--hero,
  .home-gallery-grid .gallery-item--tall,
  .home-gallery-grid .gallery-item--wide,
  .home-gallery-grid .gallery-item--square {
    grid-column: auto;
    grid-row: auto;
  }
  .home-gallery-grid .gallery-item:nth-child(1) { grid-area: 1 / 1 / 3 / 3; }
  .home-gallery-grid .gallery-item:nth-child(2) { grid-area: 1 / 3 / 3 / 4; }
  .home-gallery-grid .gallery-item:nth-child(3) { grid-area: 1 / 4 / 2 / 5; }
  .home-gallery-grid .gallery-item:nth-child(4) { grid-area: 2 / 4 / 3 / 5; }
  .home-gallery-grid .gallery-item:nth-child(5) { grid-area: 3 / 1 / 4 / 2; }
  .home-gallery-grid .gallery-item:nth-child(6) { grid-area: 3 / 2 / 4 / 3; }
  .home-gallery-grid .gallery-item:nth-child(7) { grid-area: 3 / 3 / 4 / 4; }
  .home-gallery-grid .gallery-item:nth-child(8) { grid-area: 3 / 4 / 4 / 5; }
}
@media (min-width: 768px) {
  .home-gallery-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 32px;
  }
  .home-gallery-cta {
    display: inline-flex;
    flex-shrink: 0;
    min-width: 180px;
  }
  .home-gallery-mobile-cta { display: none; }
  .home-gallery-frame { padding: 10px; }
  .home-gallery-grid.gallery-grid { gap: 10px; }
}
@media (max-width: 767.98px) {
  .home-gallery .container {
    overflow: visible;
    padding-inline: 16px;
  }
  .home-gallery-frame {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
  }
  .home-gallery-grid.gallery-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    border-radius: 0;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    padding-block: 4px 10px;
    padding-inline: 16px;
    margin-inline: -16px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    grid-template-columns: unset !important;
    grid-auto-rows: unset !important;
  }
  .home-gallery-grid.gallery-grid::-webkit-scrollbar { display: none; }
  .home-gallery-grid .gallery-item,
  .home-gallery-grid .gallery-item--hero,
  .home-gallery-grid .gallery-item--tall,
  .home-gallery-grid .gallery-item--wide,
  .home-gallery-grid .gallery-item--square {
    flex: 0 0 82% !important;
    width: 82% !important;
    max-width: 82% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 3 / 4;
    grid-area: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    scroll-snap-align: center;
    scroll-snap-stop: normal;
    border-radius: 14px;
    pointer-events: auto;
  }
  .home-gallery-grid .gallery-caption {
    opacity: 1;
    transform: none;
  }
  .home-gallery-grid .gallery-item img {
    pointer-events: none;
    -webkit-user-drag: none;
  }
}

/* process steps */
.process-step {
  border: 1px solid var(--border-soft);
  transition: box-shadow 0.2s ease;
}
.process-step:hover { box-shadow: var(--shadow-2); }

/* value cards */
.value-card {
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* destination page cards — refined in destinations page cards block above */

/* inquiry / contact panels */
.inquiry-form,
.contact-details,
.booking-summary,
.booking-steps,
.booking-help {
  border: 1px solid var(--border-soft);
}

/* desktop refinements */
@media (min-width: 992px) {
  :root {
    --section-padding: 88px;
    --fs-1: clamp(2.75rem, 3.6vw, 3.5rem);
    --fs-2: clamp(2.1rem, 2.6vw, 2.8rem);
  }

  .container { padding-inline: clamp(24px, 3.5vw, 32px); }

  .header-inner { gap: 20px; }
  .navbar-list { gap: 4px; }
  .navbar-link { padding: 8px 12px; white-space: nowrap; }
  .navbar-link::after { left: 12px; right: 12px; }
  .header-actions { gap: 14px; }

  .hero-content { padding-right: 40px; }
  .hero-body { padding-block: 88px 28px; }
  .hero-sub, .hero-text { max-width: 560px; }

  .section-head { margin-bottom: 52px; }
  .section-head .section-title,
  .section-head .h2.section-title { margin-bottom: 14px; }

  .grid-list { gap: 28px; }
  .packages-grid { gap: 24px; }

  .popular-card .card-img { height: 380px; min-height: 380px; }
  .popular-card .card-content { padding: 20px 20px 18px; }

  .package-card .card-banner { width: 280px; flex-basis: 280px; }
  .package-card .card-content { padding: 24px 26px; }
  .package-card .card-price { min-width: 200px; max-width: 220px; padding: 24px; }

  .filter-tabs, .pkg-filter-tabs, .gallery-filters {
    gap: 12px;
    margin-bottom: 44px;
    justify-content: center;
  }

  .why-grid { gap: 22px; }
  .why-card { padding: 36px 24px; }
  .services-grid { gap: 22px; }
  .service-card { padding: 24px 22px; }

  .testimonials-grid { gap: 24px; }
  .testimonial-card { padding: 30px 26px 24px; height: 100%; }

  .process-grid { gap: 22px; }
  .process-step { padding: 32px 20px; height: 100%; }

  .experience-grid { gap: 22px; }
  .experience-card { padding: 24px; height: 100%; }

  .trust-badges { gap: 22px; }
  .trust-badge { padding: 28px 18px; min-height: 128px; height: 100%; }
  .gallery-cta { margin-top: 44px; }

  .cta .container { gap: 32px; align-items: center; }
  .cta-actions { flex-shrink: 0; }

  .footer-top { padding-block: 56px 40px; }
  .footer-top .container { column-gap: 96px; }
  .footer-brand .footer-logo {
    padding: 0;
    margin-bottom: 0;
    background: none;
  }
  .footer-brand .footer-logo img {
    height: 120px;
    max-width: 340px;
  }
  .footer-brand .footer-text { max-width: 56ch; font-size: 0.95rem; }
  .footer-link { min-height: 0; padding-block: 8px; }
  .footer-bottom-link { min-height: 0; padding-block: 4px; }
  .footer-list-title { font-size: 0.78rem; margin-bottom: 20px; }

  .page-hero {
    min-height: 42vh;
    padding-block: 150px 72px;
  }
  .page-hero h1 { margin-bottom: 14px; }
  .page-intro { margin-bottom: 48px; }

  .detail-layout { gap: 48px; }
  .detail-sidebar .sidebar-card { top: 100px; padding: 28px; }
  .inquiry-form { padding: 36px 40px; }

  .contact-grid, .booking-grid { gap: 28px; }
  .contact-details, .booking-summary, .booking-steps, .booking-help { padding: 20px; }
  .booking-form-panel { padding: 28px 26px; }

  .dest-page-grid { gap: 30px; }
  .dest-page-card-img { height: 240px; }
  .dest-page-card-body { padding: 24px 24px 20px; }

  .timeline { gap: 22px; }
  .values-grid { gap: 24px; }
  .value-card { padding: 36px 28px; height: 100%; }

  .form-row { gap: 20px; margin-bottom: 20px; }
  .form-group { margin-bottom: 20px; }

  .faq-category-title { margin: 40px 0 18px; }
  .faq-q { padding: 20px 24px; }
  .legal-content h2 { margin: 32px 0 14px; }

  .go-top {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: calc(24px + env(safe-area-inset-right, 0px));
  }
  .whatsapp-float {
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    left: calc(24px + env(safe-area-inset-left, 0px));
  }
}

@media (min-width: 1100px) {
  .navbar-link { padding: 8px 14px; font-size: 0.8125rem; }
  .navbar-link::after { left: 14px; right: 14px; }
  .header-actions { gap: 18px; }
  .popular-card .card-img { height: 400px; min-height: 400px; }
  .package-card {
    min-height: 340px;
    height: auto;
  }
  .package-card .card-banner { width: 300px; flex: 0 0 300px; }
}

@media (min-width: 1280px) {
  .container { max-width: 1200px; }
  .section-head { max-width: 760px; }
  .hero-content { max-width: 720px; }
  .popular-card .card-img { height: 420px; min-height: 420px; }
  .grid-list { gap: 30px; }
  .packages-grid { gap: 26px; }
}

/* Equal-height card rows on desktop grids */
@media (min-width: 768px) {
  .testimonials-grid,
  .process-grid,
  .why-grid,
  .values-grid,
  .trust-badges,
  .services-grid {
    align-items: stretch;
  }
}

/* Destinations page: 3-col on large desktop */
@media (min-width: 1100px) {
  .dest-page-grid { grid-template-columns: repeat(3, 1fr); }
}

/* selection color */
::selection {
  background: hsla(214, 57%, 51%, 0.2);
  color: var(--oxford-blue);
}

/* skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--bright-navy-blue);
  color: var(--white);
  font-weight: 600;
  font-size: var(--fs-9);
  border-radius: var(--radius-8);
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* service card enquire link */
.service-card__link {
  display: inline-block;
  margin-top: 10px;
  font-size: var(--fs-10);
  font-weight: 600;
  color: var(--bright-navy-blue);
  text-decoration: none;
}
.service-card__link:hover { text-decoration: underline; }

/* 404 page */
.not-found-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.not-found-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  color: var(--bright-navy-blue);
  margin-bottom: 12px;
}
.not-found-page p { color: var(--gray-web); margin-bottom: 24px; max-width: 480px; margin-inline: auto; }
.not-found-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
