/* ═══════════════════════════════════════════════════════════════
 Cupstone Travel - Modern design system + GSAP-ready hooks
 ═══════════════════════════════════════════════════════════════ */

:root {
  /* Brand */
  --gold: #c17e2b;
  --gold-bright: #e8a84a;
  --gold-light: #f9e86f;
  --gold-muted: #ba955e;
  --bronze: #58310e;
  --brown-dark: #2a1a0c;
  --brown-mid: #3a2510;
  --cream: #f8f4ec;
  --cream-dark: #e9e0a2;
  --sage: #1b6b3a;
  --sage-light: #2d8f52;
  --sage-dark: #0f4a28;
  --ink: #14100c;
  --ink-muted: #6f6255;
  --white: #ffffff;
  --surface: #faf8f4;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
  --border: rgba(58, 37, 16, 0.1);
  --shadow: 0 24px 64px rgba(42, 26, 12, 0.14);
  --shadow-sm: 0 8px 24px rgba(42, 26, 12, 0.08);
  --shadow-glow: 0 0 60px rgba(193, 126, 43, 0.2);

  /* Fibonacci scale (px) - indices 3-14 of 1,1,2,3,5,8… */
  --f-3: 3px;
  --f-5: 5px;
  --f-8: 8px;
  --f-13: 13px;
  --f-21: 21px;
  --f-34: 34px;
  --f-55: 55px;
  --f-89: 89px;
  --f-144: 144px;
  --f-233: 233px;
  --f-377: 377px;
  --f-610: 610px;
  --f-987: 987px;

  /* Fibonacci timing */
  --t-f55: 55ms;
  --t-f89: 89ms;
  --t-f144: 144ms;
  --t-f233: 233ms;
  --t-f377: 377ms;
  --t-f610: 610ms;
  --t-f987: 987ms;

  --radius: var(--f-13);
  --radius-lg: var(--f-21);
  --radius-xl: var(--f-34);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: var(--f-89);
  --topbar-h: var(--f-55);
  --trustbar-h: 61px;
  --chrome-h: calc(var(--topbar-h) + var(--header-h) + var(--trustbar-h));
  --fib-bp: 987px;
  /* Golden-ratio easing (≈ 1/φ, 1, 1/φ², 1) */
  --ease-out: cubic-bezier(0.236, 0.927, 0.382, 1);
  --ease-spring: cubic-bezier(0.382, 1.618, 0.618, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  scrollbar-gutter: stable;
}

body.is-loading {
  overflow: clip;
}
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color var(--t-f377) var(--ease-out);
}
a:hover {
  color: var(--gold);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.02em;
}

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

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

/* ─── Page loader ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--brown-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--f-21);
}

.page-loader__logo {
  width: var(--f-89);
  height: var(--f-89);
  opacity: 1;
  transform: none;
}

.page-loader__bar-wrap {
  width: min(var(--f-377), 70vw);
  height: var(--f-3);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}

.page-loader__bar {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(1);
  transform-origin: left center;
}

.page-loader__text {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.7;
}

.page-loader.is-fading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.page-loader.is-done {
  display: none !important;
}

/* ─── Grain overlay ─── */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── Marquee strip ─── */
.marquee {
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: var(--f-13) 0;
  overflow: hidden;
  border-block: 1px solid rgba(249, 232, 111, 0.15);
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: var(--f-55);
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee__track span::after {
  content: "◆";
  font-size: 0.5rem;
  opacity: 0.5;
}

/* ─── Top bar ─── */
.topbar {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  height: var(--topbar-h);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  align-items: center;
}

.topbar a {
  color: var(--gold-light);
}
.topbar a:hover {
  color: var(--white);
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar-start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

.topbar-social.social-links {
  flex-shrink: 0;
  gap: 0.4rem;
}

.topbar-social.social-links a {
  width: 28px;
  height: 28px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
}

.topbar-social.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.topbar-social.social-links a.admin-entry {
  width: 24px;
  height: 24px;
  margin-left: 0.1rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.34);
  opacity: 0.75;
}

.topbar-social.social-links a.admin-entry:hover {
  background: transparent;
  color: rgba(255, 255, 255, 0.52);
  transform: none;
  opacity: 1;
}

.admin-entry__icon {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.75);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.site-header.scrolled {
  background: rgba(250, 248, 244, 0.92);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-weight: 600;
  z-index: 2;
}
.logo:hover {
  color: var(--ink);
}
.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(193, 126, 43, 0.25));
  transition: transform var(--t-f377) var(--ease-spring);
}
.logo:hover img {
  transform: rotate(-8deg) scale(1.05);
}

.logo-text {
  line-height: 1.1;
  white-space: nowrap;
}
.logo-text strong {
  display: inline;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.site-header .logo-text strong {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  transform-origin: left center;
}

.site-header .logo-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.site-header .logo-word {
  display: inline-block;
  will-change: transform, opacity;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
  transition:
    color var(--t-f377),
    background 0.3s;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--cream);
  opacity: 0;
  transform: scale(0.85);
  transition: all var(--t-f377) var(--ease-out);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link::after {
  content: "";
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  margin-left: 0.4em;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.3s;
}

.nav-dropdown:hover > .nav-link::after {
  transform: rotate(225deg) translateY(-2px);
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(232, 226, 217, 0.9);
  border-radius: 14px;
  box-shadow:
    0 4px 8px rgba(42, 26, 12, 0.04),
    0 16px 40px rgba(42, 26, 12, 0.12);
  padding: 0.45rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.98);
  transition:
    opacity var(--t-f377) var(--ease-out),
    transform var(--t-f377) var(--ease-out),
    visibility var(--t-f377);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-panel a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 9px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.dropdown-panel a:hover {
  background: #f7f3ed;
  color: var(--bronze);
  padding-left: 0.9rem;
}

.dropdown-spotlight {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.15rem 0 0.5rem;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(139, 90, 43, 0.12) 0%,
    rgba(212, 165, 116, 0.28) 55%,
    rgba(247, 235, 220, 0.95) 100%
  );
  border: 1px solid rgba(139, 90, 43, 0.22);
  color: var(--bronze);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 4px 14px rgba(88, 49, 14, 0.1);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.dropdown-spotlight i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--bronze);
  font-size: 0.88rem;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(88, 49, 14, 0.08);
}

.dropdown-spotlight span {
  flex: 1;
}

.dropdown-spotlight:hover {
  background: linear-gradient(
    135deg,
    rgba(139, 90, 43, 0.18) 0%,
    rgba(212, 165, 116, 0.36) 55%,
    rgba(255, 248, 240, 1) 100%
  );
  border-color: rgba(139, 90, 43, 0.34);
  color: var(--brown-dark);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 8px 20px rgba(88, 49, 14, 0.14);
  padding-left: 0.9rem;
}

.dropdown-heading {
  margin: 0;
  padding: 0.5rem 0.9rem 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
}

.dropdown-heading:not(:first-child) {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-selectors {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-locale-group {
  display: flex;
  align-items: center;
  gap: 0.05rem;
}

.nav-locale-group + .nav-locale-group {
  padding-left: 0.45rem;
  border-left: 1px solid rgba(58, 37, 16, 0.12);
}

.nav-locale-btn {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.3rem 0.38rem;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-muted);
  cursor: pointer;
  opacity: 0.45;
  transition:
    opacity 0.2s,
    color 0.2s,
    transform 0.2s;
}

.nav-locale-btn--flag {
  padding: 0.2rem 0.32rem;
}

.nav-flag {
  display: block;
  width: 20px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(58, 37, 16, 0.12);
}

.nav-locale-btn:hover {
  opacity: 0.75;
  color: var(--ink);
}

.nav-locale-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  opacity: 1;
}

.nav-locale-btn.is-active {
  opacity: 1;
  color: var(--bronze);
}

