/* =============================================
   PERÚ IDEAL EXPEDITIONS — LUXURY DESIGN SYSTEM 2026
   ============================================= */

:root {
  --gold: #C9A227;
  --gold-light: #D4B84A;
  --gold-pale: #E8D06A;
  --gold-metallic: linear-gradient(135deg, #E8D06A 0%, #D4B84A 35%, #C9A227 70%, #9A7B1A 100%);
  --white: #FFFFFF;
  --black: #0A0A0A;
  --graphite: #1B1B1B;
  --graphite-mid: #242424;
  --champagne: #F5F0E8;
  --text-muted: rgba(10, 10, 10, 0.65);
  --text-muted-light: rgba(245, 240, 232, 0.7);
  --border-gold: rgba(201, 162, 39, 0.25);
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 8px 32px rgba(201, 162, 39, 0.2);

  --ff-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --ff-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: min(1200px, 92vw);
  --section-pad: clamp(80px, 12vw, 140px);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease);
  --transition-slow: 0.6s var(--ease-out);

  --dark-bg: #0A0A0A;
  --dark-surface: #1B1B1B;
  --dark-surface-2: #242424;
  --dark-text: #F5F0E8;
  --dark-muted: rgba(245, 240, 232, 0.6);
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  scroll-padding-top: 100px;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: fadeOut 0.25s cubic-bezier(0.4, 0, 1, 1) both;
}

::view-transition-new(root) {
  animation: fadeIn 0.35s cubic-bezier(0, 0, 0.2, 1) both;
}

@keyframes fadeOut {
  to { opacity: 0; }
}

@keyframes fadeIn {
  from { opacity: 0; }
}

html[data-theme="dark"],
html.dark-mode { color-scheme: dark; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
li { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; border: none; background: none; }
button { cursor: pointer; }
address { font-style: normal; }
ion-icon { display: block; pointer-events: none; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

body.dark-mode {
  background: var(--dark-bg);
  color: var(--dark-text);
}

.container { width: var(--container); margin-inline: auto; }

.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 9999;
  padding: 12px 20px; background: var(--gold); color: var(--black);
  font-weight: 600; border-radius: 4px;
}
.skip-link:focus { top: 16px; }

/* ---- TYPOGRAPHY ---- */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px;
}
.eyebrow--gold { color: var(--gold); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 500; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--black);
}
.section-title--light { color: var(--champagne); }
.section-title em { font-style: italic; font-weight: 400; }

.section-desc { margin-top: 16px; max-width: 520px; color: var(--text-muted); }
.section-desc--light { color: var(--text-muted-light); }

.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

.body-text { color: var(--text-muted); margin-bottom: 16px; max-width: 540px; }

.section { padding-block: var(--section-pad); }
.section--dark { background: var(--black); color: var(--champagne); }
.section--champagne { background: var(--champagne); }

body.dark-mode .section--champagne { background: var(--dark-surface); }
body.dark-mode .section-title { color: var(--dark-text); }
body.dark-mode .eyebrow { color: var(--dark-muted); }
body.dark-mode .body-text { color: var(--dark-muted); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  border-radius: 0; transition: var(--transition); white-space: nowrap;
}

.btn-gold {
  background: var(--gold-metallic); color: #1a1204;
  border: 1px solid #8B6914;
  font-weight: 700;
}
.btn-gold:hover {
  box-shadow: var(--shadow-gold); transform: translateY(-2px);
  color: #0a0804;
}

.btn[hidden] { display: none !important; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-pale); }

.btn-outline {
  border: 1px solid var(--border-gold); color: var(--black);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline:disabled { opacity: 0.3; cursor: not-allowed; }

.btn-sm { padding: 12px 24px; font-size: 11px; }

.link-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-deep);
  transition: var(--transition);
}
.link-gold:hover { color: var(--gold); }
.link-gold ion-icon { font-size: 16px; transition: transform var(--transition); }
.link-gold:hover ion-icon { transform: translateX(4px); }
.link-gold--light { color: var(--gold-pale); }

/* ---- HEADER ---- */
.lux-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  min-height: 88px; padding: 0; transition: var(--transition);
  overflow: visible; background: transparent;
}
.lux-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 88px; overflow: visible;
}
.lux-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  border-bottom: 1px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
body.dark-mode .lux-header.scrolled {
  background: rgba(10,10,10,0.95);
}

