/* ════════════════════════════════════════════════════════════════
   VIVA DIVING — shared styles
   Concept: the page IS a descent. Surface light at the top,
   abyssal black at the bottom. Images + parallax carry the story.
   ════════════════════════════════════════════════════════════════ */

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

:root {
  --surface-1: #0a7ea4;   /* sunlit water        */
  --surface-2: #0b6a91;
  --mid-1:     #0a5178;
  --mid-2:     #083d5e;
  --deep-1:    #062a44;
  --deep-2:    #041b2e;
  --abyss-1:   #020e19;
  --abyss-2:   #000508;
  --surface:  rgba(255,255,255,0.05);
  --surf2:    rgba(255,255,255,0.09);
  --ocean:    #0EA5E9;
  --ocean2:   #38BDF8;
  --teal:     #14B8A6;
  --gold:     #F59E0B;
  --cta:      #F97316;
  --cta2:     #fb923c;
  --text:     #F5F7FA;
  --muted:    rgba(245,247,250,0.62);
  --muted2:   rgba(245,247,250,0.42);
  --border:   rgba(255,255,255,0.12);
  --border2:  rgba(255,255,255,0.07);
  --bah:      #38BDF8;
  --dom:      #14B8A6;
  --mex:      #F59E0B;
}

html { font-size: 16px; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ── THE DESCENT: body gradient = surface → abyss ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg,
    var(--surface-1) 0%,
    var(--surface-2) 9%,
    var(--mid-1)     22%,
    var(--mid-2)     38%,
    var(--deep-1)    55%,
    var(--deep-2)    72%,
    var(--abyss-1)   88%,
    var(--abyss-2)   100%);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}

/* sun rays near the surface */
.sunrays {
  position: absolute; top: 0; left: 0; right: 0; height: 160vh;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.sunrays::before {
  content: ''; position: absolute; inset: -20% -10%;
  background:
    linear-gradient(100deg, transparent 42%, rgba(255,255,255,0.10) 46%, transparent 50%),
    linear-gradient(95deg,  transparent 60%, rgba(255,255,255,0.07) 64%, transparent 68%),
    linear-gradient(105deg, transparent 24%, rgba(255,255,255,0.06) 27%, transparent 31%),
    radial-gradient(ellipse 90% 40% at 50% -8%, rgba(255,255,255,0.20), transparent 60%);
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
}

/* floating particles (plancton) */
.bubbles { position: fixed; inset: 0; pointer-events: none; z-index: 1; }
.bubbles span {
  position: absolute; bottom: -24px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(255,255,255,0.75), rgba(255,255,255,0.18) 55%, rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 6px rgba(255,255,255,0.18);
  animation: rise linear infinite;
}
.bubbles span.big { transform: scale(1.6); filter: blur(0.4px); }
@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.95; }
  60%  { transform: translateY(-60vh) translateX(-14px); }
  100% { transform: translateY(-112vh) translateX(20px); opacity: 0; }
}

/* ── DEPTH HUD ── */
.depth-hud {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 150; text-align: right; pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.depth-hud .depth-val {
  font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.depth-hud .depth-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.depth-hud .depth-ticks {
  margin-top: 0.5rem; margin-left: auto; width: 2px; height: 90px;
  background: repeating-linear-gradient(180deg,
    rgba(255,255,255,0.5) 0 2px, transparent 2px 12px);
  position: relative;
}
.depth-hud .depth-ticks i {
  position: absolute; right: -3px; width: 8px; height: 8px; border-radius: 50%;
  background: var(--ocean2); box-shadow: 0 0 10px var(--ocean2);
  transition: top 0.2s ease;
}
@media (max-width: 900px) { .depth-hud { display: none; } }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ocean2);
}
.section-title { font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin: 0.6rem 0 1rem; }
.section-sub { color: var(--muted); max-width: 660px; font-size: 1.02rem; }
.price-note { font-size: 0.72rem; color: var(--muted2); margin-top: 0.8rem; line-height: 1.5; }

