@import url("loader.css");

:root {
  --bg: #fffbf3;
  --bg-elevated: #fff8eb;
  --bg-soft: #f7efe0;
  --text: #2b2118;
  --text-muted: #6b5c4f;
  --text-faint: #9a8b7a;
  --primary: #ff8c42;
  --primary-deep: #e6722a;
  --accent-red: #e63946;
  --sunrise: #ffd447;
  --trust: #4a6fa5;
  --trust-soft: #6b8fc0;
  --white: #ffffff;
  --overlay: rgba(30, 20, 12, 0.55);
  --shadow-sm: 0 4px 14px rgba(43, 33, 24, 0.08);
  --shadow-md: 0 10px 28px rgba(43, 33, 24, 0.12);
  --shadow-lg: 0 18px 40px rgba(43, 33, 24, 0.16);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 350ms;
  --header-h: 72px;
  --max-w: 1180px;
  --page-gutter: 1.25rem;
  --section-y: clamp(2.25rem, 4.5vw, 3.75rem);
  --cta-gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 100%);
  --cta-gradient-hover: linear-gradient(135deg, var(--primary-deep) 0%, #d62839 100%);
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
    --page-gutter: 1rem;
    --section-y: 2.15rem;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light only;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(255, 212, 71, 0.14), transparent 55%),
    radial-gradient(700px 420px at 95% 6%, rgba(255, 140, 66, 0.1), transparent 50%),
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(100% - (var(--page-gutter) * 2), var(--max-w));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section + .section {
  padding-top: calc(var(--section-y) * 0.85);
}

.section-header {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--text);
  text-wrap: balance;
}

.section-lead {
  margin-top: 0.55rem;
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.6vw, 1.02rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    background var(--duration) var(--ease),
    filter var(--duration) var(--ease);
}

.btn-primary {
  color: var(--white);
  background: var(--cta-gradient);
  box-shadow: 0 6px 18px rgba(230, 57, 70, 0.24);
}

.btn-primary:hover {
  background: var(--cta-gradient-hover);
  transform: scale(1.03);
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.32);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 251, 243, 0.9);
  border: 1px solid rgba(43, 33, 24, 0.12);
}

.btn-ghost:hover {
  transform: scale(1.03);
  border-color: var(--primary);
  color: var(--primary-deep);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  flex-shrink: 0;
}

.price-block__original {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-decoration: line-through;
}

.price-block__current {
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  font-weight: 700;
  color: var(--accent-red);
  letter-spacing: -0.02em;
}

.price-block__caption {
  margin-top: 0.15rem;
  font-size: 0.7rem;
  color: var(--text-faint);
  text-transform: lowercase;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.star-rating__stars {
  color: var(--sunrise);
  letter-spacing: 0.04em;
  text-shadow: 0 0 1px rgba(230, 114, 42, 0.35);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--group {
  background: rgba(74, 111, 165, 0.14);
  color: var(--trust);
}

.badge--dedicated {
  background: rgba(255, 140, 66, 0.16);
  color: var(--primary-deep);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 560px) {
  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.86rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    backdrop-filter var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
}

.site-header--scrolled {
  background: rgba(255, 251, 243, 0.86);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 8px 24px rgba(43, 33, 24, 0.08);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.site-header--transparent:not(.site-header--scrolled) .brand-logo__wordmark,
.site-header--transparent:not(.site-header--scrolled) .brand-logo__name,
.site-header--transparent:not(.site-header--scrolled) .nav-desktop a {
  color: rgba(255, 251, 243, 0.95);
  text-shadow: 0 2px 12px rgba(20, 14, 10, 0.35);
}

.site-header--transparent:not(.site-header--scrolled) .nav-desktop a:hover {
  color: var(--white);
}

.site-header--transparent:not(.site-header--scrolled) .nav-desktop a::after {
  background: var(--sunrise);
}

.site-header--transparent:not(.site-header--scrolled) .social-icons__link {
  color: rgba(255, 251, 243, 0.9);
  background: rgba(255, 251, 243, 0.12);
  border-color: rgba(255, 251, 243, 0.2);
}

.site-header--transparent:not(.site-header--scrolled) .menu-toggle {
  background: rgba(255, 251, 243, 0.14);
  border-color: rgba(255, 251, 243, 0.28);
}

.site-header--transparent:not(.site-header--scrolled) .menu-toggle span {
  background: var(--white);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.brand-logo--image {
  line-height: 0;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.brand-logo--sm .brand-logo__image {
  height: 36px;
}

.brand-logo--md .brand-logo__image {
  height: 44px;
}

.brand-logo--lg .brand-logo__image {
  height: 54px;
}

.brand-logo--xl .brand-logo__image {
  height: 68px;
}

.brand-logo--footer .brand-logo__image {
  height: 52px;
}

.brand-logo__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--primary);
}

.brand-logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  min-width: 0;
}

.brand-logo__wordmark {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-logo__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.brand-logo--light .brand-logo__wordmark,
.brand-logo--light .brand-logo__name {
  color: rgba(255, 251, 243, 0.92);
}

.brand-logo--light .brand-logo__mark {
  color: var(--sunrise);
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.7rem, 1.5vw, 1.35rem);
  justify-self: center;
  max-width: 100%;
  overflow: hidden;
}

.nav-desktop a {
  position: relative;
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease);
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.nav-desktop a.is-active {
  color: var(--text);
}

.nav-desktop a.is-active::after {
  transform: scaleX(1);
}

.mobile-drawer a.is-active {
  color: var(--primary);
  font-weight: 600;
}

.header-social {
  justify-self: end;
}

.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.social-icons__link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  background: rgba(43, 33, 24, 0.04);
  border: 1px solid rgba(43, 33, 24, 0.08);
  transition:
    transform var(--duration) var(--ease),
    color var(--duration) var(--ease),
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.social-icons__link svg {
  width: 15px;
  height: 15px;
}

.social-icons__link:hover {
  transform: translateY(-2px) scale(1.05);
}

.social-icons__link--facebook:hover {
  color: #1877f2;
  background: rgba(24, 119, 242, 0.1);
  border-color: rgba(24, 119, 242, 0.25);
}

.social-icons__link--instagram:hover {
  color: #e1306c;
  background: rgba(225, 48, 108, 0.1);
  border-color: rgba(225, 48, 108, 0.25);
}

.social-icons__link--whatsapp {
  position: relative;
}

.social-icons__link--whatsapp:hover {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.3);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.2);
}

.social-icons__link--whatsapp::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--duration) var(--ease);
}

.social-icons__link--whatsapp:hover::after {
  border-color: rgba(37, 211, 102, 0.35);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(43, 33, 24, 0.1);
  background: rgba(255, 251, 243, 0.85);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition:
    transform var(--duration) var(--ease),
    opacity var(--duration) var(--ease);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 251, 243, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
  transition:
    max-height 0.4s var(--ease),
    opacity 0.35s var(--ease);
}