.lux-logo__img {
  height: 44px; width: auto; object-fit: contain;
  background: transparent;
  transition: var(--transition);
}
.lux-logo__img--header {
  width: auto; max-width: 200px; height: clamp(44px, 5vw, 56px);
}

.lux-nav__list {
  display: none; align-items: center; gap: 36px;
}
.lux-nav__link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white);
  position: relative; transition: color var(--transition);
}
.lux-nav__link::after {
  content: ""; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width var(--transition);
}
.lux-nav__link:hover::after { width: 100%; }
.lux-header.scrolled .lux-nav__link { color: var(--black); }
body.dark-mode .lux-header.scrolled .lux-nav__link { color: var(--dark-text); }

.lux-header__actions { display: flex; align-items: center; gap: 12px; overflow: visible; }

/* ---- LANGUAGE SWITCHER ---- */
.lang-switcher { position: relative; z-index: 130; }
.lang-switcher__trigger {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px 7px 9px; min-height: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
}
.lang-switcher__trigger:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.14);
}
.lang-switcher__flag {
  display: inline-flex;
  flex-shrink: 0;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  line-height: 0;
}
.lang-switcher__flag-svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.lang-switcher__code { white-space: nowrap; line-height: 1; }
.lang-switcher__caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.75;
  margin-left: 1px;
  transition: transform var(--transition);
}
.lang-switcher.is-open .lang-switcher__caret { transform: rotate(180deg); }
.lang-switcher__menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 188px; padding: 6px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14), 0 2px 8px rgba(0,0,0,0.06);
  z-index: 250;
}
.lang-switcher.is-open .lang-switcher__menu { display: block; }
.lang-switcher__menu[hidden] { display: none !important; }
.lang-switcher__option {
  display: flex; align-items: center; gap: 12px;
  width: 100%; text-align: left;
  padding: 11px 12px; border-radius: 10px;
  font-size: 14px; color: var(--black);
  transition: background var(--transition), color var(--transition);
}
.lang-switcher__label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.lang-switcher__option:hover,
.lang-switcher__option.is-active { background: var(--champagne); }
.lang-switcher__option.is-active { color: var(--gold-deep); }
.lang-switcher__option.is-active .lang-switcher__label { font-weight: 600; }
.lux-header.scrolled .lang-switcher__trigger,
.lux-header--solid .lang-switcher__trigger {
  border-color: var(--border-gold);
  color: var(--black);
  background: rgba(255,255,255,0.92);
}
.lux-header.scrolled .lang-switcher__trigger:hover,
.lux-header--solid .lang-switcher__trigger:hover {
  border-color: var(--gold);
  background: var(--white);
}
body.dark-mode .lux-header.scrolled .lang-switcher__trigger,
body.dark-mode .lux-header--solid .lang-switcher__trigger {
  color: var(--dark-text);
  border-color: rgba(201,162,39,0.35);
  background: rgba(30,30,30,0.85);
}
body.dark-mode .lang-switcher__menu {
  background: var(--dark-surface-2);
  border: 1px solid rgba(201,162,39,0.2);
}
body.dark-mode .lang-switcher__option { color: var(--dark-text); }
body.dark-mode .lang-switcher__option:hover,
body.dark-mode .lang-switcher__option.is-active {
  background: rgba(201,162,39,0.12);
}
.lang-switcher-mount--mobile { margin-top: 16px; }
.lang-switcher--mobile { width: 100%; }
.lang-switcher--mobile .lang-switcher__trigger { width: 100%; justify-content: center; }
.lang-switcher--mobile .lang-switcher__menu { left: 0; right: 0; }

.lux-menu-btn {
  display: flex; flex-direction: column; gap: 6px;
  width: 32px; padding: 4px;
}
.lux-menu-btn span {
  display: block; height: 1px; background: var(--white);
  transition: var(--transition);
}
.lux-header.scrolled .lux-menu-btn span { background: var(--black); }
body.dark-mode .lux-header.scrolled .lux-menu-btn span { background: var(--dark-text); }

