/* =============================================================
   CLAUDIA VACCARO · Travel Designer — styles.css
   Archetype: Editorial Light Cream · palette adapted from brand
   (deep navy + antique gold + ivory)
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6f0e4;   /* warm ivory (logo ground) */
  --bg-2:      #efe6d4;   /* sand */
  --paper:     #fffdf8;
  --navy:      #16233f;   /* deep navy — brand ink */
  --navy-soft: #26375c;
  --navy-deep: #0f1a30;
  --ink:       #1c2233;
  --ink-soft:  #3a4256;
  --ink-mute:  #74788a;
  --gold:      #b8933f;   /* antique gold */
  --gold-brt:  #cba24a;
  --gold-deep: #8f6f2c;
  --cream:     #f6f0e4;
  --line:      rgba(22,35,63,0.14);
  --line-soft: rgba(22,35,63,0.08);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  --script: "Parisienne", "Segoe Script", cursive;

  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);

  --gutter: clamp(1.25rem, 5vw, 4.5rem);
  --maxw: 1240px;
  --nav-h: 84px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
[hidden] { display: none !important; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.04; font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--paper); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--navy); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 10vw, 9rem); }

.kicker {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.2rem;
}
.kicker-light { color: var(--gold-brt); }

.section-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.section-head { max-width: 44ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.section-title em { font-style: italic; color: var(--gold-deep); }
.section-intro {
  margin-top: 1.4rem;
  font-size: 1.06rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

.lead-serif {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.lead-serif em { font-style: italic; color: var(--gold-deep); }
.lead-p { margin-top: 1.5rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 52ch; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem 1.9rem;
  font-size: .82rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  border-radius: 2px;
  transition: transform .5s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .5s var(--ease-out);
  will-change: transform;
}
.btn-primary {
  background: var(--navy); color: var(--cream);
  box-shadow: 0 12px 30px -14px rgba(22,35,63,.6);
}
.btn-primary:hover { background: var(--gold-deep); color: var(--paper); transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(143,111,44,.55); }
.btn-ghost-light {
  color: var(--cream); border: 1px solid rgba(246,240,228,.5);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(246,240,228,.12); border-color: var(--cream); transform: translateY(-3px); }
.btn-nav {
  padding: .7rem 1.4rem; background: var(--navy); color: var(--cream);
  font-size: .72rem;
}
.btn-nav:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-block { width: 100%; }

/* =============================================================
   5. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  background: #f3e9d6;
  animation: splashSafety .01s 4.2s forwards;
}
.splash.is-out { animation: splashOut 1s var(--ease-out) forwards; }
@keyframes splashSafety { to { opacity: 0; visibility: hidden; pointer-events: none; } }
@keyframes splashOut { to { opacity: 0; visibility: hidden; transform: scale(1.04); pointer-events: none; } }
.splash-mark { text-align: center; }
.splash-logo {
  width: clamp(190px, 42vw, 280px); height: auto; margin-inline: auto;
  opacity: 0; transform: translateY(12px) scale(.98);
  animation: splashIn 1s .1s var(--ease-out) forwards;
}
.splash-line {
  display: block; height: 1px; width: 0; margin: .4rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: splashLine 1.1s .5s var(--ease-out) forwards;
}
@keyframes splashIn { to { opacity: 1; transform: none; } }
@keyframes splashLine { to { width: min(240px, 60vw); } }

/* =============================================================
   6. Cursor
   ============================================================= */
.cursor { position: fixed; inset: 0; z-index: 8000; pointer-events: none; opacity: 0; transition: opacity .3s var(--ease-out); }
.cursor.is-ready { opacity: 1; }
.cursor-dot, .cursor-ring { position: absolute; top: 0; left: 0; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; background: var(--gold-deep); margin: -3px 0 0 -3px; }
.cursor-ring { width: 38px; height: 38px; margin: -19px 0 0 -19px; border: 1px solid rgba(22,35,63,.35); transition: width .3s var(--ease-out), height .3s var(--ease-out), margin .3s var(--ease-out), border-color .3s var(--ease-out); }
.cursor.is-hover .cursor-ring { width: 62px; height: 62px; margin: -31px 0 0 -31px; border-color: var(--gold); }

/* =============================================================
   7. Nav
   ============================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background-color .5s var(--ease-out), box-shadow .5s var(--ease-out), height .4s var(--ease-out);
}
.nav-inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-brand { display: flex; flex-direction: column; justify-content: center; margin-right: auto; line-height: 1; }
.wordmark {
  font-family: var(--serif); font-weight: 500; font-size: 1.6rem;
  letter-spacing: .015em; color: var(--cream);
  transition: color .4s var(--ease-out);
}
.wordmark-sub {
  font-size: .6rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-brt); margin-top: .28rem;
  transition: color .4s var(--ease-out);
}
.nav.is-solid .wordmark { color: var(--navy); }
.nav.is-solid .wordmark-sub { color: var(--gold-deep); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .06em;
  color: var(--cream); position: relative; padding-block: .3rem;
  transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold-brt); transition: width .35s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

/* scrolled state */
.nav.is-solid {
  background: rgba(246,240,228,.9);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft), 0 10px 30px -22px rgba(22,35,63,.5);
  height: 72px;
}
.nav.is-solid .nav-links a { color: var(--ink-soft); }
.nav.is-solid .nav-links a:hover { color: var(--navy); }

/* Selector de idioma (desplegable) */
.lang-switch { position: relative; }
.lang-current {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .42rem .7rem; border-radius: 999px;
  border: 1px solid rgba(246,240,228,.34);
  color: var(--cream); font-size: .72rem; font-weight: 600; letter-spacing: .07em;
  transition: color .35s var(--ease-out), border-color .35s var(--ease-out), background-color .35s var(--ease-out);
}
.lang-current:hover { border-color: var(--gold-brt); }
.lang-globe { width: 15px; height: 15px; color: var(--gold-brt); }
.lang-caret { width: 11px; height: 11px; opacity: .8; transition: transform .3s var(--ease-out); }
.lang-switch.is-open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + .55rem); right: 0; min-width: 148px;
  list-style: none; margin: 0; padding: .4rem;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 10px;
  box-shadow: 0 24px 50px -22px rgba(15,26,48,.5);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
  z-index: 40;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button {
  display: flex; align-items: center; width: 100%; gap: .5rem;
  padding: .55rem .75rem; border-radius: 6px; text-align: left;
  font-size: .88rem; color: var(--ink-soft);
  transition: background-color .2s var(--ease-out), color .2s var(--ease-out);
}
.lang-menu button:hover { background: var(--bg); color: var(--navy); }
.lang-menu button.is-active { color: var(--gold-deep); font-weight: 600; }
.lang-menu button.is-active::before { content: "•"; color: var(--gold); }
.nav.is-solid .lang-current { color: var(--navy); border-color: var(--line); }
.nav.is-solid .lang-current .lang-globe { color: var(--gold-deep); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: transform .3s var(--ease-out), opacity .3s; }
.nav.is-solid .nav-toggle span { background: var(--navy); }

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 8rem;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-img {
  width: 100%; height: 118%; object-fit: cover; object-position: center 40%;
  transform: translateY(0) scale(1.06);
  will-change: transform;
  animation: heroZoom 18s var(--ease-soft) forwards;
}
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,26,48,.55) 0%, rgba(15,26,48,.15) 32%, rgba(15,26,48,.35) 68%, rgba(15,26,48,.82) 100%),
    linear-gradient(90deg, rgba(15,26,48,.5) 0%, transparent 55%);
}
.hero-inner { position: relative; max-width: 60rem; }
.hero-title {
  font-family: var(--serif); font-weight: 400; color: var(--cream);
  font-size: clamp(2.9rem, 9vw, 6.6rem);
  line-height: .98; letter-spacing: -0.015em;
  margin-bottom: 1.6rem;
  text-shadow: 0 12px 50px rgba(15,26,48,.5);
}
.hero-title em { font-style: italic; color: var(--gold-brt); }
.hero-sub {
  color: rgba(246,240,228,.9); font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 46ch; line-height: 1.6;
  text-shadow: 0 4px 20px rgba(15,26,48,.5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }
.hero-scroll {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  color: rgba(246,240,228,.8); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
}
.hero-scroll-line { width: 1px; height: 46px; background: linear-gradient(180deg, var(--gold-brt), transparent); animation: scrollPulse 2.4s var(--ease-soft) infinite; transform-origin: top; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.4); opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }

