/* ──────────────────────────────────────────────
   CANARY YACHT — Gran Canaria boat tours
   GetYourGuide-inspired · Coral + Blue · Vibrant
────────────────────────────────────────────── */

:root {
  /* Brand — Coral (GetYourGuide-style) */
  --coral-50:  #FFF2EE;
  --coral-100: #FFE4DC;
  --coral-200: #FFC6B3;
  --coral-400: #FF7A55;
  --coral-500: #FF5533;
  --coral-600: #E64A2A;
  --coral-700: #BF3D22;
  --coral-800: #8F2D19;

  /* Secondary — Ocean blue */
  --blue-50:  #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-900: #1E3A8A;

  /* Accent — Turquoise (Canarias) */
  --teal-400: #2DD4BF;
  --teal-500: #14B8A6;
  --teal-600: #0D9488;

  /* Warning (stars) */
  --yellow-400: #FFC000;
  --yellow-500: #FFB200;

  /* Success (free cancellation) */
  --green-500: #1F883D;
  --green-50:  #E6F5EA;

  /* Neutrals */
  --ink-900: #12141A;
  --ink-800: #1F2328;
  --ink-700: #24292F;
  --ink-600: #57606A;
  --ink-500: #7D8590;
  --ink-400: #9CA3AF;
  --ink-300: #D0D7DE;
  --ink-200: #E5E7EB;
  --ink-100: #F3F4F6;
  --ink-50:  #F6F8FA;

  /* Surfaces */
  --bg:      #FFFFFF;
  --surface: #F6F8FA;

  /* Typography */
  --font-display: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing (4-based) */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px;
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(18,20,26,0.05);
  --shadow-md: 0 4px 14px rgba(18,20,26,0.08);
  --shadow-lg: 0 20px 40px rgba(18,20,26,0.12);
  --shadow-xl: 0 28px 56px rgba(18,20,26,0.16);
  --shadow-coral: 0 12px 32px rgba(255,85,51,0.30);

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t-base: 240ms var(--ease);
  --t-slow: 420ms var(--ease);

  /* Layout */
  --container: 1280px;
  --container-narrow: 860px;
  --nav-h: 72px;
  --top-h: 38px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html:focus-within { scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--coral-200); color: var(--ink-900); }

:focus-visible {
  outline: 3px solid var(--coral-500);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Typography ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
}
h2 { font-size: clamp(1.625rem, 2vw + 1rem, 2.25rem); letter-spacing: -0.025em; }
h3 { font-size: 1.25rem; letter-spacing: -0.015em; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: var(--ink-600); }

/* ─── Utilities ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-6);
}
.container-narrow { max-width: var(--container-narrow); }
@media (max-width: 640px) { .container { padding-inline: var(--s-4); } }

.section { padding-block: clamp(var(--s-12), 6vw, var(--s-20)); }
.section-surface { background: var(--surface); }
.section-dark    { background: var(--ink-900); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-600);
  margin-bottom: var(--s-3);
}

.section-header { max-width: 820px; margin-bottom: var(--s-10); }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header h2 { margin-bottom: var(--s-3); }
.section-header p { font-size: 1.0625rem; color: var(--ink-500); }

.cluster { display: flex; align-items: center; flex-wrap: wrap; gap: var(--s-3); }

/* ─── Icons ─── */
.icon    { width: 20px; height: 20px; stroke-width: 2; flex: none; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 28px; height: 28px; }

/* ─── Buttons ─── */
.btn {
  --btn-bg: var(--coral-500);
  --btn-fg: #fff;
  --btn-border: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-6);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  border: 1.5px solid var(--btn-border);
  border-radius: var(--r-md);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), box-shadow var(--t-base), border-color var(--t-base), color var(--t-base);
  white-space: nowrap;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-coral); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-primary { --btn-bg: var(--coral-500); }
.btn-primary:hover { --btn-bg: var(--coral-600); }

.btn-dark { --btn-bg: var(--ink-900); }
.btn-dark:hover { --btn-bg: var(--ink-800); }

.btn-blue { --btn-bg: var(--blue-600); }
.btn-blue:hover { --btn-bg: var(--blue-700); }