.nav-locale-btn--flag.is-active .nav-flag {
  transform: scale(1.08);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--cream);
  border: none;
  border-radius: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition:
    box-shadow var(--t-f377),
    filter 0.35s;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.6s;
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--gold-bright) 0%,
    var(--bronze) 100%
  );
  color: var(--white);
  box-shadow: 0 8px 28px rgba(193, 126, 43, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 12px 36px rgba(193, 126, 43, 0.45);
  filter: brightness(1.06);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.btn-sage {
  background: linear-gradient(135deg, var(--sage-light), var(--sage-dark));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(27, 107, 58, 0.3);
}

.btn-sage:hover {
  color: var(--white);
  filter: brightness(1.08);
}

.btn-pay {
  background: linear-gradient(135deg, #1a7a52 0%, #0d5236 100%);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(26, 122, 82, 0.32);
}

.btn-pay:hover {
  color: var(--white);
  filter: brightness(1.07);
  box-shadow: 0 12px 36px rgba(26, 122, 82, 0.42);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.booking-actions--compact {
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.package-sidebar .booking-actions {
  margin: 0 0 1.25rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #2ee66f, #128c7e);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  color: var(--white);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: visible;
  padding-top: var(--chrome-h);
  contain: layout style;
}

.hero.hero--search-open,
.hero:has(.quick-search__field.is-open) {
  z-index: 50;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Homepage hero background - static only (no GSAP / CSS motion on img) */
.hero-bg--static,
.hero-bg--static img,
.hero-bg--static .hero-overlay {
  transform: none !important;
  transition: none !important;
  animation: none !important;
  will-change: auto;
}

.hero-bg picture {
  position: absolute;
  inset: 0;
  display: block;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background:
    linear-gradient(
      160deg,
      rgba(42, 26, 12, 0.88) 0%,
      rgba(88, 49, 14, 0.55) 40%,
      rgba(27, 107, 58, 0.35) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 70% 20%,
      rgba(249, 232, 111, 0.12),
      transparent
    );
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}

.hero-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: 10%;
  right: -5%;
}

.hero-orb--2 {
  width: 300px;
  height: 300px;
  background: var(--sage);
  bottom: 20%;
  left: -8%;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 6rem;
  width: 100%;
}

.hero-eyebrow,
.hero-title,
.hero-subtitle {
  margin-left: calc(0.75rem + 30px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  background: rgba(249, 232, 111, 0.12);
  border: 1px solid rgba(249, 232, 111, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 700;
  max-width: 14ch;
  margin-bottom: 1rem;
  line-height: 1.02;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}

.hero-word-wrap {
  overflow: hidden;
  vertical-align: top;
}
.hero-word {
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  max-width: 44ch;
  opacity: 0.92;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}

/* Hero quick search - light bar */
.quick-search {
  width: 100%;
  max-width: 1170px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.quick-search__fields {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  position: relative;
  z-index: 20;
}

.quick-search__fields--shadow {
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.18),
    0 2px 8px rgba(0, 0, 0, 0.08);
}

.quick-search__field {
  flex: 1 1 0;
  min-width: 0;
  padding: 0.9rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.quick-search__field--dropdown {
  position: relative;
}

.quick-search__field--align-right .quick-search__dropdown {
  left: auto;
  right: 0;
}

.quick-search__field--narrow {
  flex: 0 0 7.5rem;
}

.quick-search__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
  margin: 0;
}

.quick-search__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.quick-search__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

.quick-search__chevron {
  font-size: 0.65rem;
  color: var(--gold);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.quick-search__field.is-open .quick-search__chevron {
  transform: rotate(180deg);
}

.quick-search__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: min(398px, calc(100vw - 2rem));
  z-index: 300;
  padding: 0.4rem;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(42, 26, 12, 0.04),
    0 16px 40px rgba(42, 26, 12, 0.12);
  border: 1px solid #ebe5dc;
  animation: cupstone-dropdown-in 0.2s ease;
}

.quick-search__dropdown-header {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.15rem 0.75rem;
  border-bottom: 1px solid #f0ece6;
  font-size: 0.72rem;
  font-weight: 600;
  color: #6b7280;
}

.quick-search__dropdown-header-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.quick-search__dropdown-body {
  padding: 0.75rem;
  max-height: min(420px, 55vh);
  overflow-y: auto;
}

.quick-search__dropdown-body--passengers {
  max-height: none;
  padding: 1rem 1.15rem 1.15rem;
}

.quick-search__quantities {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.quick-search__quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.quick-search__quantity + .quick-search__quantity {
  border-top: 1px solid #f0ece6;
}

.quick-search__quantity-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.quick-search__quantity-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.quick-search__quantity-hint {
  font-size: 0.78rem;
  color: #9ca3af;
  font-weight: 500;
}

.quick-search__done {
  width: 100%;
  margin-top: 0.85rem;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold) 0%, #a86820 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: filter 0.2s;
}

.quick-search__done:hover {
  filter: brightness(1.06);
}

.quick-search__search-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.65rem;
  background: #f7f5f2;
  border-radius: 6px;
  border: 1px solid #ebe6df;
}

.quick-search__search-label i {
  color: #9ca3af;
  font-size: 0.85rem;
}

.quick-search__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  min-width: 0;
}

.quick-search__search-input:focus {
  outline: none;
}

.quick-search__group-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin: 0.85rem 0 0.4rem;
  padding: 0 0.35rem;
}

.quick-search__group-title:first-child {
  margin-top: 0;
}

.quick-search__group-title--country {
  font-size: 0.72rem;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--ink);
  margin-top: 0.55rem;
  margin-bottom: 0.2rem;
}

.quick-search__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.quick-search__option:hover,
.quick-search__option.is-selected {
  background: #f7f3ed;
}

.quick-search__option.is-selected {
  color: var(--bronze);
}

.quick-search__option--featured {
  font-weight: 700;
}

.quick-search__option-label {
  flex: 1;
  min-width: 0;
}

.quick-search__option-meta,
.quick-search__option-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
  flex-shrink: 0;
}

.quick-search__option-sub {
  display: block;
  text-align: right;
  line-height: 1.3;
}

.quick-search__month-year {
  margin-top: 0.85rem;
}

.quick-search__month-year-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  padding: 0 0.35rem;
}

.quick-search__month-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.quick-search__month-btn {
  min-width: 2.75rem;
  padding: 0.5rem 0.65rem;
  border: 1px solid #e0dbd4;
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.15s,
    background 0.15s;
}

.quick-search__month-btn:hover,
.quick-search__month-btn.is-selected {
  border-color: var(--gold);
  background: #fdf8f2;
  color: var(--gold-dark, #58310e);
}

.quick-search__stepper {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.quick-search__stepper-btn {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid #c8c0b6;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.15s,
    background 0.15s,
    color 0.15s;
  flex-shrink: 0;
}

.quick-search__stepper-icon {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bronze, #58310e);
  pointer-events: none;
}

.quick-search__stepper-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: #fdf8f2;
}

.quick-search__stepper-btn:hover:not(:disabled) .quick-search__stepper-icon {
  color: var(--gold);
}

.quick-search__stepper-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.quick-search__stepper-value {
  min-width: 1.5rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.quick-search__option:has(.quick-search__option-sub) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.quick-search__option:has(.quick-search__option-sub) .quick-search__option-sub {
  text-align: left;
  font-size: 0.8rem;
}

.quick-search__divider {
  width: 1px;
  background: #e8e4df;
  flex-shrink: 0;
  margin: 0.65rem 0;
}

.quick-search__submit {
  flex-shrink: 0;
  align-self: stretch;
  padding: 0 1.75rem;
  min-width: 9.5rem;
  border: none;
  background: linear-gradient(135deg, var(--gold) 0%, #a86820 100%);
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    filter 0.2s,
    transform 0.15s;
}

.quick-search__submit:hover {
  filter: brightness(1.06);
}

.quick-search__submit:active {
  transform: scale(0.98);
}

/* Search box - glass (packages filter) - removed; packages/index redirects to search.html */

/* ─── Sections ─── */
.section {
  padding: clamp(var(--f-89), 12vw, var(--f-144)) 0;
  position: relative;
}

.section--white {
  background: var(--white);
}
.section--cream {
  background: linear-gradient(180deg, var(--cream) 0%, var(--surface) 100%);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
  position: relative;
}

.section-eyebrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0.5rem auto 0;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: var(--brown-mid);
  margin-bottom: 0.75rem;
}

.reveal-word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
}
.reveal-word {
  display: inline-block;
}

.section-desc {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ─── Package listing: destination preview cards ─── */
.dest-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.dest-preview-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  transition:
    transform var(--t-f377) var(--ease-out),
    box-shadow var(--t-f377) var(--ease-out);
}

.dest-preview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.dest-preview-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.dest-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-f610) var(--ease-out);
}

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

.dest-preview-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
}

.dest-preview-card__body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.dest-preview-card__body p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  line-height: 1.55;
}

.dest-preview-card__cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bronze);
}

.dest-preview-card__cta i {
  transition: transform var(--t-f233);
}

.dest-preview-card:hover .dest-preview-card__cta i {
  transform: translateX(4px);
}

.page-packages .package-card {
  opacity: 1;
  transform: none;
}

/* Package cards */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--t-f377) var(--ease-out);
}

.package-card:hover {
  box-shadow: var(--shadow);
}

.package-card a {
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.package-card a:hover {
  color: inherit;
}

.package-card-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.package-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.5) 0%,
    transparent 50%
  );
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}

.package-card:hover .package-card-image::after {
  opacity: 1;
}

.package-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-f610) var(--ease-out);
}

.package-card:hover .package-card-image img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(135deg, var(--sage-light), var(--sage-dark));
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(27, 107, 58, 0.35);
}

.package-badge--signature {
  background: linear-gradient(135deg, var(--brown-dark), var(--bronze));
  color: var(--gold-light);
  box-shadow: 0 4px 12px rgba(42, 26, 12, 0.35);
}

.package-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem;
}

.package-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}

.package-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  transition: color var(--t-f377);
}

.package-card:hover h3 {
  color: var(--gold);
}

.package-card .card-desc {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
  line-height: 1.55;
  flex: 1;
}

.package-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bronze);
  margin-top: auto;
}

.package-price span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--ink-muted);
}

/* ─── Featured showcase (homepage) ─── */
.featured-showcase {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3.5rem, 9vw, 6rem);
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--white) 40%,
    #f3ede4 100%
  );
  overflow: hidden;
  scroll-margin-top: calc(var(--chrome-h) + 1rem);
}

.featured-showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.5;
}

.featured-showcase__glow--1 {
  width: min(520px, 70vw);
  height: 520px;
  top: -140px;
  right: -100px;
  background: rgba(249, 232, 111, 0.4);
}

.featured-showcase__glow--2 {
  width: 420px;
  height: 420px;
  bottom: 5%;
  left: -120px;
  background: rgba(27, 107, 58, 0.22);
}