/* =============================================================
   9. Marquee
   ============================================================= */
.marquee {
  background: var(--navy); color: var(--cream);
  overflow: hidden; padding-block: 1.15rem;
  border-block: 1px solid rgba(246,240,228,.08);
}
.marquee-track {
  display: flex; gap: 1.6rem; width: max-content;
  animation: marquee 42s linear infinite;
  font-family: var(--serif); font-size: 1.35rem; font-style: italic;
  letter-spacing: .02em;
}
.marquee-track span { color: rgba(246,240,228,.85); }
.marquee-track span:nth-child(even) { color: var(--gold-brt); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   10. Filosofía
   ============================================================= */
.philosophy { background: var(--bg); }
.philosophy-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
.philosophy-aside { display: flex; align-items: baseline; gap: 1.2rem; }
.philosophy-aside .kicker { margin: 0; }
.philosophy-body { max-width: 40ch; }

/* =============================================================
   11. Stats
   ============================================================= */
.stats-section { padding-block: clamp(3rem, 6vw, 5rem); background: var(--paper); border-block: 1px solid var(--line-soft); }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
.stat { text-align: left; }
.stat-num {
  display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--navy); line-height: 1;
  letter-spacing: -0.01em;
}
.stat-num em { font-style: normal; color: var(--gold); }
.stat-label { display: block; margin-top: .7rem; font-size: .82rem; color: var(--ink-mute); letter-spacing: .02em; line-height: 1.4; }

/* =============================================================
   12. Cards / Servicios
   ============================================================= */
.services { background: var(--bg); }
.cards { display: grid; gap: 1.5rem; }
.services-grid { grid-template-columns: 1fr; }
.card {
  background: var(--paper); border: 1px solid var(--line-soft);
  padding: 2.2rem 2rem; border-radius: 3px;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-brt));
  transition: width .5s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -30px rgba(22,35,63,.4); border-color: var(--line); }
.service-card:hover::before { width: 100%; }
.card-icon { display: inline-flex; color: var(--gold-deep); margin-bottom: 1.3rem; }
.card-icon svg { width: 40px; height: 40px; }
.card h3 { font-family: var(--serif); font-size: 1.55rem; font-weight: 500; color: var(--navy); margin-bottom: .5rem; }
.card p { font-size: .96rem; color: var(--ink-soft); }

/* =============================================================
   13. Quote band (fondo fijo — efecto parallax)
   ============================================================= */
.band {
  position: relative; overflow: hidden;
  min-height: clamp(26rem, 52vh, 34rem);
  display: grid; place-items: center;
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--gutter);
  isolation: isolate;
  /* Fondo fijo: la imagen queda pegada al viewport mientras se hace scroll */
  background-image: url("assets/img/band.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(15,26,48,.58) 0%, rgba(15,26,48,.5) 45%, rgba(15,26,48,.74) 100%);
}
.band-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(1.8rem, 4.5vw, 2.6rem);
  align-items: center; justify-items: center;
}

.band-photo {
  margin: 0; width: clamp(146px, 39vw, 204px); aspect-ratio: 3/4;
  overflow: hidden; border-radius: 3px;
  border: 8px solid #f4ecda;              /* marco crema grueso, tipo polaroid */
  box-shadow: 0 36px 64px -28px rgba(0,0,0,.75);
}
.band-photo img { width: 100%; height: 100%; object-fit: cover; }
/* Aparición al hacer scroll + inclinación de reposo (todas las pantallas) */
.band-photo-left.reveal { opacity: 0; transform: translateY(28px) rotate(-5deg); }
.band-photo-left.reveal.is-visible { opacity: 1; transform: rotate(-5deg); }
.band-photo-right.reveal { opacity: 0; transform: translateY(34px) rotate(5deg); }
.band-photo-right.reveal.is-visible { opacity: 1; transform: rotate(5deg); }
.band-quote { position: relative; z-index: 1; max-width: 24ch; text-align: center; }
.band-mark {
  display: block; font-family: var(--serif); font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: .5; color: rgba(203,162,74,.55); margin-bottom: .4rem;
}
.band-quote p {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 3.3rem); line-height: 1.16; color: var(--cream);
  text-shadow: 0 6px 30px rgba(15,26,48,.6);
}
.band-quote em { font-style: italic; color: var(--gold-brt); }
.band-divider { display: inline-block; width: 64px; height: 1px; background: var(--gold); margin: 1.7rem 0 1.1rem; }
.band-author { display: block; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: rgba(246,240,228,.8); }

