/* ============================================================
   La Goleta Josephine — style.css
   Dark marine theme · Cormorant Garamond + Montserrat
   ============================================================ */

/* ────────────────────────────────────────────────────────────
   CSS Custom Properties
   ──────────────────────────────────────────────────────────── */
:root {
  --bg-deep:      #040d1a;
  --bg-dark:      #07152a;
  --bg-card:      #0c1f3a;
  --text-primary: #f0ead6;
  --text-muted:   #8a9fb5;
  --accent-gold:  #c9a84c;
  --accent-light: #e8d5a3;
  --accent-dim:   rgba(201, 168, 76, 0.1);
  --border-dim:   rgba(255, 255, 255, 0.06);
  --border-gold:  rgba(201, 168, 76, 0.28);
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Montserrat', sans-serif;
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:     cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ────────────────────────────────────────────────────────────
   Reset & Global
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto; /* Lenis owns scroll */
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
}

body.is-loading,
body.menu-open {
  overflow: hidden;
}

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

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

ul { list-style: none; }

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

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

/* ────────────────────────────────────────────────────────────
   Page Loader
   ──────────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__logo {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--accent-gold);
  margin-bottom: 36px;
}

.loader__bar {
  width: 220px;
  height: 1px;
  background: var(--border-dim);
  margin: 0 auto;
  overflow: hidden;
}

.loader__bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-light));
  animation: barFill 0.6s var(--ease-out) forwards;
}

@keyframes barFill {
  to { width: 100%; }
}

/* ────────────────────────────────────────────────────────────
   Scroll Progress Bar
   ──────────────────────────────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-light));
  z-index: 9998;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ────────────────────────────────────────────────────────────
   Navigation
   ──────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 30px 64px;
  transition: padding 0.4s var(--ease-std),
              background 0.4s var(--ease-std),
              border-color 0.4s var(--ease-std);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  padding: 18px 64px;
  background: rgba(4, 13, 26, 0.93);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-bottom-color: var(--border-dim);
}

.nav__logo {
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  color: var(--accent-gold);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.35s var(--ease-out);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__cta {
  flex-shrink: 0;
  margin-left: 8px;
}

.nav__lang {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dim);
  padding: 5px 11px;
  border-radius: 2px;
  transition: color 0.25s, border-color 0.25s;
  line-height: 1;
}

.nav__lang:hover {
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

/* Desktop dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
  font-family: var(--font-sans);
  position: relative;
}

.nav__dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.35s var(--ease-out);
}

.nav__dropdown:hover .nav__dropdown-btn,
.nav__dropdown.is-open .nav__dropdown-btn {
  color: var(--text-primary);
}

.nav__dropdown:hover .nav__dropdown-btn::after,
.nav__dropdown.is-open .nav__dropdown-btn::after {
  width: 100%;
}

.nav__chevron {
  width: 8px;
  height: 8px;
  display: inline-block;
  transition: transform 0.25s var(--ease-out);
  flex-shrink: 0;
  margin-top: 1px;
}

.nav__dropdown:hover .nav__chevron,
.nav__dropdown.is-open .nav__chevron {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(4, 13, 26, 0.97);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--border-gold);
  border-radius: 2px;
  min-width: 152px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out),
              visibility 0.22s,
              transform 0.22s var(--ease-out);
  z-index: 200;
}

/* invisible bridge that covers the gap so hover doesn't break mid-travel */
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -16px;
  right: -16px;
  height: 20px;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu a {
  padding: 9px 22px;
  font-size: 0.65rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}

.nav__dropdown-menu a:hover {
  color: var(--accent-gold);
  background: var(--accent-dim);
}

.nav__dropdown-menu a.is-current {
  color: var(--accent-gold);
}

/* Mobile menu destination sub-links */
.mobile-menu__dest-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: -20px;
}

.mobile-menu__dest-list a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-menu__dest-list a:hover {
  color: var(--accent-gold);
}

.mobile-menu__lang {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}

.mobile-menu__lang:hover {
  color: var(--accent-gold);
}