.featured-showcase__intro {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-hero-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  max-width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: clamp(400px, 50vh, 540px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: var(--white);
  box-shadow:
    0 28px 70px rgba(42, 26, 12, 0.14),
    0 0 0 1px rgba(42, 26, 12, 0.07);
  transition:
    box-shadow 0.45s var(--ease-out),
    transform 0.45s var(--ease-out);
}

.featured-hero-card:hover {
  color: inherit;
  transform: translateY(-5px);
  box-shadow:
    0 36px 90px rgba(42, 26, 12, 0.18),
    0 0 0 1px rgba(201, 162, 39, 0.3);
}

.featured-hero-card--reverse {
  grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
}

.featured-hero-card--reverse .featured-hero-card__media {
  order: 2;
}

.featured-hero-card--reverse .featured-hero-card__panel {
  order: 1;
  border-left: none;
  border-right: 1px solid var(--border);
}

.featured-showcase--villa {
  background: linear-gradient(
    180deg,
    #f3ede4 0%,
    var(--white) 40%,
    var(--cream) 100%
  );
}

.featured-showcase--villa .featured-showcase__glow--1 {
  left: -100px;
  right: auto;
  background: rgba(201, 162, 39, 0.28);
}

.featured-showcase--villa .featured-showcase__glow--2 {
  right: -80px;
  left: auto;
}

.featured-hero-card__media {
  position: relative;
  overflow: hidden;
  min-height: 260px;
}

.featured-hero-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(42, 26, 12, 0.35) 0%,
    transparent 55%
  );
  pointer-events: none;
  transition: opacity 0.5s;
}

.featured-hero-card:hover .featured-hero-card__media::after {
  opacity: 0.85;
}

.featured-hero-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-f610) var(--ease-out);
}

@media (hover: hover) {
  .featured-hero-card:hover .featured-hero-card__media img {
    transform: scale(1.05);
  }
}

.featured-hero-card__media .package-badge {
  top: 18px;
  left: 18px;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
}

.featured-hero-card__media-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.88) 0%,
    transparent 100%
  );
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.featured-hero-card__media-caption i {
  margin-right: 0.4rem;
  color: var(--gold);
}

.featured-hero-card__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: linear-gradient(165deg, var(--white) 0%, #faf6ef 100%);
  border-left: 1px solid var(--border);
}

.featured-hero-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

.featured-hero-card__chips span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.1);
  color: var(--bronze);
  border: 1px solid rgba(201, 162, 39, 0.22);
}

.featured-hero-card__chips i {
  font-size: 0.8em;
  opacity: 0.85;
}

.featured-hero-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink);
  transition: color 0.35s;
}

.featured-hero-card:hover .featured-hero-card__title {
  color: var(--bronze);
}

.featured-hero-card__desc {
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.featured-hero-card__highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.featured-hero-card__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink);
}

.featured-hero-card__highlights i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--sage);
  font-size: 0.75rem;
}

.featured-hero-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.featured-hero-card__price {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.featured-hero-card__cta {
  pointer-events: none;
}

.featured-hero-card__cta i {
  margin-left: 0.35rem;
  transition: transform 0.3s var(--ease-out);
}

.featured-hero-card:hover .featured-hero-card__cta i {
  transform: translateX(5px);
}

.featured-showcase__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
}

.featured-showcase__actions .btn-outline {
  background: transparent;
  color: var(--bronze);
  border: 1.5px solid rgba(88, 49, 14, 0.35);
  backdrop-filter: none;
}

.featured-showcase__actions .btn-outline:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--bronze);
}

@media (max-width: 987px) {
  .featured-hero-card {
    grid-template-columns: 1fr;
    min-height: auto;
    max-width: calc(100% - 1.25rem);
  }

  .featured-hero-card__media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .featured-hero-card__panel {
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .featured-hero-card--reverse .featured-hero-card__panel {
    border-right: none;
  }

  .featured-hero-card--reverse .featured-hero-card__media {
    order: 0;
  }

  .featured-hero-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-hero-card__cta {
    width: 100%;
    justify-content: center;
  }
}

/* ─── Stats ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.stat-item {
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--t-f377) var(--ease-spring),
    box-shadow 0.4s;
}

.stat-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--sage));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
}

.stat-item:hover::before {
  transform: scaleX(1);
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-top: 0.5rem;
}

/* ─── Why / steps / services ─── */
.why-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-muted),
    transparent
  );
  opacity: 0.4;
}

.why-card,
.step-card,
.service-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--t-f377) var(--ease-out);
}

a.service-card--link {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.service-card--link:hover {
  color: inherit;
}

.why-card:hover,
.service-card:hover {
  border-color: rgba(193, 126, 43, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.step-card {
  text-align: center;
  background: transparent;
  border: none;
  padding-top: 0;
}

.step-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--gold-bright), var(--bronze));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 8px 24px rgba(193, 126, 43, 0.35);
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(145deg, var(--cream), rgba(193, 126, 43, 0.15));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: transform var(--t-f377) var(--ease-spring);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-card h3,
.why-card h3,
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.service-card p,
.why-card p,
.step-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.6;
}

/* ─── Destinations ─── */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  color: var(--white);
  transform-style: preserve-3d;
  will-change: transform;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.92) 0%,
    rgba(42, 26, 12, 0.2) 50%,
    transparent 100%
  );
  transition: opacity 0.4s;
}

.dest-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.95) 0%,
    rgba(88, 49, 14, 0.4) 100%
  );
}

.dest-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 1;
  transform: translateY(8px);
  transition: transform var(--t-f377) var(--ease-out);
}

.dest-card:hover .dest-card-content {
  transform: translateY(0);
}

.dest-card h3 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--white);
}

.dest-card p {
  font-size: 0.88rem;
  opacity: 0.88;
  margin: 0.35rem 0 0;
}

/* Destinations - full-width stacked showcase (destinations page + homepage) */
.destinations-home {
  padding-bottom: 0;
}

.destinations-home .destinations-showcase-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
}

.destinations-showcase-wrap {
  padding: 0;
}

.destinations-showcase {
  display: flex;
  flex-direction: column;
}

.dest-showcase-card {
  position: relative;
  display: block;
  width: 100%;
  min-height: clamp(340px, 50vh, 520px);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  scroll-margin-top: calc(var(--chrome-h) + 1rem);
}

.dest-showcase-card + .dest-showcase-card {
  border-top: 2px solid rgba(249, 232, 111, 0.35);
}

.dest-showcase-card:hover {
  color: var(--white);
}

.dest-showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-f987) var(--ease-out);
}

.dest-showcase-card:hover img {
  transform: scale(1.05);
}

.dest-showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(42, 26, 12, 0.88) 0%,
    rgba(42, 26, 12, 0.45) 45%,
    rgba(42, 26, 12, 0.25) 100%
  );
  transition: background 0.5s;
}

.dest-showcase-card:hover .dest-showcase-card__overlay {
  background: linear-gradient(
    105deg,
    rgba(42, 26, 12, 0.92) 0%,
    rgba(88, 49, 14, 0.55) 50%,
    rgba(27, 107, 58, 0.2) 100%
  );
}

.dest-showcase-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(340px, 50vh, 520px);
  padding-top: 3rem;
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.dest-showcase-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 1.02;
  color: var(--white);
}

.dest-showcase-card__desc {
  margin: 0.75rem 0 0;
  max-width: 36ch;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  opacity: 0.9;
}

.dest-showcase-card__cta {
  margin-top: 1.5rem;
  align-self: flex-start;
  pointer-events: none;
}

.dest-showcase-card__cta i {
  margin-left: 0.35rem;
  transition: transform 0.3s var(--ease-out);
}

.dest-showcase-card:hover .dest-showcase-card__cta i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .dest-showcase-card,
  .dest-showcase-card__content {
    min-height: clamp(300px, 58vh, 440px);
  }

  .dest-showcase-card__overlay {
    background: linear-gradient(
      to top,
      rgba(42, 26, 12, 0.92) 0%,
      rgba(42, 26, 12, 0.45) 55%,
      rgba(42, 26, 12, 0.15) 100%
    );
  }
}

/* ─── Testimonials ─── */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  transition:
    box-shadow var(--t-f377),
    transform 0.4s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.testimonial-card::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 0.25rem;
  left: 1rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  padding-top: 0.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--bronze);
  font-style: normal;
}
.testimonial-trip {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

/* ─── Newsletter ─── */
.newsletter {
  background: linear-gradient(
    135deg,
    var(--brown-dark) 0%,
    var(--bronze) 50%,
    var(--sage-dark) 100%
  );
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(249, 232, 111, 0.15),
    transparent 70%
  );
  top: -50%;
  right: -10%;
  pointer-events: none;
}

.newsletter h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.newsletter-form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

/* ─── CTA band ─── */
.cta-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  text-align: center;
  border-block: 1px solid var(--border);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.cta-band .cta-actions {
  justify-content: center;
}

.cta-band .btn-outline {
  background: transparent;
  color: var(--bronze);
  border: 1.5px solid rgba(88, 49, 14, 0.4);
  backdrop-filter: none;
}

.cta-band .btn-outline:hover {
  background: rgba(88, 49, 14, 0.08);
  color: var(--bronze);
  border-color: var(--bronze);
}

