/* ============================================================
   French Riviera Shared Tours — Design System
   Refined Mediterranean luxury: limestone, azure, golden hour
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --navy: #1B2D4F;
  --navy-deep: #14223C;
  --navy-soft: #2A3F66;
  --gold: #C9A84C;
  --gold-deep: #B0902F;
  --gold-soft: #E3CE8F;
  --cream: #FAF8F3;
  --cream-deep: #F2ECDE;
  --charcoal: #2C2C2C;
  --grey: #7A7162;
  --grey-light: #9A9183;
  --white: #FFFFFF;
  --border: #E8E0D0;
  --whatsapp: #25D366;
  --whatsapp-deep: #1EB855;
  --green-check: #4A8B5C;

  --shadow-sm: 0 2px 10px rgba(27, 45, 79, 0.06);
  --shadow-md: 0 10px 30px rgba(27, 45, 79, 0.10);
  --shadow-lg: 0 24px 60px rgba(27, 45, 79, 0.16);

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Lato', -apple-system, sans-serif;
  --ff-label: 'Montserrat', sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ---------- Semantic UI tokens ----------
     These map to brand colours by default. Override individually from
     Appearance → Customize → FRST Branding → Interface tokens to recolour
     links / buttons / text / borders without touching the brand palette. */
  --link: var(--gold-deep);
  --link-hover: var(--navy);
  --btn-primary-bg: var(--gold);
  --btn-primary-bg-hover: var(--gold-deep);
  --btn-primary-text: var(--navy);
  --btn-primary-border: var(--btn-primary-bg);
  --btn-secondary-bg: var(--navy);
  --btn-secondary-bg-hover: var(--navy-deep);
  --btn-secondary-text: var(--white);
  --text-body: var(--charcoal);
  --text-heading: var(--navy);
  --text-muted: var(--grey);
  --text-subtle: var(--grey-light);
  --divider: var(--border);
  --divider-strong: var(--navy-soft);
  --surface: var(--cream);
  --surface-alt: var(--cream-deep);
  --surface-card: var(--white);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text-heading);
}

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.section {
  padding: clamp(64px, 9vw, 120px) 0;
}

.section--tight {
  padding: clamp(48px, 6vw, 80px) 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-cream-deep {
  background: var(--cream-deep);
}

.bg-white {
  background: var(--white);
}

.bg-navy {
  background: var(--navy);
  color: var(--white);
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3 {
  color: var(--white);
}

/* ---------- Typography ---------- */
.label {
  font-family: var(--ff-label);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-deep);
  margin: 0 0 18px;
}

.bg-navy .label {
  color: var(--gold-soft);
}

.h-display {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.h3 {
  font-size: clamp(24px, 3vw, 30px);
}

.lead {
  font-size: clamp(19px, 2.2vw, 22px);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-muted);
}

.muted {
  color: var(--text-muted);
}

.section-head {
  max-width: 720px;
}

.section-head.center {
  margin: 0 auto;
  text-align: center;
}

.section-head p {
  margin: 18px 0 0;
}

p {
  text-wrap: pretty;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 15px 32px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn--primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-border);
}