.btn-whatsapp { --btn-bg: #25D366; }
.btn-whatsapp:hover { --btn-bg: #1FB456; }

.btn-outline {
  --btn-bg: transparent;
  --btn-fg: var(--ink-900);
  --btn-border: var(--ink-200);
}
.btn-outline:hover {
  --btn-fg: var(--coral-600);
  --btn-border: var(--coral-500);
  background: var(--coral-50);
}

.btn-on-dark {
  --btn-bg: rgba(255,255,255,0.12);
  --btn-fg: #fff;
  --btn-border: rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-on-dark:hover { --btn-bg: rgba(255,255,255,0.22); --btn-border: #fff; }

.btn-ghost { --btn-bg: transparent; --btn-fg: var(--ink-700); --btn-border: transparent; }
.btn-ghost:hover { --btn-bg: var(--ink-50); --btn-fg: var(--ink-900); }

.btn-sm { min-height: 40px; padding: 0 var(--s-4); font-size: 0.875rem; }
.btn-lg { min-height: 56px; padding: 0 var(--s-8); font-size: 1rem; }
.btn-xl { min-height: 64px; padding: 0 var(--s-10); font-size: 1.0625rem; }
.btn-full { width: 100%; }

/* ─── Top bar (teléfono + email) ─── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 51;
  height: var(--top-h);
  background: var(--ink-900);
  color: rgba(255,255,255,0.9);
  font-size: 0.8125rem;
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  width: 100%;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: var(--s-5);
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  transition: color var(--t-fast);
  font-weight: 500;
}
.topbar a:hover { color: var(--coral-400); }
.topbar svg { width: 14px; height: 14px; color: var(--coral-400); }
.topbar-right {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 640px) {
  .topbar-inner { padding: 0 var(--s-4); }
  .topbar-left { gap: var(--s-3); }
  .topbar-left .topbar-email { display: none; }
  .topbar-right { display: none; }
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  inset: var(--top-h) 0 auto 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  border-bottom-color: var(--ink-200);
  box-shadow: 0 1px 0 rgba(18,20,26,0.04);
}
.nav-inner {
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
.nav-brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  color: #fff;
  border-radius: 10px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s-1);
}
.nav-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 6px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-list a:hover { color: var(--ink-900); background: var(--ink-50); }
.nav-list a[aria-current="page"] { color: var(--coral-600); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: var(--s-2); }

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-600);
  padding: 8px 10px;
  border-radius: 6px;
}
.lang-switcher a { color: var(--ink-500); }
.lang-switcher a[aria-current="true"] { color: var(--ink-900); }
.lang-switcher a:hover { color: var(--coral-600); }
.lang-switcher span { color: var(--ink-300); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink-200);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}
.nav-drawer { display: none; }

@media (max-width: 980px) {
  .nav-list { display: none; }
  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .nav-toggle { display: inline-flex; }

  .nav-drawer {
    display: block;
    position: fixed;
    top: calc(var(--top-h) + var(--nav-h));
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--ink-200);
    box-shadow: var(--shadow-lg);
    padding: var(--s-4) var(--s-6) var(--s-8);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-base), opacity var(--t-base);
  }
  .nav-open .nav-drawer { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-drawer ul { display: flex; flex-direction: column; gap: 2px; }
  .nav-drawer a {
    display: flex;
    padding: 14px 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-700);
    border-radius: 6px;
  }
  .nav-drawer a:hover { background: var(--ink-50); }
  .nav-drawer .btn { margin-top: var(--s-4); }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding-top: calc(var(--top-h) + var(--nav-h) + var(--s-12));
  padding-bottom: var(--s-20);
  min-height: 640px;
  overflow: hidden;
  color: #fff;
  background: var(--ink-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,20,26,0.4) 0%, rgba(18,20,26,0.7) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-6);
}
.hero h1 {
  color: #fff;
  max-width: 720px;
  margin-bottom: var(--s-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hero .lead {
  font-size: clamp(1rem, 0.8vw + 0.9rem, 1.25rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin-bottom: var(--s-8);
  line-height: 1.55;
}

/* Search bar GYG-style */
.search-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  background: #fff;
  border-radius: 16px;
  padding: 8px;
  gap: 1px;
  box-shadow: var(--shadow-xl);
  max-width: 880px;
}
.search-field {
  position: relative;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.search-field:hover { background: var(--ink-50); }
.search-field + .search-field { border-left: 1px solid var(--ink-100); }
.search-field label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.search-field .value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-900);
}
.search-field input,
.search-field select {
  border: none;
  outline: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-900);
  background: transparent;
  padding: 0;
  width: 100%;
}
.search-bar .btn {
  border-radius: 12px;
  margin-left: 6px;
}

@media (max-width: 860px) {
  .search-bar {
    grid-template-columns: 1fr;
    padding: 12px;
    gap: 4px;
  }
  .search-field + .search-field { border-left: 0; border-top: 1px solid var(--ink-100); padding-top: 14px; }
  .search-bar .btn { margin-left: 0; margin-top: 6px; width: 100%; }
}

/* Trust chips in hero */
.hero-trust {
  display: flex;
  gap: var(--s-5);
  margin-top: var(--s-8);
  flex-wrap: wrap;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
}
.hero-trust div { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { color: var(--coral-400); }

/* ─── Page hero (interior pages) ─── */
.page-hero {
  padding-top: calc(var(--top-h) + var(--nav-h) + var(--s-10));
  padding-bottom: var(--s-12);
  background: var(--surface);
  border-bottom: 1px solid var(--ink-200);
}
.page-hero .container { max-width: 960px; }
.page-hero h1 { margin-bottom: var(--s-3); }
.page-hero p { font-size: 1.0625rem; color: var(--ink-500); max-width: 640px; }
.breadcrumb {
  display: inline-flex;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: var(--s-3);
}
.breadcrumb a:hover { color: var(--coral-600); }

/* ─── Activity cards (GYG-style) ─── */
.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-6);
}