/* ─── Footer ─── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 4rem 0 1.75rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid h3 {
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-grid a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  transition:
    color var(--t-f377),
    transform 0.3s;
}

.footer-grid a:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-payments {
  margin-bottom: 2rem;
  width: 100%;
}

.footer-brand__tagline {
  font-size: 0.9rem;
  opacity: 0.85;
  max-width: 280px;
  margin: 0 0 1rem;
}

.cert-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fff;
  padding: 0.22rem;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.cert-logo-chip--wide {
  width: auto;
  min-width: 2rem;
  max-width: 4.25rem;
  height: 2rem;
  border-radius: 999px;
  padding: 0.2rem 0.4rem;
}

.cert-logo-chip--lg {
  width: 4.5rem;
  height: 4.5rem;
  padding: 0.45rem;
}

.cert-logo-chip--lg.cert-logo-chip--wide {
  width: auto;
  min-width: 4.5rem;
  max-width: 9rem;
  height: 4.5rem;
  padding: 0.45rem 0.75rem;
}

.cert-logo-chip img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.footer-certifications__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.45rem 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 280px;
}

.footer-certifications__item a {
  display: block;
  line-height: 0;
  opacity: 0.9;
  transition:
    opacity var(--t-f377),
    transform var(--t-f377);
}

.footer-certifications__item a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.trust-bar-section {
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--cream);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(88, 49, 14, 0.1);
  border-bottom: 1px solid rgba(88, 49, 14, 0.1);
}

.trust-inline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.trust-inline-bar__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  margin: 0;
  flex-shrink: 0;
}

.trust-inline-bar__logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: auto;
  flex-wrap: wrap;
}

.trust-inline-bar__item a {
  display: block;
  line-height: 0;
  opacity: 0.88;
  transition:
    opacity var(--t-f377),
    transform var(--t-f377);
}

.trust-inline-bar__item a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

@media (max-width: 540px) {
  .trust-inline-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-inline-bar__logos {
    margin-left: 0;
    justify-content: flex-start;
    width: 100%;
  }
}

.credentials-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0.75rem;
  border-radius: 10px;
  background: var(--cream);
  border: 1px solid var(--border);
}

.credentials-card__logo .cert-logo-chip {
  box-shadow: 0 2px 8px rgba(88, 49, 14, 0.1);
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.credentials-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.credentials-card h3 {
  font-size: 1rem;
  margin: 0;
  color: var(--bronze);
}

.credentials-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
  flex: 1;
}

.credentials-card a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bronze);
}

.credentials-card a:hover {
  color: var(--gold);
}

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

.footer-payments__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1.25rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-payments__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 30px;
  background: transparent;
  padding: 0;
}

.footer-payments__item img {
  display: block;
  width: auto;
  height: 30px;
  max-width: 6rem;
  object-fit: contain;
  object-position: center;
}

.footer-payments__item:nth-child(1) img,
.footer-payments__item:nth-child(4) img {
  height: 34px;
}

.footer-payments__item:nth-child(2) img {
  height: 22px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--t-f377) var(--ease-spring);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px) scale(1.08);
}

/* ─── WhatsApp float ─── */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #2ee66f, #128c7e);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  will-change: transform;
}

.whatsapp-float:hover {
  color: var(--white);
}

/* ─── Package detail page ─── */
.package-hero,
.page-hero {
  position: relative;
  color: var(--white);
}

.package-hero {
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-top: var(--chrome-h);
}

.page-hero {
  background: linear-gradient(
    135deg,
    var(--brown-dark),
    var(--bronze) 60%,
    var(--sage-dark)
  );
  padding: calc(var(--chrome-h) + 3rem) 0 3rem;
  text-align: center;
}

.page-hero--photo {
  position: relative;
  isolation: isolate;
  background-color: #2a1a0c;
  background-image: var(--page-hero-image, url("../assets/kenya-tanzania.jpg"));
  background-position: center 40%;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 26, 12, 0.72) 0%,
    rgba(42, 26, 12, 0.82) 55%,
    rgba(42, 26, 12, 0.9) 100%
  );
}

.page-hero--photo > .container {
  position: relative;
  z-index: 1;
}

.page-hero--photo .breadcrumb,
.page-hero--photo .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.page-hero--photo .breadcrumb a:hover {
  color: var(--white);
}

.page-hero--photo p {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

.page-hero--compact {
  padding-bottom: 2.5rem;
}

.breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  opacity: 0.85;
}

.breadcrumb a {
  color: var(--gold-light);
}

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

/* ─── Fleet & villa catalog ─── */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.75rem;
}

.catalog-card,
.featured-hero-card {
  contain: layout style;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--t-f377) var(--ease-out),
    box-shadow var(--t-f377) var(--ease-out);
}

.catalog-card:hover {
  color: inherit;
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.catalog-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.catalog-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform var(--t-f610) var(--ease-out);
}

.catalog-card:hover .catalog-card__media img {
  transform: scale(1.06);
}

.catalog-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.catalog-card__body h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--ink);
  transition: color var(--t-f377);
}

.catalog-card:hover .catalog-card__body h2 {
  color: var(--bronze);
}

.catalog-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.catalog-card__cta i {
  margin-left: 0.25rem;
  transition: transform 0.3s var(--ease-out);
}

.catalog-card:hover .catalog-card__cta i {
  transform: translateX(4px);
}

.catalog-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.35rem;
}

.catalog-card__desc {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
  line-height: 1.45;
}

.villa-property-card__type {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(42, 26, 12, 0.82);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.villa-property-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.villa-property-card__badge--signature {
  background: linear-gradient(135deg, var(--brown-dark), var(--bronze));
  color: var(--gold-light);
}

.villa-property-card--signature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}

.villa-property-card--signature .catalog-card__media {
  min-height: 280px;
}

.villa-property-card__partner {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin: 0 0 0.35rem;
}

.villa-property-card__specs {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.villa-property-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 0.65rem;
}

.villa-property-card__price-suffix {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.villa-property-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.villa-property-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.villa-property-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem 1.25rem;
}

.villa-property-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.villa-property-specs i {
  color: var(--gold);
  width: 1.1rem;
  text-align: center;
}

.villa-property-note {
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.villa-property-disclaimer {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
}

.villa-property-booking {
  position: sticky;
  top: 6.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-booking-panel {
  position: sticky;
  top: 6.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.product-booking-panel__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 0.25rem;
}

.product-booking-panel__price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 0.35rem;
}

.product-booking-panel__suffix {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.product-booking-panel__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0 0 0.75rem;
}

.product-booking-panel__deposit {
  font-size: 0.85rem;
  color: var(--sage-dark);
  background: rgba(27, 107, 58, 0.08);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  margin: 0 0 1rem;
}

.product-booking-panel__deposit strong {
  font-weight: 700;
}

.product-booking-panel .btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.product-booking-steps {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.product-booking-steps__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.product-booking-steps__item.is-active {
  color: var(--brown-mid);
  font-weight: 600;
}

.product-booking-steps__item.is-complete {
  color: var(--sage-dark);
}

.product-booking-steps__num {
  flex-shrink: 0;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--cream);
  border: 1.5px solid var(--border);
  color: var(--ink-muted);
}

.product-booking-steps__item.is-active .product-booking-steps__num {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.product-booking-steps__item.is-complete .product-booking-steps__num {
  background: rgba(27, 107, 58, 0.12);
  border-color: var(--sage);
  color: var(--sage-dark);
}

.product-booking-journey {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm);
}

.product-booking-journey__header {
  margin-bottom: 2rem;
}

.product-booking-journey__header h2 {
  font-size: 1.65rem;
  color: var(--brown-mid);
  margin: 0 0 0.5rem;
}

.product-booking-journey__lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  max-width: 42rem;
}

.booking-step {
  padding-top: 0.5rem;
}

.booking-step[hidden] {
  display: none !important;
}

.booking-step__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.booking-step__head h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--brown-mid);
}