@media (min-width: 900px) {
  .band-inner { grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(2rem, 5vw, 4rem); }
  .band-photo-left { justify-self: end; }
  .band-photo-right { justify-self: start; }
  /* En escritorio entran también desde su lado, conservando la inclinación */
  .band-photo-left.reveal { transform: translate3d(-46px, 26px, 0) rotate(-5deg); }
  .band-photo-right.reveal { transform: translate3d(46px, 34px, 0) rotate(5deg); }
}

/* En móviles background-attachment: fixed es problemático (iOS lo ignora / genera
   saltos). Volvemos a scroll: la imagen sigue de fondo, sin el efecto fijo. */
@media (max-width: 820px) {
  .band { background-attachment: scroll; }
}

/* =============================================================
   14. Destinos
   ============================================================= */
.destinations { background: var(--bg); }
.dest-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
.dest-card {
  position: relative; display: block; overflow: hidden; border-radius: 3px;
  aspect-ratio: 3/2; background: var(--navy);
}
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease-out), filter .6s var(--ease-out);
  filter: saturate(1.02); will-change: transform;
}
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,26,48,.78) 100%);
  transition: opacity .5s var(--ease-out);
}
.dest-card::before {
  content: ""; position: absolute; inset: .6rem; z-index: 3; pointer-events: none;
  border: 1px solid transparent; border-radius: 2px;
  transition: border-color .5s var(--ease-out);
}
.dest-card:hover img { transform: scale(1.07); filter: saturate(1.12); }
.dest-card:hover::before { border-color: rgba(203,162,74,.7); }
.dest-info { position: absolute; left: 1.5rem; bottom: 1.3rem; z-index: 4; color: var(--cream); }
.dest-name { display: block; font-family: var(--serif); font-size: 1.7rem; font-weight: 500; line-height: 1.1; }
.dest-note { display: block; font-size: .78rem; letter-spacing: .05em; color: rgba(246,240,228,.8); margin-top: .15rem; }
.dest-plus {
  position: absolute; top: 1rem; right: 1.1rem; z-index: 4;
  width: 36px; height: 36px; display: grid; place-items: center;
  border: 1px solid rgba(246,240,228,.55); border-radius: 50%;
  background: rgba(15,26,48,.28); color: var(--cream);
  font-family: var(--serif); font-size: 1.5rem; line-height: 0; padding-bottom: 3px;
  transition: background-color .4s var(--ease-out), color .4s var(--ease-out), transform .5s var(--ease-out), border-color .4s;
}
.dest-card:hover .dest-plus { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: rotate(90deg); }

/* =============================================================
   15. Experiencias
   ============================================================= */
.experiences { background: var(--paper); }
.exp-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.exp-card {
  border: 1px solid var(--line-soft); border-radius: 3px; padding: 2rem 1.8rem;
  background: var(--bg); transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), background-color .5s var(--ease-out);
}
.exp-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -30px rgba(22,35,63,.45); }
.exp-icon { display: inline-flex; color: var(--gold-deep); margin-bottom: 1.1rem; }
.exp-icon svg { width: 36px; height: 36px; }
.exp-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; color: var(--navy); margin-bottom: .4rem; }
.exp-card p { font-size: .92rem; color: var(--ink-soft); }
.exp-cta { background: var(--navy); }
.exp-cta h3, .exp-cta p { color: var(--cream); }
.exp-cta p { color: rgba(246,240,228,.8); }
.exp-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem; color: var(--gold-brt); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; transition: gap .3s var(--ease-out); }
.exp-cta:hover .exp-link { gap: .9rem; }

/* =============================================================
   16. Sobre mí (collage editorial)
   ============================================================= */
.about { background: var(--bg); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3.5rem; align-items: center; }