.lux-mobile-nav {
  position: fixed; top: 0; right: -100%; width: min(360px, 90vw);
  height: 100vh; background: var(--black); z-index: 200;
  padding: 32px 28px; transition: right var(--transition-slow);
  overflow-y: auto;
}
.lux-mobile-nav.active { right: 0; }
.lux-mobile-nav__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 48px;
}
.lux-mobile-nav__close {
  color: var(--gold); font-size: 28px;
}
.lux-mobile-nav__list { display: flex; flex-direction: column; gap: 8px; }
.lux-mobile-nav__list a {
  display: block; padding: 16px 0;
  font-family: var(--ff-display); font-size: 1.5rem;
  color: var(--champagne); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lux-mobile-nav__list .btn { margin-top: 24px; text-align: center; }

.lux-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 150; opacity: 0; pointer-events: none;
  transition: opacity var(--transition);
}
.lux-overlay.active { opacity: 1; pointer-events: all; }

.hide-mobile { display: none; }

/* ---- THEME TOGGLE ---- */
.theme-toggle-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lux-header.scrolled .theme-toggle-btn {
  border-color: var(--border-gold); color: var(--gold);
}
.theme-toggle-track { position: relative; width: 20px; height: 20px; }
.theme-toggle-btn ion-icon {
  position: absolute; font-size: 18px;
  transition: opacity var(--transition), transform var(--transition);
}
.theme-toggle-btn .sun-icon { opacity: 0; transform: rotate(-90deg) scale(0.5); }
.theme-toggle-btn .moon-icon { opacity: 1; transform: none; }
html[data-theme="dark"] .theme-toggle-btn .sun-icon,
.theme-toggle-btn.dark-active .sun-icon { opacity: 1; transform: none; }
html[data-theme="dark"] .theme-toggle-btn .moon-icon,
.theme-toggle-btn.dark-active .moon-icon { opacity: 0; transform: rotate(90deg) scale(0.5); }

/* ---- HERO CINEMA ---- */
.hero-cinema {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: center;
  align-items: center; overflow: hidden;
}

.hero-cinema__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-cinema__video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-cinema__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 40%,
    rgba(10,10,10,0.85) 100%
  );
}

.hero-cinema__content {
  position: relative; z-index: 2;
  text-align: center; padding-top: 120px; padding-bottom: 40px;
  max-width: 900px;
}
.hero-cinema__content .eyebrow { color: var(--gold-pale); }

.hero-cinema__title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500; line-height: 1.08;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-cinema__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300; color: rgba(255,255,255,0.8);
  max-width: 600px; margin-inline: auto;
  margin-bottom: 40px; line-height: 1.6;
}

.hero-cinema__cta {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
}

.trust-bar {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 24px 40px;
  padding: 24px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto; width: var(--container);
}
.trust-bar__item {
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
}
.trust-bar__stars { color: var(--gold); margin-right: 4px; }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-indicator__line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---- STORY ---- */
.story__grid {
  display: grid; gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.story__figure { position: relative; overflow: hidden; }
.story__figure img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story__figure:hover img { transform: scale(1.03); }
.story__caption {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white); background: rgba(0,0,0,0.4);
  padding: 8px 16px; backdrop-filter: blur(8px);
}
.story__lead {
  font-family: var(--ff-display); font-size: 1.35rem;
  font-style: italic; color: var(--black); margin-bottom: 24px;
  line-height: 1.5;
}
body.dark-mode .story__lead { color: var(--dark-text); }

/* ---- COLLECTIONS ---- */
.collections__track {
  display: flex; gap: 24px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 max(4vw, calc((100vw - 1200px) / 2)) 16px;
  scrollbar-width: none;
}
.collections__track::-webkit-scrollbar { display: none; }

.collection-card {
  flex: 0 0 min(380px, 85vw); scroll-snap-align: start;
  position: relative; aspect-ratio: 3/4; overflow: hidden;
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.collection-card:hover img { transform: scale(1.06); }

.collection-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.2) 60%, transparent 100%);
}