.booking-step__badge {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(27, 107, 58, 0.1);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

.booking-step__body .quote-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.booking-step__foot {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.booking-step__choices {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.booking-choice-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1rem 1.15rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}

.booking-choice-card:hover {
  border-color: var(--sage);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.booking-choice-card__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.booking-choice-card--pay .booking-choice-card__icon {
  background: rgba(26, 122, 82, 0.12);
  color: #1a7a52;
}

.booking-choice-card--call .booking-choice-card__icon {
  background: rgba(27, 107, 58, 0.12);
  color: var(--sage-dark);
}

.booking-choice-card--wa .booking-choice-card__icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.booking-choice-card__body {
  flex: 1;
  min-width: 0;
}

.booking-choice-card__body strong {
  display: block;
  font-size: 1rem;
  color: var(--brown-mid);
  margin-bottom: 0.2rem;
}

.booking-choice-card__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.booking-choice-card__arrow {
  flex-shrink: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.booking-summary {
  margin: 0 0 1.25rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.booking-summary__row {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem 1rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.booking-summary__row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.booking-summary__row dt {
  margin: 0;
  font-weight: 600;
  color: var(--ink-muted);
}

.booking-summary__row dd {
  margin: 0;
  color: var(--brown-mid);
}

.villa-property-booking__price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 0.35rem;
}

.villa-property-booking__suffix {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.villa-property-booking__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}

.villa-property-booking .btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.villa-property-back {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.villa-property-hero__badge {
  display: inline-block;
  margin-right: 0.65rem;
  vertical-align: middle;
  background: linear-gradient(135deg, var(--gold), var(--gold-muted));
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.villa-property-gallery {
  margin-top: 2rem;
}

.villa-property-gallery__title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.villa-property-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.villa-property-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.villa-property-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-property-videos {
  margin-top: 2rem;
}

.villa-property-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.villa-property-video video {
  width: 100%;
  border-radius: var(--radius);
  background: var(--brown-dark);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.villa-property-video h3 {
  margin-top: 0.65rem;
  font-size: 1rem;
}

.villa-property-booking--signature {
  border-color: var(--gold-muted);
}

.product-booking-panel.villa-property-booking--signature {
  border-color: var(--gold-muted);
}

.package-booking-section {
  margin-top: 0.5rem;
}

.package-booking-section .product-booking-journey {
  margin-top: 0;
}

.package-sidebar .product-booking-panel {
  margin-bottom: 0;
}

.package-sidebar-tip {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.package-sidebar-tip strong {
  color: var(--bronze);
}

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

  .villa-property-booking,
  .product-booking-panel {
    position: static;
  }

  .product-booking-journey {
    padding: 1.25rem;
  }

  .booking-summary__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .villa-property-card--signature {
    grid-template-columns: 1fr;
  }

  .villa-property-gallery__grid,
  .villa-property-videos__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Fleet vehicle cards & detail ─── */
.fleet-vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(42, 26, 12, 0.82);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.fleet-vehicle-card__specs {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5rem;
}

.fleet-vehicle-card__specs i {
  margin-right: 0.25rem;
  color: var(--gold);
}

.fleet-vehicle-card__price {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 0.65rem;
}

.fleet-vehicle-card__price-suffix {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.fleet-vehicle-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.fleet-vehicle-intro {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  margin: 0 0 1.5rem;
}

.fleet-vehicle-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem 1.25rem;
}

.fleet-vehicle-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--ink);
}

.fleet-vehicle-specs i {
  color: var(--gold);
  width: 1.1rem;
  text-align: center;
}

.fleet-vehicle-note {
  padding: 1rem 1.15rem;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin: 0 0 1rem;
  line-height: 1.55;
}

.fleet-vehicle-disclaimer {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0;
}

.fleet-vehicle-booking {
  position: sticky;
  top: 6.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.fleet-vehicle-booking__price {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin: 0 0 0.35rem;
}

.fleet-vehicle-booking__suffix {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.fleet-vehicle-booking__note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 0 0 1.25rem;
}

.fleet-vehicle-booking .btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 0.65rem;
}

.fleet-vehicle-back {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
}

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

  .fleet-vehicle-booking,
  .product-booking-panel {
    position: static;
  }
}

.villas-region + .villas-region {
  margin-top: 2.75rem;
}

.villas-region__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--ink);
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.catalog-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.catalog-note a {
  color: var(--sage-dark);
  font-weight: 600;
}

.catalog-help {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-muted);
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.catalog-help a {
  color: var(--sage-dark);
  font-weight: 600;
}

.catalog-hero {
  position: relative;
  min-height: clamp(280px, 42vh, 400px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--chrome-h) + 2rem) 0 2.5rem;
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.catalog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.92) 0%,
    rgba(42, 26, 12, 0.45) 50%,
    rgba(42, 26, 12, 0.25) 100%
  );
}

.catalog-hero__content {
  position: relative;
  z-index: 1;
}

.catalog-hero .breadcrumb,
.catalog-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.catalog-hero .breadcrumb a:hover {
  color: var(--white);
}

.catalog-hero__content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.5rem;
}

.catalog-hero__content > p:last-child {
  max-width: 42ch;
  opacity: 0.92;
  margin: 0;
}

.featured-showcase__actions .btn-outline-dark {
  background: transparent;
  color: var(--bronze);
  border: 1.5px solid rgba(88, 49, 14, 0.35);
}

.featured-showcase__actions .btn-outline-dark:hover {
  background: rgba(201, 162, 39, 0.12);
  color: var(--bronze);
}

.package-hero .hero-overlay {
  background: linear-gradient(
    to top,
    rgba(42, 26, 12, 0.92) 0%,
    rgba(42, 26, 12, 0.35) 55%,
    transparent 100%
  );
}

.package-hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 0 3.5rem;
  width: 100%;
}

.package-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.sticky-nav {
  position: sticky;
  top: var(--chrome-h);
  z-index: 90;
  background: rgba(250, 248, 244, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.sticky-nav ul {
  display: flex;
  min-width: max-content;
}

.sticky-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.3s;
}

.sticky-nav a:hover,
.sticky-nav a.active {
  color: var(--bronze);
  border-bottom-color: var(--gold);
}

.package-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.package-sidebar {
  position: sticky;
  top: calc(var(--chrome-h) + 3.5rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.package-sidebar .package-price {
  font-size: 2rem;
  margin: 0.5rem 0 1rem;
}

.content-block {
  margin-bottom: 3rem;
}

.content-block h2 {
  font-size: 1.85rem;
  color: var(--brown-mid);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--gold), transparent) 1;
}

.highlights-list li {
  padding: 0.85rem 0 0.85rem 2rem;
  position: relative;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}

.highlights-list li:hover {
  padding-left: 2.25rem;
}

.highlights-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.itinerary-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.itinerary-tab {
  padding: 0.6rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--t-f377) var(--ease-out);
}

.itinerary-tab.active,
.itinerary-tab:hover {
  background: linear-gradient(135deg, var(--bronze), var(--brown-mid));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(88, 49, 14, 0.3);
}

.day-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.3s;
}

.day-item.open {
  box-shadow: var(--shadow-sm);
}

.day-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.35rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.3s;
}

.day-header:hover {
  background: var(--cream);
}

.day-num {
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.day-body {
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 1.35rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.day-item.open .day-body {
  height: auto;
  opacity: 1;
  padding-bottom: 1.35rem;
}

.reduce-motion .day-item .day-body {
  height: auto;
  opacity: 1;
}

.day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.day-meta span {
  background: var(--cream);
  padding: 0.3rem 0.7rem;
  border-radius: 8px;
  font-size: 0.82rem;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.included-grid h3 {
  margin-bottom: 0.85rem;
}
.included-grid ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.included-grid li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.included-grid h3:first-child {
  color: var(--sage);
}
.not-included h3 {
  color: #c45c26;
}

.quote-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.quote-form-group-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.quote-form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 600px) {
  .quote-form-pair {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.quote-form-pair > div {
  min-width: 0;
}

.quote-form-pair select,
.quote-form-pair input[type="date"] {
  margin-bottom: 0;
}

.quote-form input[type="date"] {
  color-scheme: light;
}

.phone-input {
  position: relative;
  margin-bottom: 1rem;
}

.phone-input__control {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.phone-input:focus-within .phone-input__control {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(27, 107, 58, 0.12);
}

.phone-input__country {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
  padding: 0 0.85rem;
  border: none;
  border-right: 1px solid var(--border);
  background: var(--cream);
  color: var(--brown-mid);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  min-height: 3rem;
}

.phone-input__country:hover {
  background: #f3efe8;
}

.phone-input__flag {
  font-size: 1.15rem;
  line-height: 1;
}

.phone-input__dial {
  white-space: nowrap;
}

.phone-input__caret {
  font-size: 0.65rem;
  color: var(--ink-muted);
}

.phone-input__local {
  flex: 1;
  min-width: 0;
  border: none !important;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.85rem 1rem !important;
}

.phone-input__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-input__search {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.92rem;
  margin-bottom: 0 !important;
  border-radius: 0 !important;
}

.phone-input__list {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  max-height: 16rem;
  overflow-y: auto;
}

.phone-input__option {
  display: grid;
  grid-template-columns: 1.75rem 1fr auto;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.65rem 1rem;
  border: none;
  background: transparent;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--ink);
  cursor: pointer;
}

.phone-input__option:hover,
.phone-input__option:focus {
  background: rgba(27, 107, 58, 0.08);
  outline: none;
}

.phone-input__option-flag {
  font-size: 1.1rem;
  line-height: 1;
}

.phone-input__option-name {
  font-weight: 500;
}

.phone-input__option-dial {
  color: var(--ink-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.quote-form-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.paystack-form-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0.25rem 0 0;
}

.pay-method-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 0.25rem;
}

.pay-method-picker__option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bronze);
  transition:
    border-color var(--t-f377),
    background var(--t-f377);
}

.pay-method-picker__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pay-method-picker__option:has(input:checked) {
  border-color: var(--sage);
  background: rgba(27, 107, 58, 0.08);
}

.paystack-mpesa-status {
  font-size: 0.92rem;
  color: var(--bronze);
  background: rgba(27, 107, 58, 0.08);
  border: 1px solid rgba(27, 107, 58, 0.18);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin: 0.75rem 0 0;
}

.paystack-form-error {
  color: #b42318;
  background: #fef3f2;
  border: 1px solid #fecdca;
  border-radius: var(--radius-md);
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}

/* ─── Pay deposit page ─── */
.pay-deposit-page {
  padding-top: var(--chrome-h);
}

.pay-deposit-intro {
  background: linear-gradient(
    135deg,
    var(--brown-dark),
    var(--bronze) 55%,
    var(--sage-dark)
  );
  color: var(--white);
  padding: 2rem 0 1.75rem;
}

.pay-deposit-intro .breadcrumb {
  margin-bottom: 0.75rem;
}

.pay-deposit-intro .breadcrumb a {
  color: var(--gold-light);
}

.pay-deposit-intro h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.pay-deposit-intro__lead {
  margin: 0 0 1.5rem;
  opacity: 0.9;
  max-width: 32rem;
}

.pay-deposit-tracker {
  display: flex;
  gap: 0.5rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.pay-deposit-tracker__item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.pay-deposit-tracker__item.is-active,
.pay-deposit-tracker__item.is-complete {
  color: var(--white);
}

.pay-deposit-tracker__num {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.pay-deposit-tracker__item.is-active .pay-deposit-tracker__num {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
}

.pay-deposit-tracker__item.is-complete .pay-deposit-tracker__num {
  background: var(--sage);
  border-color: var(--sage);
}

.pay-deposit-body {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.pay-deposit-layout {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 1.5rem 2rem;
  align-items: start;
}

.pay-deposit-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: calc(var(--chrome-h) + 1rem);
}

.pay-deposit-product {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pay-deposit-product__link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  color: inherit;
  text-decoration: none;
  transition: background var(--t-f377);
}

.pay-deposit-product__link:hover {
  background: var(--cream);
  color: inherit;
}

.pay-deposit-product__media {
  flex-shrink: 0;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
}

.pay-deposit-product__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pay-deposit-product__media--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  font-size: 1.35rem;
}

.pay-deposit-product__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.pay-deposit-product__type {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 700;
}

.pay-deposit-product__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--bronze);
}

.pay-deposit-product__subtitle {
  font-size: 0.82rem;
  color: var(--ink-muted);
}

.pay-deposit-product__arrow {
  margin-left: auto;
  flex-shrink: 0;
  color: var(--sage);
  font-size: 0.85rem;
}

.pay-deposit-aside-card {
  background: var(--cream);
  border: 1px solid rgba(88, 49, 14, 0.12);
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
}

.pay-deposit-aside-card__label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  font-weight: 700;
}