.mobile-drawer.is-open {
  max-height: min(70vh, 420px);
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.mobile-drawer__inner {
  padding: 0.35rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-drawer a {
  padding: 0.7rem 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.mobile-drawer .social-icons {
  margin-top: 0.85rem;
}

@media (max-width: 1040px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .nav-desktop,
  .header-social {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-drawer {
    display: block;
  }
}

@media (max-width: 420px) {
  .brand-logo--md .brand-logo__image {
    height: 38px;
  }
}

.hero {
  position: relative;
  min-height: min(100svh, 880px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  padding-bottom: clamp(0.5rem, 1.5vw, 1rem);
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.04);
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 1.2s ease,
    transform 6s ease-out;
}

.hero__slide--placeholder {
  background: linear-gradient(135deg, #3d2914 0%, #8b5a2b 45%, #c4782a 100%);
  opacity: 1;
  transform: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.48) 0%, rgba(20, 14, 10, 0.28) 42%, rgba(20, 14, 10, 0.72) 100%),
    linear-gradient(90deg, rgba(20, 14, 10, 0.42) 0%, transparent 58%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: min(48%, 360px);
  background: linear-gradient(180deg, transparent 0%, rgba(255, 251, 243, 0.2) 38%, var(--bg) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 1.5rem) 0 1.25rem;
  width: min(100% - (var(--page-gutter) * 2), var(--max-w));
  margin-inline: auto;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 7vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.02;
  max-width: 12ch;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.hero__brand span {
  display: block;
  font-size: 0.36em;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  opacity: 0.88;
  margin-bottom: 0.3rem;
  font-family: var(--font-sans);
}

.hero__headline {
  margin-top: 0.85rem;
  max-width: 24ch;
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 251, 243, 0.94);
}

.hero__sub {
  margin-top: 0.65rem;
  max-width: 34rem;
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  color: rgba(255, 251, 243, 0.82);
  font-weight: 300;
}

.hero__cta {
  align-self: flex-start;
}

.hero__indicators {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0.45rem;
  width: min(100% - (var(--page-gutter) * 2), var(--max-w));
  margin: auto auto 0.65rem;
}

.hero__dot {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 251, 243, 0.35);
  transition:
    width var(--duration) var(--ease),
    background var(--duration) var(--ease);
  padding: 0;
}

.hero__dot.is-active {
  width: 38px;
  background: var(--sunrise);
}

.hero__utility {
  position: relative;
  z-index: 6;
  width: min(100% - (var(--page-gutter) * 2), var(--max-w));
  margin: clamp(1.15rem, 2.8vw, 1.85rem) auto clamp(0.35rem, 1.5vw, 0.75rem);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow:
    0 24px 56px rgba(12, 8, 5, 0.26),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  isolation: isolate;
}

.trip-search {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}

.trip-search__panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1.15fr) auto;
  gap: 0.85rem 1rem;
  align-items: end;
  padding: clamp(1.05rem, 2vw, 1.25rem) clamp(1.05rem, 2.2vw, 1.35rem);
  border-radius: 0;
  background: #f9f6f0;
  border: none;
  box-shadow: none;
}

.trip-search__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  margin: 0;
}

.trip-search__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(43, 33, 24, 0.55);
}

.trip-search input,
.trip-search select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(43, 33, 24, 0.1);
  border-radius: 14px;
  padding: 0.72rem 0.85rem;
  background: var(--white);
  color: var(--text);
  font-size: 0.94rem;
  outline: none;
  transition:
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.trip-search input::placeholder {
  color: var(--text-faint);
}

.trip-search input:focus,
.trip-search select:focus {
  border-color: rgba(255, 140, 66, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.14);
}

.trip-search__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
}

.trip-search__browse,
.trip-search__submit {
  min-height: 46px;
  padding-inline: clamp(1rem, 2vw, 1.35rem);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.trip-search__browse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.12);
  color: var(--text);
}

.trip-search__browse:hover {
  border-color: rgba(43, 33, 24, 0.22);
  color: var(--text);
  background: #fff;
}

.trip-search__submit {
  min-width: 9.25rem;
  box-shadow: 0 10px 26px rgba(230, 57, 70, 0.32);
}

.trip-search__submit:hover {
  box-shadow: 0 14px 32px rgba(230, 57, 70, 0.4);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 1rem;
  }

  .trip-search__panel {
    grid-template-columns: 1fr 1fr;
  }

  .trip-search__actions {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
  }

  .trip-search__browse,
  .trip-search__submit {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .trip-search__panel {
    grid-template-columns: 1fr;
    padding: 0.9rem;
  }

  .hero__utility {
    border-radius: 18px;
  }

  .hero__content {
    justify-content: flex-end;
    padding-bottom: 0.75rem;
    min-height: calc(72svh - var(--header-h));
  }

  .hero__utility {
    margin-top: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide,
  .hero__slide.is-active {
    transition: none;
    transform: none;
  }
}

.destinations {
  padding-top: calc(var(--section-y) * 0.9);
}

.destinations__marquee {
  overflow: hidden;
  padding: 0.35rem 0 0.15rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.destinations__empty {
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 243, 0.72);
  border: 1px dashed rgba(43, 33, 24, 0.12);
}

.packages__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.92rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 243, 0.72);
  border: 1px dashed rgba(43, 33, 24, 0.12);
}

.holiday-packages--home {
  background:
    radial-gradient(720px 340px at 8% 0%, rgba(255, 140, 66, 0.1), transparent 58%),
    radial-gradient(640px 300px at 92% 100%, rgba(74, 111, 165, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(255, 251, 243, 0.4) 0%, var(--bg) 100%);
}

.packages__grid--home {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .packages__grid--home[data-grid-cols="1"] {
    grid-template-columns: minmax(0, 380px);
    justify-content: center;
  }

  .packages__grid--home[data-grid-cols="2"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    margin-inline: auto;
  }

  .packages__grid--home[data-grid-cols="3"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.packages-home-empty {
  padding: 0.5rem 0 0.25rem;
}

.packages-home-empty__card {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.35rem);
  text-align: center;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-md);
}

.packages-home-empty__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.85rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(255, 140, 66, 0.12);
}

.packages-home-empty__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.02em;
}

.packages-home-empty__text {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.packages-home-empty__card .btn {
  margin-top: 1.25rem;
}

.holiday-packages--home .tour-card--premium {
  background: var(--white);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.holiday-packages--home .tour-card--premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.holiday-packages--home .tour-card--grid .tour-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.holiday-packages--home .tour-card--grid .tour-card__actions .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 420px) {
  .holiday-packages--home .tour-card--grid .tour-card__actions {
    grid-template-columns: 1fr;
  }
}

.destinations__track {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  width: max-content;
  animation: destinations-marquee 52s linear infinite;
  will-change: transform;
}

.destinations__track:hover {
  animation-play-state: paused;
}

.destinations__track .destination-card {
  flex: 0 0 clamp(175px, 22vw, 250px);
  width: clamp(175px, 22vw, 250px);
}

@keyframes destinations-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .destinations__marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
    scrollbar-width: none;
  }

  .destinations__marquee::-webkit-scrollbar {
    display: none;
  }

  .destinations__track {
    animation: none;
  }
}

/* Legacy scroller (other pages) */
.destinations__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 250px);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.15rem 0.65rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.destinations__scroller::-webkit-scrollbar {
  display: none;
}

.destination-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  transform: translateY(0) scale(1);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
  cursor: pointer;
  border: none;
  padding: 0;
  background: var(--bg-soft);
  text-align: left;
  isolation: isolate;
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s var(--ease);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(20, 14, 10, 0.55) 72%, rgba(20, 14, 10, 0.82) 100%);
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
  z-index: 1;
}