section { padding: 5.5rem 0; position: relative; }
.section-head { margin-bottom: 2.6rem; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.8rem;
  background: rgba(2,14,25,0.45);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border2);
}
.nav-logo { display: flex; align-items: center; line-height: 0; }
.nav-logo img { height: 30px; width: auto; display: block; }
.foot-logo { height: 26px; width: auto; display: block; opacity: 0.95; }
.nav-links { display: flex; gap: 1.5rem; align-items: center; font-size: 0.88rem; font-weight: 500; color: var(--muted); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--cta); color: #fff !important; padding: 0.5rem 1.15rem;
  border-radius: 100px; font-weight: 600; transition: all 0.2s ease;
}
.nav-cta:hover { background: var(--cta2); transform: translateY(-1px); }
.lang-switch { display: flex; gap: 0.3rem; margin-left: 0.4rem; }
.lang-switch button {
  background: rgba(255,255,255,0.10); border: none; color: var(--muted);
  padding: 0.38rem 0.85rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  transition: all 0.2s ease;
}
.lang-switch button.active { background: #fff; color: #000; }
.nav-hamburger { display: none; background: none; border: none; color: var(--text); }
.nav-mobile {
  display: none; position: fixed; top: 58px; left: 0; right: 0; z-index: 199;
  background: rgba(2,14,25,0.94); backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); padding: 1.2rem 1.8rem;
  flex-direction: column; gap: 1rem; font-size: 1rem;
}
.nav-mobile.open { display: flex; }
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
}

/* ── HERO with image + parallax (old design) ── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 24px 5rem; overflow: hidden;
}
.hero.hero-center { align-items: center; text-align: center; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 140%; object-fit: cover; object-position: center;
  will-change: transform;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,20,34,0.30) 0%, rgba(4,20,34,0.45) 55%, var(--surface-1) 100%),
    radial-gradient(ellipse 90% 60% at 50% 20%, transparent 30%, rgba(2,12,22,0.35) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero .eyebrow { opacity: 0; transform: translateY(14px); }
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem); font-weight: 900;
  letter-spacing: -0.045em; line-height: 1.02; margin: 1.1rem 0 1.4rem; max-width: 950px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero.hero-center h1 { margin-left: auto; margin-right: auto; }
.hero h1 .grad {
  background: linear-gradient(92deg, #7DD3FC 0%, #38BDF8 45%, #FBBF24 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: rgba(245,247,250,0.85); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 640px; opacity: 0; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero.hero-center .hero-sub { margin: 0 auto; }
.hero-actions { display: flex; gap: 1rem; margin-top: 2.4rem; opacity: 0; flex-wrap: wrap; }
.hero.hero-center .hero-actions { justify-content: center; }
.hero-meta { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.2rem; opacity: 0; }
.hero.hero-center .hero-meta { justify-content: center; }
.hero-meta .hm { font-size: 0.88rem; color: rgba(245,247,250,0.85); display: flex; gap: 0.5rem; align-items: center; background: rgba(2,14,25,0.35); border: 1px solid rgba(255,255,255,0.14); padding: 0.5rem 1rem; border-radius: 100px; backdrop-filter: blur(8px); }
.hero-meta .hm strong { font-weight: 800; }
.hero-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  opacity: 0; color: rgba(255,255,255,0.66); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-cue::after {
  content: ''; width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.7), transparent);
  animation: cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); } 100% { transform: scaleY(0); transform-origin: bottom; } }

.btn-primary {
  background: var(--cta); color: #fff; padding: 0.95rem 2.1rem; border-radius: 100px;
  font-weight: 700; font-size: 1rem; border: none; transition: all 0.22s ease; display: inline-block;
}
.btn-primary:hover { background: var(--cta2); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(249,115,22,0.35); }
.btn-ghost {
  background: rgba(2,14,25,0.30); color: var(--text); padding: 0.95rem 2.1rem; border-radius: 100px;
  font-weight: 600; font-size: 1rem; border: 1px solid rgba(255,255,255,0.25); transition: all 0.22s ease; display: inline-block;
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--ocean2); color: #fff; }

/* ── STATS ── */
.stats { padding: 0; border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); background: rgba(2,14,25,0.25); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.stat { padding: 2rem 1rem; text-align: center; border-right: 1px solid var(--border2); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--border2); }
}