/* --- Collage de imágenes --- */
.about-media { position: relative; min-height: clamp(25rem, 82vw, 34rem); }
.about-arch {
  position: relative; z-index: 3;
  width: 72%; margin-left: 9%;
  aspect-ratio: 4/5; overflow: hidden;
  border-top-left-radius: 50% 42%; border-top-right-radius: 50% 42%;
  border-bottom-left-radius: 8px; border-bottom-right-radius: 8px;
  box-shadow: 0 45px 80px -45px rgba(22,35,63,.55);
}
.about-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 62%; }
.deco-arch-frame {
  position: absolute; z-index: 1; left: calc(9% - 16px); top: -16px;
  width: 72%; aspect-ratio: 4/5;
  border: 1.5px solid var(--gold); opacity: .75;
  border-top-left-radius: 50% 42%; border-top-right-radius: 50% 42%;
  border-bottom-left-radius: 8px; border-bottom-right-radius: 8px;
}
.about-polaroid {
  position: absolute; z-index: 4; right: 0; bottom: 7%; width: 46%;
  padding: 10px 10px 12px; background: #fff; border-radius: 3px;
  box-shadow: 0 30px 55px -28px rgba(22,35,63,.5);
  transform: rotate(4.5deg);
}
.about-polaroid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.deco-dots {
  position: absolute; z-index: 1; top: 1%; left: 0; width: 84px; height: 84px;
  background-image: radial-gradient(var(--gold) 1.3px, transparent 1.6px);
  background-size: 17px 17px; opacity: .5;
}
.deco-ring { position: absolute; z-index: 1; left: 0; top: 47%; width: 32px; height: 32px; border: 1px solid var(--gold); border-radius: 50%; opacity: .6; }
.deco-blob { position: absolute; z-index: 0; left: 4%; top: 27%; width: 56%; aspect-ratio: 1; border-radius: 50%; background: var(--bg-2); }
.deco-stamp {
  position: absolute; z-index: 6; left: auto; right: 3%; bottom: -6%;
  width: clamp(78px, 12vw, 102px); color: var(--gold-deep);
  filter: drop-shadow(0 6px 14px rgba(22,35,63,.28));
  animation: stampBob 6s ease-in-out infinite;
}
.deco-stamp svg { width: 100%; height: auto; display: block; }
.stamp-ring { transform-box: fill-box; transform-origin: center; animation: stampSpin 24s linear infinite; }
.stamp-plane { transform-box: fill-box; transform-origin: center; animation: stampPlane 6s ease-in-out infinite; }
@keyframes stampSpin { to { transform: rotate(360deg); } }
@keyframes stampBob { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-6px) rotate(4deg); } }
@keyframes stampPlane { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.about-tagline { position: absolute; z-index: 4; left: 0; bottom: -3%; line-height: 1.05; }
.about-tagline .tl-1 { display: block; font-family: var(--script); font-size: clamp(1.4rem, 3.4vw, 1.95rem); color: var(--gold-deep); }
.about-tagline .tl-2 { display: block; font-family: var(--serif); font-style: italic; font-weight: 500; font-size: clamp(1.5rem, 3.9vw, 2.15rem); color: var(--navy); margin-top: .1rem; }

/* --- Columna de texto --- */
.about-body .kicker { margin-bottom: 1rem; }
.kicker-dotted { display: inline-flex; align-items: center; gap: .8em; }
.kicker-dotted::before, .kicker-dotted::after { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex: none; }
.about-divider { display: block; position: relative; width: min(260px, 72%); height: 10px; margin: 1.5rem 0 1.9rem; }
.about-divider::before { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent); }
.about-divider::after { content: ""; position: absolute; top: 50%; left: 50%; width: 7px; height: 7px; background: var(--gold); transform: translate(-50%, -50%) rotate(45deg); }
.about-text { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.02rem; }
.about-text:first-of-type { margin-top: 0; }
.about-text strong { color: var(--navy); font-weight: 600; }
.about-features { margin-top: 2.4rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.about-features li {
  position: relative; display: grid; justify-items: center; gap: .8rem; text-align: center;
  padding: 0 clamp(.4rem, 2vw, 1.2rem); font-size: .8rem; line-height: 1.35; color: var(--ink-soft);
}
.about-features li + li::before { content: ""; position: absolute; left: 0; top: 8%; bottom: 8%; width: 1px; background: var(--line); }
.feat-icon { color: var(--gold-deep); }
.feat-icon svg { width: 34px; height: 34px; }
.about-signature { margin-top: 2.4rem; }
.sign-name { font-family: var(--script); font-size: clamp(2.2rem, 5vw, 2.9rem); color: var(--navy); line-height: 1; }
.sign-heart { color: var(--gold); font-family: var(--sans); font-size: .5em; vertical-align: 2px; }
.sign-role { display: block; font-size: .68rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-deep); margin-top: .55rem; }

/* =============================================================
   17. Inversión
   ============================================================= */
.invest { background: var(--paper); }
.invest-card {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center;
  background: var(--navy); color: var(--cream);
  padding: clamp(2.2rem, 5vw, 4rem); border-radius: 4px;
  position: relative; overflow: hidden;
}
.invest-card::after {
  content: ""; position: absolute; right: -10%; top: -40%; width: 55%; height: 180%;
  background: radial-gradient(circle, rgba(203,162,74,.16), transparent 65%);
  pointer-events: none;
}
.invest-copy .kicker { color: var(--gold-brt); }
.invest-copy .lead-serif { color: var(--cream); }
.invest-copy .lead-serif em { color: var(--gold-brt); }
.invest-copy .lead-p { color: rgba(246,240,228,.82); }
.invest-copy .lead-p strong { color: var(--gold-brt); font-weight: 600; }
.invest-figure { position: relative; text-align: left; border-top: 1px solid rgba(246,240,228,.18); padding-top: 1.6rem; }
.invest-from { display: block; font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(246,240,228,.6); }
.invest-headline { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 3.4rem); color: var(--gold-brt); line-height: 1; margin-block: .4rem 1.4rem; }

/* =============================================================
   18. Contacto
   ============================================================= */
.contact { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.contact-title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 5vw, 3.4rem); color: var(--navy); line-height: 1.02; }
.contact-title em { font-style: italic; color: var(--gold-deep); }
.contact-lead { margin-top: 1.3rem; color: var(--ink-soft); max-width: 42ch; }
.contact-details { margin-top: 2.2rem; display: grid; gap: 1.4rem; }
.contact-details li { display: grid; gap: .2rem; }
.contact-label { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-mute); }
.contact-details a, .contact-details span:not(.contact-label) { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); transition: color .3s var(--ease-out); }
.contact-details a:hover { color: var(--gold-deep); }

.contact-form { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px; padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: 0 30px 60px -45px rgba(22,35,63,.5); }
.field { margin-bottom: 1.3rem; display: grid; gap: .45rem; }
.field label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line); border-radius: 2px;
  transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background-color .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(184,147,63,.14);
}
.field textarea { resize: vertical; }
.form-note { margin-top: 1rem; font-size: .82rem; color: var(--ink-mute); text-align: center; }
.form-note.is-error { color: #a3402c; }
.form-note.is-ok { color: var(--gold-deep); }

/* =============================================================
   19. Footer
   ============================================================= */
.footer { background: var(--navy); color: var(--cream); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(246,240,228,.12); }
.footer-logo { height: 74px; width: auto; background: var(--cream); padding: .5rem .7rem; border-radius: 3px; }
.footer-tag { margin-top: 1rem; color: rgba(246,240,228,.7); max-width: 34ch; font-size: .95rem; }
.footer-collab { margin-top: 1.1rem; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,240,228,.5); }
.footer-collab strong { color: var(--gold-brt); font-weight: 600; letter-spacing: .1em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; align-content: start; }
.footer-nav a { font-size: .86rem; color: rgba(246,240,228,.8); transition: color .3s var(--ease-out); }
.footer-nav a:hover { color: var(--gold-brt); }
.footer-contact { display: grid; gap: .5rem; align-content: start; }
.footer-contact a, .footer-contact span { font-size: .9rem; color: rgba(246,240,228,.8); transition: color .3s var(--ease-out); }
.footer-contact a:hover { color: var(--gold-brt); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .6rem; padding-top: 1.8rem; font-size: .78rem; color: rgba(246,240,228,.5); }

/* =============================================================
   19b. Itinerarios 2027
   ============================================================= */