.destination-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.15rem 1.05rem 1.2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.destination-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  transform: translateY(8px);
  transition: transform 0.4s var(--ease);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.destination-card__blurb {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 251, 243, 0.88);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  max-width: 28ch;
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 251, 243, 0.94);
  box-shadow: 0 8px 20px rgba(20, 14, 10, 0.2);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease),
    background 0.35s var(--ease),
    gap 0.35s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .destination-card:hover,
  .destination-card:focus-visible {
    transform: translateY(-10px) scale(1.015);
    box-shadow: var(--shadow-lg);
    outline: none;
  }

  .destination-card:hover .destination-card__image,
  .destination-card:focus-visible .destination-card__image {
    transform: scale(1.12);
  }

  .destination-card:hover .destination-card__overlay,
  .destination-card:focus-visible .destination-card__overlay {
    opacity: 1;
  }

  .destination-card:hover .destination-card__name,
  .destination-card:focus-visible .destination-card__name {
    transform: translateY(0);
  }

  .destination-card:hover .destination-card__cta,
  .destination-card:focus-visible .destination-card__cta {
    opacity: 1;
    transform: translateY(0);
  }

  .destination-card:hover .destination-card__cta {
    gap: 0.5rem;
    background: #fff;
  }
}

@media (hover: none), (pointer: coarse) {
  .destination-card__overlay {
    opacity: 0.85;
    background: linear-gradient(180deg, transparent 40%, rgba(20, 14, 10, 0.78) 100%);
  }

  .destination-card__name {
    transform: none;
  }

  .destination-card__cta {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .destinations__track .destination-card {
    flex-basis: minmax(175px, 62vw);
    width: min(62vw, 250px);
  }

  .destinations__scroller {
    grid-auto-columns: minmax(175px, 62vw);
    gap: 0.8rem;
  }

  .destination-card__name {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .destination-card,
  .destination-card__image,
  .destination-card__overlay,
  .destination-card__name,
  .destination-card__cta {
    transition: none;
  }
}

.upcoming-tours__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.upcoming-tours__header .section-header {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.upcoming-tours__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}

.upcoming-tours__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(43, 33, 24, 0.12);
  background: rgba(255, 251, 243, 0.95);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition:
    transform var(--duration) var(--ease),
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.upcoming-tours__arrow:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.12);
  box-shadow: var(--shadow-sm);
}

.upcoming-tours__shell {
  position: relative;
}

.upcoming-tours__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.35rem 0.15rem 0.85rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 140, 66, 0.5) transparent;
  -webkit-overflow-scrolling: touch;
}

.upcoming-tours__track::-webkit-scrollbar {
  height: 8px;
}

.upcoming-tours__track::-webkit-scrollbar-track {
  background: rgba(43, 33, 24, 0.05);
  border-radius: 999px;
}

.upcoming-tours__track::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 66, 0.55);
  border-radius: 999px;
}

.upcoming-tours__hint {
  margin-top: 0.15rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .upcoming-tours__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .upcoming-tours__track {
    grid-auto-columns: minmax(240px, 78vw);
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .upcoming-tours__nav {
    align-self: flex-end;
  }

  .upcoming-tours__track {
    grid-auto-columns: minmax(220px, 86vw);
  }
}

/* Upcoming Departures (home page) */

.upcoming-departures__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.upcoming-departures__header .section-header {
  margin-bottom: 0;
  flex: 1;
  min-width: 0;
}

.upcoming-departures__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  padding-bottom: 0.15rem;
}

.upcoming-departures__arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(43, 33, 24, 0.12);
  background: rgba(255, 251, 243, 0.95);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  transition:
    transform var(--duration) var(--ease),
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.upcoming-departures__arrow:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.12);
  box-shadow: var(--shadow-sm);
}

.upcoming-departures__shell {
  position: relative;
}

.upcoming-departures__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 320px);
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.35rem 0.15rem 0.85rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.15rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 140, 66, 0.5) transparent;
  -webkit-overflow-scrolling: touch;
}

.upcoming-departures__track::-webkit-scrollbar {
  height: 8px;
}

.upcoming-departures__track::-webkit-scrollbar-track {
  background: rgba(43, 33, 24, 0.05);
  border-radius: 999px;
}

.upcoming-departures__track::-webkit-scrollbar-thumb {
  background: rgba(255, 140, 66, 0.55);
  border-radius: 999px;
}

.upcoming-departures__hint {
  margin-top: 0.15rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

@media (max-width: 720px) {
  .upcoming-departures__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }

  .upcoming-departures__track {
    grid-auto-columns: minmax(240px, 78vw);
    gap: 0.85rem;
  }
}

@media (max-width: 480px) {
  .upcoming-departures__nav {
    align-self: flex-end;
  }

  .upcoming-departures__track {
    grid-auto-columns: minmax(220px, 86vw);
  }
}

.tour-card {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.tour-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tour-card__media {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.18), rgba(74, 111, 165, 0.16)),
    var(--bg-soft);
}

.tour-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 14, 10, 0.18) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}

.tour-card:hover .tour-card__media::after {
  opacity: 1;
}

.tour-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  opacity: 0;
  transition:
    opacity 0.35s ease,
    transform 0.4s var(--ease);
}

.tour-card__media.is-loaded img {
  opacity: 1;
}

.tour-card:hover .tour-card__media img {
  transform: scale(1.05);
}

.tour-card__badge {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 2;
  max-width: calc(100% - 1.1rem);
}

.tour-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.tour-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.tour-card__desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  padding-top: 0.35rem;
}

/* Horizontal carousel cards — image on top */
.tour-card--carousel {
  grid-template-columns: 1fr;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.tour-card--carousel .tour-card__media {
  aspect-ratio: 16 / 11;
  border-radius: 0;
}

.tour-card--carousel .tour-card__body {
  padding: 0.9rem 1rem 1.05rem;
  flex: 1;
}

.tour-card--carousel .tour-card__footer {
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

.tour-card--carousel .tour-card__footer .btn {
  width: 100%;
}

/* Feed list cards — compact horizontal rows */
.tour-card--feed {
  grid-template-columns: 168px minmax(0, 1fr);
  align-items: stretch;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
  flex-shrink: 0;
  min-height: 148px;
}

.tour-card--feed .tour-card__media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 148px;
  border-radius: 0;
  align-self: stretch;
}

.tour-card--feed .tour-card__body {
  padding: 0.75rem 0.9rem 0.75rem 0;
}

.tour-card--feed .tour-card__footer {
  justify-content: flex-start;
}

.tour-card--feed .tour-card__badge {
  top: 0.5rem;
  left: 0.5rem;
}

/* Grid package cards */
.tour-card--grid {
  grid-template-columns: 1fr;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.tour-card--grid .tour-card__media {
  aspect-ratio: 16 / 11;
  border-radius: 0;
}

.tour-card--grid .tour-card__body {
  padding: 0.85rem 0.95rem 1rem;
  flex: 1;
}

.tour-card--grid .tour-card__footer {
  flex-direction: column;
  align-items: stretch;
}

.tour-card--grid .tour-card__footer .btn {
  width: 100%;
}

@media (max-width: 720px) {
  .tour-card--feed {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 128px;
  }

  .tour-card--feed .tour-card__media {
    min-height: 128px;
  }

  .tour-card--feed .tour-card__body {
    padding: 0.6rem 0.7rem 0.6rem 0;
  }

  .tour-card--feed .tour-card__title {
    font-size: 0.98rem;
  }

  .tour-card--feed .tour-card__desc {
    font-size: 0.82rem;
    -webkit-line-clamp: 2;
  }

  .tour-card--feed .tour-card__footer {
    gap: 0.5rem;
  }

  .tour-card--feed .btn-sm {
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 480px) {
  .tour-card--feed {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tour-card--feed .tour-card__media {
    aspect-ratio: 16 / 9;
    min-height: 0;
    height: auto;
  }

  .tour-card--feed .tour-card__body {
    padding: 0.75rem 0.85rem 0.9rem;
  }

  .tour-card--feed .tour-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .tour-card--feed .btn {
    width: 100%;
  }
}

.packages__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

@media (max-width: 1100px) {
  .packages__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .packages__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

.philosophy {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 4.5rem) 0;
  color: var(--white);
}

.philosophy__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(43, 33, 24, 0.72), rgba(74, 111, 165, 0.45)),
    url("https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?ixlib=rb-4.0.3&auto=format&fit=crop&w=1800&q=80")
      center / cover no-repeat;
}

.philosophy__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.philosophy__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}

.philosophy__blob--one {
  width: min(280px, 60vw);
  height: min(280px, 60vw);
  background: rgba(255, 140, 66, 0.55);
  top: -60px;
  left: -30px;
}

.philosophy__blob--two {
  width: min(240px, 55vw);
  height: min(240px, 55vw);
  background: rgba(255, 212, 71, 0.4);
  right: -40px;
  bottom: -70px;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
  margin-inline: auto;
  padding-inline: 0.25rem;
}

.philosophy__quote {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.5vw, 3.1rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.philosophy__copy {
  margin-top: 1rem;
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 251, 243, 0.88);
  max-width: 34rem;
  margin-inline: auto;
}

.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(560px 300px at 12% 18%, rgba(255, 140, 66, 0.16), transparent 60%),
    radial-gradient(480px 280px at 90% 72%, rgba(255, 212, 71, 0.16), transparent 55%),
    linear-gradient(180deg, #fff4df 0%, var(--bg) 100%);
}

.testimonials__texture {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(43, 33, 24, 0.25) 12px,
      rgba(43, 33, 24, 0.25) 13px
    );
  pointer-events: none;
}