/* Hamburger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  padding: 2px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  height: 1px;
  background: var(--text-primary);
  transition: transform 0.35s var(--ease-out), opacity 0.35s, width 0.35s var(--ease-out);
  transform-origin: left center;
}

.nav__burger span:nth-child(2) { width: 70%; }

.nav__burger.is-open span:nth-child(1) { transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav__burger.is-open span:nth-child(3) { transform: rotate(-45deg); }

/* ────────────────────────────────────────────────────────────
   Mobile Menu
   ──────────────────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 90px 40px calc(32px + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.45s var(--ease-out),
              visibility 0.45s,
              transform 0.45s var(--ease-out);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.mobile-menu__link:hover {
  color: var(--accent-gold);
}

/* ────────────────────────────────────────────────────────────
   Buttons
   ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.35s var(--ease-out),
              color 0.35s var(--ease-out),
              box-shadow 0.35s var(--ease-out),
              transform 0.25s var(--ease-out);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--gold {
  background: var(--accent-gold);
  color: var(--bg-deep);
}

.btn--gold:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.32);
}

.btn--outline {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 12px 28px;
}

.btn--outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent-gold);
}

.btn--outline-sm {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--border-gold);
  padding: 8px 22px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.btn--outline-sm:hover {
  background: var(--accent-dim);
}

/* ────────────────────────────────────────────────────────────
   Section Commons
   ──────────────────────────────────────────────────────────── */
.section {
  padding: 130px 0;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 80px;
}

.section__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--text-primary);
}

.section__desc {
  margin-top: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ────────────────────────────────────────────────────────────
   Hero Section
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center 40%;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(4, 13, 26, 0.82) 0%,
    rgba(4, 13, 26, 0.60) 45%,
    rgba(4, 13, 26, 0.88) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 1px 8px rgba(4,13,26,0.8);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1.02;
  color: #ffffff;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  text-shadow: 0 2px 20px rgba(4,13,26,0.75), 0 1px 5px rgba(4,13,26,0.55);
}

.hero__title em {
  font-style: italic;
  color: var(--accent-light);
  display: block;
  text-shadow: 0 2px 20px rgba(4,13,26,0.75), 0 1px 5px rgba(4,13,26,0.55);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(240,234,214,0.9);
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 0 1px 12px rgba(4,13,26,0.85), 0 2px 4px rgba(4,13,26,0.6);
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
}

/* Scroll hint */
.hero__scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
}

.hero__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50%       { opacity: 0.9;  transform: scaleY(1.05); }
}

/* ────────────────────────────────────────────────────────────
   Experiencia Section
   ──────────────────────────────────────────────────────────── */
.experiencia {
  background: var(--bg-dark);
  overflow: hidden;
}

.experiencia__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.experiencia__body {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.experiencia__more {
  margin: 4px 0 24px;
  border: none;
}

.experiencia__more-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  cursor: pointer;
  list-style: none;
  margin-bottom: 0;
}

.experiencia__more-btn::-webkit-details-marker { display: none; }

.experiencia__more-btn::after {
  content: '+';
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s;
}

details[open] > .experiencia__more-btn::after { transform: rotate(45deg); }

.experiencia__more-content {
  padding-top: 20px;
}

.experiencia__more-h {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-primary);
  margin: 22px 0 8px;
}

.experiencia__more-list {
  margin: 4px 0 16px 0;
  padding-left: 18px;
}

.experiencia__more-list li {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 4px;
}

.experiencia__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-style: italic;
  color: var(--accent-light);
  line-height: 1.6;
  border-left: 2px solid var(--accent-gold);
  padding-left: 26px;
  margin: 36px 0;
}

.experiencia__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.tag {
  padding: 7px 18px;
  border: 1px solid var(--border-gold);
  color: var(--accent-gold);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s;
}

.tag:hover {
  background: var(--accent-dim);
  color: var(--accent-light);
}

/* Two-phone duo layout */
.phones-duo {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
}

.phones-duo .phone-mockup {
  width: 210px;
  height: 435px;
  margin: 0;
  border-radius: 36px;
  flex-shrink: 0;
}

.phones-duo .phone-mockup:last-child {
  margin-top: 52px;
}

.phones-duo .phone-mockup__notch {
  width: 88px;
  height: 24px;
}

.mobile-videos {
  display: none;
}

/* Phone mockup */
.phone-mockup {
  width: 280px;
  height: 580px;
  background: #050b14;
  border-radius: 46px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 60px 120px rgba(0, 0, 0, 0.65),
    0 0 80px rgba(201, 168, 76, 0.05);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.phone-mockup__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 28px;
  background: #050b14;
  border-radius: 0 0 20px 20px;
  z-index: 5;
}

.phone-mockup__screen {
  width: 100%;
  height: 100%;
}

.phone-mockup__screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-video {
  display: none;
}

/* Asymmetric gallery */
.gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  grid-template-rows: 340px 340px;
  gap: 12px;
}

.gallery__item {
  overflow: hidden;
  position: relative;
  border-radius: 2px;
}

.gallery__item--tall  { grid-row: span 2; }
.gallery__item--wide  { grid-column: span 2; }