.btn--primary:hover {
  background: var(--btn-primary-bg-hover);
  border-color: var(--btn-primary-bg-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(176, 144, 47, 0.32);
}

.btn--navy {
  background: var(--btn-secondary-bg);
  color: var(--btn-secondary-text);
  border-color: var(--btn-secondary-bg);
}

.btn--navy:hover {
  background: var(--btn-secondary-bg-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--ghost-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--ghost-navy:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn--whatsapp:hover {
  background: var(--whatsapp-deep);
  border-color: var(--whatsapp-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(37, 211, 102, 0.3);
}

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

.btn--lg {
  padding: 19px 40px;
  font-size: 16px;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.ico {
  width: 18px;
  height: 18px;
  flex: none;
}

.txtlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.4px;
  color: var(--gold-deep);
  transition: gap 0.3s var(--ease);
}

.txtlink:hover {
  gap: 14px;
}

.txtlink .arr {
  transition: transform 0.3s var(--ease);
}

.txtlink:hover .arr {
  transform: translateX(3px);
}

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.3s var(--ease);
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(27, 45, 79, 0.06);
  padding: 14px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand--logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand--logo .custom-logo {
  display: block;
  max-height: 48px;
  width: auto;
  height: auto;
}

.nav.scrolled .brand--logo .custom-logo {
  max-height: 40px;
}

body.admin-bar .nav {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .nav {
    top: 46px;
  }
}

.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex: none;
  border: 1.5px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--gold-deep);
  background: rgba(201, 168, 76, 0.06);
}

.brand__name {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: 0.2px;
}

.brand__name small {
  display: block;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 3px;
}

.nav.on-dark:not(.scrolled) .brand__name {
  color: var(--white);
}

.nav.on-dark:not(.scrolled) .brand__mark {
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li::marker {
  content: '';
}

.nav__links a {
  font-family: var(--ff-label);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--charcoal);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s;
}

.nav.on-dark:not(.scrolled) .nav__links a {
  color: rgba(255, 255, 255, 0.92);
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.nav__links a:hover::after,
.nav__links a.active::after,
.nav__links li.current-menu-item>a::after,
.nav__links li.current_page_item>a::after {
  width: 100%;
}

.nav__links a.active,
.nav__links li.current-menu-item>a,
.nav__links li.current_page_item>a {
  color: var(--gold-deep);
}

.nav.on-dark:not(.scrolled) .nav__links a.active,
.nav.on-dark:not(.scrolled) .nav__links li.current-menu-item>a,
.nav.on-dark:not(.scrolled) .nav__links li.current_page_item>a {
  color: var(--gold-soft);
}

/* Desktop dropdown sub-menus */
.nav__links li {
  position: relative;
}

.nav__links li.menu-item-has-children > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__links li.menu-item-has-children > a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
  order: 2;
}

.nav__links li.menu-item-has-children:hover > a::before,
.nav__links li.menu-item-has-children:focus-within > a::before {
  transform: translateY(0) rotate(225deg);
  opacity: 1;
}

.nav__links .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  background: var(--navy);
  list-style: none;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(10, 18, 35, 0.25), 0 2px 6px rgba(10, 18, 35, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 60;
}

/* Invisible bridge so the dropdown doesn't disappear when crossing the gap. */
.nav__links .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav__links li.menu-item-has-children:hover > .sub-menu,
.nav__links li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

.nav__links .sub-menu li { margin: 0; }

.nav__links .sub-menu a {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: none;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

/* Override the underline animation inherited from .nav__links a. */
.nav__links .sub-menu a::after { content: none; }

.nav__links .sub-menu a:hover,
.nav__links .sub-menu a:focus-visible,
.nav__links .sub-menu .current-menu-item > a,
.nav__links .sub-menu a.active {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Light variant when the header is on a light background (not on-dark and scrolled). */
.nav:not(.on-dark) .nav__links .sub-menu,
.nav.scrolled .nav__links .sub-menu {
  background: #fff;
  box-shadow: 0 14px 32px rgba(20, 23, 28, 0.12), 0 2px 6px rgba(20, 23, 28, 0.08);
  border: 1px solid var(--border, #e8e0d0);
}

.nav:not(.on-dark) .nav__links .sub-menu a,
.nav.scrolled .nav__links .sub-menu a {
  color: var(--charcoal);
}

.nav:not(.on-dark) .nav__links .sub-menu a:hover,
.nav.scrolled .nav__links .sub-menu a:hover {
  background: var(--cream-deep, #f2ecde);
  color: var(--navy);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: #fff;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 40px;
  transition: all 0.3s var(--ease);
}

.nav__wa:hover {
  background: var(--whatsapp-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 210;
  position: relative;
}

.nav__burger span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.3s var(--ease);
  transform-origin: center;
}

.nav.on-dark:not(.scrolled) .nav__burger span {
  background: #fff;
}

.nav__burger.is-open span {
  background: #fff;
}

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

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

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

/* Mobile drawer menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.mobile-menu.open {
  pointer-events: auto;
}

.mobile-menu__scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 18, 35, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
}

.mobile-menu.open .mobile-menu__scrim { opacity: 1; }

.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--navy);
  color: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.35);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 0.61, 0.36, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-menu.open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 4px;
  gap: 10px;
}

.mobile-menu__eyebrow {
  font-family: "Lato", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 6px;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.15s ease;
}

.mobile-menu__close:hover { background: rgba(255, 255, 255, 0.08); }
.mobile-menu__close svg { width: 22px; height: 22px; }

.mobile-menu__nav {
  padding: 8px 18px 18px;
  flex: 1;
}

.mobile-menu__nav ul,
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu__nav li { margin: 8px 0; }

/* Tighten the gap between a parent and its sub-list so they read as a group. */
.mobile-menu__nav li.menu-item-has-children { margin-bottom: 4px; }
.mobile-menu__nav li.menu-item-has-children + li { margin-top: 12px; }

.mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  font-family: "Lato", system-ui, -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible,
.mobile-menu__nav .active {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Chevron on parents that have children — pure CSS, no markup change. */
.mobile-menu__nav li.menu-item-has-children > a::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

/* Sub-list grouped under parent with a left connector line. */
.mobile-menu__nav .sub-menu {
  margin: 4px 0 4px 12px;
  padding: 4px 0 4px 16px;
  border-left: 2px solid rgba(255, 255, 255, 0.14);
  position: relative;
}

.mobile-menu__nav .sub-menu li { margin: 1px 0; }

.mobile-menu__nav .sub-menu a {
  background: transparent;
  border: none;
  padding: 9px 12px 9px 22px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 6px;
  position: relative;
  justify-content: flex-start;
}

.mobile-menu__nav .sub-menu a::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
  transition: background 0.15s ease;
}

.mobile-menu__nav .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.mobile-menu__nav .sub-menu a:hover::before {
  background: rgba(255, 255, 255, 0.85);
}

.mobile-menu__nav .sub-menu .active::before {
  background: var(--gold-soft, #e3ce8f);
}

.mobile-menu__foot {
  padding: 12px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu__wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: #25d366;
  color: #062b13;
  border-radius: 10px;
  font-family: "Lato", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.18);
  transition: background 0.15s ease, transform 0.15s ease;
}

.mobile-menu__wa:hover {
  background: #1ebb55;
  transform: translateY(-1px);
}

.mobile-menu__wa svg {
  width: 20px;
  height: 20px;
}

.mobile-menu__footer-text {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Lato", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.mobile-menu__footer-text a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-menu__footer-text a:hover {
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero--home {
  height: 90vh;
  min-height: 600px;
}

.hero--tour {
  height: 60vh;
  min-height: 540px;
}

.hero--tour .hero__title {
  font-size: clamp(33px, 4.6vw, 52px);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media image-slot,
.hero__media .img-fill {
  width: 100%;
  height: 100%;
}

.hero--home .hero__media image-slot {
  animation: kenburns 24s ease-out infinite alternate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
  pointer-events: none;
}

.hero__media[data-mode="video"] .hero__video.ready {
  opacity: 1;
}

.hero__media[data-mode="video"].has-video image-slot {
  animation: none;
}

@keyframes kenburns {
  from {
    transform: scale(1.02);
  }

  to {
    transform: scale(1.14);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20, 34, 60, 0.86) 0%, rgba(20, 34, 60, 0.42) 38%, rgba(20, 34, 60, 0.12) 70%, rgba(20, 34, 60, 0.28) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 96px);
  padding-top: 120px;
}

.hero--home .hero__content {
  max-width: 860px;
}

.hero--home.center .hero__content {
  margin: 0 auto;
  text-align: center;
}

.hero__content {
  color: #fff;
}

.hero__content .label {
  color: var(--gold-soft);
}

.hero__title {
  color: #fff;
  font-weight: 700;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
  font-size: clamp(18px, 2.2vw, 21px);
  max-width: 640px;
  margin: 22px 0 34px;
  line-height: 1.55;
}

.hero--home.center .hero__sub {
  margin-left: auto;
  margin-right: auto;
}

.hero__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero--home.center .hero__btns {
  justify-content: center;
}

.hero__stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 24px;
  font-family: var(--ff-label);
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.hero__stars .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 17px;
}

.hero__stars .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-soft);
}

/* ---------- Image slot styling ---------- */
image-slot {
  --is-bg: linear-gradient(135deg, #cfe0e6 0%, #e9e1d0 52%, #d8c9a3 100%);
}

image-slot::part(empty) {
  background: var(--is-bg);
}

/* Decorative placeholder fallback look via wrapper */
.img-ph {
  background: linear-gradient(135deg, #c3d6dd 0%, #e6dcc8 55%, #d3c39c 100%);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 16px;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(27, 45, 79, 0.45);
  text-align: center;
}

.hero__media .img-fill {
  position: absolute;
  inset: 0;
  object-fit: cover;
}

/* ---------- Trust bar ---------- */
.trustbar {
  background: var(--cream-deep);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.trustbar__viewport {
  overflow: hidden;
  padding: 26px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trustbar__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  gap: 48px;
  animation: frst-trustbar-scroll 40s linear infinite;
  will-change: transform;
}

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

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  white-space: nowrap;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
}

.trust-item .mark {
  color: var(--gold);
  font-size: 14px;
}

@keyframes frst-trustbar-scroll {
  from {
    transform: translateX(0);
  }

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

@media (prefers-reduced-motion: reduce) {
  .trustbar__track {
    animation: none;
    transform: none;
  }
}

/* Static layout inside the Elementor editor so authors can read & edit items. */
body.elementor-editor-active .trustbar,
body.elementor-editor-active .trustbar__viewport {
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

body.elementor-editor-active .trustbar__track {
  animation: none;
  transform: none;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

body.elementor-editor-active .trustbar__track>[aria-hidden="true"] {
  display: none;
}

/* ---------- Two column (welcome) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.split--text-rich p {
  margin: 0 0 18px;
  color: var(--grey);
}

.video-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.video-card .play {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: linear-gradient(to top, rgba(20, 34, 60, 0.55), rgba(20, 34, 60, 0.15));
  color: #fff;
  transition: background 0.3s;
}

.video-card:hover .play {
  background: linear-gradient(to top, rgba(20, 34, 60, 0.65), rgba(20, 34, 60, 0.25));
}

.video-card .play__btn {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s;
  box-shadow: var(--shadow-md);
}

.video-card:hover .play__btn {
  transform: scale(1.08);
  background: #fff;
}

.video-card .play__btn svg {
  width: 26px;
  height: 26px;
  margin-left: 4px;
  fill: var(--navy);
}

.video-card .play span {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.video-card button.play {
  border: 0;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.video-card button.play:focus-visible {
  outline: 2px solid #fff;
  outline-offset: -8px;
}

/* ---------- Video modal (welcome video etc.) ---------- */
.frst-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 16, 32, 0.86);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: frst-vm-fade 0.18s ease-out;
}

.frst-video-modal__inner {
  position: relative;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  border-radius: 12px;
  overflow: hidden;
}

.frst-video-modal__inner iframe,
.frst-video-modal__inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.frst-video-modal__close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 12px;
}

.frst-video-modal__close:hover {
  opacity: 0.8;
}

@keyframes frst-vm-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ---------- City cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.tour-card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.tour-card__media image-slot,
.tour-card__media .img-fill {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
}

.tour-card:hover .tour-card__media image-slot,
.tour-card:hover .tour-card__media .img-fill {
  transform: scale(1.06);
}

.city-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.tour-card__body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.tour-card__body h3 {
  font-size: 26px;
}

.tour-card__body .desc {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}

.tour-card__meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 2px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--charcoal);
}

.meta-row svg {
  width: 17px;
  height: 17px;
  color: var(--gold-deep);
  flex: none;
}

.meta-row b {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-right: 2px;
}

.tour-card__foot {
  margin-top: auto;
  padding-top: 6px;
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  text-align: left;
}

.step__ico {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1.5px solid var(--gold);
  background: rgba(201, 168, 76, 0.07);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.step__ico svg {
  width: 30px;
  height: 30px;
  color: var(--gold-deep);
  stroke-width: 1.4;
}

.step__num {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.step h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  font-size: 16px;
  color: var(--grey);
  line-height: 1.55;
}

/* ---------- Reviews ---------- */
.rev-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 0 0 44px;
}

.rev-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
}

.rev-badge .score {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--navy);
  line-height: 1;
}

.rev-badge .stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1px;
}

.rev-badge .plat {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--grey);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.review-card .stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 3px;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--ff-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--navy);
  font-style: italic;
}