.activity-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--ink-100);
  transition: transform var(--t-base), box-shadow var(--t-base);
  cursor: pointer;
  position: relative;
}
.activity-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.activity-card a { display: flex; flex-direction: column; flex: 1; }
.activity-card .media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--ink-100);
}
.activity-card .media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.activity-card:hover .media img { transform: scale(1.04); }
.activity-card .badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
}
.activity-card .wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  color: var(--ink-700);
  border: none;
  cursor: pointer;
  transition: color var(--t-fast), transform var(--t-fast);
}
.activity-card .wishlist:hover { color: var(--coral-500); transform: scale(1.08); }
.activity-card .body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.activity-card .category {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
}
.activity-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-900);
  line-height: 1.35;
  font-family: var(--font-body);
  letter-spacing: -0.005em;
}
.activity-card .meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--ink-500);
}
.activity-card .stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: var(--ink-900);
}
.activity-card .stars svg { color: var(--yellow-500); fill: currentColor; }
.activity-card .stars .count { color: var(--ink-500); font-weight: 400; }
.activity-card .perks {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--ink-100);
}
.activity-card .perks span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--green-500);
  font-weight: 500;
}
.activity-card .perks svg { width: 14px; height: 14px; }
.activity-card .price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--ink-100);
}
.activity-card .price .from { font-size: 0.75rem; color: var(--ink-500); }
.activity-card .price .amount {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink-900);
}
.activity-card .price .per { font-size: 0.75rem; color: var(--ink-500); }