.testimonials__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.15rem, 3vw, 2.25rem);
  align-items: center;
}

.testimonials__intro .section-title {
  max-width: 16ch;
}

.testimonials__stage {
  position: relative;
  min-width: 0;
}

.postcard {
  position: relative;
  border-radius: 18px;
  padding: clamp(1.15rem, 2.5vw, 1.85rem);
  background:
    linear-gradient(145deg, rgba(255, 251, 243, 0.98), rgba(255, 244, 223, 0.96));
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow:
    0 16px 40px rgba(43, 33, 24, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
  min-height: 0;
}

.postcard__stamp {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 64px;
  height: 64px;
  border: 2px dashed rgba(74, 111, 165, 0.45);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--trust);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.15;
  transform: rotate(8deg);
  background: rgba(74, 111, 165, 0.06);
}

.postcard__quote-mark {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.7;
  color: var(--primary);
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.postcard__track {
  display: flex;
  transition: transform 0.55s var(--ease);
}

.postcard__slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding-right: 4.5rem;
}

.postcard__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 30ch;
  margin-bottom: 1.1rem;
}

.postcard__person {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.postcard__photo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 140, 66, 0.35);
  box-shadow: var(--shadow-sm);
}

.postcard__name {
  font-weight: 700;
  font-size: 0.98rem;
}

.postcard__trip {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.95rem;
}

.testimonials__arrows {
  display: flex;
  gap: 0.45rem;
}

.testimonials__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(43, 33, 24, 0.12);
  background: rgba(255, 251, 243, 0.9);
  color: var(--text);
  display: grid;
  place-items: center;
  transition:
    transform var(--duration) var(--ease),
    background var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.testimonials__arrow:hover {
  transform: scale(1.05);
  border-color: var(--primary);
  background: rgba(255, 140, 66, 0.12);
}

.testimonials__dots {
  display: flex;
  gap: 0.35rem;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(43, 33, 24, 0.18);
  padding: 0;
  transition:
    width var(--duration) var(--ease),
    background var(--duration) var(--ease);
}

.testimonials__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--primary);
}

@media (max-width: 900px) {
  .testimonials__layout {
    grid-template-columns: 1fr;
  }

  .testimonials__intro .section-title {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .postcard__stamp {
    width: 52px;
    height: 52px;
    font-size: 0.5rem;
    top: 0.65rem;
    right: 0.65rem;
  }

  .postcard__slide {
    padding-right: 3.5rem;
  }

  .postcard__photo {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .postcard__track {
    transition: none;
  }
}

.blog__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1.1rem;
  align-items: stretch;
}

.article-card {
  --i: 0;
  min-width: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.07);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(28px);
  animation: articleIn 0.7s var(--ease) forwards;
  animation-delay: calc(0.08s * var(--i) + 0.05s);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.is-visible .article-card,
.reveal.is-visible .article-card {
  /* keep animation as primary entrance */
}

.article-card__hit {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.article-card__media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.16), rgba(74, 111, 165, 0.14)),
    var(--bg-soft);
}

.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.45s ease,
    transform 0.55s var(--ease);
}

.article-card__media.is-loaded img {
  opacity: 1;
  transform: scale(1);
}

.article-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20, 14, 10, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.article-card__body {
  padding: 1.05rem 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.article-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-faint);
  letter-spacing: 0.02em;
}

.article-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.14);
  color: var(--primary-deep);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.article-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
}

.article-card__excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.article-card__link {
  margin-top: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-deep);
  transition: gap 0.35s var(--ease), color 0.35s var(--ease);
}

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

.article-card:hover .article-card__media img {
  transform: scale(1.08);
}

.article-card:hover .article-card__shade {
  opacity: 1;
}

.article-card:hover .article-card__link {
  gap: 0.55rem;
  color: var(--accent-red);
}

.article-card--featured {
  grid-row: span 1;
}

.article-card--featured .article-card__media {
  aspect-ratio: 16 / 12.5;
}

.article-card--featured .article-card__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

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

@media (max-width: 980px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-card--featured {
    grid-column: 1 / -1;
  }

  .article-card--featured .article-card__media {
    aspect-ratio: 21 / 10;
  }
}

@media (max-width: 640px) {
  .blog__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .article-card--featured .article-card__media {
    aspect-ratio: 16 / 11;
  }
}

@media (prefers-reduced-motion: reduce) {
  .article-card {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .article-card:hover {
    transform: none;
  }
}

.site-footer {
  background:
    linear-gradient(180deg, rgba(43, 33, 24, 0.03), rgba(43, 33, 24, 0.06)),
    #2b2118;
  color: rgba(255, 251, 243, 0.9);
  padding-top: clamp(2.5rem, 5vw, 3.75rem);
}

.site-footer a {
  color: rgba(255, 251, 243, 0.78);
  transition: color var(--duration) var(--ease);
}

.site-footer a:hover {
  color: var(--sunrise);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.95fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.footer__tagline {
  margin: 0.85rem 0 0;
  max-width: 34ch;
  color: rgba(255, 251, 243, 0.7);
  font-size: 0.9rem;
  line-height: 1.65;
}

.footer__brand p {
  margin-top: 0.75rem;
  max-width: 28ch;
  color: rgba(255, 251, 243, 0.7);
  font-size: 0.9rem;
}

.footer__social.social-icons,
.footer__brand .social-icons {
  margin-top: 1.1rem;
}

.footer__brand .social-icons__link {
  color: rgba(255, 251, 243, 0.85);
  background: rgba(255, 251, 243, 0.08);
  border-color: rgba(255, 251, 243, 0.12);
}

.footer__contact-panel {
  border-top: 1px solid rgba(255, 251, 243, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.footer__contact-panel-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem) 0;
}

.footer__contact-block h3,
.footer__offices-block h3,
.footer__col h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 0 0 0.85rem;
  color: var(--white);
}

.footer__contact-lines {
  display: grid;
  gap: 0.55rem;
}

.footer__contact-line {
  color: rgba(255, 251, 243, 0.82);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer__contact-line--email {
  font-weight: 600;
  word-break: break-word;
}

.footer__contact-line:hover,
.footer__phone-list a:hover {
  color: var(--sunrise);
}

.footer__phone-list {
  display: grid;
  gap: 0.35rem;
}

.footer__phone-list a {
  color: rgba(255, 251, 243, 0.78);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.footer__hours {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: rgba(255, 251, 243, 0.52);
}

.footer__offices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.footer__office-card {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(255, 251, 243, 0.05);
  border: 1px solid rgba(255, 251, 243, 0.08);
}

.footer__office-card h4 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 251, 243, 0.95);
}

.footer__office-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 251, 243, 0.62);
}