.review-card .who {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.review-card .who .name {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 14px;
  color: var(--charcoal);
}

.review-card .who .name span {
  font-weight: 400;
  color: var(--grey);
}

.review-card .plat-tag {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 32px;
  justify-content: center;
  margin-top: 40px;
}

/* ---------- Partner logos ---------- */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 22px 40px;
}

.logo-ph {
  height: 56px;
  min-width: 150px;
  padding: 0 28px;
  border-radius: 8px;
  border: 1px dashed var(--border);
  display: grid;
  place-items: center;
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-light);
  background: #fff;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all 0.35s var(--ease);
}

.logo-ph:hover {
  opacity: 1;
  filter: grayscale(0);
  color: var(--navy);
  border-color: var(--gold);
}

/* ---------- CTA strip ---------- */
.cta-strip {
  text-align: center;
}

.cta-strip .h2 {
  color: #fff;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 16px auto 32px;
  font-weight: 300;
  font-size: 19px;
}

.cta-strip__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 56px;
}

.footer h4 {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 22px;
}

.footer .brand__name {
  color: #fff;
}

.footer .f-tag {
  margin: 20px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer .f-copy {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.25s, padding-left 0.25s;
}

.footer__links a:hover {
  color: var(--gold-soft);
  padding-left: 4px;
}

.footer__contact a.line {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.footer__contact a.line:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer__bottom .legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 13px;
}

.footer__bottom .legal a:hover {
  color: var(--gold-soft);
}

.footer__pay {
  display: flex;
  gap: 8px;
  align-items: center;
}

.pay-chip {
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 5px 10px;
}

/* ---------- Callout box ---------- */
.callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 22px 26px;
  color: var(--navy);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.callout .mark {
  color: var(--gold-deep);
  font-size: 20px;
  line-height: 1.2;
  flex: none;
}

.callout p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.55;
}