.pay-deposit-aside-card__amount {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--bronze);
}

.pay-deposit-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.pay-deposit-trust li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.pay-deposit-trust i {
  color: var(--sage);
  width: 1rem;
  text-align: center;
}

.pay-deposit-help {
  font-size: 0.88rem;
  font-weight: 600;
}

.pay-deposit-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem 1.35rem;
}

.pay-deposit-form .pay-deposit-step:not(.is-active) {
  display: none;
}

.pay-deposit-step__head {
  margin-bottom: 1.25rem;
}

.pay-deposit-step__head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.pay-deposit-step__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.pay-deposit-hint {
  margin: -0.35rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.pay-deposit-form input.is-readonly {
  background: var(--cream);
  color: var(--bronze);
  cursor: default;
}

.pay-deposit-step__foot {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
}

.pay-deposit-step__foot--split {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.pay-deposit-step__foot--split .btn-outline {
  flex: 0 0 auto;
}

.pay-deposit-step__foot--split .btn-sage,
.pay-deposit-step__foot--split .btn-pay {
  flex: 1 1 auto;
  min-width: 10rem;
}

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

  .pay-deposit-aside {
    position: static;
    order: -1;
  }

  .pay-deposit-panel {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 520px) {
  .pay-deposit-step__foot--split {
    flex-direction: column;
  }

  .pay-deposit-step__foot--split .btn-sage,
  .pay-deposit-step__foot--split .btn-pay {
    width: 100%;
  }
}

.pay-deposit-gate {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.pay-deposit-gate h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.pay-deposit-gate__lead {
  margin: 0 0 1.75rem;
  color: var(--ink-muted);
  font-size: 1rem;
}

.pay-deposit-gate__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pay-deposit-gate__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.35rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition:
    border-color var(--t-f377),
    transform var(--t-f377);
}

.pay-deposit-gate__card:hover {
  border-color: var(--sage);
  transform: translateY(-2px);
  color: inherit;
}

.pay-deposit-gate__card i {
  font-size: 1.35rem;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.pay-deposit-gate__card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bronze);
}

.pay-deposit-gate__card span {
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.pay-deposit-gate__help {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

@media (max-width: 700px) {
  .pay-deposit-gate__grid {
    grid-template-columns: 1fr;
  }
}

.payment-status__icon {
  font-size: 3rem;
  margin: 0 0 1rem;
}

.payment-status__icon--success {
  color: var(--sage);
}

.payment-status__icon--failed {
  color: #b42318;
}

.payment-status__ref {
  font-size: 0.92rem;
  color: var(--ink-muted);
}

.calendly-embed-wrap {
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.calendly-embed-wrap iframe {
  display: block;
  width: 100%;
  min-height: 700px;
  border: 0;
  background: var(--white);
}

.calendly-fallback {
  padding: 2rem;
  text-align: center;
  color: var(--ink-muted);
}

.book-call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.book-call-expand {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.book-call-expand__summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
}

.book-call-expand__summary::-webkit-details-marker {
  display: none;
}

.book-call-expand__summary span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.book-call-expand__icon {
  color: var(--bronze);
  transition: transform var(--t-f377) var(--ease-out);
}

.book-call-expand[open] .book-call-expand__icon {
  transform: rotate(180deg);
}

.book-call-expand[open] .book-call-expand__summary {
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}

.book-call-expand__body .calendly-embed-wrap {
  min-height: 0;
  border: none;
  border-radius: 0;
}

.book-call-expand[open] .calendly-embed-wrap {
  min-height: 700px;
}

.book-call-note {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  text-align: center;
}

.package-quote-calendar.quote-calendar--locked {
  display: none;
}

.package-quote-calendar {
  margin-top: 2rem;
}

.quote-section-lead {
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}

.quote-calendar-heading {
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--bronze);
}

.package-sidebar-meta {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 0 0.25rem;
}

.package-quote-calendar .calendly-embed-wrap {
  min-height: 700px;
}

.catalog-quote-block {
  margin-top: 2.5rem;
}

.quote-form-pair--single {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .quote-form-pair--single {
    max-width: 50%;
  }
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 126, 43, 0.12);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition:
    transform var(--t-f377),
    box-shadow 0.35s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.contact-card--office h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-card--office h3 i {
  color: var(--gold);
}

.contact-card__address {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--cream);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

.contact-map-link:hover {
  color: var(--gold);
}

.contact-card--office + .contact-card--office {
  margin-top: 1rem;
}

.contact-card--office + .contact-card:not(.contact-card--office) {
  margin-top: 1rem;
}

/* ─── Reduced motion ─── */
.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

.reduce-motion .page-loader {
  display: none !important;
}

.reduce-motion .hero-bg--static img {
  transform: none !important;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-slider {
    grid-template-columns: 1fr;
  }
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .package-layout {
    grid-template-columns: 1fr;
  }
  .package-sidebar {
    position: static;
  }
}

@media (max-width: 987px) {
  :root {
    --header-h: var(--f-55);
    --topbar-h: var(--f-34);
    --trustbar-h: 54px;
  }

  .trust-bar-section {
    padding: 0.55rem 0;
  }

  .trust-inline-bar {
    gap: 0.5rem 1rem;
  }

  .trust-inline-bar__label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .topbar {
    height: var(--topbar-h);
    padding: 0;
    font-size: 0.72rem;
    overflow: hidden;
  }

  .topbar .container {
    height: 100%;
    justify-content: center;
    gap: 0.35rem 0.75rem;
  }

  .topbar-start .topbar-item:nth-child(3) {
    display: none;
  }

  .nav {
    min-height: var(--header-h);
    gap: 0.5rem;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .site-header .logo-text strong {
    font-size: 1.25rem;
  }

  .nav-links {
    position: fixed;
    top: var(--chrome-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--t-f610) var(--ease-out);
    overflow-y: auto;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    padding: 1rem 0.85rem;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .nav-dropdown .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--cream);
    margin: 0.35rem 0 0.75rem 0.5rem;
    min-width: 0;
  }

  .dropdown-heading {
    padding-left: 0.85rem;
  }

  .dropdown-heading:not(:first-child) {
    margin-top: 0.5rem;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
    flex-shrink: 0;
  }

  .nav-actions {
    flex-wrap: nowrap;
    gap: 0.35rem;
    margin-left: auto;
    flex-shrink: 0;
  }

  .nav-actions .btn-sage {
    display: none;
  }

  .nav-selectors {
    order: 0;
    width: auto;
    border-top: none;
    margin-top: 0;
    padding: 0;
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .nav-locale-btn {
    font-size: 0.75rem;
    padding: 0.28rem 0.32rem;
  }

  .nav-flag {
    width: 18px;
    height: 12px;
  }

  .hero-content {
    padding: 2rem 0 3.5rem;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2rem, 8.5vw, 2.75rem);
    line-height: 1.05;
  }

  .hero-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    margin-bottom: 1.75rem;
    font-size: 1rem;
  }

  .quick-search__fields {
    flex-direction: column;
    border-radius: var(--radius-lg);
  }

  .quick-search__divider {
    width: auto;
    height: 1px;
    margin: 0 1rem;
  }

  .quick-search__field--narrow {
    flex: 1 1 auto;
  }

  .quick-search__submit {
    width: 100%;
    min-height: 3.25rem;
    padding: 1rem;
  }

  .quick-search__field--dropdown .quick-search__dropdown {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    box-shadow: none;
    border: 1px solid #e8e4df;
  }

  .quick-search__field--dropdown:not(.is-open) .quick-search__dropdown {
    display: none !important;
  }

  .quick-search__field--dropdown.is-open .quick-search__dropdown {
    display: block !important;
  }

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

  .dest-preview-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .why-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stats-grid {
    gap: 1rem;
  }

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

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

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

  .package-hero {
    min-height: 360px;
  }

  .package-hero-meta {
    font-size: 0.85rem;
    gap: 0.65rem 1rem;
  }

  .package-layout {
    gap: 2rem;
    padding: 2rem 0 3.5rem;
  }

  .package-sidebar {
    padding: 1.25rem;
  }

  .sticky-nav {
    top: var(--chrome-h);
  }

  .whatsapp-float {
    bottom: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .marquee__track {
    font-size: 0.72rem;
  }

  .section {
    padding: clamp(3.5rem, 10vw, 5rem) 0;
  }

  .cta-buttons,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(1240px, 94vw);
  }

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

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

  .topbar-item:not(:first-child) {
    display: none;
  }

  .page-hero {
    padding-bottom: 2rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .sticky-nav a {
    padding: 0.85rem 0.9rem;
    font-size: 0.78rem;
  }

  .itinerary-tabs {
    flex-direction: column;
    align-items: stretch;
  }

  .itinerary-tab {
    width: 100%;
    text-align: left;
  }

  .day-header {
    font-size: 0.88rem;
    padding: 0.85rem 1rem;
  }
}

/* ─── Search results page ─── */
.page-search {
  background: #f7f4ef;
}

.page-villas {
  background: #f7f4ef;
}

/* ─── Villas list page ─── */
.villas-list-page {
  background: #f7f4ef;
}

.villas-list-hero {
  position: relative;
  isolation: isolate;
  background: #2a1a0c url("../assets/villas/coast-villa.jpg") center 40% / cover
    no-repeat;
  padding-top: calc(var(--chrome-h) + 1rem);
  padding-bottom: 0;
}

.villas-list-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(42, 26, 12, 0.72) 0%,
    rgba(42, 26, 12, 0.82) 55%,
    rgba(42, 26, 12, 0.9) 100%
  );
}

.villas-list-hero__intro,
.villas-list-hero__search {
  position: relative;
  z-index: 1;
}

.villas-list-hero__intro {
  text-align: center;
  padding-bottom: 1rem;
}

.villas-list-hero__intro .breadcrumb {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
}

.villas-list-hero__intro .breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.villas-list-hero__intro .breadcrumb a:hover {
  color: var(--white);
}

.villas-list-hero__intro h1 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

.villas-list-hero__lead {
  margin: 0 auto;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  line-height: 1.5;
}

.villas-list-hero__search {
  padding-bottom: 1.35rem;
}

.villas-list-hero__search .quick-search__fields {
  max-width: 920px;
  margin-inline: auto;
}

.villas-search-form__fields .quick-search__field--narrow {
  flex: 0 0 10.5rem;
}

.villas-search-form__input,
.villas-search-form__select {
  width: 100%;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  margin: 0;
}

.villas-search-form__input:focus,
.villas-search-form__select:focus {
  outline: none;
}

.villas-search-form__input::placeholder {
  color: #9ca3af;
  font-weight: 500;
}

.villas-search-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2358310e' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.25rem;
}