.footer__office-card a {
  width: fit-content;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sunrise);
  text-decoration: none;
}

.footer__office-card a:hover {
  color: var(--white);
}

.footer__col h3 {
  margin-bottom: 0.75rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.footer__dest-count {
  color: rgba(255, 251, 243, 0.42);
  font-weight: 500;
}

.site-marquee {
  border-top: 1px solid rgba(255, 251, 243, 0.08);
  background: rgba(12, 10, 8, 0.35);
  overflow: hidden;
}

.site-marquee__viewport {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.site-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  padding: 0.65rem var(--page-gutter);
  animation: site-marquee-scroll 42s linear infinite;
  white-space: nowrap;
}

.site-marquee__item {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 251, 243, 0.72);
}

.site-marquee__sep {
  color: rgba(255, 140, 66, 0.75);
  font-size: 0.55rem;
  line-height: 1;
}

@keyframes site-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.footer__bottom {
  border-top: 1px solid rgba(255, 251, 243, 0.1);
  padding: 1.15rem 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.84rem;
  color: rgba(255, 251, 243, 0.55);
}

.footer__bottom-copy {
  display: grid;
  gap: 0.35rem;
  max-width: min(100%, 42rem);
}

.footer__copyright {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 251, 243, 0.82);
}

.footer__about {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 251, 243, 0.52);
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-self: center;
}

@media (prefers-reduced-motion: reduce) {
  .site-marquee__viewport {
    mask-image: none;
  }

  .site-marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
    row-gap: 0.35rem;
  }

  .site-marquee__sep {
    display: none;
  }
}

@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__legal {
    align-self: flex-start;
  }
}

@media (max-width: 1040px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contact-panel-inner {
    grid-template-columns: 1fr;
  }

  .footer__offices-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .footer__offices-grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-actions .btn {
  padding: 0.55rem 0.95rem;
  font-size: 0.82rem;
}

@media (max-width: 1040px) {
  .header-actions .btn {
    display: none;
  }
}

.page-inner .site-header {
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(12px);
}

.page-banner {
  padding: calc(var(--header-h) + 2.5rem) 0 2rem;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(255, 212, 71, 0.18), transparent 60%),
    radial-gradient(600px 280px at 90% 20%, rgba(255, 140, 66, 0.12), transparent 55%),
    var(--bg-elevated);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.page-banner__inner {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.page-banner__inner .section-lead {
  margin-inline: auto;
}

.philosophy--page {
  margin-top: 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1.35rem;
}

.hero__actions .btn {
  min-height: 48px;
  padding: 0.82rem 1.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 999px;
}

.hero__actions .btn-primary {
  border: 1px solid transparent;
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.34);
}

.hero__actions .btn-primary:hover {
  box-shadow: 0 14px 32px rgba(230, 57, 70, 0.42);
}

.hero__actions .hero__cta-secondary {
  color: rgba(255, 251, 243, 0.98);
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(255, 251, 243, 0.45);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.hero__actions .hero__cta-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 251, 243, 0.72);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.hero__actions .hero__cta-secondary:active {
  transform: translateY(0);
}

.section-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.home-trust {
  position: relative;
  z-index: 4;
  margin-top: clamp(-2.5rem, -5.5vw, -1.5rem);
  padding: 0 0 clamp(0.5rem, 1.5vw, 0.85rem);
}

.home-trust--hero-stack {
  margin-top: 0;
  padding: 0;
  z-index: 1;
  width: 100%;
  display: block;
}

.home-trust--hero-stack .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.home-trust--hero-stack .home-trust__panel {
  width: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  border-top: 1px solid rgba(43, 33, 24, 0.08);
  background: var(--white);
}

.home-trust--hero-stack .home-trust__panel.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.home-trust .container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.home-trust__panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(43, 33, 24, 0.07);
  box-shadow:
    0 24px 56px rgba(43, 33, 24, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.home-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(1.4rem, 3vw, 1.85rem) clamp(1rem, 2.2vw, 1.35rem);
  text-align: center;
  min-height: 6.5rem;
}

.home-trust--hero-stack .home-trust__item {
  min-height: 5.85rem;
  padding: clamp(1.15rem, 2.5vw, 1.55rem) clamp(0.85rem, 1.8vw, 1.15rem);
}

.home-trust__item:not(:last-child) {
  border-right: 1px solid rgba(43, 33, 24, 0.08);
}

.home-trust__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
}

.home-trust__label {
  margin: 0;
  max-width: 11rem;
  font-size: clamp(0.82rem, 1.4vw, 0.9rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--text-muted);
  text-wrap: balance;
}

@media (max-width: 768px) {
  .home-trust:not(.home-trust--hero-stack) {
    margin-top: clamp(-1.35rem, -3vw, -0.85rem);
    padding-bottom: 0.35rem;
  }

  .home-trust--hero-stack {
    margin-top: 0;
    padding-bottom: 0;
  }

  .home-trust__panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-trust__item {
    min-height: 5.75rem;
    padding: 1.25rem 1rem;
  }

  .home-trust__item:nth-child(2) {
    border-right: none;
  }

  .home-trust__item:nth-child(1),
  .home-trust__item:nth-child(2) {
    border-bottom: 1px solid rgba(43, 33, 24, 0.07);
  }

  .home-trust__item:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(43, 33, 24, 0.07);
  }
}

@media (max-width: 420px) {
  .home-trust__item {
    min-height: 5.25rem;
    padding: 1.1rem 0.75rem;
    gap: 0.45rem;
  }

  .home-trust__label {
    font-size: 0.78rem;
    max-width: 10rem;
  }
}

.hero + .destinations,
.home-trust + .destinations {
  padding-top: clamp(2rem, 4vw, 2.75rem);
}

.home-main--no-destinations .hero + .holiday-packages,
.home-main--no-destinations .home-trust + .holiday-packages {
  padding-top: clamp(1.75rem, 3.5vw, 2.5rem);
}

.home-main--mid-compact .home-trust--hero-stack {
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.home-main--mid-compact .hero + .home-links,
.home-main--mid-compact .home-trust + .home-links {
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
}

.home-main--no-packages .destinations + .home-links,
.home-main--no-destinations:not(.home-main--no-packages) .holiday-packages + .home-links {
  margin-top: 0;
}

.home-links {
  background:
    radial-gradient(720px 320px at 0% 100%, rgba(255, 140, 66, 0.07), transparent 58%),
    radial-gradient(640px 280px at 100% 0%, rgba(74, 111, 165, 0.06), transparent 55%),
    var(--bg-elevated);
  border-top: 1px solid rgba(43, 33, 24, 0.06);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.home-links .section-header {
  max-width: 36rem;
}

.home-links__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.15rem);
  align-items: stretch;
}