.collection-card__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
}
.collection-card__tier {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
  border: 1px solid var(--border-gold); padding: 4px 12px;
}
.collection-card__body h3 {
  font-family: var(--ff-display); font-size: 1.5rem;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.collection-card__body > p {
  font-size: 14px; color: rgba(255,255,255,0.7);
  margin-bottom: 16px; line-height: 1.6;
}
.collection-card__includes {
  margin-bottom: 20px;
}
.collection-card__includes li {
  font-size: 12px; color: rgba(255,255,255,0.55);
  padding: 4px 0; padding-left: 16px; position: relative;
}
.collection-card__includes li::before {
  content: "—"; position: absolute; left: 0; color: var(--gold);
}

/* ---- WHY ---- */
.why__grid {
  display: grid; gap: 1px;
  background: var(--border-gold);
  border: 1px solid var(--border-gold);
}
.why-card {
  background: var(--white); padding: clamp(28px, 4vw, 40px);
  transition: var(--transition);
}
.why-card:hover { background: var(--champagne); }
body.dark-mode .why-card { background: var(--dark-surface); }
body.dark-mode .why-card:hover { background: var(--dark-surface-2); }

.why-card__num {
  font-family: var(--ff-display); font-size: 2rem;
  color: var(--gold); opacity: 0.5; display: block; margin-bottom: 16px;
}
.why-card h3 {
  font-family: var(--ff-display); font-size: 1.25rem;
  margin-bottom: 12px; font-weight: 500;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
body.dark-mode .why-card p { color: var(--dark-muted); }

/* ---- PLANNER ---- */
.planner__grid {
  display: grid; gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.planner__phone {
  display: block; font-family: var(--ff-display);
  font-size: 1.75rem; color: var(--black); margin: 24px 0 8px;
  font-weight: 600;
}
.planner__email {
  font-size: 14px !important;
  color: var(--gold-deep) !important;
  letter-spacing: 0.06em;
  text-transform: none;
}
body.dark-mode .planner__phone { color: var(--dark-text); }
body.dark-mode .planner__email { color: var(--gold-light) !important; }

.planner__form-wrap {
  background: var(--white); padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-soft); border: 1px solid var(--border-gold);
}
body.dark-mode .planner__form-wrap {
  background: var(--dark-surface); border-color: rgba(201,162,39,0.15);
}

.planner-form__progress {
  margin-bottom: 32px; position: relative;
}
.planner-form__progress-bar {
  height: 2px; background: var(--gold);
  width: 16.66%; transition: width var(--transition-slow);
}
.planner-form__step-label {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
  margin-top: 8px; display: block;
}

.planner-form__step { display: none; animation: fadeUp 0.5s var(--ease-out); }
.planner-form__step.active { display: block; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

.planner-form__step h3 {
  font-family: var(--ff-display); font-size: 1.5rem;
  margin-bottom: 8px; font-weight: 500;
}
.planner-form__hint {
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px;
}

.planner-options { display: flex; flex-direction: column; gap: 10px; }
.planner-options--grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.planner-option {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px; border: 1px solid rgba(0,0,0,0.1);
  cursor: pointer; transition: var(--transition);
  font-size: 14px;
}
.planner-option:hover { border-color: var(--gold); }
.planner-option input { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
.planner-option:has(input:checked) {
  border-color: var(--gold-deep); background: rgba(184,134,11,0.12);
  box-shadow: inset 0 0 0 2px var(--gold-deep);
}
.planner-form__step h3 {
  color: var(--ink);
  font-weight: 600;
}
body.dark-mode .planner-option { border-color: rgba(255,255,255,0.1); }

.planner-fields { display: flex; flex-direction: column; gap: 20px; }
.planner-field span {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--text-muted);
}
.planner-input {
  width: 100%; padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--champagne); transition: var(--transition);
}
.planner-input:focus { outline: none; border-color: var(--gold); }
.planner-textarea { resize: vertical; min-height: 100px; }
body.dark-mode .planner-input {
  background: var(--dark-surface-2); border-color: rgba(255,255,255,0.1);
  color: var(--dark-text);
}

.planner-form__nav {
  display: flex; gap: 12px; margin-top: 32px;
  justify-content: flex-end;
}

.planner-success {
  text-align: center; padding: 48px 24px;
}
.planner-success ion-icon { font-size: 48px; color: var(--gold); margin-bottom: 16px; }
.planner-success h3 {
  font-family: var(--ff-display); font-size: 1.75rem; margin-bottom: 12px;
}

/* ---- DESTINATIONS ---- */
.destinations__explorer {
  display: grid; gap: 40px;
}

.peru-map { width: 100%; max-width: 280px; margin-inline: auto; color: var(--gold); }
.map-dot {
  fill: rgba(201,162,39,0.4); cursor: pointer;
  transition: fill var(--transition), r var(--transition);
}
.map-dot.active, .map-dot:hover { fill: var(--gold); }

.destinations__list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 24px;
}
.dest-btn {
  padding: 8px 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.dest-btn.active, .dest-btn:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,162,39,0.1);
}