.gallery__bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
  transition: transform 0.7s var(--ease-out);
}

.gallery__item:hover .gallery__bg {
  transform: scale(1.03);
}

.gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ────────────────────────────────────────────────────────────
   Destinos Section
   ──────────────────────────────────────────────────────────── */
.destinos {
  background: var(--bg-deep);
}

.destinos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.destinos__grid--three {
  grid-template-columns: repeat(3, 1fr);
}

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

.destino-card {
  position: relative;
  height: 540px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(40px);
}

.destino-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(4, 13, 26, 0.94) 0%,
    rgba(4, 13, 26, 0.35) 55%,
    rgba(4, 13, 26, 0.08) 100%
  );
  transition: background 0.5s;
}

.destino-card:hover .destino-card__overlay {
  background: linear-gradient(
    to top,
    rgba(4, 13, 26, 0.97) 0%,
    rgba(4, 13, 26, 0.55) 65%,
    rgba(4, 13, 26, 0.15) 100%
  );
}

/* Subtle zoom on hover */
.destino-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
  z-index: -1;
}

.destino-card:hover::before {
  transform: scale(1.05);
}

.destino-card__inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 30px;
  z-index: 1;
}

.destino-card__num {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.destino-card__name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
  transition: transform 0.45s var(--ease-out);
}

.destino-card:hover .destino-card__name {
  transform: translateY(-4px);
}

.destino-card__desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: max-height 0.5s var(--ease-out),
              opacity 0.45s var(--ease-out),
              transform 0.45s var(--ease-out);
}

.destino-card:hover .destino-card__desc {
  max-height: 80px;
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────
   Tarifas Section
   ──────────────────────────────────────────────────────────── */
.tarifas {
  position: relative;
  background: var(--bg-dark);
  overflow: hidden;
}

.tarifas__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}

.tarifas__overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  opacity: 0.72;
}

.tarifas .container {
  position: relative;
  z-index: 1;
}

.tarifas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 64px;
  margin-bottom: 72px;
  align-items: center;
}

.tarifas__video-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tarifas__block-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-primary);
  padding-bottom: 20px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border-dim);
}

/* Precio items */
.precio-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-dim);
}

.precio-item--featured {
  padding: 26px 24px;
  margin: 8px -24px;
  background: var(--accent-dim);
  border: 1px solid var(--border-gold);
  border-radius: 3px;
}

.precio-item__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.precio-item__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-primary);
}

.precio-item__detail {
  font-size: 0.73rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.precio-item__amount {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--accent-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.precio-item__amount sup {
  font-size: 1rem;
  vertical-align: super;
  font-weight: 400;
}

/* Includes */
.includes {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.includes__label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.includes__label--yes {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
}

.includes__label--no {
  color: #f87171;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.22);
}

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

.includes__list li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding-left: 22px;
  position: relative;
  line-height: 1.6;
}

.includes__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-size: 0.7rem;
  top: 2px;
}

.includes__list--no li::before {
  color: #f87171;
}

/* Condiciones */
.condiciones {
  padding: 52px 56px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-dim);
  border-radius: 3px;
}

.condiciones__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 40px;
}

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

.condicion {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.condicion__dot {
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}


/* Reveal initial state for tarifa blocks */
.tarifa-reveal {
  opacity: 0;
  transform: translateY(48px);
}

/* ────────────────────────────────────────────────────────────
   Contacto Section
   ──────────────────────────────────────────────────────────── */
.contacto {
  background: var(--bg-deep);
  overflow: hidden;
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

/* Form */
.contact-form-wrap {
  position: relative;
  opacity: 0;
  transform: translateX(-48px);
}

.contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.form-field {
  position: relative;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 14px 0;
  outline: none;
  resize: none;
  transition: border-color 0.3s;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.form-field textarea {
  min-height: 100px;
}

.form-field label {
  position: absolute;
  top: 14px;
  left: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.32s var(--ease-out);
}

/* Float label when input has value or is focused */
.form-field input:not(:placeholder-shown) ~ label,
.form-field input:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label {
  top: -18px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

/* Animated focus line */
.form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.42s var(--ease-out);
}

.form-field input:focus ~ .form-line,
.form-field textarea:focus ~ .form-line {
  width: 100%;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-submit {
  align-self: flex-start;
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-sent {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  min-height: 340px;
  opacity: 0;
}

.form-sent.is-visible {
  display: flex;
}

.form-sent__icon svg {
  width: 56px;
  height: 56px;
}

.form-sent__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.1;
  margin: 0;
}

.form-sent__sub {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 320px;
}

/* Captain card */
.captain {
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transform: translateX(48px);
}

.captain__photo-wrap {
  overflow: hidden;
  border-radius: 2px;
}

.captain__photo {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}

.captain__photo-wrap:hover .captain__photo {
  transform: scale(1.04);
}

.captain__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.captain__role {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 4px;
}

.captain__name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.captain__phone {
  display: block;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  transition: color 0.3s;
}

.captain__phone:hover {
  color: var(--accent-gold);
}

/* ────────────────────────────────────────────────────────────
   FAQ Section
   ──────────────────────────────────────────────────────────── */
.faq {
  background: var(--bg-dark);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-dim);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-dim);
}

.faq__q {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 400;
  color: var(--text-primary);
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.3s;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: '+';
  font-family: var(--font-sans);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--accent-gold);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.3s var(--ease-out);
}

details[open] > .faq__q {
  color: var(--accent-light);
}

details[open] > .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  padding: 0 48px 28px 0;
  max-width: 680px;
}