/* ── PINNED DESTINATION SECTIONS (old crossfade design) ── */
.dest-pin {
  position: relative; min-height: 92svh; display: flex; align-items: center;
  overflow: hidden; margin: 0;
}
.dest-bg { position: absolute; inset: 0; }
.dest-bg img { width: 100%; height: 140%; object-fit: cover; will-change: transform; }
.dest-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(3,16,28,0.82) 0%, rgba(3,16,28,0.55) 45%, rgba(3,16,28,0.18) 100%);
}
.dest-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5rem 24px; width: 100%; }
.dest-kicker { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.dest-kicker .flag { font-size: 1.5rem; }
.dest-kicker .k { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.dest-pin h2 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.03; max-width: 640px; }
.dest-pin .dest-desc { color: rgba(245,247,250,0.82); max-width: 540px; margin-top: 1.2rem; font-size: 1.02rem; line-height: 1.6; }
.dest-pin .dest-points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.dest-pin .dest-points li { display: flex; gap: 0.6rem; font-size: 0.92rem; color: rgba(245,247,250,0.85); }
.dest-pin .dest-cta { margin-top: 2.2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── DIVE SITES GRID (data-driven) ── */
.sites-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.site-card {
  border: 1px solid var(--border2); border-radius: 16px; padding: 1.4rem 1.3rem;
  background: rgba(2,14,25,0.35); backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.site-card:hover { border-color: var(--border); background: rgba(2,14,25,0.55); transform: translateY(-2px); }
.site-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.8rem; }
.site-card h4 { font-size: 1.02rem; font-weight: 700; letter-spacing: -0.01em; }
.site-depth { font-size: 0.75rem; color: var(--muted2); white-space: nowrap; font-weight: 600; }
.site-level { display: inline-block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.22rem 0.6rem; border-radius: 100px; margin: 0.55rem 0 0.7rem; }
.lv-beginner    { background: rgba(20,184,166,0.18); color: #5EEAD4; }
.lv-intermediate{ background: rgba(56,189,248,0.18); color: #7DD3FC; }
.lv-advanced    { background: rgba(249,115,22,0.18); color: #FDBA74; }
.lv-star        { background: rgba(245,158,11,0.20); color: #FCD34D; }
.site-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }
.sites-toggle { margin-top: 1.4rem; background: rgba(2,14,25,0.3); border: 1px solid var(--border); color: var(--muted); padding: 0.6rem 1.4rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; transition: all 0.2s ease; }
.sites-toggle:hover { color: var(--text); border-color: var(--ocean2); }

/* ── PRICE CARDS ── */
.price-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.price-card {
  border: 1px solid var(--border2); border-radius: 16px; padding: 1.6rem 1.5rem;
  background: rgba(2,14,25,0.40); backdrop-filter: blur(6px);
}
.price-card h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.price-row { display: flex; justify-content: space-between; padding: 0.55rem 0; border-bottom: 1px solid var(--border2); font-size: 0.92rem; }
.price-row:last-of-type { border-bottom: none; }
.price-row .p { font-weight: 700; color: var(--ocean2); white-space: nowrap; margin-left: 1rem; }
.price-row .p small { font-size: 0.7rem; color: var(--muted2); font-weight: 500; }
.price-row .n { color: var(--muted); }

/* ── SCHEDULE TABLE (old design) ── */
.table-wrap { overflow-x: auto; border: 1px solid var(--border2); border-radius: 16px; background: rgba(2,14,25,0.40); backdrop-filter: blur(6px); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; min-width: 560px; }
table.data-table th, table.data-table td { padding: 0.8rem 1.1rem; text-align: left; border-bottom: 1px solid var(--border2); }
table.data-table th { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); background: rgba(255,255,255,0.04); }
table.data-table td { color: var(--muted); }
table.data-table td:first-child { color: var(--text); font-weight: 600; }
table.data-table tr:last-child td { border-bottom: none; }
table.data-table td strong { color: var(--ocean2); }
table.data-table td small { display: block; color: var(--muted2); font-weight: 400; font-size: 0.72rem; }
.th-bah { color: var(--bah) !important; } .th-dom { color: var(--dom) !important; } .th-mex { color: var(--mex) !important; }

/* ── FEATURE (signature experience, with image) ── */
.feature-img {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border); min-height: 460px;
  display: flex; align-items: flex-end;
}
.feature-img > img { position: absolute; inset: 0; width: 100%; height: 132%; object-fit: cover; will-change: transform; }
.feature-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(2,12,22,0.05) 20%, rgba(2,12,22,0.88) 100%);
}
.feature-body { position: relative; z-index: 2; padding: 2.8rem 2.4rem; width: 100%; }
.feature-body h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; margin: 0.5rem 0 0.8rem; }
.feature-body p { color: rgba(245,247,250,0.82); max-width: 640px; font-size: 0.98rem; line-height: 1.6; }
.feature-facts { display: flex; gap: 2.2rem; flex-wrap: wrap; margin-top: 1.6rem; }
.ffact .fv { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; color: var(--ocean2); }
.ffact .fl { font-size: 0.76rem; color: var(--muted); margin-top: 0.15rem; max-width: 200px; }
@media (max-width: 640px) { .feature-body { padding: 2rem 1.4rem; } }