.home-links__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.35rem 1.4rem 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 33, 24, 0.07);
  overflow: hidden;
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease),
    border-color var(--duration) var(--ease);
}

.home-links__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--cta-gradient);
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition:
    opacity var(--duration) var(--ease),
    transform var(--duration) var(--ease);
}

.home-links__card:hover,
.home-links__card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 140, 66, 0.22);
}

.home-links__card:hover::before,
.home-links__card:focus-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.home-links__card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.home-links__eyebrow {
  display: inline-block;
  width: max-content;
  max-width: 100%;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-deep);
  font-weight: 700;
}

.home-links__title {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.6vw, 1.22rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.22;
  color: var(--text);
}

.home-links__desc {
  margin: 0;
  flex: 1 1 auto;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-links__go {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(43, 33, 24, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-faint);
  transition: color var(--duration) var(--ease), gap var(--duration) var(--ease);
}

.home-links__go span[aria-hidden="true"] {
  display: inline-block;
  transition: transform var(--duration) var(--ease);
}

.home-links__card:hover .home-links__go,
.home-links__card:focus-visible .home-links__go {
  color: var(--primary-deep);
}

.home-links__card:hover .home-links__go span[aria-hidden="true"],
.home-links__card:focus-visible .home-links__go span[aria-hidden="true"] {
  transform: translateX(3px);
}

.site-flash-stack {
  position: fixed;
  top: calc(var(--header-h) + 0.75rem);
  right: 1rem;
  z-index: 9999;
  display: grid;
  gap: 0.65rem;
  width: min(420px, calc(100vw - 2rem));
}

.site-flash {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  border: 1px solid transparent;
  animation: site-flash-in 0.45s var(--ease) both;
}

.site-flash__icon {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.site-flash__title {
  margin: 0 0 0.2rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-flash__text {
  margin: 0;
  line-height: 1.45;
  opacity: 0.95;
}

.site-flash__close {
  border: none;
  background: transparent;
  color: inherit;
  opacity: 0.75;
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.site-flash__close:hover {
  opacity: 1;
}

.site-flash--success {
  background: #f2fbf6;
  color: #145c3a;
  border-color: rgba(31, 157, 99, 0.25);
}

.site-flash--success .site-flash__icon {
  background: rgba(31, 157, 99, 0.16);
  color: #1f9d63;
}

.site-flash--error {
  background: #fff5f4;
  color: #8b1e16;
  border-color: rgba(192, 57, 43, 0.22);
}

.site-flash--error .site-flash__icon {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
}

@keyframes site-flash-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-alert {
  margin-bottom: 1rem;
}

.contact-alert__box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.contact-alert__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.contact-alert__title {
  margin: 0 0 0.25rem;
  font-weight: 700;
  font-size: 0.98rem;
}

.contact-alert__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-alert__box--success {
  background: rgba(31, 157, 99, 0.08);
  border-color: rgba(31, 157, 99, 0.22);
  color: #145c3a;
}

.contact-alert__box--success .contact-alert__icon {
  background: rgba(31, 157, 99, 0.16);
  color: #1f9d63;
}

.contact-alert__box--error {
  background: rgba(192, 57, 43, 0.07);
  border-color: rgba(192, 57, 43, 0.2);
  color: #7a2218;
}

.contact-alert__box--error .contact-alert__icon {
  background: rgba(192, 57, 43, 0.12);
  color: #c0392b;
}

.contact-page__form:has(.contact-alert__box) .contact-form {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.contact-alert__box:focus-within,
.contact-alert__box {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.filter-note {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: start;
}

.contact-page__list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 1rem;
}

.contact-page__list li {
  display: grid;
  gap: 0.2rem;
}

.contact-page__list strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.brand-contact-phones {
  display: grid;
  gap: 0.35rem;
}

.brand-contact-phones a {
  color: inherit;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}

.contact-page__phones a {
  color: var(--text);
}

.contact-page__phones a:hover,
.contact-page__list span a:hover {
  color: var(--primary-deep);
}

.contact-page__list span a {
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
}

.brand-contact-offices {
  display: grid;
  gap: 1.1rem;
}

.brand-contact-office {
  display: grid;
  gap: 0.3rem;
}

.brand-contact-office__city {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.brand-contact-office__address {
  margin: 0;
  line-height: 1.65;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.brand-contact-office__map {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.15rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--primary-deep);
  text-decoration: none;
}

.brand-contact-office__map:hover {
  color: var(--accent-red);
}

.brand-contact-offices--compact {
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.brand-contact-offices--compact .brand-contact-office__city {
  font-size: 0.88rem;
  color: rgba(255, 251, 243, 0.92);
}

.brand-contact-offices--compact .brand-contact-office__address {
  font-size: 0.84rem;
  line-height: 1.55;
  color: rgba(255, 251, 243, 0.68);
}

.contact-page__item--offices .brand-contact-offices {
  margin-top: 0.15rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(43, 33, 24, 0.06);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(43, 33, 24, 0.12);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.85rem;
  font: inherit;
  background: var(--bg);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.blog-post {
  padding-top: calc(var(--header-h) + 2rem);
}

.blog-post__crumb {
  margin-bottom: 1.25rem;
}

.blog-post__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  margin-bottom: 0.65rem;
}

.blog-post__meta .section-eyebrow {
  margin-bottom: 0;
}

.blog-post__meta-item {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.blog-post__title {
  margin-top: 0.15rem;
}

.blog-post__lead {
  margin-top: 0.65rem;
}

.blog-post__inner {
  max-width: 760px;
}

.blog-post__cover {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-post__content {
  margin-top: 2rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-post__content.prose h2,
.blog-post__content.prose h3 {
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 1.75rem 0 0.65rem;
}

.blog-post__content.prose p {
  margin: 0 0 1rem;
}

.blog-post__content.prose ul,
.blog-post__content.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.blog-post__content.prose li + li {
  margin-top: 0.35rem;
}

.blog-post__content.prose img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

.blog-post__content.prose a {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-card__byline {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: var(--text-faint);
}

.blog-post__back {
  margin-top: 2.5rem;
}

.legal-page {
  padding-bottom: 4rem;
}

.legal-page__inner {
  max-width: 760px;
}

.legal-page__meta {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.legal-page__intro {
  margin: 0 0 2.25rem;
  font-size: 1.06rem;
  line-height: 1.75;
  color: var(--text);
}

.legal-page__section {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(43, 33, 24, 0.08);
}

.legal-page__section:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-page__section h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-page__section p {
  margin: 0 0 0.85rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.legal-page__section p:last-child {
  margin-bottom: 0;
}

.legal-page__section ul {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.2rem;
}

.legal-page__section li {
  margin-bottom: 0.55rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-page__section li strong {
  color: var(--text);
}

.legal-page__sublist {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
}

.legal-page__sublist li {
  margin-bottom: 0.4rem;
}

.legal-page__contact {
  margin-top: 0.35rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid rgba(43, 33, 24, 0.07);
}

.legal-page__contact p {
  margin: 0 0 0.35rem;
}

.legal-page__contact p:last-child {
  margin-bottom: 0;
}

.legal-page__contact a {
  color: var(--primary-deep);
  font-weight: 600;
}

.legal-page__contact a:hover {
  color: var(--accent-red);
}

.legal-page__back {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

@media (max-width: 900px) {
  .home-links__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-links__grid {
    grid-template-columns: 1fr;
  }
}

.packages-page {
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(255, 140, 66, 0.06), transparent 55%),
    var(--bg);
}

.packages-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 2rem) 0 2.25rem;
  background:
    radial-gradient(700px 320px at 10% 0%, rgba(255, 212, 71, 0.18), transparent 60%),
    radial-gradient(600px 280px at 90% 20%, rgba(255, 140, 66, 0.12), transparent 55%),
    var(--bg-elevated);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.packages-hero--destination {
  color: #fff;
  min-height: 360px;
  display: flex;
  align-items: end;
  padding-bottom: 2.5rem;
  border-bottom: none;
}

.packages-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.packages-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 14, 10, 0.35) 0%, rgba(20, 14, 10, 0.72) 72%, rgba(20, 14, 10, 0.88) 100%);
}

.packages-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.packages-hero--destination .section-eyebrow,
.packages-hero--destination .packages-hero__eyebrow {
  color: rgba(255, 212, 71, 0.95);
}

.packages-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}

.packages-hero--destination .packages-hero__title {
  color: rgba(255, 251, 243, 0.96);
}

.packages-hero--destination .packages-hero__lead {
  color: rgba(255, 251, 243, 0.96);
}

.packages-hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.packages-hero__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 212, 71, 0.18);
  color: rgba(255, 251, 243, 0.95);
  border: 1px solid rgba(255, 212, 71, 0.35);
}

.packages-hero__pill--soft {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.packages-destination-about {
  padding: 2.5rem 0 0;
}

.packages-destination-about__inner {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg, 20px);
  background: var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(43, 33, 24, 0.06));
}

.packages-destination-about__copy {
  margin: 0;
  max-width: 52rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

@media (min-width: 768px) {
  .packages-destination-about__inner {
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
    align-items: start;
    gap: 2rem;
    padding: 1.75rem 1.85rem;
  }
}

.packages-hero__lead {
  margin-top: 0.85rem;
  max-width: 42rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.7vw, 1.08rem);
  line-height: 1.65;
}

.packages-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--text-faint);
}

.packages-breadcrumb a {
  color: inherit;
  transition: color var(--duration) var(--ease);
}

.packages-breadcrumb a:hover {
  color: var(--primary);
}

.packages-hero--destination .packages-breadcrumb,
.packages-hero--destination .packages-breadcrumb a {
  color: rgba(255, 251, 243, 0.72);
}

.packages-hero--destination .packages-breadcrumb a:hover {
  color: #fff;
}

.packages-hero__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.packages-stat {
  min-width: 120px;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}

.packages-hero--destination .packages-stat {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.packages-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.packages-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.packages-hero--destination .packages-stat strong,
.packages-hero--destination .packages-stat span {
  color: rgba(255, 251, 243, 0.92);
}

.packages-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.packages-hero--destination .packages-hero__btn {
  color: rgba(255, 251, 243, 0.98);
  border: 1.5px solid rgba(255, 251, 243, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.packages-hero--destination .packages-hero__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 251, 243, 0.72);
}

.packages-toolbar {
  position: sticky;
  top: var(--header-h);
  z-index: 20;
  background: rgba(255, 251, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 33, 24, 0.06);
}

.packages-toolbar__inner {
  display: grid;
  gap: 0.85rem;
  padding: 1rem 0 1.05rem;
}

.packages-toolbar__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
}

.packages-toolbar__label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.packages-toolbar__hint {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.packages-filters-shell {
  display: grid;
  gap: 0.55rem;
}

.packages-filters-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
}

.packages-filters-viewport {
  min-width: 0;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent 100%);
}

.packages-filters {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.15rem 0.35rem 0.35rem;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.packages-filters::-webkit-scrollbar {
  display: none;
}

.packages-filters-nav {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 33, 24, 0.1);
  background: var(--white);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    border-color var(--duration) var(--ease),
    color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.packages-filters-nav:hover:not(:disabled) {
  border-color: rgba(255, 140, 66, 0.35);
  color: var(--primary-deep);
  box-shadow: 0 4px 14px rgba(43, 33, 24, 0.06);
}

.packages-filters-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.packages-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(43, 33, 24, 0.1);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  appearance: none;
  -webkit-appearance: none;
  scroll-snap-align: start;
  transition:
    transform var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.packages-page.is-browse-loading .packages-hero,
.packages-page.is-browse-loading .ajax-browse-panel {
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.packages-toolbar.is-loading {
  opacity: 0.65;
}

.packages-filter__label {
  white-space: nowrap;
}

.packages-filter__count {
  display: inline-grid;
  place-items: center;
  min-width: 1.35rem;
  height: 1.35rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  color: var(--primary-deep);
  background: rgba(255, 140, 66, 0.14);
}

.packages-filter.is-active .packages-filter__count {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
}

.packages-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 140, 66, 0.35);
  color: var(--text);
}

.packages-filter.is-active {
  background: var(--cta-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 140, 66, 0.22);
}

.packages-section {
  padding-top: calc(var(--section-y) * 0.9);
}

.ajax-browse-panel {
  transition: opacity 180ms ease;
}

.ajax-browse-panel.is-loading {
  opacity: 0.55;
  pointer-events: none;
}

.packages-empty {
  padding: 2rem 0 1rem;
}

.packages-empty__card {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-md);
}

.packages-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--primary);
  background: rgba(255, 140, 66, 0.12);
}