.villas-list-results {
  padding: 1.35rem 0 3.25rem;
}

.villas-list-results__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #e8e2d9;
}

.villas-list-results__count {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.villas-list-results__count strong {
  color: var(--ink);
  font-weight: 700;
}

.villas-list-results__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.villas-list-layout {
  align-items: start;
}

.villas-list-filters .search-page-filters__inner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.villas-list-main {
  min-width: 0;
}

.villas-list-empty[hidden] {
  display: none !important;
}

.villas-list-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page-villas .catalog-grid--villas {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.page-villas .catalog-card--villa {
  height: 100%;
  border-radius: 12px;
  border-color: #e8e2d9;
  box-shadow: 0 1px 6px rgba(42, 26, 12, 0.05);
}

.page-villas .catalog-card--villa .catalog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.1rem 1.2rem 1.15rem;
}

.page-villas .catalog-card--villa:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(42, 26, 12, 0.1);
}

.page-villas .catalog-card--villa .catalog-card__media {
  aspect-ratio: 4 / 3;
}

.page-villas .catalog-card--villa .catalog-card__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--sage-dark);
  margin: 0 0 0.25rem;
}

.page-villas .catalog-card--villa .catalog-card__body h2 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
  line-height: 1.25;
}

.page-villas .catalog-card__facts {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.page-villas .catalog-card__facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.page-villas .catalog-card__facts i {
  color: var(--gold);
  font-size: 0.78rem;
}

.page-villas .catalog-card--villa .catalog-card__desc {
  font-size: 0.84rem;
  line-height: 1.45;
  margin-bottom: 0.65rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.page-villas .catalog-card--villa .catalog-card__cta {
  margin-top: auto;
  padding-top: 0.15rem;
}

.page-villas .villas-region__title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  padding: 0;
  border: 0;
  display: block;
  color: var(--ink-muted);
}

.page-villas .villas-region + .villas-region {
  margin-top: 1.75rem;
}

@media (max-width: 900px) {
  .villas-list-hero {
    padding-top: calc(var(--chrome-h) + 1.25rem);
  }

  .villas-list-hero__search .quick-search__fields {
    flex-direction: column;
    border-radius: 12px;
  }

  .villas-list-hero__search .quick-search__divider {
    display: none;
  }

  .villas-list-hero__search .quick-search__field {
    border-bottom: 1px solid #eee8df;
  }

  .villas-list-hero__search .quick-search__field:last-of-type {
    border-bottom: 0;
  }

  .villas-list-hero__search .quick-search__submit {
    width: 100%;
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 768px) {
  .villas-list-results__header {
    align-items: stretch;
  }

  .villas-list-results__toolbar {
    width: 100%;
    justify-content: space-between;
  }

  .search-page-filters-toggle {
    display: inline-flex;
  }
}

.search-page-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 1.25rem 0 1rem;
  background: #f7f4ef;
  border-bottom: 1px solid #e8e4df;
}

.search-page-hero {
  padding-top: calc(var(--chrome-h) + 1.5rem);
  padding-bottom: 1.75rem;
}

.search-page-bar--open {
  z-index: 50;
}

.search-page-bar .quick-search {
  max-width: none;
}

.search-page-results.section {
  padding-top: 2rem;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.search-page-results__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.search-page-results__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 0.35rem;
  color: var(--ink);
}

.search-page-results__count {
  margin: 0;
  font-size: 1rem;
  color: #6b7280;
}

.search-page-results__count strong {
  color: var(--ink);
  font-weight: 700;
}

.search-page-results__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.search-page-filters-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.95rem;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(42, 26, 12, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-page-filters-toggle:hover {
  border-color: #c9bfb0;
}

.search-page-sort select {
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23c17e2b' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  box-shadow: 0 1px 3px rgba(42, 26, 12, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.search-page-sort select:hover {
  border-color: #c9bfb0;
}

.search-page-sort select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 126, 43, 0.12);
}

/* ─── Cupstone custom dropdown ─── */
@keyframes cupstone-dropdown-in {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cupstone-dropdown {
  position: relative;
}

.cupstone-dropdown__anchor {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.cupstone-dropdown--field.is-open {
  z-index: 60;
}

.villas-list-hero__search
  .quick-search__fields:has(.cupstone-dropdown.is-open) {
  z-index: 80;
  overflow: visible;
}

.villas-list-hero:has(.cupstone-dropdown.is-open) {
  z-index: 25;
}

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

.cupstone-dropdown__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.cupstone-dropdown__trigger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 6px;
}

.cupstone-dropdown--toolbar .cupstone-dropdown__trigger {
  padding: 0.6rem 2.15rem 0.6rem 0.9rem;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(42, 26, 12, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cupstone-dropdown--toolbar .cupstone-dropdown__trigger:hover {
  border-color: #c9bfb0;
}

.cupstone-dropdown--toolbar.is-open .cupstone-dropdown__trigger {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(193, 126, 43, 0.12);
}

.cupstone-dropdown__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cupstone-dropdown__chevron {
  font-size: 0.62rem;
  color: var(--gold);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.cupstone-dropdown.is-open .cupstone-dropdown__chevron {
  transform: rotate(180deg);
}

.cupstone-dropdown__panel {
  position: fixed;
  z-index: 1200;
  padding: 0.4rem;
  background: #fff;
  border: 1px solid #ebe5dc;
  border-radius: 12px;
  box-shadow:
    0 4px 8px rgba(42, 26, 12, 0.04),
    0 16px 40px rgba(42, 26, 12, 0.12);
  animation: cupstone-dropdown-in 0.2s ease;
}

.cupstone-dropdown__panel--field {
  width: max-content;
  min-width: 220px;
  max-width: min(300px, calc(100vw - 2rem));
}

.cupstone-dropdown__panel[hidden] {
  display: none !important;
}

.cupstone-dropdown__panel.quick-search__dropdown {
  background: #fff;
  border: 1px solid #ebe5dc;
  padding: 0.4rem;
}

.cupstone-dropdown__panel .cupstone-dropdown__option {
  color: var(--ink);
}

.cupstone-dropdown__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.cupstone-dropdown__option:hover {
  background: #f7f3ed;
}

.cupstone-dropdown__option.is-selected {
  background: linear-gradient(
    135deg,
    rgba(193, 126, 43, 0.1),
    rgba(27, 107, 58, 0.07)
  );
  color: var(--bronze);
}

.cupstone-dropdown__option.is-selected::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  color: var(--sage);
  flex-shrink: 0;
}

.search-page-view {
  display: inline-flex;
  border: 1px solid #e0d8cc;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 3px rgba(42, 26, 12, 0.04);
}

.search-page-view__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.9rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
}

.search-page-view__btn.is-active {
  background: #fdf8f2;
  color: var(--gold-dark, #58310e);
}

.search-page-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.search-page-filters__inner {
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 12px;
  padding: 1.15rem;
  box-shadow: 0 1px 4px rgba(42, 26, 12, 0.04);
}

.search-page-filter + .search-page-filter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ece6;
}

.search-page-filter__title,
.search-page-filter__toggle {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.search-page-filter__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.35rem 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  border-radius: 6px;
  transition: color 0.15s ease;
}

.search-page-filter__toggle:hover {
  color: var(--bronze);
}

.search-page-filter__toggle .fa-chevron-down {
  font-size: 0.7rem;
  color: var(--gold);
  transition: transform 0.22s ease;
}

.search-page-filter.is-collapsed .search-page-filter__toggle .fa-chevron-down {
  transform: rotate(-90deg);
}

.search-page-filter.is-collapsed .search-page-filter__options {
  display: none;
}

.search-page-filter__options {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.search-page-filter__label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.35;
}

.search-page-filter__label input {
  margin-top: 0.15rem;
  accent-color: var(--gold);
}

.search-page-filters__clear {
  width: 100%;
  margin-top: 1.25rem;
  padding: 0.65rem 1rem;
  border: 1px solid #d8d0c6;
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark, #58310e);
  cursor: pointer;
}

.search-results--list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.search-results--grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
  gap: 1.5rem;
}

/* Holiday listing card - Newmarket-style vertical card */
.holiday-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e2ddd6;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.holiday-card:hover {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.holiday-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  color: inherit;
  background: #e8e4df;
}

.holiday-card__media picture,
.holiday-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.holiday-card__promo {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 3px;
  background: #c45c2a;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  max-width: calc(100% - 1.5rem);
  text-align: center;
}

.holiday-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.15rem 1.15rem;
  gap: 0.65rem;
}