.callout strong {
  color: var(--navy);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal[data-d="1"] {
  transition-delay: 0.08s;
}

.reveal[data-d="2"] {
  transition-delay: 0.16s;
}

.reveal[data-d="3"] {
  transition-delay: 0.24s;
}

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

  .hero--home .hero__media image-slot {
    animation: none;
  }
}

/* Elementor editor: IntersectionObserver doesn't fire reliably in the preview
   iframe, so .reveal elements never get the .in class and stay invisible.
   Force them visible so authors can see and edit the widget content. */
body.elementor-editor-active .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* ---------- Tour archive ---------- */
.tour-archive__hero {
  padding: clamp(72px, 10vw, 140px) 0 clamp(48px, 6vw, 80px);
}

.tour-archive__jump {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.tour-archive__jump .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.tour-archive__jump .chip:hover,
.tour-archive__jump .chip:focus-visible {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tour-archive__jump .chip.is-active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.tour-archive__jump .chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
  height: 18px;
  border-radius: 999px;
  background: rgba(27, 45, 79, 0.08);
  color: var(--navy);
  font-size: 11px;
  letter-spacing: 0.4px;
}

.tour-archive__jump .chip.is-active .chip__count,
.tour-archive__jump .chip:hover .chip__count,
.tour-archive__jump .chip:focus-visible .chip__count {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.tour-archive__empty {
  text-align: center;
  margin: 32px 0 0;
}

/* The UA [hidden] rule loses the specificity fight to .tour-card { display: flex },
   so re-assert here. Also force-reveal cards in the archive grid since chip
   filtering can show cards before the IntersectionObserver gets to them. */
.tour-card[hidden] {
  display: none !important;
}

.tour-archive__grid .tour-card.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.tour-archive__group {
  scroll-margin-top: 96px;
}

.tour-archive__group+.tour-archive__group {
  padding-top: 0;
}

.tour-archive__group .section-head {
  max-width: 820px;
}

.tour-archive .tour-card__body h3 a {
  color: inherit;
  text-decoration: none;
}

.tour-archive .tour-card__body h3 a:hover {
  color: var(--gold-deep);
}

/* ---------- Tour gallery ---------- */
.tour-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
  margin-top: 40px;
}

.tour-gallery__cell {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  background: var(--cream-deep, #f1ecdf);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 8px 24px rgba(27, 45, 79, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.tour-gallery__cell:hover,
.tour-gallery__cell:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(27, 45, 79, 0.18);
  outline: none;
}

.tour-gallery__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.tour-gallery__cell:hover img,
.tour-gallery__cell:focus-visible img {
  transform: scale(1.05);
}

.tour-gallery__cell.is-hero {
  grid-column: span 2;
  grid-row: span 2;
}

.tour-gallery__zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy, #1B2D4F);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.tour-gallery__zoom svg {
  width: 18px;
  height: 18px;
}

.tour-gallery__cell:hover .tour-gallery__zoom,
.tour-gallery__cell:focus-visible .tour-gallery__zoom {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .tour-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 140px;
  }
  .tour-gallery__cell.is-hero {
    grid-column: span 3;
    grid-row: span 2;
  }
}