.itineraries { background: var(--bg); }
.itin-list { display: grid; gap: 2rem; }
.itin-card {
  display: grid; grid-template-columns: 1fr;
  background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 30px 60px -50px rgba(22,35,63,.55);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.itin-card:hover { transform: translateY(-5px); box-shadow: 0 40px 70px -45px rgba(22,35,63,.5); }
.itin-media { position: relative; min-height: 240px; overflow: hidden; }
.itin-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-out); }
.itin-card:hover .itin-media img { transform: scale(1.05); }
.itin-tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--navy); color: var(--cream);
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .45rem .9rem; border-radius: 2px;
}
.itin-body { padding: clamp(1.8rem, 4vw, 3rem); }
.itin-num { font-family: var(--serif); color: var(--gold); font-size: 1rem; letter-spacing: .1em; }
.itin-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--navy); margin-top: .15rem; line-height: 1.05; }
.itin-route { color: var(--gold-deep); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-top: .5rem; }
.itin-desc { margin-top: 1.1rem; color: var(--ink-soft); }
.itin-highlights { margin-top: 1.4rem; display: grid; gap: .6rem; }
.itin-highlights li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--ink-soft); }
.itin-highlights li::before { content: ""; position: absolute; left: 0; top: .62em; width: .7rem; height: 1px; background: var(--gold); }
.itin-foot { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.2rem; }
.itin-cost { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold-deep); }
.itin-note { margin-top: 2.2rem; text-align: center; font-size: .9rem; color: var(--ink-mute); }

@media (min-width: 760px) {
  .itin-card { grid-template-columns: 42% 1fr; }
  .itin-media { min-height: 100%; }
  .itin-reverse .itin-media { order: 2; }
}

/* =============================================================
   19c. Booking (cita)
   ============================================================= */
.booking {
  margin-top: 2.2rem; padding: 1.4rem 1.6rem;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.1rem;
  box-shadow: 0 20px 44px -40px rgba(22,35,63,.5);
}
.booking-title { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); line-height: 1.15; }
.booking-sub { font-size: .88rem; color: var(--ink-mute); margin-top: .15rem; }
.booking .btn { flex: none; }

/* Modal de reserva */
.bkdlg {
  border: 0; padding: 0; margin: auto;
  max-width: 540px; width: calc(100% - 2rem);
  background: var(--paper); color: var(--ink);
  border-radius: 6px; box-shadow: 0 50px 100px -30px rgba(15,26,48,.65);
}
.bkdlg::backdrop { background: rgba(15,26,48,.55); backdrop-filter: blur(3px); }
.bkdlg[open] { animation: bkdlgIn .4s var(--ease-out); }
@keyframes bkdlgIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.bkdlg-inner { padding: clamp(1.7rem, 4vw, 2.6rem); position: relative; }
.bkdlg-close { position: absolute; top: .8rem; right: 1.1rem; font-size: 1.7rem; line-height: 1; color: var(--ink-mute); transition: color .3s var(--ease-out); }
.bkdlg-close:hover { color: var(--navy); }
.bkdlg .kicker { margin-bottom: .6rem; }
.bkdlg-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.1rem); color: var(--navy); line-height: 1.05; }
.bkdlg-sub { color: var(--ink-soft); font-size: .95rem; margin-top: .5rem; margin-bottom: 1.5rem; }
.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; margin-bottom: 1.4rem; }
@media (max-width: 520px) { .bk-grid { grid-template-columns: 1fr; } }

/* Botón dorado (para fondos oscuros) */
.btn-gold { background: var(--gold-brt); color: var(--navy-deep); }
.btn-gold:hover { background: var(--cream); color: var(--navy); transform: translateY(-3px); box-shadow: 0 18px 40px -14px rgba(203,162,74,.5); }

/* Modal de destino */
.destdlg {
  border: 0; padding: 0; margin: auto;
  max-width: 880px; width: calc(100% - 2rem); max-height: 92vh;
  background: var(--paper); color: var(--ink);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(15,26,48,.65);
}
.destdlg::backdrop { background: rgba(15,26,48,.6); backdrop-filter: blur(3px); }
.destdlg[open] { animation: bkdlgIn .45s var(--ease-out); }
.destdlg-inner { position: relative; display: grid; grid-template-columns: 1fr; max-height: 92vh; }
.destdlg-media { margin: 0; overflow: hidden; background: var(--navy); }
.destdlg-media img { width: 100%; height: 100%; object-fit: cover; min-height: 200px; max-height: 36vh; }
.destdlg-body { padding: clamp(1.6rem, 4vw, 2.6rem); }
.destdlg-close {
  position: absolute; top: .9rem; right: 1rem; z-index: 5;
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.9); color: var(--navy);
  font-size: 1.6rem; line-height: 0; padding-bottom: 3px;
  box-shadow: 0 6px 18px -8px rgba(15,26,48,.5);
  transition: background-color .3s var(--ease-out), transform .35s var(--ease-out);
}
.destdlg-close:hover { background: #fff; transform: rotate(90deg); }
.destdlg .kicker { margin-bottom: .5rem; }
.destdlg-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 4.4vw, 2.6rem); color: var(--navy); line-height: 1.02; }
.destdlg-desc { margin-top: 1rem; color: var(--ink-soft); font-size: 1rem; }
.destdlg-highlights { margin-top: 1.4rem; margin-bottom: 1.9rem; display: grid; gap: .6rem; }
.destdlg-highlights li { position: relative; padding-left: 1.6rem; font-size: .95rem; color: var(--ink-soft); }
.destdlg-highlights li::before { content: ""; position: absolute; left: 0; top: .62em; width: .7rem; height: 1px; background: var(--gold); }
@media (min-width: 720px) {
  .destdlg-inner { grid-template-columns: 44% 1fr; }
  .destdlg-media img { max-height: none; min-height: 100%; }
}

/* =============================================================
   19d. Testimonios — slider elegante
   ============================================================= */
.testimonials { background: var(--bg); }
.section-head-center { margin-inline: auto; text-align: center; }

/* Wrapper del slider */
.tslider {
  position: relative;
  max-width: 780px;
  margin-inline: auto;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* Cada slide */
.tslide {
  display: none;
  animation: tFadeIn .55s var(--ease-out);
}
.tslide.is-active { display: block; }
@keyframes tFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Tarjeta interior */
.tslide-inner {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: clamp(2rem, 5vw, 3.2rem) clamp(1.8rem, 5vw, 3.4rem) clamp(1.8rem, 5vw, 2.6rem);
}

/* Comilla decorativa */
.tslide-mark {
  display: block;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: rgba(184,147,63,.18);
  margin-bottom: -.6rem;
  margin-top: -.4rem;
  user-select: none;
}

/* Texto de la cita */
.tslide-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 2.5vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 300;
}