.holiday-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: #1a2b3c;
}

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

.holiday-card__title a:hover {
  color: var(--gold);
}

.holiday-card__destination {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #4b5563;
}

.holiday-card__destination i {
  color: var(--gold);
  font-size: 0.8rem;
}

.holiday-card__summary {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5c6670;
}

.holiday-card__features {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.holiday-card__feature {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border: 1px solid #d8d0c6;
  border-radius: 999px;
  background: #faf8f5;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3d4a56;
  letter-spacing: 0.01em;
}

.holiday-card__feature-more {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark, #58310e);
}

.holiday-card__highlights {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  color: #4b5563;
  font-size: 0.84rem;
  line-height: 1.45;
}

.holiday-card__highlights li {
  position: relative;
  padding-left: 1rem;
}

.holiday-card__highlights li::before {
  content: "-";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.holiday-card__highlights li + li {
  margin-top: 0.3rem;
}

.holiday-card__pricing {
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0ece6;
}

.holiday-card__price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.35rem;
  margin: 0;
  font-size: 0.92rem;
  color: #1a2b3c;
}

.holiday-card__duration {
  font-weight: 700;
}

.holiday-card__from,
.holiday-card__pp {
  font-size: 0.85rem;
  color: #6b7280;
}

.holiday-card__price {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a2b3c;
}

.holiday-card__was-price {
  width: 100%;
  font-size: 0.82rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.holiday-card__included {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #4b5563;
}

.holiday-card__included i {
  color: var(--gold);
  font-size: 0.78rem;
}

.holiday-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f0ece6;
}

.holiday-card__fact h3 {
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #9ca3af;
  line-height: 1.3;
}

.holiday-card__fact p {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1a2b3c;
  line-height: 1.35;
}

.holiday-card__cta {
  width: 100%;
  margin-top: auto;
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 4px;
}

.search-results--list .holiday-card {
  max-width: 100%;
}

@media (min-width: 900px) {
  .search-results--list .holiday-card {
    display: grid;
    grid-template-columns: minmax(280px, 38%) minmax(0, 1fr);
    border-radius: 8px;
  }

  .search-results--list .holiday-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .search-results--list .holiday-card__body {
    padding: 1.25rem 1.5rem;
  }

  .search-results--list .holiday-card__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .search-results--list .holiday-card__cta {
    width: auto;
    align-self: flex-start;
    min-width: 9rem;
  }
}

.search-page-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  background: #fff;
  border: 1px solid #e8e4df;
  border-radius: 10px;
}

.search-page-empty[hidden] {
  display: none !important;
}

.search-page-empty__title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.search-page-empty__hint {
  margin: 0;
  color: #6b7280;
}

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

@media (max-width: 960px) {
  .search-page-layout {
    grid-template-columns: 1fr;
  }

  .search-page-filters-toggle {
    display: inline-flex;
  }

  .search-page-filters {
    display: none;
  }

  .search-page-filters.is-open {
    display: block;
  }
}

.holiday-card[data-href] {
  cursor: pointer;
}

.holiday-card__feature i {
  font-size: 0.68rem;
  color: var(--gold);
}

.holiday-card__feature-more {
  border: none;
  background: none;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-dark, #58310e);
  cursor: pointer;
  font-family: var(--font-body);
}

.holiday-card__feature-more:hover {
  text-decoration: underline;
}

.search-page-filter__more {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.35rem 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark, #58310e);
  text-align: left;
  cursor: pointer;
}

.search-page-filter__more:hover {
  text-decoration: underline;
}

.search-page-pagination {
  margin-top: 1.5rem;
}

.search-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.search-pagination__btn {
  min-width: 2.5rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid #d8d0c6;
  border-radius: 4px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.search-pagination__btn.is-active {
  background: var(--gold-dark, #58310e);
  border-color: var(--gold-dark, #58310e);
  color: #fff;
}

.search-context-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: #fdf8f2;
  border: 1px solid #e8dcc8;
  font-size: 0.9rem;
  color: #4b5563;
}

.search-context-banner i {
  color: var(--gold);
  margin-top: 0.15rem;
}

@media (max-width: 640px) {
  .search-page-results__toolbar {
    width: 100%;
  }

  .search-page-sort,
  .search-page-sort select,
  .search-page-view {
    flex: 1 1 auto;
  }

  .search-page-sort select {
    width: 100%;
  }
}

.footer-contact-note {
  display: block;
  font-size: 0.75rem;
  opacity: 0.75;
  margin: -0.25rem 0 0.5rem;
}

.footer-offices {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.8;
  font-style: normal;
  line-height: 1.5;
}

.newsletter-form-message {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.newsletter-form-message--ok { color: var(--sage-700, #2d5a3d); }
.newsletter-form-message--err { color: #b42318; }

.google-reviews-embed iframe {
  display: block;
  width: 100%;
}

.google-reviews-card {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: var(--surface-elevated, #faf8f5);
  border: 1px solid rgba(88, 49, 14, 0.08);
}

.google-reviews-card__stars {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: #c9a227;
  margin: 0 0 0.25rem;
}

.google-reviews-card__rating {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
  color: var(--text-muted, #5c4a3a);
}

.google-reviews-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quote-email-backup {
  margin-top: 0.75rem;
  color: var(--sage-700, #3d5c45);
  font-size: 0.9rem;
}
  max-width: 100%;
}

.package-combo-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.9rem;
}

.migration-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.migration-table th,
.migration-table td {
  padding: 0.75rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.migration-table thead th {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brown-mid);
  background: rgba(88, 49, 14, 0.06);
  border-bottom: 1px solid var(--border);
}

.migration-table tbody tr {
  border-bottom: 1px solid var(--border);
}

.migration-table tbody tr:last-child {
  border-bottom: 0;
}

.migration-table tbody td {
  color: var(--ink-muted);
}

.migration-table tbody td:first-child {
  color: var(--brown-mid);
  font-weight: 600;
  white-space: nowrap;
}

.migration-season {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(139, 90, 43, 0.1);
  font-size: 0.8rem;
}

/* Plan your safari */
.page-hero__lead {
  opacity: 0.92;
  max-width: 36rem;
  margin: 0.75rem auto 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.plan-safari-page.section {
  padding-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.plan-safari-layout {
  display: grid;
  gap: 1.75rem;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 900px) {
  .plan-safari-layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: 2rem;
  }
}

.plan-safari-main {
  display: grid;
  gap: 1.75rem;
}

.plan-safari-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 12px 40px rgba(44, 24, 16, 0.06);
}

.plan-safari-form .plan-field {
  margin-bottom: 1.15rem;
}

.plan-safari-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 0.45rem;
}

.plan-safari-form select {
  width: 100%;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b5c52' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.plan-safari-form select:hover {
  border-color: rgba(139, 90, 43, 0.35);
}

.plan-safari-form select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(139, 90, 43, 0.15);
}

.plan-safari-form .btn-block {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.95rem 1.25rem;
  font-size: 1rem;
}

.plan-safari-result {
  animation: plan-result-in 0.35s ease;
}

@keyframes plan-result-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-safari-result__head {
  margin-bottom: 1.25rem;
}

.plan-safari-result__head h2 {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  color: var(--brown-mid);
  margin: 0 0 0.35rem;
}

.plan-safari-result__head p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.plan-safari-result .packages-grid {
  grid-template-columns: 1fr;
  gap: 1.15rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .plan-safari-result .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.plan-safari-result .package-card .card-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.plan-safari-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.migration-calendar__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.migration-calendar__icon {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 90, 43, 0.14), rgba(88, 49, 14, 0.08));
  color: var(--bronze);
  font-size: 1rem;
  flex-shrink: 0;
}

.migration-calendar h2 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--brown-mid);
  line-height: 1.3;
}

.migration-calendar__intro {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.migration-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream);
}

.migration-table-wrap .migration-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

@media (max-width: 520px) {
  .migration-table {
    font-size: 0.82rem;
  }

  .migration-table th,
  .migration-table td {
    padding: 0.6rem 0.65rem;
  }
}

.legal-page.section {
  padding-top: calc(var(--chrome-h) + clamp(2rem, 5vw, 3rem));
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.legal-page h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--brown-mid);
}

.legal-page h2 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.page-404 {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.page-404__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-404__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.page-404__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(247, 243, 238, 0.92) 0%,
    rgba(247, 243, 238, 0.98) 55%,
    var(--cream) 100%
  );
}

.page-404__inner {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.page-404__code {
  font-size: clamp(4.5rem, 16vw, 7rem);
  font-weight: 700;
  line-height: 1;
  color: var(--bronze);
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
  opacity: 0.9;
}

.page-404__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(88, 49, 14, 0.1);
  color: var(--bronze);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.page-404__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
}

.page-404__lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0 auto 1.75rem;
  max-width: 32ch;
}

.page-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.page-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.page-404__links a {
  color: var(--bronze);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.page-404__links a:hover {
  text-decoration: underline;
}

/* Honeypot - hidden from users, visible to basic bots */
.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Skip link (WCAG 2.4.1) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--bronze, #58310e);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 0.35rem 0;
}

.skip-link:focus {
  left: 0;
  outline: 3px solid var(--gold-light, #f9e86f);
  outline-offset: 2px;
}

/* Cookie consent banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1rem 1.25rem;
  background: rgba(58, 37, 16, 0.97);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--gold-light, #f9e86f);
}

.cookie-banner__accept {
  flex-shrink: 0;
}

.nav-locale-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(88, 49, 14, 0.08);
  color: var(--bronze, #58310e);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