/* Badge primitives */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-best   { background: var(--coral-500); color: #fff; }
.badge-likely { background: var(--ink-900); color: #fff; }
.badge-new    { background: var(--teal-500); color: #fff; }
.badge-free   { background: var(--green-500); color: #fff; }
.badge-muted  { background: var(--ink-100); color: var(--ink-700); }

/* ─── Category chips ─── */
.chip-row {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-pill);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.chip:hover { border-color: var(--ink-400); color: var(--ink-900); }
.chip[aria-selected="true"], .chip.active {
  background: var(--ink-900);
  color: #fff;
  border-color: var(--ink-900);
}

/* ─── Feature blocks ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6);
}
.feature {
  padding: var(--s-6);
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--ink-100);
}
.feature-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--coral-50);
  color: var(--coral-600);
  border-radius: 10px;
  margin-bottom: var(--s-4);
}
.feature h3 { font-size: 1.0625rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 0.9375rem; }

/* ─── Testimonial ─── */
.quote {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: var(--s-6);
}
.quote .stars {
  color: var(--yellow-500);
  font-size: 0.9375rem;
  letter-spacing: 1px;
  margin-bottom: var(--s-3);
}
.quote p {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.quote footer {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--ink-100);
}
.quote .avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--coral-50);
  color: var(--coral-600);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 0.9375rem;
  font-family: var(--font-display);
}
.quote strong { display: block; font-size: 0.9375rem; color: var(--ink-900); }
.quote span { font-size: 0.8125rem; color: var(--ink-500); }

/* ─── Trust bar ─── */
.trust-bar {
  display: flex;
  gap: var(--s-8);
  justify-content: center;
  flex-wrap: wrap;
  padding: var(--s-8) var(--s-6);
  background: var(--surface);
  border-radius: 14px;
}
.trust-item { display: flex; align-items: center; gap: var(--s-3); }
.trust-item .ic {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: #fff;
  color: var(--coral-600);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.trust-item strong { display: block; font-family: var(--font-display); font-size: 1.0625rem; color: var(--ink-900); }
.trust-item span   { font-size: 0.8125rem; color: var(--ink-500); }

/* ─── Stats ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  padding: var(--s-12) var(--s-8);
  background: linear-gradient(135deg, var(--ink-900), var(--blue-900));
  color: #fff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% -20%, rgba(255,85,51,0.3), transparent 60%);
  pointer-events: none;
}
.stat { position: relative; }
.stat h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw + 1rem, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.stat h3 .unit { color: var(--coral-400); }
.stat p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

@media (max-width: 820px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); padding: var(--s-8); }
}

/* ─── CTA Banner ─── */
.cta-banner {
  padding: clamp(var(--s-12), 6vw, var(--s-20));
  background: linear-gradient(135deg, var(--coral-500), var(--coral-700));
  color: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}
.cta-banner::before, .cta-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.25;
}
.cta-banner::before { width: 400px; height: 400px; background: var(--blue-500); top: -140px; left: -120px; }
.cta-banner::after  { width: 380px; height: 380px; background: var(--teal-400); bottom: -140px; right: -120px; }
.cta-banner > * { position: relative; }
.cta-banner h2 { color: #fff; margin-bottom: var(--s-3); max-width: 640px; margin-inline: auto; }
.cta-banner p { color: rgba(255,255,255,0.9); max-width: 520px; margin: 0 auto var(--s-6); font-size: 1.0625rem; }
.cta-banner .actions { display: flex; gap: var(--s-3); justify-content: center; flex-wrap: wrap; }

/* ─── Forms ─── */
.form { display: flex; flex-direction: column; gap: var(--s-4); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-700);
}
.field label .req { color: var(--coral-600); }
.field .error { font-size: 0.8125rem; color: #B91C1C; display: none; }
.field[data-invalid="true"] .error { display: block; }
.input, .select, .textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  color: var(--ink-900);
  font-size: 1rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  font-family: var(--font-body);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-400); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--ink-300); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--coral-500);
  box-shadow: 0 0 0 3px var(--coral-100);
}
.field[data-invalid="true"] .input,
.field[data-invalid="true"] .select,
.field[data-invalid="true"] .textarea { border-color: #DC2626; box-shadow: 0 0 0 3px #FEE2E2; }
.textarea { min-height: 120px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237D8590' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field-check {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 0.875rem; color: var(--ink-500);
}
.field-check input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--coral-500); }
.field-check a { color: var(--coral-600); text-decoration: underline; }
.form-success {
  display: none;
  padding: var(--s-4);
  border-radius: 10px;
  font-size: 0.9375rem;
  background: var(--green-50);
  border: 1px solid var(--green-500);
  color: #14532D;
}
.form-success[data-visible="true"] { display: block; }