/* ── INFO CARDS (center / good-to-know) ── */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.info-card {
  border: 1px solid var(--border2); border-radius: 16px; padding: 1.5rem 1.4rem;
  background: rgba(2,14,25,0.35); backdrop-filter: blur(6px);
}
.info-card .ic { font-size: 1.5rem; }
.info-card h4 { font-size: 1rem; font-weight: 700; margin: 0.7rem 0 0.4rem; }
.info-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.info-card p strong { color: var(--text); }

/* ── COURSES ── */
.courses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1rem; }
.course-card {
  border: 1px solid var(--border2); border-radius: 16px; padding: 1.5rem 1.4rem;
  background: rgba(2,14,25,0.35); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; transition: all 0.25s ease;
}
.course-card:hover { background: rgba(2,14,25,0.55); border-color: var(--border); transform: translateY(-4px); }
.course-badge { align-self: flex-start; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.65rem; border-radius: 100px; margin-bottom: 0.8rem; }
.cb-kids { background: rgba(20,184,166,0.18); color: #5EEAD4; }
.cb-begin { background: rgba(56,189,248,0.18); color: #7DD3FC; }
.cb-adv { background: rgba(249,115,22,0.18); color: #FDBA74; }
.cb-pro { background: rgba(245,158,11,0.2); color: #FCD34D; }
.course-card h4 { font-size: 1.05rem; font-weight: 800; }
.course-age { font-size: 0.78rem; color: var(--muted2); margin: 0.2rem 0 0.7rem; }
.course-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; flex: 1; }
.course-price { margin-top: 1rem; font-size: 1.3rem; font-weight: 900; color: var(--ocean2); }
.course-price small { font-size: 0.72rem; color: var(--muted2); font-weight: 500; }

/* ── FAQ ── */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--border2); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 0; font-size: 1rem; font-weight: 600; text-align: left;
}
.faq-q svg { flex-shrink: 0; transition: transform 0.3s ease; color: var(--muted); }
.faq-item.open .faq-q svg { transform: rotate(45deg); color: var(--ocean2); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 0 1.4rem; color: var(--muted); font-size: 0.93rem; line-height: 1.65; max-width: 680px; }
.faq-a-inner strong { color: var(--text); }

/* ── BOOK CTA (the abyss) ── */
.book-cta { position: relative; text-align: center; padding: 7rem 24px 6rem; overflow: hidden; }
.book-cta .abyss-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 50% at 50% 105%, rgba(14,165,233,0.18), transparent 65%);
}
.book-cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.04em; margin: 0.8rem 0 1rem; position: relative; }
.book-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 2.2rem; position: relative; }
/* booking widget (participating dive hotels → bookcore engine)
   Look & feel matches the vivaresortsbywyndham.com booking bar:
   white card + "Resort" tab, blue labels, underlined fields, guest chips. */