/* Pie de figura */
.tslide-caption {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
}

/* Avatar con iniciales */
.tslide-avatar {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-soft), var(--navy-deep));
  color: var(--gold-brt);
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .06em;
  display: grid;
  place-items: center;
}

.tslide-info { display: grid; gap: .2rem; }
.tslide-name { font-weight: 600; color: var(--navy); font-size: .95rem; letter-spacing: .02em; }
.tslide-meta { font-size: .73rem; color: var(--gold-deep); letter-spacing: .08em; text-transform: uppercase; }

/* Controles */
.tslider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2rem;
}

.tslider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-mute);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), background .3s var(--ease-out);
}
.tslider-btn svg { width: 18px; height: 18px; }
.tslider-btn:hover { border-color: var(--gold); color: var(--gold-deep); background: rgba(184,147,63,.06); }

.tslider-dots { display: flex; gap: .6rem; align-items: center; }
.tslider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background .35s var(--ease-out), transform .35s var(--ease-out), width .35s var(--ease-out);
}
.tslider-dot.is-active {
  background: var(--gold);
  width: 22px;
  border-radius: 4px;
  transform: none;
}

/* =============================================================
   19e. FAQ
   ============================================================= */
.faq { background: var(--bg); }
.faq-list { max-width: 840px; margin: 3.2rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.faq-item:hover {
  border-color: var(--gold-brt);
  box-shadow: 0 10px 25px -10px rgba(22,35,63,0.08);
}
.faq-item[open] {
  border-color: var(--gold-brt);
  box-shadow: 0 14px 34px -12px rgba(22,35,63,0.12);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.6rem 2rem;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy);
  transition: color .3s var(--ease-out);
}
.faq-item summary:hover { color: var(--gold-deep); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus { position: relative; flex: none; width: 20px; height: 20px; }
.faq-plus::before, .faq-plus::after { content: ""; position: absolute; background: var(--gold-deep); transition: transform .3s var(--ease-out), opacity .3s; }
.faq-plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq-plus::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item[open] .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item[open] summary { color: var(--gold-deep); padding-bottom: 1rem; }
.faq-answer { padding: 0 2rem 1.8rem; }
.faq-answer p { color: var(--ink-soft); max-width: 66ch; font-size: 1.05rem; line-height: 1.6; }
.faq-item[open] .faq-answer { animation: faqOpen .38s var(--ease-out); }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* =============================================================
   19f. Fondos decorativos (mapa Italia, ruta + jet, avión)
   ============================================================= */
/* Mapa ilustrado de Italia como marca de agua en Destinos */
.destinations { position: relative; overflow: hidden; }
.destinations .container { position: relative; z-index: 1; }
.deco-map {
  position: absolute; z-index: 0; pointer-events: none;
  top: 7%; right: -5%;
  width: min(42%, 430px); aspect-ratio: 659 / 720;
  background: url("assets/img/bg-map-italy.webp") top center / contain no-repeat;
  opacity: .13;
}

/* Ruta de vuelo punteada + jet privado en Itinerarios */
.itineraries { position: relative; overflow: hidden; }
.itineraries .container { position: relative; z-index: 1; }
.deco-flightpath {
  position: absolute; z-index: 0; pointer-events: none;
  top: 4%; right: 7%; width: min(38%, 440px); aspect-ratio: 686 / 500;
  background: url("assets/img/bg-secciones.webp") center / contain no-repeat;
  opacity: .5;
}
.deco-jet {
  position: absolute; z-index: 0; pointer-events: none;
  top: 1%; right: 3%; width: min(21%, 228px); aspect-ratio: 1515 / 750;
  background: url("assets/img/avion2.webp") center / contain no-repeat;
  transform: rotate(-6deg);
  filter: drop-shadow(0 14px 22px rgba(22,35,63,.2));
}

@media (max-width: 760px) {
  .deco-map { width: 62%; opacity: .09; top: 2%; right: -14%; }
  .deco-flightpath, .deco-jet { display: none; }
}

/* =============================================================
   19g. Service cards (imagen + clic) + modales servicio/autos
   ============================================================= */
.svc-card {
  position: relative; display: flex; flex-direction: column; text-align: left;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 4px;
  overflow: hidden; cursor: pointer;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s var(--ease-out);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 30px 55px -32px rgba(22,35,63,.45); border-color: var(--line); }
.svc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.svc-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy); }
.svc-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.02) brightness(.95); transition: transform .9s var(--ease-out); will-change: transform; }
.svc-card:hover .svc-media img { transform: scale(1.06); }
.svc-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(15,26,48,.5)); }
.svc-icon {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(246,240,228,.94); color: var(--gold-deep);
  box-shadow: 0 8px 20px -8px rgba(15,26,48,.5);
}
.svc-icon svg { width: 26px; height: 26px; }
.svc-tag {
  position: absolute; top: .9rem; right: .9rem; z-index: 2;
  background: var(--gold); color: var(--navy-deep);
  font-size: .62rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  padding: .34rem .7rem; border-radius: 2px;
}
.svc-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.svc-body h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: .5rem; }
.svc-body p { font-size: .95rem; color: var(--ink-soft); }
.svc-more { margin-top: 1.1rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; display: inline-flex; align-items: center; gap: .45rem; }
.svc-more::after { content: "→"; transition: transform .3s var(--ease-out); }
.svc-card:hover .svc-more::after { transform: translateX(4px); }

.svc-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .4rem; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-3px); }