/* Info tiles */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
}
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
.info-list { display: flex; flex-direction: column; gap: var(--s-3); }
.info-item {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-5);
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  transition: border-color var(--t-base);
}
.info-item:hover { border-color: var(--coral-200); }
.info-item .ic {
  width: 44px; height: 44px;
  flex: none;
  display: grid; place-items: center;
  background: var(--coral-50);
  color: var(--coral-600);
  border-radius: 10px;
}
.info-item h4 { font-size: 0.75rem; color: var(--ink-500); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; font-weight: 600; font-family: var(--font-body); }
.info-item p, .info-item a { color: var(--ink-900); font-weight: 500; }
.info-item a:hover { color: var(--coral-600); }

.map-wrap {
  margin-top: var(--s-6);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ink-200);
  aspect-ratio: 16 / 9;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ─── Footer ─── */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.7);
  padding: var(--s-16) var(--s-6) var(--s-8);
  margin-top: var(--s-16);
}
.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--s-10);
}
.footer h4 {
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; transition: color var(--t-fast); }
.footer a:hover { color: #fff; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.footer-brand .mark {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coral-500), var(--coral-600));
  border-radius: 10px;
}
.footer-desc { max-width: 340px; font-size: 0.9375rem; line-height: 1.6; margin-bottom: var(--s-5); color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: var(--s-2); }
.footer-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.footer-social a:hover { background: var(--coral-500); border-color: var(--coral-500); color: #fff; }
.footer-bottom {
  max-width: var(--container);
  margin: var(--s-10) auto 0;
  padding-top: var(--s-6);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }

/* ─── Floating WhatsApp ─── */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform var(--t-base);
}
.wa-fab:hover { transform: translateY(-2px) scale(1.05); }
.wa-fab svg { width: 28px; height: 28px; }

/* ─── Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ─── Skip link ─── */
.skip-link {
  position: absolute;
  left: var(--s-4);
  top: -50px;
  background: var(--ink-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  z-index: 100;
  transition: top var(--t-base);
}
.skip-link:focus { top: var(--s-4); }

/* ============================================================
   FICHA (páginas de detalle de excursión)
   ============================================================ */
.ficha-sidebar {
  position: sticky;
  top: calc(var(--top-h) + var(--nav-h) + 20px);
  align-self: start;
}
.ficha-card {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 16px;
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
}
.ficha-prices {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ficha-prices li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 14px;
  background: var(--ink-50);
  border-radius: 10px;
  font-size: 0.9375rem;
}
.ficha-prices li span { color: var(--ink-700); font-weight: 500; }
.ficha-prices li strong {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--coral-600);
  font-weight: 700;
}
.ficha-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 10px 20px;
}
.ficha-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-800);
}
.ficha-includes li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--green-500, #16a34a);
  margin-top: 3px;
}
.ficha-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.gal-item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 12px;
  background: var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}
.gal-item:hover { transform: translateY(-2px); }
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.breadcrumb {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-bottom: var(--s-3);
}
.breadcrumb a {
  color: var(--ink-700);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--coral-600); text-decoration: underline; }

@media (max-width: 960px) {
  .ficha-sidebar { position: static; }
  .ficha-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ficha-gallery { grid-template-columns: 1fr; }
  .ficha-includes { grid-template-columns: 1fr; }
}

/* Ficha: layout de 2 columnas responsive */
.ficha-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-10);
  align-items: start;
}
@media (max-width: 960px) {
  .ficha-layout { grid-template-columns: 1fr; }
}

/* ============================================================
   FICHA HERO — imagen a ancho completo con overlay
   ============================================================ */