.packages-empty__card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.packages-empty__card p {
  margin: 0.85rem 0 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.packages-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.packages-empty__hint {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: var(--text-faint);
}

.packages-empty__hint a {
  color: var(--primary-deep);
  font-weight: 600;
}

.packages-empty__filter-link {
  border: 0;
  padding: 0;
  background: none;
  color: var(--primary-deep);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.packages-empty__filter-link:hover {
  color: var(--primary);
}

.packages-cta {
  padding: calc(var(--section-y) * 0.85) 0 var(--section-y);
}

.packages-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 140, 66, 0.12), rgba(255, 212, 71, 0.08)),
    var(--white);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
}

.packages-cta__inner .section-lead {
  margin-bottom: 0;
}

.tour-card--premium {
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.tour-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-deep);
  background: rgba(255, 140, 66, 0.12);
}

.tour-card__chip--soft {
  color: var(--text-muted);
  background: rgba(43, 33, 24, 0.05);
}

.tour-card__chip--departure {
  color: #1f4f8a;
  background: rgba(31, 79, 138, 0.1);
}

.tour-card__badge--sold {
  top: 0;
  left: 0;
  border-radius: var(--radius-lg, 18px) 0 12px 0;
  padding: 0.42rem 0.78rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  background: rgba(31, 36, 48, 0.9);
  color: #fff;
  box-shadow: 0 8px 20px rgba(20, 14, 10, 0.18);
}

.tour-card__sold-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(20, 14, 10, 0.08) 0%, rgba(20, 14, 10, 0.22) 100%);
}

.tour-card--sold-out .tour-card__media img {
  filter: grayscale(0.28) saturate(0.85);
}

.tour-card__chip--seats {
  color: #1f6b45;
  background: rgba(31, 157, 99, 0.12);
}

/* Packages browse page — grid layout */
.packages-browse {
  padding-top: calc(var(--section-y) * 0.85);
  background:
    radial-gradient(760px 320px at 0% 0%, rgba(255, 140, 66, 0.07), transparent 58%),
    radial-gradient(680px 280px at 100% 100%, rgba(74, 111, 165, 0.06), transparent 55%);
}