@media (max-width: 600px) {
  .tour-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }
  .tour-gallery__cell.is-hero {
    grid-column: span 2;
    grid-row: span 2;
  }
  .tour-gallery__cell {
    border-radius: 10px;
  }
}

/* Lightbox */
.tour-gallery__lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 14, 28, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: frstFadeIn .2s ease;
}

.tour-gallery__lightbox[hidden] {
  display: none !important;
}

@keyframes frstFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tour-gallery__stage {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.tour-gallery__stage img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.tour-gallery__counter {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.tour-gallery__close,
.tour-gallery__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}

.tour-gallery__close:hover,
.tour-gallery__nav:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}

.tour-gallery__close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  font-size: 28px;
  line-height: 1;
}

.tour-gallery__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 32px;
  line-height: 1;
  transform: translateY(-50%);
}

.tour-gallery__nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.tour-gallery__nav--prev { left: 20px; }
.tour-gallery__nav--next { right: 20px; }

@media (max-width: 600px) {
  .tour-gallery__nav {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }
  .tour-gallery__nav--prev { left: 8px; }
  .tour-gallery__nav--next { right: 8px; }
  .tour-gallery__close { top: 10px; right: 10px; width: 38px; height: 38px; font-size: 22px; }
}

/* ---------- Mobile FAB + bottom bar ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: none;
  place-items: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease);
}

.wa-fab:hover {
  transform: scale(1.06);
}

.wa-fab svg {
  width: 30px;
  height: 30px;
}

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 95;
  display: none;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(27, 45, 79, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(20, 34, 60, 0.18), 0 2px 6px rgba(20, 34, 60, 0.08);
}

.mobile-bar--3 { grid-template-columns: 1fr 1fr 1fr; }
.mobile-bar--2 { grid-template-columns: 1fr 1fr; }

.mobile-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 54px;
  border-radius: 12px;
  background: transparent;
  color: var(--navy);
  font-family: var(--ff-label);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.mobile-bar__btn:active {
  transform: scale(0.96);
}

.mobile-bar__btn:hover {
  background: rgba(27, 45, 79, 0.05);
}

.mobile-bar__ico {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
}

.mobile-bar__ico svg {
  width: 22px;
  height: 22px;
}

.mobile-bar__btn--call .mobile-bar__ico { color: var(--navy); }
.mobile-bar__btn--wa   { color: var(--whatsapp-deep); }
.mobile-bar__btn--wa:hover { background: rgba(37, 211, 102, 0.10); }
.mobile-bar__btn--book {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: var(--navy);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
}
.mobile-bar__btn--book:hover {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 100%);
  color: var(--navy);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 28px;
  }
}

@media (max-width: 860px) {

  .card-grid,
  .review-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split--reverse .video-card {
    order: -1;
  }

  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .nav {
    padding: 16px 0;
  }

  .wa-fab {
    display: grid;
  }

  .mobile-bar {
    display: grid;
  }

  body {
    padding-bottom: calc(82px + env(safe-area-inset-bottom, 0px));
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0 40px;
  }

  .trustbar__track {
    gap: 32px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

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

  .hero__btns {
    flex-direction: column;
  }

  .hero__btns .btn {
    width: 100%;
  }
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  clip: auto !important;
  display: block;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  background: var(--navy);
  color: #fff;
  z-index: 100000;
  border-radius: 6px;
}