/* Modal catálogo de autos */
.carsdlg {
  border: 0; padding: 0; margin: auto; max-width: 980px; width: calc(100% - 2rem); max-height: 92vh;
  background: var(--paper); color: var(--ink); border-radius: 6px; overflow: hidden;
  box-shadow: 0 50px 100px -30px rgba(15,26,48,.65);
}
.carsdlg::backdrop { background: rgba(15,26,48,.62); backdrop-filter: blur(3px); }
.carsdlg[open] { animation: bkdlgIn .45s var(--ease-out); }
.carsdlg-inner { position: relative; display: flex; flex-direction: column; max-height: 92vh; }
.carsdlg-close {
  position: absolute; top: .9rem; right: 1rem; z-index: 5;
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,.92); color: var(--navy); font-size: 1.6rem; line-height: 0; padding-bottom: 3px;
  box-shadow: 0 6px 18px -8px rgba(15,26,48,.5); transition: background-color .3s var(--ease-out), transform .35s var(--ease-out);
}
.carsdlg-close:hover { background: #fff; transform: rotate(90deg); }
.carsdlg-head { padding: clamp(1.6rem, 4vw, 2.4rem) clamp(1.5rem, 4vw, 2.4rem) 1rem; }
.carsdlg-title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--navy); line-height: 1.05; }
.carsdlg-sub { color: var(--ink-soft); font-size: .95rem; margin-top: .4rem; max-width: 52ch; }
.cars-grid { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: max-content; align-content: start; gap: 1rem; padding: .4rem clamp(1.5rem, 4vw, 2.4rem) 1rem; overflow-y: auto; }
@media (min-width: 620px) { .cars-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .cars-grid { grid-template-columns: repeat(4, 1fr); } }
.car-card { margin: 0; border: 1px solid var(--line-soft); border-radius: 4px; overflow: hidden; background: var(--bg); transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out); will-change: transform; }
.car-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -22px rgba(22,35,63,.4); }
.car-media { position: relative; height: clamp(96px, 12vw, 128px); overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg, #eceef3, #e0e4ec); }
.car-ph { color: rgba(22,35,63,.26); display: grid; place-items: center; }
.car-ph svg { width: 50%; max-width: 80px; height: auto; }
.car-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.car-media.no-img img { display: none; }
.car-card figcaption { padding: .7rem .8rem .85rem; display: grid; gap: .12rem; }
.car-name { font-weight: 600; font-size: .9rem; color: var(--navy); line-height: 1.2; }
.car-model { font-size: .76rem; color: var(--ink-mute); }
.car-cat { margin-top: .28rem; font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-deep); }
.carsdlg-foot { padding: 1rem clamp(1.5rem, 4vw, 2.4rem) clamp(1.4rem, 4vw, 2rem); border-top: 1px solid var(--line-soft); }

/* Buscador + filtros del catálogo */
.cars-tools { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .7rem 1rem; align-items: center; }
.cars-search-wrap { display: inline-flex; align-items: center; gap: .5rem; flex: 1 1 210px; min-width: 170px; padding: .5rem .85rem; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; transition: border-color .3s var(--ease-out), box-shadow .3s; }
.cars-search-wrap:focus-within { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,147,63,.14); }
.cars-search-ico { width: 16px; height: 16px; color: var(--ink-mute); flex: none; }
.cars-search { flex: 1; border: 0; background: none; font: inherit; font-size: .9rem; color: var(--ink); outline: none; min-width: 0; }
.cars-filters { display: flex; flex-wrap: wrap; gap: .4rem; }
.cars-chip { font-size: .72rem; letter-spacing: .03em; padding: .38rem .8rem; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-soft); background: transparent; transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out); }
.cars-chip:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.cars-chip.is-active { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.cars-noresults { padding: 1.6rem clamp(1.5rem, 4vw, 2.4rem); text-align: center; color: var(--ink-mute); font-size: .95rem; }

/* =============================================================
   20. Reveal animations
   ============================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
/* Defensive: never let a split+reveal element stay invisible */
.reveal[data-split] { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* =============================================================
   21. Responsive
   ============================================================= */
@media (min-width: 640px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 720px) {
  .philosophy-grid { grid-template-columns: 220px 1fr; gap: 4rem; }
  .philosophy-body { max-width: 46ch; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .about-media { min-height: 32rem; }
}
@media (min-width: 960px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .exp-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .about-media { min-height: 38rem; }
  .invest-card { grid-template-columns: 1.5fr 1fr; gap: 4rem; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
  .dest-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 16rem;
  }
  .dest-card { aspect-ratio: auto; height: 100%; }
  /* Roma leads as a wide feature; the rest fill a clean 6-cell block */
  .dest-lg:first-child { grid-column: span 2; }
}
@media (min-width: 1280px) {
  .dest-grid { grid-auto-rows: 17rem; }
}

/* mobile nav */
.nav-close { display: none; }
@media (max-width: 860px) {
  .nav-overlay {
    position: fixed; inset: 0; z-index: 990; background: rgba(15,26,48,.6); 
    backdrop-filter: blur(4px); opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s;
  }
  html.nav-open .nav-overlay { opacity: 1; visibility: visible; }
  .nav-close {
    display: grid; position: absolute; top: 1.2rem; right: 1.2rem;
    width: 40px; height: 40px; place-items: center;
    color: var(--cream); background: rgba(255,255,255,.08); border-radius: 50%;
    transition: background .3s;
  }
  .nav-close:hover { background: rgba(255,255,255,.15); }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; justify-content: center; gap: 1.8rem;
    background: var(--navy); padding: 2rem;
    transform: translateX(100%); transition: transform .5s var(--ease-out);
    box-shadow: -20px 0 60px -30px rgba(0,0,0,.6);
    overflow-y: auto; overscroll-behavior: contain; touch-action: auto;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--cream); font-size: 1.1rem; }
  .nav.is-solid .nav-links a { color: var(--cream); }
  .nav-toggle { display: flex; order: 3; }
  .btn-nav { display: none; }
  .cursor { display: none; }
  /* En móvil NO usar backdrop-filter en la nav: crearía un bloque contenedor
     que rompe (colapsa) el panel del menú, fijo, al hacer scroll. Fondo sólido. */
  .nav.is-solid { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--bg); }
  /* Bloquear el scroll del fondo mientras el menú está abierto */
  html.nav-open, html.nav-open body { overflow: hidden; height: 100vh; touch-action: none; overscroll-behavior: none; }
}

/* =============================================================
   22. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-img { animation: none; transform: scale(1.05); }
  .marquee-track { animation: none; }
  .hero-scroll-line { animation: none; }
  .deco-stamp, .stamp-ring, .stamp-plane { animation: none; }
}

/* =============================================================
   23. Car Rental CTA
   ============================================================= */