.bkw { position: relative; max-width: 1150px; margin: 0 auto; text-align: left; }
.bkw-tab {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: #fff; color: #2367B1; font-weight: 700; font-size: 0.95rem;
  padding: 0.7rem 1.9rem 0.55rem; border-radius: 14px 14px 0 0;
}
.bkw-tab .tab-icn { width: 19px; height: 19px; color: #2367B1; }
.bkw-card {
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 1.2rem;
  background: #fff; border-radius: 0 16px 16px 16px; padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 26px 70px rgba(0,0,0,0.5);
}
.bkw-field { display: flex; flex-direction: column; gap: 0.5rem; }
.bkw-field label { color: #2367B1; font-weight: 700; font-size: 0.94rem; }
.bkw-field select, .bkw-field input {
  appearance: none; -webkit-appearance: none; color-scheme: light;
  background: #fff; border: none; border-bottom: 1.5px solid #9AA7B6; border-radius: 0;
  color: #1B2B3F; font: inherit; font-size: 0.95rem; padding: 0.4rem 0 0.45rem; width: 100%;
}
.bkw-field select:focus, .bkw-field input:focus { outline: none; border-bottom-color: #2367B1; }
.bkw-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='m1 1 4.5 4.5L10 1' stroke='%231B2B3F' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.15rem center; padding-right: 1.5rem;
}
.bkw-hotel { flex: 2 1 215px; }
.bkw-dates { flex: 1.4 1 235px; position: relative; }
.bkw-dates input { cursor: pointer; }

/* calendario doble (mes en curso + siguiente), abre hacia arriba */
.bkw-cal {
  position: absolute; bottom: calc(100% + 10px); left: 0; z-index: 60;
  display: none; gap: 1.2rem; padding: 1.1rem 2.4rem;
  background: #fff; border-radius: 16px; box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  border: 1px solid #E4E8ED;
}
.bkw-cal.open { display: flex; }
.cal-month { user-select: none; }
.cal-title { text-align: center; color: #2367B1; font-weight: 800; font-size: 0.9rem; margin-bottom: 0.6rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 34px); gap: 2px; }
.cal-dow span { text-align: center; font-size: 0.68rem; font-weight: 700; color: #9AA7B6; padding-bottom: 0.3rem; }
.cal-day {
  height: 32px; border: none; border-radius: 8px; background: transparent;
  color: #1B2B3F; font: inherit; font-size: 0.84rem; cursor: pointer;
}
.cal-day:hover { background: #E8F0F9; }
.cal-day.off { color: #C4CDD6; cursor: default; background: transparent; }
.cal-day.sel { background: #2367B1; color: #fff; font-weight: 800; }
.cal-day.mid { background: #DCE9F7; border-radius: 0; }
.cal-nav {
  position: absolute; top: 1rem; width: 28px; height: 28px;
  border: 1px solid #C4CDD6; border-radius: 50%; background: #fff; color: #2367B1;
  font-size: 1.1rem; font-weight: 700; cursor: pointer; line-height: 1;
}
.cal-nav:hover { background: #E8F0F9; }
.cal-nav:disabled { opacity: 0.35; cursor: default; }
.cal-prev { left: 0.7rem; }
.cal-next { right: 0.7rem; }
@media (max-width: 760px) {
  .bkw-cal { flex-direction: column; gap: 0.9rem; left: 50%; transform: translateX(-50%); max-height: 60vh; overflow-y: auto; }
}
.bkw-guests { flex: 0 0 auto; }
.bkw-chips { display: flex; gap: 0.5rem; padding-bottom: 0.1rem; }
.bkw-chip {
  display: inline-flex; align-items: center; gap: 0.15rem;
  background: #E4E8ED; border-radius: 8px; padding: 0.34rem 0.5rem 0.34rem 0.6rem;
}
.bkw-chip .chip-icn { width: 15px; height: 15px; color: #1B2B3F; opacity: 1; }
.bkw-chip .chip-icn-kid { width: 12px; height: 12px; }
.bkw-chip select {
  border: none; width: auto; padding: 0 1.1rem 0 0.25rem; font-weight: 700; font-size: 0.92rem;
  background-position: right 0.1rem center;
}
.bkw-promo { flex: 1 1 125px; max-width: 190px; }
.bkw-promo label { text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.86rem; }
.bkw-go {
  background: #2367B1; color: #fff; font: inherit; font-weight: 800; font-size: 1.08rem;
  border: none; border-radius: 100px; padding: 0.8rem 2.1rem; cursor: pointer;
  margin-left: auto; flex: 0 0 auto; transition: all 0.2s ease;
}
.bkw-go:hover { background: #1B5496; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(35,103,177,0.4); }
.bkw-note { font-size: 0.74rem; color: var(--muted2); margin: 0.9rem auto 0 !important; position: relative; }

/* ── lead capture: "Arma tu plan" ── */
.plan-add {
  margin-left: 0.6rem; flex-shrink: 0; cursor: pointer;
  width: 22px; height: 22px; border-radius: 50%; border: none;
  background: var(--cta); color: #fff; font-size: 1rem; font-weight: 800; line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.18s ease;
}
.plan-add:hover { background: var(--cta2); transform: scale(1.12); }
.plan-add-course {
  margin-top: 0.5rem; align-self: flex-start; cursor: pointer;
  border: 1px solid var(--cta); border-radius: 100px; background: transparent;
  color: var(--cta2); font: inherit; font-size: 0.78rem; font-weight: 700; padding: 0.28rem 0.8rem;
  transition: all 0.18s ease;
}
.plan-add-course:hover { background: var(--cta); color: #fff; }
.plan-fab {
  position: fixed; left: 1.3rem; bottom: 1.3rem; z-index: 900;
  width: 54px; height: 54px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--cta); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(249,115,22,0.4); transition: transform 0.2s ease;
}
.plan-fab:hover { transform: translateY(-3px); }
.plan-fab.pulse { animation: planPulse 0.45s ease; }
@keyframes planPulse { 0% { transform: scale(1); } 40% { transform: scale(1.18); } 100% { transform: scale(1); } }
.plan-badge {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px;
  border-radius: 100px; background: #fff; color: var(--cta);
  font-size: 0.72rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
  padding: 0 5px; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.plan-nav-btn {
  position: relative; flex-shrink: 0; cursor: pointer;
  width: 37px; height: 37px; border-radius: 50%; border: none;
  background: var(--cta); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s ease;
}
.plan-nav-btn:hover { background: var(--cta2); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(249,115,22,0.35); }
.plan-nav-btn .plan-badge { top: -5px; right: -6px; min-width: 17px; height: 17px; font-size: 0.66rem; border: 1.5px solid var(--cta); }
.plan-panel {
  position: fixed; left: 1.3rem; bottom: 5.6rem; z-index: 901;
  width: min(400px, calc(100vw - 2rem)); max-height: min(72vh, 640px);
  background: #fff; border-radius: 18px; box-shadow: 0 30px 80px rgba(0,0,0,0.55);
  display: none; flex-direction: column; overflow: hidden;
}
.plan-panel.open { display: flex; }
.plan-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.2rem; background: #2367B1; color: #fff; font-size: 1rem;
}
.plan-close { border: none; background: none; color: #fff; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.plan-body { padding: 1rem 1.2rem 1.2rem; overflow-y: auto; }
.plan-empty { color: #6B7A8D; font-size: 0.88rem; padding: 0.4rem 0 0.6rem; }
.plan-item {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.45rem 0; border-bottom: 1px solid #E4E8ED; font-size: 0.86rem; color: #1B2B3F;
}
.pi-name { flex: 1; line-height: 1.3; }
.pi-line { font-weight: 700; color: #2367B1; white-space: nowrap; }
.plan-step { display: inline-flex; align-items: center; gap: 0.35rem; }
.plan-step button {
  width: 20px; height: 20px; border-radius: 6px; border: 1px solid #C4CDD6; background: #F2F5F8;
  color: #1B2B3F; font-weight: 800; cursor: pointer; line-height: 1; font-size: 0.85rem;
}
.plan-step b { min-width: 14px; text-align: center; font-size: 0.86rem; }
.pi-x { border: none; background: none; color: #9AA7B6; font-size: 1.1rem; cursor: pointer; line-height: 1; }
.pi-x:hover { color: #C0392B; }
.plan-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0 0.2rem; color: #1B2B3F; font-size: 0.92rem;
}
.plan-total b { color: #2367B1; font-size: 1.05rem; }
.plan-note { font-size: 0.74rem; color: #6B7A8D; margin: 0.4rem 0 0; line-height: 1.45; }
.plan-form { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem 0.9rem; margin-top: 0.9rem; }
.plan-form label { display: flex; flex-direction: column; gap: 0.25rem; color: #2367B1; font-weight: 700; font-size: 0.76rem; }
.plan-form .plan-msg { grid-column: 1 / -1; }
.plan-form input, .plan-form select {
  appearance: none; -webkit-appearance: none; color-scheme: light;
  border: none; border-bottom: 1.5px solid #9AA7B6; border-radius: 0; background: #fff;
  color: #1B2B3F; font: inherit; font-size: 0.88rem; padding: 0.3rem 0 0.35rem; width: 100%;
}
.plan-form input:focus, .plan-form select:focus { outline: none; border-bottom-color: #2367B1; }
.plan-send {
  margin-top: 1rem; width: 100%; cursor: pointer;
  background: #2367B1; color: #fff; font: inherit; font-weight: 800; font-size: 0.98rem;
  border: none; border-radius: 100px; padding: 0.75rem 1.4rem; transition: all 0.2s ease;
}
.plan-send:hover { background: #1B5496; }
.plan-send:disabled { opacity: 0.6; cursor: wait; }
.plan-wa { display: block; text-align: center; margin-top: 0.6rem; color: #1B7A4B; font-size: 0.84rem; font-weight: 700; }
.plan-wa:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .plan-panel { left: 0.8rem; bottom: 5.2rem; width: calc(100vw - 1.6rem); max-height: 76vh; }
  .plan-fab { left: 0.9rem; bottom: 0.9rem; }
}

/* check-in banner (Dominicus page) */
.ck-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap;
  margin-top: 1rem; padding: 1.3rem 1.6rem;
  border: 1px solid rgba(94,234,212,0.25); border-radius: 16px;
  background: rgba(20,184,166,0.08); backdrop-filter: blur(6px);
}
.ck-banner h4 { font-size: 1.05rem; font-weight: 800; }
.ck-banner p { font-size: 0.86rem; color: var(--muted); margin-top: 0.25rem; max-width: 560px; }
.ck-banner .btn-primary { white-space: nowrap; }

/* check-in form page */
.ck-wrap { max-width: 960px; margin: 0 auto; padding: 0 24px 5rem; position: relative; z-index: 2; }
.ck-card {
  background: #fff; border-radius: 16px; padding: 1.6rem 1.7rem 1.8rem;
  margin-bottom: 1.1rem; box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.ck-card h3 { display: flex; align-items: center; gap: 0.6rem; color: #1B2B3F; font-size: 1.05rem; font-weight: 800; margin-bottom: 1.2rem; }
.ck-card h3 .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 25px; height: 25px; border-radius: 50%; flex-shrink: 0;
  background: #2367B1; color: #fff; font-size: 0.8rem;
}
.ck-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(205px, 1fr)); gap: 1.1rem 1.5rem; }
.ck-field { display: flex; flex-direction: column; gap: 0.35rem; }
.ck-field label { color: #2367B1; font-weight: 700; font-size: 0.85rem; }
.ck-field input, .ck-field select {
  appearance: none; -webkit-appearance: none; color-scheme: light;
  background: #fff; border: none; border-bottom: 1.5px solid #9AA7B6; border-radius: 0;
  color: #1B2B3F; font: inherit; font-size: 0.94rem; padding: 0.4rem 0 0.45rem; width: 100%;
}
.ck-field input:focus, .ck-field select:focus { outline: none; border-bottom-color: #2367B1; }
.ck-field input[type="radio"], .ck-field input[type="checkbox"] {
  appearance: auto; -webkit-appearance: auto;
  width: 16px; height: 16px; border: none; padding: 0;
}
.ck-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' fill='none'%3E%3Cpath d='m1 1 4.5 4.5L10 1' stroke='%231B2B3F' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.15rem center; padding-right: 1.5rem;
}
.ck-radio { display: flex; gap: 1.2rem; flex-wrap: wrap; padding: 0.35rem 0; }
.ck-radio label { display: inline-flex; align-items: center; gap: 0.4rem; color: #1B2B3F; font-size: 0.92rem; cursor: pointer; }
.ck-radio input, .ck-chip input[type="checkbox"], .ck-consent input { accent-color: #2367B1; width: 16px; height: 16px; flex-shrink: 0; }
.ck-checks { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.ck-chip {
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer;
  background: #EDF1F5; border-radius: 10px; padding: 0.5rem 0.75rem;
  color: #1B2B3F; font-size: 0.88rem; font-weight: 600;
}
.ck-chip select {
  border: none; background: #fff; border-radius: 6px; color: #1B2B3F;
  font: inherit; font-size: 0.84rem; padding: 0.18rem 0.35rem; cursor: pointer;
}
.ck-hint { font-size: 0.78rem; color: #6B7A8D; }
.ck-consent {
  display: flex; align-items: flex-start; gap: 0.65rem; cursor: pointer;
  margin: 1.3rem 0 1.4rem; color: #4A5A6E; font-size: 0.86rem; line-height: 1.5;
}
.ck-consent input { margin-top: 2px; }
.ck-send {
  background: #2367B1; color: #fff; font: inherit; font-weight: 800; font-size: 1.08rem;
  border: none; border-radius: 100px; padding: 0.85rem 2.6rem; cursor: pointer; transition: all 0.2s ease;
}
.ck-send:hover { background: #1B5496; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(35,103,177,0.4); }
.ck-send:disabled { opacity: 0.6; transform: none; cursor: wait; }
@media (max-width: 640px) { .ck-card { padding: 1.3rem 1.1rem 1.4rem; } .ck-send { width: 100%; } }
@media (max-width: 760px) {
  .bkw-card { gap: 1.1rem; padding: 1.1rem 1.2rem 1.3rem; }
  .bkw-field, .bkw-hotel, .bkw-dates, .bkw-promo { flex: 1 1 100%; min-width: 0; }
  .bkw-guests { flex: 1 1 auto; }
  .bkw-go { flex: 1 1 100%; margin-left: 0; }
}

.contact-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; position: relative; }
.contact-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  border: 1px solid var(--border); border-radius: 100px; padding: 0.65rem 1.3rem;
  font-size: 0.9rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.04);
  transition: all 0.2s ease;
}
.contact-chip:hover { color: var(--text); border-color: var(--ocean2); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border2); padding: 2.4rem 24px; background: #000306; position: relative; z-index: 2; }
.foot-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.foot-inner p { color: var(--muted2); font-size: 0.8rem; }
.foot-links { display: flex; gap: 1.4rem; font-size: 0.82rem; color: var(--muted); flex-wrap: wrap; }
.foot-links a:hover { color: var(--text); }

/* ── breadcrumb for destination pages ── */
.crumb { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 5.4rem 24px 0; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.crumb a:hover { color: #fff; }

.reveal { will-change: transform, opacity; }

/* ── minimal stroke icons ── */
.icn { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.9; }
.icb { width: 26px; height: 26px; color: var(--ocean2); }
.info-card .ic { line-height: 0; }
.hm .icn { color: rgba(245,247,250,0.85); }
.contact-chip .icn { width: 15px; height: 15px; }
.dest-points .pt { width: 15px; height: 15px; color: #5EEAD4; margin-top: 3px; }
.faq-a-inner .icn { vertical-align: -2px; }

/* ── flag badge: typographic country code ── */
.flag-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 26px; height: 18px; padding: 0 5px;
  border: 1px solid currentColor; border-radius: 5px;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.12em;
  margin-right: 0.6rem; vertical-align: -3px; opacity: 0.95;
}
.dest-kicker .flag-badge { margin-right: 0; height: 20px; min-width: 30px; font-size: 0.66rem; }

/* ── VIVIAN WIDGET ── */
.viv-bubble {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  width: 60px; height: 60px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(14,165,233,0.45); transition: all 0.25s ease;
}
.viv-bubble:hover { transform: scale(1.07); }
.viv-panel {
  position: fixed; bottom: 100px; right: 24px; z-index: 299;
  width: 384px; max-width: calc(100vw - 32px); height: 610px; max-height: calc(100vh - 140px);
  background: rgba(8,16,30,0.94); backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.55);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(0.96); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.viv-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
@media (max-width: 480px) { .viv-panel { right: 12px; left: 12px; bottom: 96px; width: auto; } }
.viv-header { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.1rem; border-bottom: 1px solid var(--border2); }
.viv-avatar {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--ocean), var(--teal));
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem;
}
.viv-header-name { font-weight: 700; font-size: 0.95rem; }
.viv-header-sub { font-size: 0.72rem; color: var(--teal); }
.viv-close { margin-left: auto; background: none; border: none; color: var(--muted); padding: 0.4rem; }
.viv-close:hover { color: var(--text); }
.viv-body { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.55rem; }
.viv-msg { max-width: 85%; padding: 0.7rem 0.95rem; border-radius: 16px; font-size: 0.88rem; line-height: 1.5; }
.viv-msg-bot { background: rgba(255,255,255,0.07); border-bottom-left-radius: 4px; align-self: flex-start; }
.viv-msg-bot strong { color: var(--ocean2); }
.viv-msg-user { background: var(--ocean); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.viv-quick { display: flex; flex-wrap: wrap; gap: 0.45rem; align-self: flex-start; margin-top: 0.2rem; }
.viv-quick button {
  background: rgba(56,189,248,0.10); border: 1px solid rgba(56,189,248,0.35);
  color: var(--ocean2); font-size: 0.8rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 100px; transition: all 0.2s ease;
}
.viv-quick button:hover { background: rgba(56,189,248,0.22); }
.viv-cta-row { display: flex; flex-wrap: wrap; gap: 0.45rem; align-self: flex-start; }
.viv-cta-row a {
  background: var(--cta); color: #fff; font-size: 0.8rem; font-weight: 700;
  padding: 0.5rem 1rem; border-radius: 100px; transition: all 0.2s ease;
}
.viv-cta-row a:hover { background: var(--cta2); }
.viv-typing { display: flex; gap: 4px; padding: 0.75rem 0.95rem; background: rgba(255,255,255,0.07); border-radius: 16px; border-bottom-left-radius: 4px; align-self: flex-start; }
.viv-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: vivtyp 1.2s infinite; }
.viv-typing span:nth-child(2) { animation-delay: 0.15s; }
.viv-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes vivtyp { 0%,60%,100% { opacity: 0.3; transform: translateY(0);} 30% { opacity: 1; transform: translateY(-3px);} }
.viv-input { display: flex; gap: 0.5rem; padding: 0.8rem; border-top: 1px solid var(--border2); }
.viv-input input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 100px; padding: 0.65rem 1rem; color: var(--text); font-size: 0.88rem; outline: none;
}
.viv-input input:focus { border-color: var(--ocean); }
.viv-input button {
  width: 42px; height: 42px; border-radius: 50%; border: none; flex-shrink: 0;
  background: var(--ocean); color: #fff; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease;
}
.viv-input button:hover { background: var(--ocean2); }

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