/* ────────────────────────────────────────────────────────────
   Footer
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dim);
  padding: 64px 0;
}

.footer__inner {
  width: 90%;
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  letter-spacing: 0.42em;
  color: var(--accent-gold);
  margin-bottom: 4px;
}

.footer__tagline {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 8px;
}

/* ────────────────────────────────────────────────────────────
   WhatsApp FAB
   ──────────────────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.38);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.whatsapp-fab svg {
  width: 27px;
  height: 27px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.whatsapp-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.48);
}

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.8s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  70%  { transform: scale(1.6); opacity: 0;   }
  100% { transform: scale(1.6); opacity: 0;   }
}

/* ────────────────────────────────────────────────────────────
   Media Queries
   ──────────────────────────────────────────────────────────── */

/* Tablet landscape */
@media (max-width: 1140px) {
  .nav {
    padding: 28px 40px;
  }
  .nav.is-scrolled {
    padding: 16px 40px;
  }

  .experiencia__grid {
    grid-template-columns: 1fr 300px;
    gap: 60px;
  }

  .destinos__grid,
  .destinos__grid--three {
    grid-template-columns: repeat(2, 1fr);
  }

  .destino-card {
    height: 440px;
  }

  .destino-card__desc {
    max-height: 80px;
    opacity: 1;
    transform: none;
  }

  .tarifas__grid {
    gap: 48px;
    grid-template-columns: 1fr 1fr auto;
  }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__burger {
    display: flex;
  }

  .section {
    padding: 90px 0;
  }

  .experiencia__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .phone-mockup {
    display: none;
  }

  .mobile-video {
    display: block;
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    margin: 0 auto;
  }

  .tarifas__video-col {
    display: none;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
    grid-auto-rows: 220px;
  }

  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 2; }

  .tarifas__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .condiciones {
    padding: 40px 32px;
  }

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

  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav {
    padding: 20px 24px;
    gap: 16px;
  }

  .nav.is-scrolled {
    padding: 14px 24px;
  }

  .section {
    padding: 72px 0;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 240px 200px 240px;
  }

  .gallery__item--wide { grid-column: span 1; }

  .destinos__grid,
  .destinos__grid--three {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .destino-card {
    height: 380px;
  }

  .precio-item--featured {
    margin: 8px 0;
    padding: 22px 20px;
  }

  .condiciones {
    padding: 32px 24px;
  }

  .condiciones__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section__header {
    margin-bottom: 56px;
  }

  .whatsapp-fab {
    bottom: 24px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-fab svg {
    width: 24px;
    height: 24px;
  }
}

/* ── Language dropdown (nav) ───────────────────────────────── */
.nav__lang-dropdown {
  flex-shrink: 0;
}

.nav__lang-btn {
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-dim);
  padding: 5px 11px;
  border-radius: 2px;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.25s, border-color 0.25s;
}

.nav__lang-btn::after {
  display: none;
}

.nav__lang-dropdown:hover .nav__lang-btn,
.nav__lang-dropdown.is-open .nav__lang-btn {
  color: var(--accent-gold);
  border-color: var(--border-gold);
}

.nav__lang-dropdown .nav__dropdown-menu {
  left: auto !important;
  right: 0;
  transform: translateY(-6px) !important;
  min-width: 140px;
}

.nav__lang-dropdown:hover .nav__dropdown-menu,
.nav__lang-dropdown.is-open .nav__dropdown-menu {
  transform: translateY(0) !important;
}

/* ── Mobile language links wrapper ────────────────────────── */
.mobile-menu__langs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 8px;
}