.destinations__detail {
  display: grid; gap: 24px; overflow: hidden;
}
.dest-detail__img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  transition: opacity var(--transition);
}
.dest-detail__content h3 {
  font-family: var(--ff-display); font-size: 1.75rem;
  color: var(--champagne); margin-bottom: 12px;
}
.dest-detail__content p {
  font-size: 15px; color: rgba(255,255,255,0.65);
  margin-bottom: 20px; line-height: 1.7;
}

/* ---- STORIES ---- */
.stories__grid { display: grid; gap: clamp(32px, 5vw, 64px); }

.story-card {
  display: grid; gap: 32px; align-items: center;
}
.story-card__media { position: relative; overflow: hidden; }
.story-card__media img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}
.story-card__play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,0.2); transition: var(--transition);
}
.story-card__play ion-icon {
  font-size: 48px; color: var(--white);
  width: 72px; height: 72px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: grid; place-items: center; padding-left: 4px;
}
.story-card:hover .story-card__play { background: rgba(0,0,0,0.35); }

.story-card__meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.story-card__flag, .story-card__trip {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.story-card__trip { color: var(--gold); }

.story-card blockquote {
  font-family: var(--ff-display); font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-style: italic; line-height: 1.45; margin-bottom: 16px;
  color: var(--black);
}
body.dark-mode .story-card blockquote { color: var(--dark-text); }
.story-card cite {
  font-size: 13px; color: var(--text-muted); font-style: normal;
}

/* ---- JOURNAL ---- */
.journal__grid { display: grid; gap: 24px; }

.journal-card {
  position: relative; overflow: hidden;
  background: var(--white); transition: var(--transition);
}
.journal-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
body.dark-mode .journal-card { background: var(--dark-surface-2); }

.journal-card img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
}
.journal-card__body { padding: 24px; }
.journal-card__cat {
  font-size: 10px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
  display: block;
}
.journal-card h3 {
  font-family: var(--ff-display); font-size: 1.25rem;
  margin-bottom: 8px; line-height: 1.3; font-weight: 500;
}
.journal-card p { font-size: 13px; color: var(--text-muted); }

.journal-card--featured .journal-card__body { padding: 32px; }
.journal-card--featured h3 { font-size: 1.5rem; }

/* ---- FINAL CTA ---- */
.final-cta__inner { text-align: center; }
.final-cta__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 40px;
}

/* ---- FOOTER ---- */
.lux-footer {
  background: var(--black); color: rgba(255,255,255,0.6);
  padding-top: clamp(60px, 8vw, 100px);
  border-top: 1px solid var(--border-gold);
}
.lux-footer__grid {
  display: grid; gap: 40px;
  padding-bottom: 60px;
}
.lux-footer__brand p {
  margin-top: 20px; font-size: 14px; line-height: 1.7; max-width: 320px;
}
.lux-footer__col h4 {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.lux-footer__col li { margin-bottom: 10px; }
.lux-footer__col a, .lux-footer__col address {
  font-size: 14px; transition: color var(--transition);
}
.lux-footer__col a:hover { color: var(--gold-pale); }

.lux-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: 13px;
}
.lux-footer__credit { color: rgba(255,255,255,0.35); }