.ficha-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--top-h) + var(--nav-h) + var(--s-12)) 0 var(--s-10);
  margin-bottom: var(--s-4);
  overflow: hidden;
}
.ficha-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ficha-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.ficha-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.15) 0%,
    rgba(15, 23, 42, 0.55) 60%,
    rgba(15, 23, 42, 0.78) 100%
  );
}
.ficha-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.ficha-hero-content .breadcrumb {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin-bottom: var(--s-4);
}
.ficha-hero-content .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}
.ficha-hero-content .breadcrumb a:hover {
  color: #fff;
}
.ficha-hero-content .breadcrumb [aria-current] {
  color: #fff;
  font-weight: 500;
}
.ficha-hero-content h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin: 0 0 var(--s-3);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}
.ficha-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 var(--s-5);
  max-width: 640px;
}
.ficha-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.ficha-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
}
@media (max-width: 640px) {
  .ficha-hero { min-height: 360px; padding-bottom: var(--s-8); }
}

/* ============================================================
   FICHA · Secciones y tipografía
   ============================================================ */
.ficha-main { min-width: 0; }
.ficha-section {
  margin-top: var(--s-10);
  padding-top: var(--s-8);
  border-top: 1px solid var(--ink-100);
}
.ficha-section:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.ficha-section > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  margin: 0 0 var(--s-5);
  color: var(--ink-900);
  letter-spacing: -0.01em;
}
.ficha-section > p {
  line-height: 1.7;
  color: var(--ink-800);
  font-size: 1rem;
  margin: 0 0 var(--s-4);
}
.ficha-section > p:last-child { margin-bottom: 0; }
.ficha-section > p strong { color: var(--ink-900); font-weight: 600; }
.ficha-section > p em { font-style: italic; color: var(--coral-600); }

.ficha-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
}
.ficha-two-cols > div > h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 var(--s-4);
}
@media (max-width: 720px) { .ficha-two-cols { grid-template-columns: 1fr; } }

/* ============================================================
   GALERÍA PRINCIPAL (hero + thumbs)
   ============================================================ */
.ficha-gallery-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.gal-main {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-100);
  box-shadow: var(--shadow-md);
}
.gal-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gal-thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}
.gal-thumb {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-100);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base);
}
.gal-thumb:hover { transform: translateY(-2px); }
.gal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gal-thumbs .gal-thumb:nth-child(n+3) { display: none; }
@media (max-width: 720px) {
  .ficha-gallery-main { grid-template-columns: 1fr; }
  .gal-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: column;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .gal-thumbs .gal-thumb { scroll-snap-align: start; min-width: 160px; }
  .gal-thumbs .gal-thumb:nth-child(n+3) { display: block; }
}

/* ============================================================
   HIGHLIGHTS grid
   ============================================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.highlight-card {
  background: linear-gradient(180deg, #fff 0%, var(--ink-50) 100%);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  padding: var(--s-5);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.highlight-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin: 0 0 var(--s-2);
  color: var(--ink-900);
}
.highlight-card p {
  font-size: 0.9375rem;
  color: var(--ink-700);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   ITINERARY timeline
   ============================================================ */
.itinerary {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
}
.itinerary::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(var(--coral-500), var(--coral-300, #ffb8a3));
  border-radius: 2px;
}
.it-step {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  position: relative;
}
.it-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(255, 85, 51, 0.35);
}
.it-body { padding-top: 4px; }
.it-body h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin: 0 0 4px;
  color: var(--ink-900);
}
.it-body p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.55;
  font-size: 0.9375rem;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow var(--t-base);
}
.faq-item[open] { box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--ink-900);
  font-size: 0.9375rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--coral-500);
  font-weight: 700;
  font-size: 1.25rem;
  transition: transform var(--t-base);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--coral-600); }
.faq-item p {
  margin: 0;
  padding: 0 20px 16px;
  color: var(--ink-700);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* ============================================================
   WHY grid
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
.why-card {
  padding: var(--s-5);
  border-left: 3px solid var(--coral-500);
  background: var(--ink-50);
  border-radius: 0 12px 12px 0;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin: 0 0 var(--s-2);
  color: var(--ink-900);
}
.why-card p {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
}

/* ============================================================
   CTA banner en ficha
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--coral-500), #ff7a5c);
  color: #fff;
  padding: var(--s-10) var(--s-6);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-banner h2 {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0 0 var(--s-2);
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  margin: 0;
}
.cta-banner .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-banner .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--coral-600);
}
.cta-banner .btn-primary:hover {
  background: #fff5f0;
}