.car-cta-wrap {
  margin-top: 4rem; /* Separación del grid superior */
  padding-bottom: 2rem;
}
.car-cta-card {
  display: flex;
  flex-direction: column-reverse;
  background: var(--navy);
  color: var(--cream);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(22,35,63,0.3);
}
@media (min-width: 800px) {
  .car-cta-card {
    flex-direction: row;
    align-items: stretch;
    min-height: 320px;
    height: auto;
  }
}
.car-cta-body {
  flex: 1;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .car-cta-body {
    padding: 3rem 4rem;
  }
}
.car-cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.car-cta-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 500px;
}
.car-cta-image {
  flex: 1;
  min-height: 250px;
  position: relative;
}
.car-cta-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* =============================================================
   24. Clients Gallery — Grid Estilo Masonry
   ============================================================= */
.clients-gallery {
  background: var(--paper);
  padding: 6rem 0;
}
/* Masonry por columnas: respeta la orientación real de cada foto */
.gallery-grid {
  columns: 3;
  column-gap: 1.3rem;
  margin-top: 1rem;
}
@media (max-width: 900px) { .gallery-grid { columns: 2; column-gap: 1rem; } }
@media (max-width: 480px) { .gallery-grid { columns: 1; } }

.gal-item {
  position: relative; display: block; break-inside: avoid;
  margin: 0 0 1.3rem;
  border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--bg-2);
}
.gal-item.reveal { transform: translateY(20px); }
.gal-item.reveal.is-visible { transform: translateY(0); }
.gal-item img {
  display: block; width: 100%; height: auto;
  transition: transform 0.6s cubic-bezier(0.22,0.61,0.36,1);
  will-change: transform;
}
.gal-item:hover img { transform: scale(1.04); }

.gal-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
/* Overlay: velo + lupa + nombre del lugar */
.gal-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(15,26,48,.04) 40%, rgba(15,26,48,.5));
  opacity: 0; transition: opacity .35s var(--ease-out);
}
.gal-item:hover .gal-overlay, .gal-item:focus-visible .gal-overlay { opacity: 1; }
.gal-zoom {
  width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(246,240,228,.92); color: var(--navy);
  transform: translateY(10px) scale(.9); transition: transform .35s var(--ease-out);
  box-shadow: 0 10px 26px -10px rgba(15,26,48,.6);
}
.gal-item:hover .gal-zoom, .gal-item:focus-visible .gal-zoom { transform: none; }
.gal-zoom svg { width: 24px; height: 24px; }
.gal-name {
  position: absolute; left: 1.1rem; bottom: .9rem; color: var(--cream);
  font-family: var(--serif); font-size: 1.2rem; font-weight: 500; letter-spacing: .01em;
  text-shadow: 0 2px 14px rgba(15,26,48,.65);
}
.gal-sub { margin-inline: auto; max-width: 58ch; }
.gal-cta { text-align: center; margin-top: clamp(2.4rem, 5vw, 3.4rem); }
.gal-more { border-radius: 999px; gap: .55rem; border-color: var(--gold); color: var(--gold-deep); }
.gal-more svg { width: 1.05rem; height: 1.05rem; }

/* =============================================================
   26. Welcome note — valor agregado (nota de bienvenida)
   ============================================================= */
.welcome-note { background: var(--bg-2); overflow: hidden; }
.wn-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.wn-media { margin: 0; max-width: 360px; margin-inline: auto; }
.wn-media img {
  width: 100%; height: auto; border-radius: 4px;
  border: 12px solid #fff;
  box-shadow: 0 36px 66px -28px rgba(22,35,63,.55);
  transform: rotate(-2.5deg);
}
.wn-body .kicker { margin-bottom: 1rem; }
.wn-text { margin-top: 1.3rem; font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; }
.wn-note-bullets { margin-top: 1.6rem; display: grid; gap: .6rem; }
.wn-note-bullets li { position: relative; padding-left: 1.6rem; font-size: .96rem; color: var(--ink-soft); }
.wn-note-bullets li::before { content: ""; position: absolute; left: 0; top: .62em; width: .7rem; height: 1px; background: var(--gold); }
.wn-sign { margin-top: 1.8rem; font-family: var(--script); font-size: 2.5rem; color: var(--navy); line-height: 1; }
@media (min-width: 860px) {
  .wn-grid { grid-template-columns: minmax(0, 40%) 1fr; gap: clamp(2.5rem, 6vw, 5rem); }
  .wn-media { max-width: none; }
}

/* =============================================================
   25. Lightbox — galería / autos con navegación
   ============================================================= */
.lightbox-dialog {
  border: none; padding: 0; margin: 0;
  width: 100vw; max-width: 100vw; height: 100vh; max-height: 100vh;
  background: transparent; overflow: hidden;
}
.lightbox-dialog[open] { display: flex; align-items: center; justify-content: center; }
.lightbox-dialog::backdrop {
  background: rgba(10, 18, 40, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lightbox-inner {
  position: relative; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem; max-width: 100%; max-height: 100%;
}
.lightbox-inner img[data-lightbox-img] {
  display: block; width: auto; height: auto;
  max-width: min(92vw, 1120px); max-height: 80vh;
  object-fit: contain; border-radius: 8px;
  box-shadow: 0 32px 64px -16px rgba(0,0,0,.6); background: rgba(0,0,0,.2);
}
.lightbox-cap { display: flex; align-items: center; gap: 1.1rem; color: rgba(246,240,228,.85); font-size: .82rem; letter-spacing: .06em; }
.lightbox-alt { text-transform: uppercase; }
.lightbox-alt:empty { display: none; }
.lightbox-counter { color: var(--gold-brt); font-variant-numeric: tabular-nums; }
.lightbox-close {
  position: fixed; top: 1.3rem; right: 1.5rem; z-index: 12;
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(246,240,228,0.3); background: rgba(15,26,48,.55); color: #fff;
  font-size: 1.5rem; line-height: 0; padding-bottom: 3px;
  transition: background-color .25s var(--ease-out), transform .25s var(--ease-out), border-color .25s;
}
.lightbox-close:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: rotate(90deg); }
.lb-nav {
  position: fixed; top: 50%; transform: translateY(-50%); z-index: 12;
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(246,240,228,0.3); background: rgba(15,26,48,.55); color: var(--cream);
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.lb-nav:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.lb-nav svg { width: 24px; height: 24px; }
.lb-prev { left: 1.4rem; }
.lb-next { right: 1.4rem; }

@media (max-width: 640px) {
  .lightbox-inner { padding: 1rem; }
  .lightbox-inner img[data-lightbox-img] {
    max-width: 94vw;
    max-height: 72vh;
    border-radius: 6px;
  }
  .lightbox-close {
    top: .8rem;
    right: .8rem;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
}