/* ---- FOOTER CONTACT BAR ---- */
.footer-contact-bar {
  background: #0c1526;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}
.footer-contact-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr 1.6fr;
  gap: 32px;
  align-items: start;
}
.fcb__title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.fcb__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.fcb__icon {
  width: 44px; height: 44px;
  background: var(--gold-metallic);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 22px;
  color: #0a1020;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(196,155,80,0.15);
}
.fcb__item--emails { flex-direction: column; gap: 0; }
.fcb__item--emails .fcb__icon { margin-bottom: 4px; }
.fcb__item--emails .fcb__email-list { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.fcb__item--emails .fcb__email-list a {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  transition: color var(--transition);
}
.fcb__item--emails .fcb__email-list a:hover { color: var(--gold-pale); }
.fcb__phone-link {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 10px;
  transition: color var(--transition);
}
.fcb__phone-link:hover { color: var(--gold-pale); }
.fcb__socials {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.fcb__social-icon {
  width: 44px; height: 44px;
  background: var(--gold-metallic);
  border-radius: 50%;
  display: grid; place-items: center;
  color: #0a1020;
  font-size: 22px;
  transition: transform 0.25s var(--ease-out), background 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 0 3px rgba(196,155,80,0.15);
}
.fcb__social-icon:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(196,155,80,0.35);
}
.fcb__payments {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.fcb__pay-badge {
  background: #fff;
  border-radius: 7px;
  padding: 6px 10px;
  display: flex; align-items: center; justify-content: center;
  min-height: 36px;
  min-width: 60px;
  line-height: 1;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.fcb__pay-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.fcb__pay-badge img {
  display: block;
  width: auto;
  height: 22px;
  object-fit: contain;
}
/* badges de texto (Perú local) */
.fcb__pay-badge--text {
  font-size: 10px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.1;
  text-align: center;
}
.fcb__pay-badge--pago { color: #1569C7; }
.fcb__pay-badge--yape { background: #6a0dad; color: #fff; }
.fcb__pay-badge--izipay { background: #FF6600; color: #fff; font-size: 10px; font-weight: 800; }

@media (max-width: 1024px) {
  .footer-contact-bar__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 600px) {
  .footer-contact-bar__inner { grid-template-columns: 1fr; gap: 24px; }
}

/* ---- FLOATING ELEMENTS ---- */
.go-top {
  position: fixed; bottom: 92px; right: 24px; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-metallic); color: var(--black);
  display: grid; place-items: center; font-size: 18px;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: var(--transition); box-shadow: var(--shadow-gold);
}
.go-top.active { opacity: 1; visibility: visible; transform: none; }

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 91;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: grid; place-items: center; font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float.is-open {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 3px rgba(201,162,39,0.35);
}
.whatsapp-float--tap { animation: wspBtnTap 0.45s ease; }
@keyframes wspBtnTap {
  0% { transform: scale(1); }
  35% { transform: scale(0.88); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.wsp-widget {
  position: fixed; bottom: 92px; right: 24px; z-index: 90;
  width: min(320px, calc(100vw - 48px));
  pointer-events: none; opacity: 0; visibility: hidden;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.35s;
}
.wsp-widget.is-open {
  pointer-events: auto; opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.wsp-widget__panel {
  background: #f0f2f5; border-radius: 14px;
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.22);
}
.wsp-widget__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 16px; background: #25D366; color: #fff;
}
.wsp-widget__brand {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.wsp-widget__close {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.2); color: #fff;
  display: grid; place-items: center; font-size: 18px;
  transition: background 0.25s, transform 0.25s;
}
.wsp-widget__close:hover { background: rgba(255,255,255,0.35); transform: scale(1.05); }
.wsp-widget__body { padding: 18px 16px 16px; display: flex; flex-direction: column; align-items: flex-end; }
.wsp-widget__bubble {
  width: 100%;
  background: #fff; border-radius: 12px 12px 12px 4px;
  padding: 14px 16px; margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  animation: wspBubbleIn 0.5s var(--ease-out) 0.15s both;
}
.wsp-widget__bubble p {
  margin: 0; font-size: 14px; line-height: 1.5; color: #3b4a54;
}
.wsp-widget__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-left: auto; padding: 10px 18px; border-radius: 999px;
  background: #25D366; color: #fff; font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wsp-widget__cta ion-icon { font-size: 16px; }
.wsp-widget__cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(37,211,102,0.45); }
.wsp-widget__cta--launch { animation: wspCtaLaunch 0.55s ease forwards; }
@keyframes wspBubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes wspCtaLaunch {
  0% { transform: scale(1); }
  40% { transform: scale(0.94); }
  100% { transform: scale(1.04); opacity: 0.85; }
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (min-width: 768px) {
  .lux-nav__list { display: flex; }
  .lux-menu-btn { display: none; }
  .hide-mobile { display: inline-flex; }

  .story__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .planner__grid { grid-template-columns: 1fr 1.2fr; }
  .destinations__explorer { grid-template-columns: 280px 1fr; align-items: start; }
  .destinations__detail { grid-template-columns: 1fr 1fr; align-items: center; }
  .story-card { grid-template-columns: 1.1fr 1fr; }
  .journal__grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .journal-card--featured { grid-row: span 2; }
  .journal-card--featured img { aspect-ratio: auto; height: 100%; min-height: 280px; }
  .lux-footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 992px) {
  .why__grid { grid-template-columns: repeat(4, 1fr); }
}

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