/* =========================================================
       DESIGN TOKENS — Austria Tour
       Paleta: Azul profundo + Crema + Dorado
       Estética: Editorial cinematográfico
       ========================================================= */
    :root {
      /* Color — Warm Mountain Palette (orange · cream · soft black) */
      --ink:        #0A0A0A;            /* deep black for darkest sections */
      --navy:       #151515;            /* soft black — body text / dark sections (was navy) */
      --navy-2:     #2A2A2A;            /* hover dark / lighter black */
      --navy-soft:  #3D3D3D;            /* tertiary dark */
      --cream:      #EFE5D8;            /* warm surface (cards, form bg) */
      --cream-2:    #F7F3EE;            /* main canvas — light warm cream */
      --paper:      #FFFFFF;            /* true white sections */
      --gold:       #E86A1F;            /* PRIMARY orange (was gold) */
      --gold-2:     #C85A18;            /* orange hover dark */
      --gold-soft:  #D6B38B;            /* warm sand accent */
      --muted:      #5A4F45;            /* warm brown muted text */
      --muted-2:    #8A7A6A;            /* lighter warm muted */
      --line:       rgba(21, 21, 21, 0.10);
      --line-cream: rgba(247, 243, 238, 0.18);

      /* Tipografía */
      --font-serif: 'Playfair Display', 'Times New Roman', Georgia, serif;
      --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

      /* Spacing (4/8) */
      --space-1: 4px;
      --space-2: 8px;
      --space-3: 12px;
      --space-4: 16px;
      --space-5: 24px;
      --space-6: 32px;
      --space-8: 48px;
      --space-10: 64px;
      --space-12: 96px;
      --space-16: 128px;

      /* Radii */
      --radius-sm: 4px;
      --radius:    8px;
      --radius-lg: 16px;
      --radius-pill: 999px;

      /* Sombras */
      --shadow-sm: 0 1px 2px rgba(6, 21, 40, 0.06);
      --shadow:    0 8px 24px rgba(6, 21, 40, 0.08);
      --shadow-lg: 0 24px 60px rgba(6, 21, 40, 0.18);
      --shadow-card: 0 20px 50px rgba(6, 21, 40, 0.22);

      /* Tiempos */
      --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
      --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
      --t-fast: 180ms;
      --t-med:  280ms;
      --t-slow: 520ms;

      /* Layout */
      --container: 1280px;
      --nav-h: 72px;
    }

    /* =========================================================
       RESET MODERNO
       ========================================================= */
    *, *::before, *::after { box-sizing: border-box; }
    html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
    body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
    ul, ol { margin: 0; padding: 0; list-style: none; }
    img, picture, svg, video { display: block; max-width: 100%; height: auto; }
    button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
    a { color: inherit; text-decoration: none; }
    input, textarea, select { font: inherit; color: inherit; }

    /* =========================================================
       BASE
       ========================================================= */
    body {
      font-family: var(--font-sans);
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--cream-2);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    .container {
      width: 100%;
      max-width: var(--container);
      margin-inline: auto;
      padding-inline: clamp(20px, 5vw, 56px);
    }

    /* Tipografía */
    h1, h2, h3, h4 {
      font-family: var(--font-serif);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.1;
      color: var(--ink);
    }
    h1 { font-size: clamp(40px, 7vw, 92px); font-weight: 500; letter-spacing: -0.025em; }
    h2 { font-size: clamp(32px, 4.5vw, 56px); }
    h3 { font-size: clamp(22px, 2.4vw, 30px); }
    em.serif-italic { font-style: italic; font-family: var(--font-serif); color: var(--gold); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-sans);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .eyebrow::before {
      content: "";
      width: 28px; height: 1px; background: currentColor;
      display: inline-block;
      transform: scaleX(1);
      transform-origin: left;
      transition: transform 720ms 200ms var(--ease-out);
    }
    /* When eyebrow lives inside a not-yet-revealed block, the line waits to draw */
    .reveal .eyebrow::before,
    .reveal:has(.eyebrow) .eyebrow::before { transform: scaleX(0); }
    .reveal.is-visible .eyebrow::before,
    .reveal.is-visible:has(.eyebrow) .eyebrow::before { transform: scaleX(1); }
    .eyebrow--dark { color: var(--navy); }
    .eyebrow--dark::before { background: var(--navy); }

    .lede {
      font-size: clamp(17px, 1.6vw, 19px);
      color: var(--muted);
      max-width: 56ch;
      line-height: 1.65;
    }

    /* =========================================================
       BOTONES
       ========================================================= */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-family: var(--font-sans);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      transition: background var(--t-fast) var(--ease-out),
                  color var(--t-fast) var(--ease-out),
                  border-color var(--t-fast) var(--ease-out),
                  box-shadow 240ms var(--ease-out);
      min-height: 48px;
      white-space: nowrap;
      cursor: pointer;
    }
    .btn:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }
    .btn--accent {
      background: var(--gold);
      color: #FFFFFF;
      box-shadow: 0 6px 20px rgba(232, 106, 31, 0.28);
    }
    .btn--accent:hover {
      background: var(--gold-2);
      box-shadow: 0 10px 26px rgba(200, 90, 24, 0.34);
    }
    .btn--navy {
      background: var(--navy);
      color: var(--cream);
    }
    .btn--navy:hover { background: var(--navy-2); }
    .btn--ghost {
      background: transparent;
      color: var(--cream);
      border: 1px solid rgba(245, 239, 230, 0.4);
    }
    .btn--ghost:hover { background: rgba(245, 239, 230, 0.08); border-color: var(--cream); }
    .btn--ghost-dark {
      background: transparent;
      color: var(--ink);
      border: 1px solid var(--line);
    }
    .btn--ghost-dark:hover { background: var(--cream); border-color: var(--navy); }

    /* =========================================================
       NAV
       ========================================================= */
    .nav {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      height: var(--nav-h);
      transition: background var(--t-med) var(--ease-out),
                  backdrop-filter var(--t-med) var(--ease-out),
                  box-shadow var(--t-med) var(--ease-out);
    }
    .nav__inner {
      max-width: var(--container);
      height: 100%;
      margin-inline: auto;
      padding-inline: clamp(20px, 5vw, 56px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }
    .nav__brand {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--cream);
      transition: color var(--t-med) var(--ease-out);
    }
    .nav__logo {
      height: 54px;
      width: auto;
      display: block;
      /* Invert to white over dark hero; restore to black on scrolled cream nav */
      filter: invert(1) brightness(1.6) drop-shadow(0 2px 6px rgba(0,0,0,0.25));
      transition: filter var(--t-med) var(--ease-out);
    }
    .nav.is-scrolled .nav__logo {
      filter: none;
    }
    /* Mobile menu logo always inverted (dark menu bg) */
    .nav__mobile .nav__logo { filter: invert(1) brightness(1.6); }
    .nav__links {
      display: flex;
      gap: 36px;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.04em;
    }
    .nav__links a {
      color: var(--cream);
      position: relative;
      padding: 4px 0;
      transition: color var(--t-med) var(--ease-out);
    }
    .nav__links a::after {
      content: "";
      position: absolute;
      left: 0; right: 0; bottom: -2px;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform var(--t-med) var(--ease-out);
    }
    .nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

    .nav__cta { display: inline-flex; }
    .nav__cta .btn { min-height: 42px; padding: 10px 22px; font-size: 12px; }

    .nav__burger {
      display: none;
      width: 44px; height: 44px;
      align-items: center;
      justify-content: center;
      color: var(--cream);
    }
    .nav__burger span {
      display: block;
      position: relative;
      width: 22px; height: 1.5px;
      background: currentColor;
      transition: transform var(--t-med) var(--ease-out),
                  opacity var(--t-fast) var(--ease-out);
    }
    .nav__burger span::before,
    .nav__burger span::after {
      content: ""; position: absolute; left: 0; right: 0;
      height: 1.5px; background: currentColor;
      transition: transform var(--t-med) var(--ease-out);
    }
    .nav__burger span::before { top: -6px; }
    .nav__burger span::after { top: 6px; }

    /* Nav scrolled state — warm cream with blur */
    .nav.is-scrolled {
      background: rgba(247, 243, 238, 0.92);
      backdrop-filter: saturate(140%) blur(14px);
      -webkit-backdrop-filter: saturate(140%) blur(14px);
      box-shadow: 0 1px 0 rgba(21,21,21,0.06), 0 10px 30px rgba(21,21,21,0.05);
    }
    .nav.is-scrolled .nav__brand,
    .nav.is-scrolled .nav__links a,
    .nav.is-scrolled .nav__burger { color: var(--ink); }
    .nav.is-scrolled .nav__cta .btn--accent { background: var(--gold); color: #FFFFFF; }
    .nav.is-scrolled .nav__cta .btn--accent:hover { background: var(--gold-2); }

    /* Nav variant on light section (dark text) */
    .nav.is-light:not(.is-scrolled) .nav__brand,
    .nav.is-light:not(.is-scrolled) .nav__links a,
    .nav.is-light:not(.is-scrolled) .nav__burger { color: var(--ink); }
    .nav.is-light:not(.is-scrolled) .nav__cta .btn--accent { background: var(--gold); color: #FFFFFF; }

    /* Mobile menu */
    .nav__mobile {
      position: fixed;
      inset: var(--nav-h) 0 0 0;
      background: var(--navy);
      padding: 48px clamp(20px, 5vw, 56px);
      transform: translateY(-100%);
      transition: transform var(--t-slow) var(--ease-in-out);
      z-index: 95;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .nav__mobile.is-open { transform: translateY(0); }
    .nav__mobile a {
      font-family: var(--font-serif);
      font-size: 32px;
      color: var(--cream);
      padding: 10px 0;
      border-bottom: 1px solid var(--line-cream);
    }
    .nav__mobile .btn {
      margin-top: 20px;
      align-self: flex-start;
      padding: 10px 20px;
      font-size: 11px;
      letter-spacing: 0.1em;
      min-height: 42px;
    }
    .nav__mobile .btn--accent {
      box-shadow: 0 4px 14px rgba(232, 106, 31, 0.22);
    }

    /* =========================================================
       HERO
       ========================================================= */
    /* HERO — Spotlight reveal cinematic
       El mapa siempre está cubierto por un overlay oscuro con backdrop-blur.
       Una "linterna" (radial-gradient mask en el overlay) sigue al cursor con
       lerp suave, revelando el mapa solo donde apunta. Un glow extra agrega
       luz cálida alrededor del spot.
       Adaptación 1:1 del componente React ImageHover (shadcn) a JS vanilla. */
    .hero {
      position: relative;
      height: 70vh;
      height: 70dvh;
      min-height: 560px;
      width: 100%;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      color: var(--cream);
      isolation: isolate;
      background: var(--ink);
      cursor: crosshair;
    }
    .hero__image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
      user-select: none;
      -webkit-user-drag: none;
      pointer-events: none;
      z-index: 0;
    }
    .hero__overlay {
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 10, 0.80);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      pointer-events: none;
      transition: opacity 320ms var(--ease-out);
      z-index: 1;
      /* mask-image set by JS when hovering */
    }
    .hero__glow {
      position: absolute;
      inset: 0;
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: 0;
      transition: opacity 320ms var(--ease-out);
      z-index: 2;
      /* background set by JS when hovering */
    }
    .hero.is-hovering .hero__overlay { opacity: 0.94; }
    .hero.is-hovering .hero__glow    { opacity: 1; }
    .hero__content {
      width: 100%;
      max-width: var(--container);
      margin-inline: auto;
      padding: 0 clamp(20px, 5vw, 56px) clamp(60px, 10vh, 120px);
      position: relative;
      z-index: 4;
    }
    .hero__title {
      color: var(--cream);
      max-width: 16ch;
      margin-top: 24px;
      margin-bottom: 28px;
    }
    .hero__title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero__lede {
      color: rgba(245, 239, 230, 0.85);
      max-width: 52ch;
      font-size: clamp(16px, 1.4vw, 18px);
      margin-bottom: 40px;
    }
    .hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

    /* Hero badges (top corner) */
    .hero__badge {
      position: absolute;
      top: calc(var(--nav-h) + 24px);
      right: clamp(20px, 5vw, 56px);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 18px;
      background: rgba(245, 239, 230, 0.08);
      border: 1px solid rgba(245, 239, 230, 0.20);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: var(--radius-pill);
      font-size: 12px;
      letter-spacing: 0.08em;
      color: var(--cream);
      z-index: 4;
    }
    .hero__badge .dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 4px rgba(232, 106, 31, 0.28);
    }

    /* =========================================================
       SECTIONS GENERAL
       ========================================================= */
    section { position: relative; }
    .section {
      padding: clamp(80px, 12vw, 140px) 0;
    }
    .section--compact {
      padding: clamp(48px, 6vw, 80px) 0;
    }
    .section--cream { background: var(--cream-2); }
    .section--paper { background: var(--paper); }
    .section--navy {
      background: var(--navy);
      color: var(--cream);
    }
    .section--navy h2, .section--navy h3 { color: var(--cream); }
    .section--navy .lede { color: rgba(245, 239, 230, 0.75); }
    .section--ink {
      background: var(--ink);
      color: var(--cream);
    }
    .section--ink h2, .section--ink h3 { color: var(--cream); }
    .section--ink .lede { color: rgba(245, 239, 230, 0.70); }


    .section__head {
      max-width: 720px;
      margin-bottom: clamp(48px, 7vw, 80px);
    }
    .section__head h2 { margin-top: 18px; margin-bottom: 20px; }
    .section__head .lede { margin-top: 12px; }

    /* =========================================================
       MANIFESTO
       ========================================================= */
    .manifesto {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: clamp(40px, 6vw, 80px);
      align-items: start;
    }
    .manifesto__left { position: sticky; top: calc(var(--nav-h) + 40px); }
    .manifesto__statement {
      font-family: var(--font-serif);
      font-size: clamp(24px, 2.6vw, 36px);
      font-weight: 400;
      line-height: 1.35;
      color: var(--ink);
      letter-spacing: -0.01em;
    }
    .manifesto__statement em { color: var(--gold); font-style: italic; }
    .manifesto__signature {
      margin-top: 36px;
      padding-top: 28px;
      display: flex;
      align-items: center;
      gap: 16px;
      position: relative;
    }
    .manifesto__signature::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 64px; height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 1100ms 300ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .manifesto__signature.is-visible::before { transform: scaleX(1); }
    .manifesto__signature small {
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted-2);
    }
    .manifesto__signature strong {
      display: block;
      font-family: var(--font-serif);
      font-size: 18px;
      color: var(--ink);
      font-weight: 600;
      margin-top: 4px;
    }

    /* =========================================================
       DESTINOS GRID
       ========================================================= */
    .destinos__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 2.5vw, 28px);
    }
    .destinos__grid .destino {
      --rx: 0deg;
      --ry: 0deg;
      --reveal-y: 0px;
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      border-radius: var(--radius);
      background-color: var(--navy);
      color: var(--cream);
      isolation: isolate;
      cursor: pointer;
      transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--reveal-y));
      transform-style: preserve-3d;
      transition: transform 500ms cubic-bezier(0.18, 0.7, 0.2, 1),
                  box-shadow 500ms var(--ease-out);
      will-change: transform;
    }
    /* Reveal Y composes with the magnetic tilt instead of fighting it */
    .destinos__grid .destino.reveal { --reveal-y: 28px; opacity: 0; }
    .destinos__grid .destino.reveal.is-visible { --reveal-y: 0px; opacity: 1; }
    .destino:hover {
      box-shadow: 0 30px 80px -20px rgba(15, 8, 3, 0.35);
    }
    .destino__media {
      position: absolute; inset: -6%;
      background-size: cover;
      background-position: center;
      transition: transform 1100ms var(--ease-out);
      will-change: transform;
    }
    .destino:hover .destino__media { transform: scale(1.08) translateZ(20px); }
    .destino__scrim {
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(15,8,3,0.05) 0%, rgba(15,8,3,0.18) 40%, rgba(15,8,3,0.85) 100%);
      transition: background 600ms var(--ease-out);
    }
    .destino:hover .destino__scrim {
      background: linear-gradient(180deg, rgba(15,8,3,0) 0%, rgba(15,8,3,0.10) 35%, rgba(15,8,3,0.88) 100%);
    }
    .destino__content {
      position: relative;
      height: 100%;
      padding: clamp(20px, 2.5vw, 32px);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      gap: 12px;
    }
    .destino__tag {
      position: absolute;
      top: clamp(20px, 2.5vw, 32px);
      left: clamp(20px, 2.5vw, 32px);
      padding: 6px 12px;
      background: rgba(245,239,230,0.92);
      color: var(--navy);
      border-radius: var(--radius-pill);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: transform 520ms cubic-bezier(0.18, 0.7, 0.2, 1),
                  background 240ms var(--ease-out);
      transform: translateZ(0);
    }
    .destino:hover .destino__tag {
      transform: translate(-3px, -3px) translateZ(30px);
      background: #FFFFFF;
    }
    .destino__title {
      font-family: var(--font-serif);
      font-size: clamp(24px, 2.4vw, 36px);
      font-weight: 500;
      line-height: 1.15;
      letter-spacing: -0.01em;
      color: var(--cream);
    }
    .destino__meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 13px;
      color: rgba(245, 239, 230, 0.78);
      letter-spacing: 0.02em;
    }
    .destino__meta span { display: inline-flex; align-items: center; gap: 6px; }
    .destino__cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 4px;
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--gold-soft);
      padding-bottom: 4px;
      transition: color 280ms var(--ease-out);
    }
    .destino__cta::after {
      content: "→";
      display: inline-block;
      transition: transform 420ms cubic-bezier(0.34, 1.36, 0.5, 1);
    }
    .destino__cta::before {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      height: 1px;
      width: 100%;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 520ms cubic-bezier(0.18, 0.7, 0.2, 1);
    }
    .destino:hover .destino__cta { color: #FFFFFF; }
    .destino:hover .destino__cta::after { transform: translateX(8px); }
    .destino:hover .destino__cta::before { transform: scaleX(1); }

    /* =========================================================
       OFERTAS VIGENTES — Custom offer cards
       Cards editables directamente en HTML.
       Cada card linkea a WhatsApp con mensaje pre-cargado.
       Para SWAP por un Instagram embed real, ver comentario en HTML.
       ========================================================= */
    .ig-eyebrow-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 14px; height: 14px;
      vertical-align: -2px;
      margin-right: 4px;
    }
    .promo-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(20px, 2vw, 24px);
      align-items: stretch;
    }
    .promo-card {
      --rx: 0deg;
      --ry: 0deg;
      --reveal-y: 0px;
      position: relative;
      aspect-ratio: 4 / 5;
      border-radius: var(--radius);
      overflow: hidden;
      color: var(--cream);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      isolation: isolate;
      box-shadow: 0 14px 30px -10px rgba(15, 8, 3, 0.18);
      transform: perspective(900px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(var(--reveal-y));
      transform-style: preserve-3d;
      transition: transform 500ms cubic-bezier(0.18, 0.7, 0.2, 1),
                  box-shadow 500ms var(--ease-out);
      will-change: transform;
      text-decoration: none;
    }
    .reveal.promo-card { --reveal-y: 28px; opacity: 0; }
    .reveal.promo-card.is-visible { --reveal-y: 0px; opacity: 1; }
    .promo-card:hover {
      box-shadow: 0 32px 70px -16px rgba(15, 8, 3, 0.36);
    }
    .promo-card__media {
      position: absolute; inset: -6%;
      background-size: cover;
      background-position: center;
      transition: transform 1100ms var(--ease-out);
      will-change: transform;
    }
    .promo-card:hover .promo-card__media { transform: scale(1.08) translateZ(20px); }
    .promo-card__scrim {
      position: absolute; inset: 0;
      background: linear-gradient(180deg,
        rgba(15, 8, 3, 0.08) 0%,
        rgba(15, 8, 3, 0.32) 38%,
        rgba(15, 8, 3, 0.92) 100%);
      transition: background 600ms var(--ease-out);
    }
    .promo-card:hover .promo-card__scrim {
      background: linear-gradient(180deg,
        rgba(15, 8, 3, 0) 0%,
        rgba(15, 8, 3, 0.20) 32%,
        rgba(15, 8, 3, 0.94) 100%);
    }
    /* Ribbon de "Promo" */
    .promo-card__ribbon {
      position: absolute;
      top: clamp(18px, 2vw, 24px);
      left: clamp(18px, 2vw, 24px);
      padding: 6px 12px;
      background: var(--gold);
      color: #FFFFFF;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      border-radius: var(--radius-pill);
      z-index: 2;
      transition: transform 520ms cubic-bezier(0.18, 0.7, 0.2, 1);
      transform: translateZ(0);
    }
    .promo-card:hover .promo-card__ribbon {
      transform: translate(-3px, -3px) translateZ(30px);
    }
    .promo-card__body {
      position: relative;
      z-index: 2;
      padding: clamp(20px, 2.4vw, 28px);
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .promo-card__tag {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold-soft);
      font-weight: 500;
    }
    .promo-card__title {
      font-family: var(--font-serif);
      font-size: clamp(26px, 2.6vw, 34px);
      font-weight: 500;
      line-height: 1.05;
      letter-spacing: -0.02em;
      color: var(--cream);
      margin: 0;
    }
    .promo-card__meta {
      font-size: 13px;
      color: rgba(245, 239, 230, 0.78);
      letter-spacing: 0.02em;
    }
    .promo-card__footer {
      margin-top: 12px;
      padding-top: 14px;
      border-top: 1px solid rgba(245, 239, 230, 0.18);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .promo-card__price {
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245, 239, 230, 0.6);
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .promo-card__price strong {
      color: var(--cream);
      font-size: 22px;
      font-weight: 500;
      font-family: var(--font-serif);
      letter-spacing: -0.01em;
      text-transform: none;
    }
    .promo-card__cta {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      padding-bottom: 4px;
      transition: color 280ms var(--ease-out), gap 280ms var(--ease-out);
    }
    .promo-card__cta::after {
      content: "→";
      transition: transform 420ms cubic-bezier(0.34, 1.36, 0.5, 1);
    }
    .promo-card:hover .promo-card__cta {
      color: #FFFFFF;
      gap: 12px;
    }
    .promo-card:hover .promo-card__cta::after {
      transform: translateX(6px);
    }

    .promo-footer {
      margin-top: clamp(48px, 6vw, 72px);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      text-align: center;
    }
    .promo-footer .btn { min-width: 280px; }
    .promo-hint {
      font-size: 13px;
      letter-spacing: 0.04em;
      color: var(--muted);
      max-width: 44ch;
    }

    @media (max-width: 1024px) {
      .promo-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 720px) {
      .promo-grid { grid-template-columns: 1fr; }
      .promo-card { max-width: 540px; margin: 0 auto; width: 100%; }
    }

    /* =========================================================
       NOSOTROS
       ========================================================= */
    .nosotros {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: center;
    }
    .nosotros__media {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      border-radius: var(--radius);
      background-color: var(--cream);
      background-image:
        linear-gradient(180deg, transparent 60%, rgba(15,8,3,0.45)),
        url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1400&q=80');
      background-size: cover;
      background-position: center;
    }
    .nosotros__badge {
      position: absolute;
      bottom: 24px;
      right: 24px;
      width: clamp(120px, 14vw, 160px);
      aspect-ratio: 1;
      border-radius: 50%;
      background: var(--gold);
      color: var(--ink);
      display: grid;
      place-items: center;
      text-align: center;
      box-shadow: 0 24px 50px -10px rgba(232, 106, 31, 0.35);
      opacity: 0;
      transform: scale(0.55) rotate(-18deg);
      transition: opacity 520ms 520ms var(--ease-out),
                  transform 820ms 520ms cubic-bezier(0.34, 1.56, 0.5, 1),
                  box-shadow 360ms var(--ease-out);
    }
    .nosotros__media.is-visible .nosotros__badge {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }
    .nosotros__media:hover .nosotros__badge {
      transform: scale(1.05) rotate(-3deg);
      box-shadow: 0 32px 70px -10px rgba(232, 106, 31, 0.5);
    }
    .nosotros__badge strong {
      display: block;
      font-family: var(--font-serif);
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1;
      font-weight: 700;
    }
    .nosotros__badge span {
      display: block;
      font-size: 10px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-top: 6px;
    }
    .nosotros__copy h2 { margin-bottom: 24px; }
    .nosotros__copy p {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .nosotros__copy p:first-of-type::first-letter {
      font-family: var(--font-serif);
      font-size: 64px;
      float: left;
      line-height: 0.9;
      margin: 6px 12px 0 0;
      color: var(--gold);
      font-weight: 600;
    }
    .nosotros__list {
      margin-top: 32px;
      display: grid;
      gap: 14px;
    }
    .nosotros__list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 15px;
      color: var(--ink);
    }
    .nosotros__list svg {
      flex: 0 0 22px;
      margin-top: 2px;
      color: var(--gold);
    }

    /* =========================================================
       STATS
       ========================================================= */
    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(16px, 2vw, 40px);
      padding: clamp(48px, 6vw, 72px) 0;
      border-top: 1px solid var(--line-cream);
      border-bottom: 1px solid var(--line-cream);
    }
    .stat {
      text-align: left;
      padding: 0 clamp(8px, 1.5vw, 24px);
      border-left: 1px solid var(--line-cream);
    }
    .stat:first-child { border-left: 0; padding-left: 0; }
    .stat__num {
      font-family: var(--font-serif);
      font-size: clamp(40px, 5vw, 64px);
      line-height: 1;
      font-weight: 500;
      letter-spacing: -0.025em;
      font-variant-numeric: tabular-nums;
      background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: var(--gold); /* fallback */
    }
    .stat__num small {
      font-size: 0.55em;
      vertical-align: 0.2em;
      margin-left: 2px;
      letter-spacing: 0;
    }
    .stat { transition: transform 360ms var(--ease-out); }
    .stat:hover { transform: translateY(-2px); }
    .stat__label {
      margin-top: 10px;
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(245, 239, 230, 0.75);
      font-weight: 500;
    }

    /* =========================================================
       TESTIMONIOS
       ========================================================= */
    .testimonios {
      position: relative;
    }
    .testi-track {
      position: relative;
      min-height: 300px;
    }
    .testi {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: clamp(24px, 4vw, 64px);
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transform: scale(0.965);
      transition: opacity 620ms var(--ease-out),
                  transform 900ms var(--ease-out),
                  visibility 0s 620ms;
    }
    .testi.is-active {
      opacity: 1;
      visibility: visible;
      transform: scale(1);
      transition: opacity 620ms var(--ease-out),
                  transform 900ms var(--ease-out),
                  visibility 0s 0s;
    }
    .testi.is-active .testi__quote { animation: testiQuoteIn 900ms 120ms var(--ease-out) both; }
    .testi.is-active .testi__author { animation: testiQuoteIn 800ms 280ms var(--ease-out) both; }
    @keyframes testiQuoteIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .testi__avatar {
      width: clamp(120px, 14vw, 180px);
      aspect-ratio: 1;
      border-radius: 50%;
      background-size: cover;
      background-position: center;
      background-color: var(--navy-2);
      border: 3px solid var(--gold);
    }
    .testi__body { max-width: 760px; }
    .testi__quote {
      font-family: var(--font-serif);
      font-style: italic;
      font-size: clamp(20px, 2.4vw, 30px);
      line-height: 1.5;
      color: var(--ink);
      position: relative;
    }
    .testi__quote::before {
      content: "“";
      position: absolute;
      top: -40px; left: -20px;
      font-size: 120px;
      color: var(--gold);
      opacity: 0.3;
      font-family: var(--font-serif);
      line-height: 1;
    }
    .testi__author {
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 14px;
    }
    .testi__author strong {
      font-weight: 600;
      color: var(--ink);
      font-size: 16px;
    }
    .testi__author span {
      display: block;
      color: var(--muted-2);
      font-size: 13px;
      letter-spacing: 0.05em;
      margin-top: 2px;
    }
    .testi__author-divider { width: 1px; height: 28px; background: var(--line); }
    .testi-nav {
      display: flex;
      gap: 12px;
      margin-top: 56px;
      justify-content: center;
    }
    .testi-dot {
      position: relative;
      width: 36px; height: 3px;
      background: var(--line);
      border-radius: var(--radius-pill);
      overflow: hidden;
      transition: width 480ms cubic-bezier(0.18, 0.7, 0.2, 1),
                  background 360ms var(--ease-out);
    }
    .testi-dot::after {
      content: "";
      position: absolute; inset: 0;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
    }
    .testi-dot.is-active {
      width: 72px;
      background: var(--line);
    }
    .testi-dot.is-active::after {
      animation: testiProgress 6500ms linear forwards;
    }
    @keyframes testiProgress {
      from { transform: scaleX(0); }
      to   { transform: scaleX(1); }
    }

    /* =========================================================
       CONTACTO
       ========================================================= */
    .contacto {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(40px, 6vw, 96px);
      align-items: start;
    }
    .contacto__info h2 { margin-bottom: 20px; }
    .contacto__info p { color: rgba(245, 239, 230, 0.78); margin-bottom: 40px; max-width: 44ch; }
    .contacto__details { display: grid; gap: 20px; margin-bottom: 40px; }
    .contacto__detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line-cream);
    }
    .contacto__detail-icon {
      width: 40px; height: 40px;
      border-radius: var(--radius-sm);
      background: rgba(232, 106, 31, 0.18);
      color: var(--gold);
      display: grid; place-items: center;
      flex-shrink: 0;
    }
    .contacto__detail-content small {
      display: block;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245, 239, 230, 0.55);
      margin-bottom: 4px;
    }
    .contacto__detail-content a, .contacto__detail-content span {
      color: var(--cream);
      font-size: 15px;
      transition: color var(--t-fast) var(--ease-out);
    }
    .contacto__detail-content a:hover { color: var(--gold); }
    .contacto__socials {
      display: flex;
      gap: 12px;
    }
    .contacto__social {
      width: 44px; height: 44px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(245, 239, 230, 0.25);
      border-radius: 50%;
      color: var(--cream);
      transition: background var(--t-fast) var(--ease-out),
                  border-color var(--t-fast) var(--ease-out),
                  color var(--t-fast) var(--ease-out),
                  transform var(--t-fast) var(--ease-out);
    }
    .contacto__social:hover {
      background: var(--gold);
      border-color: var(--gold);
      color: var(--ink);
      transform: translateY(-2px);
    }

    /* Form */
    .form {
      background: var(--cream);
      padding: clamp(28px, 4vw, 48px);
      border-radius: var(--radius);
      color: var(--ink);
    }
    .form h3 {
      font-size: clamp(22px, 2vw, 26px);
      margin-bottom: 8px;
    }
    .form > p { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
    .form__row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .field { display: flex; flex-direction: column; gap: 6px; }
    .field--full { grid-column: 1 / -1; }
    .field label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .field input, .field textarea {
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background-color: var(--paper);
      background-image: linear-gradient(var(--gold), var(--gold));
      background-size: 0% 1.5px;
      background-position: 0 100%;
      background-repeat: no-repeat;
      font-size: 15px;
      min-height: 48px;
      transition: border-color 220ms var(--ease-out),
                  background-size 440ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .field select {
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--paper);
      font-size: 15px;
      min-height: 48px;
      transition: border-color 220ms var(--ease-out),
                  box-shadow 220ms var(--ease-out);
    }
    .field textarea { min-height: 130px; resize: vertical; font-family: inherit; }
    .field input:focus, .field textarea:focus {
      outline: none;
      border-color: var(--ink);
      background-size: 100% 1.5px;
    }
    .field select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(232, 106, 31, 0.15);
    }
    /* Label rises slightly when the field is being filled */
    .field { transition: transform 240ms var(--ease-out); }
    .field label {
      transition: color 240ms var(--ease-out), letter-spacing 240ms var(--ease-out);
    }
    .field:focus-within label { color: var(--gold); letter-spacing: 0.12em; }
    .field.is-error input, .field.is-error textarea, .field.is-error select { border-color: #C2410C; }
    .field__error {
      font-size: 12px;
      color: #C2410C;
      min-height: 16px;
    }
    .form__submit {
      margin-top: 8px;
      width: 100%;
      background: var(--gold);
      color: #FFFFFF;
    }
    .form__submit:hover { background: var(--gold-2); }
    .form__submit:disabled { opacity: 0.6; cursor: not-allowed; }
    .form__success {
      margin-top: 16px;
      padding: 14px 16px;
      background: rgba(16, 122, 80, 0.10);
      border: 1px solid rgba(16, 122, 80, 0.3);
      border-radius: var(--radius-sm);
      color: #107A50;
      font-size: 14px;
      display: none;
    }
    .form__success.is-shown { display: block; }

    /* =========================================================
       FOOTER
       ========================================================= */
    .footer {
      background: var(--ink);
      color: rgba(245, 239, 230, 0.7);
      padding: clamp(60px, 8vw, 96px) 0 32px;
    }
    .footer__top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: clamp(32px, 4vw, 64px);
      padding-bottom: 56px;
      border-bottom: 1px solid rgba(245, 239, 230, 0.08);
    }
    .footer__logo { height: 72px; filter: invert(1) brightness(1.6); }
    .footer__brand p {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.7;
      max-width: 36ch;
    }
    .footer__col h4 {
      font-family: var(--font-sans);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer__col ul { display: grid; gap: 12px; }
    .footer__col a {
      position: relative;
      display: inline-block;
      font-size: 14px;
      padding-bottom: 2px;
      transition: color 220ms var(--ease-out),
                  transform 380ms cubic-bezier(0.18, 0.7, 0.2, 1);
    }
    .footer__col a::after {
      content: "";
      position: absolute;
      left: 0; bottom: 0;
      width: 100%; height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1);
    }
    .footer__col a:hover { color: var(--gold); transform: translateX(4px); }
    .footer__col a:hover::after { transform: scaleX(0.5); }
    .footer__bottom {
      margin-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      font-size: 12px;
      letter-spacing: 0.05em;
      color: rgba(245, 239, 230, 0.5);
    }
    .footer__legal { display: flex; gap: 24px; flex-wrap: wrap; }

    /* =========================================================
       WHATSAPP FLOATING
       ========================================================= */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      width: 60px; height: 60px;
      border-radius: 50%;
      background: #25D366;
      color: white;
      display: grid;
      place-items: center;
      box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
      z-index: 80;
      transition: transform var(--t-med) var(--ease-out);
      animation: waPop 0.6s var(--ease-out) 1.2s both;
    }
    .wa-float::before {
      content: "";
      position: absolute;
      inset: -6px;
      border-radius: 50%;
      background: #25D366;
      opacity: 0.4;
      animation: waPulse 2.4s ease-out 1.4s 2; /* solo 2 ciclos, después queda quieto */
      z-index: -1;
    }
    @keyframes waPulse {
      0%   { transform: scale(1);   opacity: 0.4; }
      80%  { transform: scale(1.6); opacity: 0; }
      100% { transform: scale(1.6); opacity: 0; }
    }
    @keyframes waPop {
      from { transform: scale(0) rotate(-30deg); opacity: 0; }
      to   { transform: scale(1) rotate(0); opacity: 1; }
    }
    .wa-float:hover { transform: scale(1.08); }
    .wa-float svg { width: 30px; height: 30px; }

    /* =========================================================
       REVEAL ANIMATIONS
       ========================================================= */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 900ms var(--ease-out),
                  transform 900ms var(--ease-out);
      transition-delay: var(--reveal-delay, 0ms);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }
    .reveal--left { transform: translateX(-32px); }
    .reveal--left.is-visible { transform: none; }
    .reveal--scale { transform: scale(0.96); opacity: 0; }
    .reveal--scale.is-visible { transform: none; opacity: 1; }

    /* =========================================================
       RESPONSIVE
       ========================================================= */
    @media (max-width: 1024px) {
      .destinos__grid { grid-template-columns: repeat(2, 1fr); }
      .manifesto { grid-template-columns: 1fr; }
      .manifesto__left { position: static; }
      .nosotros { grid-template-columns: 1fr; }
      .contacto { grid-template-columns: 1fr; }
      .stats { grid-template-columns: repeat(2, 1fr); }
      .stat:nth-child(3) { border-left: 0; padding-left: 0; }
      .footer__top { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 720px) {
      .nav__links, .nav__cta { display: none; }
      .nav__burger { display: inline-flex; }
      .destinos__grid { grid-template-columns: 1fr; gap: 20px; }
      .stats { grid-template-columns: 1fr 1fr; gap: 24px; }
      .stat { padding-left: 0 !important; border-left: 0 !important; }
      .form__row { grid-template-columns: 1fr; }
      .footer__top { grid-template-columns: 1fr; gap: 40px; }
      /* Mobile hero: badge centrado al tope + overlay con gradiente
         para que el mapa respire arriba y el texto tenga contraste abajo */
      .hero__overlay {
        background: linear-gradient(180deg,
          rgba(10, 8, 5, 0.38) 0%,
          rgba(10, 8, 5, 0.55) 45%,
          rgba(10, 8, 5, 0.92) 100%);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
      }
      .hero__badge {
        display: flex;
        top: calc(var(--nav-h) + 14px);
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 10px;
        padding: 7px 14px;
        letter-spacing: 0.1em;
        white-space: nowrap;
      }
      .hero__badge .dot {
        width: 5px; height: 5px;
        box-shadow: 0 0 0 3px rgba(232, 106, 31, 0.28);
      }
      .testi { grid-template-columns: 1fr; text-align: center; justify-items: center; }
      .testi__avatar { margin: 0 auto; }
      .testi__quote::before { display: none; }
      .nosotros__copy p:first-of-type::first-letter { font-size: 48px; }
      .wa-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
    }

    @media (max-width: 420px) {
      h1 { font-size: 38px; }
      .nav__brand-name { font-size: 16px; }
    }

    /* =========================================================
       MOTION REDUCED
       ========================================================= */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
      /* Disable hero spotlight — show map clear without overlay */
      .hero { cursor: default !important; }
      .hero__overlay { opacity: 0 !important; }
      .hero__glow { opacity: 0 !important; }
      /* Disable magnetic and tilt — keep elements at rest */
      .btn { transform: none !important; }
      .destino { transform: none !important; }
      .nosotros__badge { opacity: 1 !important; transform: none !important; }
      .wa-float::before { display: none; }
    }

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

/* === Post-publish fixes === */
.contacto__title { font-size: clamp(28px, 3.4vw, 44px); max-width: 14ch; }
.contacto__lede { max-width: 42ch; font-size: clamp(15px, 1.3vw, 17px); }