.packages-browse__header {
  align-items: flex-end;
}

.packages-browse__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
}

.packages-browse__count {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.packages-browse__count strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.packages-browse__count span {
  color: var(--primary-deep);
  font-weight: 600;
}

.packages-browse__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

@media (min-width: 1100px) {
  .packages-browse__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.packages-browse__empty-inline {
  margin: 0;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.94rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 243, 0.72);
  border: 1px dashed rgba(43, 33, 24, 0.12);
}

.tour-card--browse {
  background: var(--white);
  border: 1px solid rgba(43, 33, 24, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}

.tour-card--browse:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.tour-card--browse .tour-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.tour-card--browse .tour-card__actions .btn {
  width: 100%;
  justify-content: center;
}

.tour-card--browse.tour-card--sold-out {
  opacity: 0.96;
}

.tour-card--browse.tour-card--sold-out .btn-primary {
  background: rgba(31, 36, 48, 0.88);
}

@media (max-width: 420px) {
  .tour-card--browse .tour-card__actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .packages-hero--destination {
    min-height: 320px;
  }

  .packages-toolbar__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .packages-toolbar__hint {
    font-size: 0.74rem;
  }

  .packages-filters-nav {
    display: none;
  }

  .packages-filters-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .packages-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .packages-stat {
    min-width: 0;
    padding: 0.7rem 0.75rem;
  }

  .packages-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.destinations-page .page-banner {
  padding-bottom: 1.5rem;
}

.destinations-directory {
  padding: 0 0 calc(var(--section-y) * 1.1);
}

.destinations-directory__breadcrumb {
  margin-bottom: 1.25rem;
}

.destinations-directory__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.destinations-stat {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
  box-shadow: var(--shadow-soft, 0 8px 24px rgba(43, 33, 24, 0.05));
}

.destinations-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.1;
}

.destinations-stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.destinations-directory__toolbar {
  margin-bottom: 1.5rem;
}

.destinations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.destination-directory-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(43, 33, 24, 0.06));
}

.destination-directory-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.destination-directory-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.destination-directory-card__type {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 251, 243, 0.92);
  color: var(--text);
}

.destination-directory-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}

.destination-directory-card__region {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-deep);
}

.destination-directory-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.destination-directory-card__title a {
  color: inherit;
  text-decoration: none;
}

.destination-directory-card__title a:hover {
  color: var(--primary-deep);
}

.destination-directory-card__desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-directory-card__meta {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--text-faint);
}

.destination-directory-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.35rem;
}

.destination-directory-card:hover .destination-directory-card__media img {
  transform: scale(1.04);
}

.destinations-directory__empty {
  padding: 2rem 1.25rem;
  text-align: center;
  border-radius: 20px;
  background: var(--bg-elevated);
  border: 1px dashed rgba(43, 33, 24, 0.12);
}

.destinations-directory__cta {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(255, 212, 71, 0.16), transparent 55%),
    var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
}

.destinations-directory__cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .destinations-directory__stats {
    grid-template-columns: 1fr;
  }

  .destinations-directory__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

.btn-block {
  display: flex;
  width: 100%;
  justify-content: center;
}

.tour-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.package-detail-page {
  background: var(--bg);
}

.package-detail-hero {
  position: relative;
  min-height: 420px;
  color: #fff;
  display: flex;
  align-items: end;
}

.package-detail-hero__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.package-detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 12, 9, 0.35), rgba(16, 12, 9, 0.88));
}

.package-detail-hero__inner {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 2.75rem;
}

.package-detail-hero__crumb,
.package-detail-hero__crumb a {
  color: rgba(255, 251, 243, 0.78);
}

.package-detail-hero__grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}

.package-detail-hero__badge {
  margin-bottom: 0.75rem;
}

.package-detail-hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.08;
  max-width: 18ch;
}

.package-detail-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.package-detail-hero__facts li {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}

.package-detail-hero__lead {
  margin: 1rem 0 0;
  max-width: 52rem;
  line-height: 1.7;
  color: rgba(255, 251, 243, 0.92);
}

.package-detail-booking-card {
  background: rgba(255, 253, 249, 0.96);
  color: var(--text);
  border-radius: 20px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 18px 40px rgba(16, 12, 9, 0.22);
}

.package-detail-booking-card__label {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-detail-booking-card__price {
  margin-top: 0.35rem;
}

.package-detail-booking-card__rating {
  margin: 0.65rem 0 1rem;
}

.package-detail-booking-card__note {
  margin: 0.85rem 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.package-detail-layout {
  display: grid;
  gap: 1.75rem;
  padding: 2rem 0 3.5rem;
}

.package-detail-panel {
  background: var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
  border-radius: 20px;
  padding: 1.35rem 1.45rem;
  box-shadow: var(--shadow-soft, 0 10px 30px rgba(43, 33, 24, 0.06));
}

.package-detail-panel + .package-detail-panel {
  margin-top: 1.25rem;
}

.package-detail-panel h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.package-detail-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.package-detail-panel__head h2 {
  margin: 0;
}

.package-detail-tabs,
.package-detail-details-tabs {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(43, 33, 24, 0.06);
}

.package-detail-tabs__btn,
.package-detail-details-tabs__btn {
  border: 0;
  background: transparent;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

.package-detail-tabs__btn.is-active,
.package-detail-details-tabs__btn.is-active {
  background: #fff;
  color: var(--text);
  box-shadow: 0 4px 14px rgba(43, 33, 24, 0.08);
}

.package-detail-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  line-height: 1.6;
}

.package-detail-list--muted li {
  color: var(--text-muted);
}

.package-detail-chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.package-detail-chips li {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 140, 66, 0.12);
  color: var(--primary-deep);
  font-weight: 600;
  font-size: 0.86rem;
}

.package-detail-details-panel {
  display: none;
  margin-top: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.package-detail-details-panel.is-active {
  display: block;
}

.package-itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.package-itinerary__item {
  border: 1px solid rgba(43, 33, 24, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.package-itinerary__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  text-align: left;
  background: rgba(255, 251, 243, 0.7);
}

.package-itinerary__day {
  font-weight: 700;
  color: var(--text);
}

.package-itinerary__icon {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.package-itinerary__toggle.is-open .package-itinerary__icon {
  transform: rotate(-135deg);
}

.package-itinerary__panel {
  display: none;
  padding: 0 1.1rem 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.package-itinerary__panel.is-open {
  display: block;
}

.package-itinerary__meals {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed rgba(43, 33, 24, 0.12);
}

.package-detail-sidebar__card,
.package-detail-gallery {
  background: var(--bg-elevated);
  border: 1px solid rgba(43, 33, 24, 0.06);
  border-radius: 20px;
  padding: 1.25rem;
}

.package-detail-sidebar__card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.package-detail-sidebar__card p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.package-detail-gallery {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.package-detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.package-detail-accordion {
  border-top: 1px solid rgba(43, 33, 24, 0.08);
  padding: 0.85rem 0;
}

.package-detail-accordion summary {
  cursor: pointer;
  font-weight: 700;
}

.package-detail-empty {
  margin: 0;
  color: var(--text-muted);
}

@media (min-width: 960px) {
  .package-detail-hero__grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    align-items: end;
  }

  .package-detail-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .package-detail-sidebar {
    position: sticky;
    top: 96px;
  }
}
