    /* ── TOKENS ── */
    :root {
      --wine:      #5C1628;
      --wine-d:    #3D0D18;
      --wine-bg:   rgba(92,22,40,.06);
      --wine-bdr:  rgba(92,22,40,.18);
      --gold:      #C8960C;
      --gold-bg:   rgba(200,150,12,.08);
      --gold-bdr:  rgba(200,150,12,.25);
      --paper:     #FAF8F4;
      --paper-d:   #F0EAE0;
      --blush:     #FDF3EE;
      --text:      #1C1410;
      --textb:     #4A3828;
      --textm:     #8C7A68;
      --border:    rgba(28,20,16,.1);
      --white:     #FFFFFF;
      --radius:    14px;
      --font-b:    'Bricolage Grotesque', system-ui, sans-serif;
      --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
      --ease:      cubic-bezier(.22,1,.36,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    [id] { scroll-margin-top: 50px; }
    body {
      font-family: var(--font-body);
      background: var(--paper);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img  { max-width: 100%; display: block; }
    a    { text-decoration: none; color: inherit; }

    .w    { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
    .w-md { max-width:  800px; margin: 0 auto; padding: 0 32px; }
    .w-sm { max-width:  600px; margin: 0 auto; padding: 0 32px; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 14px 28px; font-family: var(--font-b); font-size: .875rem;
      font-weight: 700; letter-spacing: .03em; border: none; cursor: pointer;
      border-radius: 100px; line-height: 1;
      transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), transform .15s var(--ease);
      white-space: nowrap; -webkit-tap-highlight-color: transparent;
      text-decoration: none;
    }
    .btn--wine  { background: var(--wine); color: #fff; }
    .btn--wine:hover  { background: var(--wine-d); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(107,24,48,.3); color: #fff; }
    .btn--gold  { background: var(--gold); color: var(--text); }
    .btn--gold:hover  { background: #E8B520; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,150,12,.3); color: var(--text); }
    .btn--outline { background: transparent; border: 1.5px solid var(--wine); color: var(--wine); }
    .btn--outline:hover { background: var(--wine-bg); color: var(--wine); }
    .btn--ghost { background: transparent; border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
    .btn--ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.08); color: #fff; }
    .btn:active { transform: scale(.97); transition-duration: .1s; }
    .btn--lg { padding: 17px 38px; font-size: 1rem; }
    .btn--xl { padding: 20px 48px; font-size: 1.0625rem; }
    .btn--block { width: 100%; }

    /* ── SECTION SPACING ── */
    .section { padding: 100px 0; }
    .section--sm { padding: 60px 0; }

    /* ── SHARED SECTION HEADER ── */
    .sh { text-align: center; margin-bottom: 64px; }
    .sh-tag {
      display: inline-block; font-size: .7rem; font-weight: 700;
      letter-spacing: .14em; text-transform: uppercase;
      padding: 5px 16px; border-radius: 100px; margin-bottom: 20px;
    }
    .sh-tag--wine   { background: var(--wine-bg); color: var(--wine); border: 1px solid var(--wine-bdr); }
    .sh-tag--gold   { background: var(--gold-bg); color: var(--gold); border: 1px solid var(--gold-bdr); }
    .sh-tag--white  { background: rgba(255,255,255,.12); color: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.15); }
    .sh-title {
      font-family: var(--font-b); font-weight: 800; line-height: 1.05;
      text-wrap: balance; letter-spacing: -.02em;
    }
    .sh-title--dark  { color: var(--wine); }
    .sh-title--white { color: #fff; }
    .sh-title em     { font-style: italic; color: var(--wine); }
    .sh-title--white em { color: rgba(255,255,255,.75); }
    .sh-size-lg { font-size: clamp(2.25rem, 5vw, 3.5rem); }
    .sh-size-md { font-size: clamp(1.875rem, 4vw, 2.75rem); }
    .sh-sub {
      margin-top: 18px; font-size: 1.0625rem; line-height: 1.75; max-width: 520px;
      margin-left: auto; margin-right: auto;
    }
    .sh-sub--muted { color: var(--textm); }
    .sh-sub--white { color: rgba(255,255,255,.68); }

    /* ─────────────────────────────────────────
       BANNER
    ───────────────────────────────────────── */
    #banner {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      background: var(--wine); padding: 10px 20px; text-align: center;
    }
    .banner-inner {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: .8125rem; color: #fff; font-weight: 500; flex-wrap: wrap;
      justify-content: center;
    }
    .banner-dot { width: 7px; height: 7px; border-radius: 50%; background: #FFD580; animation: blink 1.6s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
    .banner-inner strong { font-weight: 800; }
    .banner-cta {
      background: rgba(255,255,255,.22); border: 1px solid rgba(255,255,255,.4);
      color: #fff; padding: 3px 13px; border-radius: 100px;
      font-size: .75rem; font-weight: 700; transition: background .15s;
    }
    .banner-cta:hover { background: rgba(255,255,255,.35); }
    .banner-close {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: rgba(255,255,255,.55);
      cursor: pointer; font-size: 1.25rem; line-height: 1; transition: color .15s;
    }
    .banner-close:hover { color: #fff; }

    /* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */

    body { padding-top: 42px; }

    /* ─────────────────────────────────────────
       HERO
    ───────────────────────────────────────── */
    .hero {
      position: relative;
      z-index: 0;
      overflow: hidden;
      background-color: #3D0D18;
      padding: 128px 0 148px;
    }
    .hero-bg-video {
      position: absolute; inset: 0; z-index: -2;
      width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%;
    }
    .hero::after {
      content: "";
      position: absolute; inset: 0; z-index: -1;
      background: linear-gradient(180deg, rgba(20,6,12,.5), rgba(20,6,12,.72));
    }
    @media (max-width: 900px) {
      .hero-bg-video { object-position: 62% 42%; }
    }
    @media (prefers-reduced-motion: reduce) {
      .hero-bg-video { display: none; }
      .hero { background: url('assets/hero-poster.jpg') 50% 42% / cover no-repeat, #3D0D18; }
    }

    @keyframes hero-fade-up {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-inner {
      max-width: 1100px; margin: 0 auto; padding: 0 32px;
      display: grid; grid-template-columns: 1fr 460px;
      gap: 72px; align-items: center;
    }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-photo { margin-top: 40px; padding: 0 20px; height: 420px; }
    }
    @media (max-width: 640px) {
      .ios-chat { top: -4%; bottom: 6%; left: 8px; right: 8px; }
      .ios-msg { max-width: 148px; }
      .ios-bubble { font-size: .78rem; padding: 7px 10px; }
    }

    .hero-kicker {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.8); background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2); padding: 5px 14px; border-radius: 100px;
      margin-bottom: 24px;
      animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) both;
    }
    .hero-title {
      margin-bottom: 22px; line-height: 1;
    }
    .hero-title--poster {
      display: flex; flex-direction: column;
      animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) .08s both;
    }
    .hero-eyebrow {
      font-family: var(--font-b); font-size: clamp(.9375rem, 2vw, 1.25rem);
      font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
      color: #FFD580; margin-bottom: 4px;
    }
    .hero-poster-main {
      font-family: var(--font-b);
      font-size: clamp(2.75rem, 6.4vw, 5.25rem);
      color: #fff; line-height: .96; font-weight: 500;
      letter-spacing: -.02em;
    }
    .hero-poster-accent {
      display: block;
      font-family: 'DM Serif Display', Georgia, serif; font-style: italic; font-weight: 400;
      font-size: clamp(1.875rem, 4.2vw, 2.875rem);
      color: #FFD580; letter-spacing: -.01em; margin-top: 8px;
    }
    .hero-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) .2s both; }
    .pill {
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
      color: rgba(255,255,255,.88); font-size: .8125rem; font-weight: 600;
      padding: 6px 14px; border-radius: 100px;
    }
    .pill--wine { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.88); }
    .pill--red  { background: rgba(255,120,100,.15); border-color: rgba(255,120,100,.3); color: #FFB0A0; }
    .pill--gold { background: #FFD580; border-color: #FFD580; color: #3D0D18; font-weight: 700; }
    .hero-alliance-logos {
      display: inline-flex; align-items: center; gap: 18px; width: fit-content;
      margin-bottom: 28px;
      animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) .28s both;
    }
    .hero-alliance-pc { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
    .hero-alliance-x {
      display: flex; align-items: center; justify-content: center;
      height: 44px; line-height: 1; font-size: 1.875rem; font-weight: 700; color: #FFD580;
      transform: translateY(-6px);
    }
    .hero-alliance-turkish { height: 39px; width: auto; display: block; transform: translateY(-3px); }
    @media (max-width: 640px) {
      .hero-alliance-logos { gap: 12px; }
      .hero-alliance-pc { height: 38px; }
      .hero-alliance-x { height: 38px; font-size: 1.5rem; transform: translateY(-5px); }
      .hero-alliance-turkish { height: 33px; transform: translateY(-2px); }
    }
    .hero-ctas   { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; animation: hero-fade-up .6s cubic-bezier(.23,1,.32,1) .36s both; }
    @media (prefers-reduced-motion: reduce) {
      .hero-kicker, .hero-title--poster, .hero-pills, .hero-alliance-logos, .hero-ctas { animation: none; opacity: 1; transform: none; }
    }
    .hero-trust  { margin-top: 20px; font-size: .8125rem; color: rgba(255,255,255,.5); }
    .hero-trust strong { color: rgba(255,255,255,.8); }

    /* hero photo */
    .hero-photo {
      position: relative; align-self: stretch;
    }

    /* iOS chat bubbles over photo — masked viewport, messages enter from the bottom */
    .ios-chat {
      position: absolute; z-index: 2;
      top: -20%; bottom: 20%; left: -52px; right: -52px;
      overflow: hidden; pointer-events: none;
    }
    .ios-chat-track {
      position: absolute; left: 0; right: 0; bottom: 0;
      display: flex; flex-direction: column; gap: 64px;
      transition: transform .8s var(--ease);
    }
    .ios-msg {
      display: flex; flex-direction: column; gap: 3px;
      max-width: 230px;
      opacity: 0; transform: scale(.88) translateY(8px);
      transition: opacity .35s ease, transform .38s var(--ease);
    }
    .ios-msg.visible { opacity: 1; transform: scale(1) translateY(0); }
    .ios-msg--left  { align-self: flex-start; }
    .ios-msg--right { align-self: flex-end; }

    .ios-bubble {
      background: rgba(200,253,209,.95);
      backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
      border-radius: 18px 18px 18px 5px;
      padding: 9px 13px;
      font-family: -apple-system, 'SF Pro Text', system-ui, "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
      font-size: .875rem; line-height: 1.45; color: #1C1C1E;
      box-shadow: 0 2px 20px rgba(0,0,0,.22), inset 0 0 0 .5px rgba(200,253,209,.6);
    }
    .ios-msg--right .ios-bubble { border-radius: 18px 18px 5px 18px; }

    .ios-dots { display: flex; align-items: center; gap: 4px; min-height: 1.3em; }
    .ios-dots span {
      width: 7px; height: 7px; border-radius: 50%; background: #8E8E93;
      animation: dot-bounce .9s infinite ease-in-out;
    }
    .ios-dots span:nth-child(2) { animation-delay: .15s; }
    .ios-dots span:nth-child(3) { animation-delay: .3s; }
    @keyframes dot-bounce {
      0%,60%,100% { transform: translateY(0); opacity: .45; }
      30%          { transform: translateY(-5px); opacity: 1; }
    }
    .ios-text { display: none; }

    /* ─────────────────────────────────────────
       ¿SOS VOS? — pain points
    ───────────────────────────────────────── */
    .sosvos { background: var(--white); padding: 100px 0 64px; }

    /* placeholder temporal para tiles de foto sin imagen todavia — sacar cuando se carguen las fotos finales */
    .ph-slot {
      display: flex; align-items: center; justify-content: center;
      background: repeating-linear-gradient(45deg, #f1ece6, #f1ece6 10px, #e8e0d6 10px, #e8e0d6 20px);
      border: 1px dashed rgba(92,22,40,.3);
      color: rgba(92,22,40,.5);
      font-family: var(--font-body); font-size: .8rem; font-weight: 700;
      letter-spacing: .04em; text-transform: uppercase;
    }

    /* mood board bento — hero tall + tiles chicos/anchos mixtos, del safari al mar turquesa */
    .bento-mood-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(3, 1fr);
      grid-template-areas: "hero c1 c2 c2" "hero c3 c4 c5" "c6 c7 c7 c8";
      gap: 16px; aspect-ratio: 1.5;
    }
    .bento-mood--hero { grid-area: hero; }
    .bento-mood--c1   { grid-area: c1; }
    .bento-mood--c2   { grid-area: c2; }
    .bento-mood--c3   { grid-area: c3; }
    .bento-mood--c4   { grid-area: c4; }
    .bento-mood--c5   { grid-area: c5; }
    .bento-mood--c6   { grid-area: c6; }
    .bento-mood--c7   { grid-area: c7; }
    .bento-mood--c8   { grid-area: c8; }
    .bento-mood-grid.rv { opacity: 1; transform: none; }
    @keyframes bento-card-in {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .bento-mood-item {
      border-radius: 24px; overflow: hidden; position: relative;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 24px; text-align: center; box-sizing: border-box;
      opacity: 0;
      transition: box-shadow .2s var(--ease), transform .2s var(--ease);
    }
    /* one-by-one swipe-up + fade, via animation (not transition) so it never touches the hover feedback below */
    .bento-mood-grid.on .bento-mood-item { animation: bento-card-in .55s var(--ease) both; }
    .bento-mood-grid.on .bento-mood-item:nth-child(1) { animation-delay: 0s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(2) { animation-delay: .07s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(3) { animation-delay: .14s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(4) { animation-delay: .21s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(5) { animation-delay: .28s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(6) { animation-delay: .35s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(7) { animation-delay: .42s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(8) { animation-delay: .49s; }
    .bento-mood-grid.on .bento-mood-item:nth-child(9) { animation-delay: .56s; }
    @media (prefers-reduced-motion: reduce) {
      .bento-mood-grid.on .bento-mood-item:nth-child(n) { animation: none; opacity: 1; transform: none; }
    }
    @media (hover: hover) and (pointer: fine) {
      .bento-mood-item:hover { box-shadow: 0 12px 32px rgba(28,20,16,.18); }
      .bento-mood-item.bento-mood--photo:hover { transform: scale(1.02); }
    }
    .bento-mood--photo {
      background-size: cover; background-repeat: no-repeat; background-position: center;
    }
    @media (max-width: 900px) {
      .bento-mood-grid {
        grid-template-columns: 1fr; grid-template-rows: auto; aspect-ratio: auto;
        grid-template-areas: "hero" "c1" "c2" "c3" "c4" "c5" "c6" "c7" "c8";
      }
      .bento-mood-grid > * { aspect-ratio: 4/3; }
      .bento-mood--hero { background-position: center 20%; }
      .bento-mood--c4 { background-position: center 20%; }
      .bento-mood--c7 { background-position: 45% center; }
    }

    .sosvos-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }
    @media (max-width: 900px) { .sosvos-grid { grid-template-columns: repeat(2,1fr); } }
    @media (max-width: 540px) { .sosvos-grid { grid-template-columns: 1fr; } }
    .sv-card {
      background: var(--paper-d); border-radius: var(--radius);
      padding: 36px 28px; border: 1px solid var(--border);
      text-align: center;
      transition: transform .2s var(--ease), box-shadow .2s;
    }
    .sv-card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(107,24,48,.1); }
    .sv-emoji { width: 48px; height: 48px; margin-bottom: 16px; display: block; object-fit: contain; margin-left: auto; margin-right: auto; }
    .sv-title { font-family: var(--font-b); font-size: 1.0625rem; font-weight: 800; letter-spacing: -.01em; color: var(--wine); line-height: 1.3; margin-bottom: 12px; }
    .sv-desc  { font-family: var(--font-body); font-size: .9rem; line-height: 1.7; color: var(--textb); }

    /* ─────────────────────────────────────────
       AGUSTINA — credentials
    ───────────────────────────────────────── */
    .agustina { background: #e8ddd0; overflow: hidden; }
    .agu-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }
    @media (max-width: 800px) { .agu-inner { grid-template-columns: 1fr; } }

    .agu-photo-col { position: relative; min-height: 560px; overflow: hidden; }
    .agu-photo {
      position: absolute; inset: 0;
      background: url('assets/agu-photo.jpg') center 70%/cover no-repeat;
    }

    .agu-text-col {
      padding: 80px 60px 80px max(40px, calc((100vw - 1100px) / 2));
      display: flex; flex-direction: column; justify-content: center;
    }
    @media (max-width: 800px) {
      .agu-photo-col { min-height: 380px; }
      .agu-text-col  { padding: 52px 32px; }
      .agu-photo { background-position: center 20% !important; }
    }

    .agu-tag    { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--wine); margin-bottom: 16px; }
    .agu-headline {
      font-family: var(--font-b); font-size: clamp(1.75rem, 3vw, 2.375rem);
      font-weight: 800; letter-spacing: -.025em; color: var(--text);
      line-height: 1.1; margin-bottom: 12px; text-wrap: balance;
    }
    .agu-subname {
      font-family: var(--font-b); font-size: 1.0625rem; font-weight: 700;
      color: var(--wine); margin-bottom: 32px; letter-spacing: -.01em;
    }
    .agu-insights { display: flex; flex-direction: column; margin-bottom: 28px; }
    .agu-insight {
      position: relative;
      font-family: var(--font-body); font-size: .9375rem; line-height: 1.65;
      color: var(--textb); padding: 12px 0 12px 24px;
      border-bottom: 1px solid rgba(92,22,40,.1);
    }
    .agu-insights .agu-insight:first-child { border-top: 1px solid rgba(92,22,40,.1); }
    .agu-insight::before {
      content: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='7' y1='0.5' x2='7' y2='13.5' stroke='%235C1628' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='0.5' y1='7' x2='13.5' y2='7' stroke='%235C1628' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='2.05' y1='2.05' x2='11.95' y2='11.95' stroke='%235C1628' stroke-width='1.6' stroke-linecap='round'/%3E%3Cline x1='11.95' y1='2.05' x2='2.05' y2='11.95' stroke='%235C1628' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
      position: absolute; left: 0; top: 16px;
    }
    .agu-quote  {
      font-family: var(--font-body); font-style: italic;
      font-size: 1.0625rem; line-height: 1.65;
      color: var(--textb);
      border-left: 2px solid var(--wine);
      padding-left: 16px; margin-top: 4px;
    }

    /* ─────────────────────────────────────────
       CTA STRIP
    ───────────────────────────────────────── */
    .cta-strip { background: var(--paper-d); padding: 64px 32px; text-align: center; }
    .cta-strip-title {
      font-family: var(--font-b);
      font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; letter-spacing: -.02em;
      color: var(--text); margin-bottom: 8px; text-wrap: balance;
    }
    .cta-strip-sub { font-size: 1rem; color: var(--textm); margin-bottom: 28px; }

    /* ─────────────────────────────────────────
       TIMELINE GRUPALES
    ───────────────────────────────────────── */
    .grupales-sec { background: var(--white); padding: 56px 0; }
    .grupales-outer {
      width: 100vw; position: relative; left: 50%; right: 50%;
      margin-left: -50vw; margin-right: -50vw;
    }
    .grupales-rows { display: flex; flex-direction: column; gap: 14px; }
    /* cada fila es su propia tira que se mueve sola, en loop infinito */
    .grupales-row { overflow: hidden; width: 100%; }
    .grupales-row-track {
      display: flex;
      width: max-content;
      animation: grupales-scroll 42s linear infinite;
    }
    .grupales-row-track--rev { animation-direction: reverse; }
    @keyframes grupales-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(calc(var(--block-w, 50%) * -1)); }
    }
    @media (prefers-reduced-motion: reduce) {
      .grupales-row-track { animation: none; }
    }
    /* cada bloque: 7 fotos con anchos alternados, angosta (1.13:1) / ancha (1.88:1) — misma proporción de la referencia,
       ahora a tamaño fijo (el doble que antes) en vez de encajar en el ancho de pantalla, porque la tira se desplaza sola */
    .grupales-bento {
      flex: none; display: flex; gap: 12px; height: 319px; padding-right: 14px; box-sizing: border-box;
    }
    .grupales-photo {
      flex: none; height: 100%; min-width: 0;
      border-radius: 18px; overflow: hidden; position: relative;
      background-size: cover; background-repeat: no-repeat; background-position: center;
    }
    .grupales-bento > :nth-child(1), .grupales-bento > :nth-child(3), .grupales-bento > :nth-child(6) {
      aspect-ratio: 1.88;
    }
    .grupales-bento > :nth-child(2), .grupales-bento > :nth-child(4), .grupales-bento > :nth-child(5), .grupales-bento > :nth-child(7) {
      aspect-ratio: 1.13;
    }
    /* selector combinado (más específico) para que gane sobre las reglas base de arriba */
    .grupales-bento.grupales-bento--flip > :nth-child(2), .grupales-bento.grupales-bento--flip > :nth-child(4), .grupales-bento.grupales-bento--flip > :nth-child(7) {
      aspect-ratio: 1.88;
    }
    .grupales-bento.grupales-bento--flip > :nth-child(1), .grupales-bento.grupales-bento--flip > :nth-child(3), .grupales-bento.grupales-bento--flip > :nth-child(6) {
      aspect-ratio: 1.13;
    }
    @media (max-width: 700px) {
      .grupales-bento { height: 180px; gap: 8px; }
    }

    /* ─────────────────────────────────────────
       RUTA PASO A PASO
    ───────────────────────────────────────── */
    .recorrido { background: var(--paper); padding: 80px 0 0; }
    .ruta-sub {
      font-size: .72rem; font-weight: 700; letter-spacing: .14em;
      text-transform: uppercase; color: var(--wine); margin-top: 14px;
    }
    .ruta-strip {
      display: grid; grid-template-columns: repeat(7, 1fr);
      margin-top: 52px; overflow: hidden;
    }
    .ruta-card {
      position: relative; aspect-ratio: 3/5; overflow: hidden; cursor: default;
    }
    .ruta-photo {
      position: absolute; inset: 0;
      background: center/cover no-repeat;
      transition: transform .5s var(--ease);
    }
    .ruta-card:hover .ruta-photo { transform: scale(1.04); }
    .ruta-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.18) 55%, rgba(0,0,0,0) 100%);
    }
    .ruta-badge {
      position: absolute; top: 14px; left: 0; right: 0;
      display: flex; justify-content: center;
    }
    .ruta-badge span {
      background: var(--wine); color: #fff;
      font-size: .58rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
      padding: 4px 10px; border-radius: 100px; white-space: nowrap;
    }
    .ruta-info {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 14px 18px;
      text-align: center;
    }
    .ruta-city {
      font-family: var(--font-b); font-weight: 700; color: #fff; line-height: 1.1;
      font-size: clamp(.9rem, 1.5vw, 1.375rem); letter-spacing: -.01em;
    }
    .ruta-hotel {
      font-size: .6rem; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
      color: rgba(255,255,255,.6); margin-top: 5px;
    }
    /* placeholder tones per city */
    .ruta-ph-1 { background: url('hoteles/Arusha-Kibo-Palace.webp') center/cover no-repeat; }
    .ruta-ph-2 { background: url('hoteles/eileenstrees.jpg') center/cover no-repeat; }
    .ruta-ph-3 { background: url('hoteles/Baobab-.jpg') center/cover no-repeat; }
    .ruta-ph-4 { background: url('hoteles/Ngorongoro.jpg') center/cover no-repeat; }
    .ruta-ph-5 { background: url('hoteles/arusha3.jpg') center/cover no-repeat; }
    .ruta-ph-6 { background: url('hoteles/Zanzibar-Riu-Jambo.jpg') center/cover no-repeat; }
    .ruta-ph-7 { background: url('hoteles/SpiceTree.jpg') center/cover no-repeat; }
    @media (max-width: 860px) {
      .ruta-strip { grid-template-columns: repeat(4, 1fr); }
      .ruta-card { aspect-ratio: 2/3; }
    }
    @media (max-width: 540px) {
      .ruta-strip { grid-template-columns: repeat(2, 1fr); }
    }

    /* ─────────────────────────────────────────
       EXPERIENCIAS — wine bg
    ───────────────────────────────────────── */
    .experiencias { background: var(--wine-d); padding: 100px 0 0; }
    .experiencias .sh-title { line-height: .9; }
    .exp-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      margin-top: 52px;
    }
    .exp-item {
      position: relative; height: 380px; overflow: hidden;
    }
    .exp-item-photo {
      position: absolute; inset: 0;
      background: center/cover no-repeat;
      background-color: rgba(255,255,255,.08);
      transition: transform .5s var(--ease);
    }
    .exp-item:hover .exp-item-photo { transform: scale(1.04); }
    .exp-item-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,0) 100%);
    }
    .exp-item-body {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px 32px 72px 40px;
      display: flex; flex-direction: column; gap: 6px;
    }
    .exp-item:nth-child(odd) { border-right: none; }
    .exp-emoji { font-size: 2.25rem; line-height: 1; }
    .exp-emoji-img { width: 42px; height: 42px; object-fit: contain; margin-bottom: 10px; display: block; }
    .exp-title { font-family: var(--font-b); font-size: clamp(1rem, 1.5vw, 1.1875rem); font-weight: 600; color: #fff; line-height: 1.3; }
    .exp-ph-1,.exp-ph-2,.exp-ph-3,.exp-ph-4,
    .exp-ph-5,.exp-ph-6,.exp-ph-7,.exp-ph-8 { background-color: rgba(255,255,255,.07); }
    .exp-loc { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 2px; }
    @media (max-width: 560px) { .exp-grid { grid-template-columns: 1fr; } }

    /* ─────────────────────────────────────────
       ITINERARIO ACORDEÓN
    ───────────────────────────────────────── */
    .itin-acc { background: var(--paper); padding: 80px 0 100px; }
    .itin-acc-list { margin-top: 52px; border-top: 1px solid var(--border); }
    .itin-acc-item { border-bottom: 1px solid var(--border); }
    .itin-acc-trigger {
      width: 100%; display: flex; align-items: center; gap: 32px;
      padding: 20px 20px; cursor: pointer; background: none; border: none;
      text-align: left; color: inherit; box-sizing: border-box;
      transition: background .2s var(--ease);
    }
    .itin-acc-trigger:hover { background: var(--wine); border-radius: 8px; }
    .itin-acc-trigger:hover .itin-acc-title { color: #fff; }
    .itin-acc-trigger:hover .itin-acc-date { color: rgba(255,255,255,.6); }
    .itin-acc-trigger:hover .itin-acc-num { color: rgba(255,255,255,.7); }
    .itin-acc-trigger:hover .itin-acc-arrow { border-color: rgba(255,255,255,.4); color: #fff; }
    .itin-acc-item.open > .itin-acc-trigger { background: var(--wine); border-radius: 8px; }
    .itin-acc-item.open > .itin-acc-trigger .itin-acc-title { color: #fff; }
    .itin-acc-item.open > .itin-acc-trigger .itin-acc-date { color: rgba(255,255,255,.6); }
    .itin-acc-item.open > .itin-acc-trigger .itin-acc-num { color: rgba(255,255,255,.7); }
    .itin-acc-num {
      font-family: var(--font-b); font-size: .75rem; font-weight: 700;
      letter-spacing: .12em; color: var(--wine); min-width: 28px;
      font-variant-numeric: tabular-nums;
    }
    .itin-acc-head { flex: 1; display: flex; flex-direction: column; gap: 4px; }
    .itin-acc-date {
      font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--textm);
    }
    .itin-acc-title {
      font-family: var(--font-b); font-size: clamp(1rem, 1.4vw, 1.25rem);
      font-weight: 600; color: var(--text); transition: color .2s;
    }
    .itin-acc-arrow {
      width: 32px; height: 32px; border: 1.5px solid var(--border);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; transition: transform .35s var(--ease), border-color .2s;
      color: var(--textm);
    }
    .itin-acc-arrow svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
    .itin-acc-item.open .itin-acc-arrow { border-color: var(--wine); color: var(--wine); }
    .itin-acc-item.open .itin-acc-arrow svg { transform: rotate(180deg); }
    .itin-acc-body {
      display: grid; grid-template-rows: 0fr;
      transition: grid-template-rows .35s var(--ease);
    }
    .itin-acc-item.open .itin-acc-body { grid-template-rows: 1fr; }
    .itin-acc-body-inner { overflow: hidden; padding-top: 20px; }
    .itin-acc-desc {
      padding: 0 0 32px 60px; font-size: .9375rem; line-height: 1.7;
      color: var(--textm); max-width: 680px; margin-top: 0;
    }

    /* ─────────────────────────────────────────
       EXPERIENCIAS CON FOTOS
    ───────────────────────────────────────── */
    .exp-photo-sec { background: var(--wine-d); padding: 100px 0; }
    .exp-photo-grid {
      display: grid; grid-template-columns: repeat(4, 1fr);
      margin-top: 52px;
    }
    .exp-photo-item {
      position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: default;
    }
    .exp-photo-bg {
      position: absolute; inset: 0; background: center/cover no-repeat;
      transition: transform .5s var(--ease);
    }
    .exp-photo-item:hover .exp-photo-bg { transform: scale(1.04); }
    .exp-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 100%);
    }
    .exp-photo-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 20px 18px 22px; text-align: center;
    }
    .exp-photo-emoji { width: 36px; height: 36px; object-fit: contain; margin: 0 auto 10px; display: block; }
    .exp-photo-title {
      font-family: var(--font-b); font-size: clamp(.85rem, 1.2vw, 1.05rem);
      font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 5px;
    }
    .exp-photo-loc {
      font-size: .6rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: rgba(255,255,255,.5);
    }
    /* placeholder colors until photos are loaded */
    .exp-ph-1 { background-color: #2a1a10; }
    .exp-ph-2 { background-color: #1a1020; }
    .exp-ph-3 { background-color: #0d1a15; }
    .exp-ph-4 { background-color: #1a1510; }
    .exp-ph-5 { background-color: #200a10; }
    .exp-ph-6 { background-color: #0f1520; }
    .exp-ph-7 { background-color: #1a1020; }
    .exp-ph-8 { background-color: #0a1520; }
    @media (max-width: 860px) { .exp-photo-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .exp-photo-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ─────────────────────────────────────────
       BANNER EMOCIONAL
    ───────────────────────────────────────── */
    .banner-emo {
      background: var(--wine-d) url("assets/banner-emo.jpg") center/cover no-repeat;
      padding: 100px 0;
      position: relative;
    }
    .banner-emo::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(40, 5, 12, 0.435);
    }
    .banner-emo-inner { position: relative; }
    .banner-emo-inner {
      max-width: 1100px; margin: 0 auto;
      padding: 0 32px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
    }
    .banner-emo-quote {
      flex: 0 0 58%;
      align-self: center;
      font-family: var(--font-b);
      font-size: clamp(1.75rem, 3.15vw, 2.7rem);
      font-weight: 300;
      color: rgba(255,255,255,.92);
      line-height: 1.0;
      letter-spacing: -.025em;
    }
    .banner-emo-quote em {
      font-style: normal;
      font-weight: 700;
      color: #FFD580;
    }
    .banner-emo-note {
      display: block;
      margin-top: 6px;
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: 0;
      line-height: 1.4;
      color: rgba(255,255,255,.75);
    }
    .banner-emo-cta {
      flex: 0 0 auto;
      display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
    }
    .banner-emo-cta-q {
      font-family: var(--font-b);
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 600;
      color: rgba(255,255,255,.92);
      line-height: 1.05;
      letter-spacing: -.01em;
      text-align: right;
    }
    .banner-emo-btn {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--wine); color: #e8ddd0;
      border: none;
      font-family: var(--font-b); font-size: .875rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 16px 32px; border-radius: 100px;
      text-decoration: none; transition: background .2s, color .2s, transform .2s;
      white-space: nowrap;
    }
    .banner-emo-btn:hover { background: var(--wine-d); transform: translateY(-2px); }
    .banner-emo-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
    @media (max-width: 760px) {
      .banner-emo { padding: 0; }
      .banner-emo-inner {
        flex-direction: column; justify-content: space-between;
        min-height: 520px;
        padding: 56px 28px 56px;
        text-align: center; align-items: center; gap: 0;
      }
      .banner-emo-quote {
        flex: none;
        font-size: clamp(1.6rem, 5.5vw, 2rem);
        text-align: center;
      }
      .banner-emo-break { display: none; }
      .banner-emo-cta { align-items: center; width: 100%; }
      .banner-emo-cta-q {
        font-size: clamp(1.6rem, 5.5vw, 2rem);
        font-weight: 300;
        text-align: center;
      }
    }

    /* ─────────────────────────────────────────
       QUÉ INCLUYE — simplified
    ───────────────────────────────────────── */
    .incluye { background: var(--white); padding: 100px 0; }
    .inc-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; }
    @media (max-width: 720px) { .inc-grid { grid-template-columns: 1fr; gap: 40px; } }
    .inc-col-h { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding-bottom: 14px; margin-bottom: 18px; border-bottom: 2px solid; }
    .inc-col--y .inc-col-h { color: #2A6E48; border-color: #2A6E48; }
    .inc-col--n .inc-col-h { color: var(--textm); border-color: var(--border); }
    .inc-list  { list-style: none; display: flex; flex-direction: column; gap: 11px; }
    .inc-i     { display: flex; align-items: flex-start; gap: 10px; font-size: .9375rem; line-height: 1.5; color: var(--textb); }
    .inc-dot   { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .6rem; font-weight: 800; flex-shrink: 0; margin-top: 2px; }
    .inc-dot--y { background: rgba(42,110,72,.12); color: #2A6E48; }
    .inc-dot--n { background: rgba(140,122,104,.12); color: var(--textm); }

    /* ─────────────────────────────────────────
       TESTIMONIOS
    ───────────────────────────────────────── */
    .testimonios { background: var(--paper); padding: 100px 0; }
    .testi-outer { overflow: hidden; margin-top: 40px; }
    .testi-track {
      display: flex; width: 300%;
      transition: transform .55s cubic-bezier(.4,0,.2,1);
    }
    .testi-slide {
      flex: 0 0 33.3333%; display: flex; gap: 16px; align-items: stretch;
    }
    .testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
    .testi-dot {
      width: 8px; height: 8px; border-radius: 50%; padding: 0;
      background: rgba(92,22,40,.2); border: none; cursor: pointer;
      transition: background .25s, transform .25s;
    }
    .testi-dot--active { background: var(--wine); transform: scale(1.35); }
    @media (max-width: 640px) {
      .testi-outer { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
      .testi-track { width: auto !important; transform: none !important; display: flex; }
      .testi-slide { flex: none; width: calc(100vw - 64px); scroll-snap-align: start; flex-direction: column; gap: 16px; margin-right: 16px; }
      .tc { flex: none; width: 100%; }
      .testi-dots { display: none; }
    }
    .tc {
      flex: 0 0 calc(33.3333% - 11px); background: var(--white); border-radius: var(--radius); padding: 24px;
      border: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 14px;
      transition: box-shadow .2s, transform .2s;
    }
    a.tc:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
    .tc-head { display: flex; align-items: center; gap: 12px; }
    .tc-av   {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .9375rem; color: #fff; flex-shrink: 0;
    }
    .tc-name  { font-size: .9375rem; font-weight: 700; color: var(--text); }
    .tc-meta  { font-size: .75rem; color: var(--textm); margin-top: 1px; }
    .tc-stars { color: #FBBC04; font-size: .875rem; letter-spacing: .05em; }
    .tc-text  { font-size: .9375rem; line-height: 1.7; color: var(--textb); flex: 1; }
    .tc-src   {
      font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--textm); padding-top: 10px; border-top: 1px solid var(--border);
      display: flex; align-items: center; gap: 6px;
    }
    .tc--ig { background: #FAF5FF; border-color: #E8DAFF; }
    .tc--wa { background: #F0FDF5; border-color: #BBF0D0; }

    .testi-featured {
      margin-top: 24px;
      background: var(--wine); border-radius: var(--radius);
      padding: 36px 48px;
      display: flex; align-items: center; gap: 32px;
    }
    .testi-feat-q {
      font-family: var(--font-b); font-weight: 400; font-style: normal;
      font-size: clamp(1.05rem, 2vw, 1.375rem); line-height: 1.5;
      color: rgba(255,255,255,.92); flex: 1;
    }
    @media (max-width: 640px) {
      .testi-featured { flex-direction: column; padding: 28px 24px; gap: 20px; }
    }
    /* ─────────────────────────────────────────
       PRECIO — wine dark background (como el PDF)
    ───────────────────────────────────────── */
    .precio { background: var(--wine-d); padding: 100px 0; display: none; }
    .precio .sh-tag { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.12); }
    .precio .sh-title { color: #fff; }
    .precio-box {
      max-width: 540px; margin: 0 auto;
      background: rgba(255,255,255,.06); border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      padding: 52px 44px; text-align: center;
      position: relative;
    }
    @media (max-width: 560px) { .precio-box { padding: 36px 24px; } }
    .precio-tag {
      display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; background: rgba(200,150,12,.15); color: rgba(200,150,12,.9);
      border: 1px solid rgba(200,150,12,.3); padding: 4px 14px; border-radius: 100px; margin-bottom: 28px;
    }
    .precio-sup { font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.42); margin-bottom: 6px; }
    .precio-num {
      font-family: var(--font-b); font-size: clamp(3rem, 8vw, 4.75rem);
      font-weight: 800; letter-spacing: -.03em;
      color: #fff; font-variant-numeric: tabular-nums; line-height: 1;
      margin-bottom: 6px;
    }
    .precio-curr { font-family: var(--font-b); font-size: .38em; font-weight: 700; color: rgba(200,150,12,.9); vertical-align: super; }
    .precio-note { font-size: .875rem; color: rgba(255,255,255,.45); margin-bottom: 32px; }
    .precio-divider { height: 1px; background: rgba(255,255,255,.1); margin: 28px 0; }
    .precio-steps { display: flex; flex-direction: column; gap: 12px; text-align: left; margin-bottom: 32px; }
    .ps { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
    .ps-l { font-size: .9375rem; color: rgba(255,255,255,.65); }
    .ps-v { font-weight: 800; color: rgba(200,150,12,.9); font-variant-numeric: tabular-nums; white-space: nowrap; }
    .precio-progress { margin-bottom: 32px; }
    .precio-prog-top { display: flex; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.42); margin-bottom: 8px; }
    .precio-prog-top span:last-child { color: #FF8080; font-weight: 700; }
    .precio-bar { height: 6px; background: rgba(255,255,255,.08); border-radius: 100px; overflow: hidden; }
    .precio-bar-fill { height: 100%; background: #C04030; border-radius: 100px; width: 90%; }
    .precio-wa { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: .8125rem; color: rgba(255,255,255,.4); }
    .precio-wa a { color: rgba(200,150,12,.9); font-weight: 600; }
    .precio-fine { font-size: .8125rem; color: rgba(255,255,255,.35); margin-top: 16px; line-height: 1.6; }

    /* ─────────────────────────────────────────
       FORMULARIO
    ───────────────────────────────────────── */
    .form-sec { background: var(--blush); padding: 100px 0; }
    .form-box {
      max-width: 540px; margin: 0 auto;
      background: var(--white); border-radius: 20px;
      padding: 50px 42px;
      box-shadow: 0 4px 40px rgba(107,24,48,.08);
      text-align: center;
    }
    @media (max-width: 560px) { .form-box { padding: 36px 22px; } }
    .form-icon  { font-size: 2.25rem; margin-bottom: 16px; }
    .form-title { font-family: var(--font-b); font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-bottom: 8px; }
    .form-sub   { font-size: 1rem; color: var(--textm); margin-bottom: 28px; line-height: 1.65; }
    .form-incentive {
      background: var(--wine-bg); border: 1px dashed var(--wine-bdr);
      border-radius: 10px; padding: 13px 16px; margin-bottom: 22px;
      font-size: .9375rem; color: var(--textb); text-align: left; line-height: 1.55;
    }
    .form-incentive strong { color: var(--text); }
    .form-fields { display: flex; flex-direction: column; gap: 11px; margin-bottom: 14px; }
    .form-field {
      width: 100%; padding: 14px 18px; font-family: var(--font-body); font-size: 1rem;
      border: 1.5px solid var(--border); border-radius: 100px;
      background: var(--paper); color: var(--text);
      transition: border-color .15s, background .15s;
      -webkit-appearance: none; appearance: none;
    }
    .form-field:focus { outline: none; border-color: var(--wine); background: var(--white); }
    .form-field::placeholder { color: var(--textm); }
    .form-fine { font-size: .8125rem; color: var(--textm); margin-top: 12px; line-height: 1.5; }
    .form-fine a { color: var(--wine); }

    /* ─────────────────────────────────────────
       FAQ
    ───────────────────────────────────────── */
    .faq { background: var(--white); padding: 100px 0; }
    .faq-list { margin-top: 48px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item summary {
      display: flex; align-items: center; justify-content: space-between; gap: 20px;
      padding: 22px 0; cursor: pointer;
      font-size: 1.0625rem; font-weight: 700; color: var(--text);
      list-style: none; transition: color .2s var(--ease);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item:hover summary { color: var(--wine); }
    .faq-ch { width: 18px; height: 18px; flex-shrink: 0; color: var(--textm); transition: transform .3s var(--ease); }
    .faq-item[open] .faq-ch { transform: rotate(45deg); }
    .faq-item p, .faq-item ul { padding: 0 0 22px; font-size: .9375rem; line-height: 1.78; color: var(--textb); }
    .faq-item ul { list-style: none; margin: 0; }
    .faq-item ul li { position: relative; padding-left: 18px; }
    .faq-item ul li::before { content: "–"; position: absolute; left: 0; color: var(--wine); }
    @media (prefers-reduced-motion: no-preference) {
      .faq-item[open] > p, .faq-item[open] > ul { animation: faq-reveal .3s var(--ease); }
    }
    @keyframes faq-reveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

    /* ─────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────── */
    .footer { background: var(--text); padding: 52px 32px 36px; }
    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px;
    }
    @media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 32px; } }
    .ft-logo  { font-family: var(--font-b); font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: rgba(200,150,12,.9); margin-bottom: 10px; }
    .ft-desc  { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.32); max-width: 240px; }
    .ft-socials { display: flex; gap: 10px; margin-top: 18px; }
    .ft-soc {
      width: 36px; height: 36px; border-radius: 9px;
      background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
      display: flex; align-items: center; justify-content: center;
      font-size: .875rem; font-weight: 700;
      transition: background .15s, color .15s;
    }
    .ft-soc:hover { background: rgba(255,255,255,.14); color: #fff; }
    .ft-col-h { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 16px; }
    .ft-links { display: flex; flex-direction: column; gap: 10px; }
    .ft-link  { font-size: .875rem; color: rgba(255,255,255,.45); transition: color .15s; }
    .ft-link:hover { color: rgba(255,255,255,.9); }
    .ft-bottom {
      max-width: 1100px; margin: 32px auto 0;
      padding-top: 22px; border-top: 1px solid rgba(255,255,255,.06);
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 10px;
    }
    .ft-copy { font-size: .8rem; color: rgba(255,255,255,.2); }

    /* ─────────────────────────────────────────
       PHOTO BANNER FULL WIDTH
    ───────────────────────────────────────── */
    .photo-banner {
      width: 100%; height: 480px; position: relative;
      background: url('assets/photo-banner.jpg') center/cover no-repeat;
      display: flex; align-items: center; justify-content: center;
    }
    .photo-banner-overlay {
      position: absolute; inset: 0;
      background: rgba(17,17,17,.30);
    }
    .photo-banner-content {
      position: relative; z-index: 1;
      text-align: center; max-width: 720px; padding: 0 32px;
    }
    .photo-banner-line1 {
      display: block; text-align: center; white-space: nowrap;
      font-family: var(--font-b); font-weight: 400;
      font-size: clamp(1rem, 2.4vw, 1.75rem); color: rgba(255,255,255,.82);
      letter-spacing: -.04em; line-height: 1.1; margin-bottom: 2px;
    }
    .photo-banner-line2 {
      display: block; text-align: center; white-space: nowrap;
      font-family: var(--font-b); font-weight: 700;
      font-size: clamp(1.125rem, 2.6vw, 2rem); color: #FFD580;
      letter-spacing: -.025em; line-height: 1.1;
    }

    /* ─────────────────────────────────────────
       WA FLOAT
    ───────────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 99;
      width: 54px; height: 54px; border-radius: 50%;
      background: #25D366; color: #fff;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 18px rgba(37,211,102,.32);
      transition: transform .2s, box-shadow .2s;
    }
    .wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.44); }
    .wa-float:active { transform: scale(.94); transition-duration: .1s; }
    .wa-float svg { width: 27px; height: 27px; }

    /* ─────────────────────────────────────────
       POPUP
    ───────────────────────────────────────── */
    .popup-overlay {
      position: fixed; inset: 0; z-index: 300;
      background: rgba(28,20,16,.55);
      backdrop-filter: blur(5px);
      display: flex; align-items: center; justify-content: center; padding: 20px;
      opacity: 0; visibility: hidden; pointer-events: none;
      transition: opacity .22s var(--ease), visibility 0s linear .22s;
    }
    .popup-overlay.show {
      opacity: 1; visibility: visible; pointer-events: auto;
      transition: opacity .22s var(--ease), visibility 0s linear;
    }
    .popup-box {
      background: var(--white); border-radius: 20px;
      max-width: 420px; width: 100%; padding: 40px 32px;
      position: relative; text-align: center;
      transform: scale(.94); opacity: 0;
      transition: transform .28s var(--ease), opacity .22s var(--ease);
    }
    .popup-overlay.show .popup-box { transform: scale(1); opacity: 1; }
    .popup-close {
      position: absolute; top: 12px; right: 14px;
      background: none; border: none; font-size: 1.375rem;
      color: var(--textm); cursor: pointer;
      transition: color .15s var(--ease), transform .15s var(--ease);
    }
    .popup-close:hover { color: var(--text); }
    .popup-close:active { transform: scale(.9); }
    .popup-badge { display: inline-block; background: #FEF3C7; border: 1px solid #F6D25E; color: #7A5A00; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 13px; border-radius: 100px; margin-bottom: 16px; }
    .popup-title { font-family: var(--font-b); font-size: 1.625rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); margin-bottom: 8px; text-wrap: balance; }
    .popup-sub   { font-size: .9375rem; color: var(--textm); line-height: 1.65; margin-bottom: 20px; }
    .popup-fields { display: flex; flex-direction: column; gap: 10px; }
    .popup-fine  { font-size: .75rem; color: var(--textm); margin-top: 10px; line-height: 1.5; }


    /* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
    @media (prefers-reduced-motion: no-preference) {
      .rv { opacity: 0; transform: translateY(20px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
      .rv.on { opacity: 1; transform: none; }
      .d1 { transition-delay: .07s; }
      .d2 { transition-delay: .14s; }
      .d3 { transition-delay: .21s; }
      .d4 { transition-delay: .28s; }
      .d5 { transition-delay: .35s; }
    }

    @media (max-width: 480px) {
      .section, .section--sm { padding: 72px 0; }
      .precio-box, .form-box { border-radius: 16px; }
    }


    /* ─────────────────────────────────────────
       PRECIO V2
    ───────────────────────────────────────── */
    .precio2 { background: var(--paper); overflow: hidden; }
    .precio2-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: stretch;
    }
    @media (max-width: 800px) { .precio2-inner { grid-template-columns: 1fr; } }

    /* Photo column — left */
    .precio2-photo-col { position: relative; min-height: 560px; overflow: hidden; }
    .precio2-photo-bg {
      position: absolute; inset: 0;
      background: url("assets/zanzibar/web/beach-panoramica.jpg") center 55%/cover no-repeat;
    }

    /* Price column — right */
    .precio2-text-col {
      padding: 80px 80px 80px 72px;
      display: flex; flex-direction: column; justify-content: center;
    }
    @media (max-width: 800px) {
      .precio2-text-col { padding: 60px 32px; }
    }
    .precio2-headline {
      font-family: var(--font-b); font-size: clamp(1.75rem, 3vw, 2.375rem);
      font-weight: 800; letter-spacing: -.025em; color: var(--wine);
      line-height: 1.1; margin-bottom: 28px; text-wrap: balance;
    }
    .precio2-eyebrow {
      font-size: .62rem; font-weight: 800; letter-spacing: .18em;
      text-transform: uppercase; color: var(--textm); margin-bottom: 14px;
    }
    .precio2-promo-badge {
      display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
      background: var(--wine); color: #fff;
      font-family: var(--font-b); font-size: .68rem; font-weight: 800;
      letter-spacing: .1em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
    }
    .precio2-was-row {
      display: flex; align-items: center; gap: 9px; margin-bottom: 4px;
    }
    .precio2-was-label {
      font-size: .68rem; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--textm);
    }
    .precio2-was {
      font-family: var(--font-b); font-size: 1.5rem; font-weight: 800;
      color: var(--wine); opacity: .5; text-decoration: line-through;
    }
    .precio2-main {
      font-family: var(--font-b); font-weight: 800; letter-spacing: -.04em;
      color: var(--wine); line-height: 1; font-variant-numeric: tabular-nums;
      font-size: clamp(3.5rem, 6vw, 5.5rem); margin-bottom: 24px;
    }
    .precio2-curr { font-size: .35em; vertical-align: super; letter-spacing: -.02em; }
    .precio2-bullets {
      display: flex; flex-direction: column; gap: 7px; margin-bottom: 40px;
    }
    .precio2-bullet {
      display: flex; align-items: center; gap: 12px;
      font-size: .9rem; color: var(--textb); line-height: 1.4;
    }
    .precio2-bullet::before {
      content: ''; width: 5px; height: 5px; border-radius: 50%;
      background: var(--wine); flex-shrink: 0;
    }
    .precio2-installments {
      border-top: 1.5px solid var(--border); padding-top: 16px; margin-bottom: 32px;
    }
    .precio2-installment-count {
      font-family: var(--font-b); font-size: .75rem; font-weight: 700;
      letter-spacing: .06em; text-transform: uppercase; color: var(--textm);
      margin-bottom: 4px;
    }
    .precio2-installment-big { font-size: 1.6em; letter-spacing: -.01em; }
    .precio2-noint {
      font-weight: 800; color: var(--wine);
    }
    .precio2-installment-amount {
      font-family: var(--font-b); font-weight: 800; letter-spacing: -.03em;
      color: var(--wine); font-variant-numeric: tabular-nums; line-height: 1;
      font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }
    .precio2-occ-split { display: grid; grid-template-columns: auto auto; justify-content: start; column-gap: 24px; }
    .precio2-occ-item { padding: 0 16px; border-right: 1.5px solid var(--border); }
    .precio2-occ-item:first-child { padding-left: 0; padding-right: 42px; }
    .precio2-occ-item:last-child { padding-right: 0; border-right: none; }
    @media (max-width: 480px) {
      .precio2-occ-item { padding: 0 8px; }
    }
    .precio2-split {
      display: grid; grid-template-columns: 1fr 1fr;
      border-top: 1.5px solid var(--border); margin-bottom: 20px;
    }
    .precio2-split-item { padding: 14px 0; border-right: 1.5px solid var(--border); }
    .precio2-split-item:first-child { padding-right: 28px; }
    .precio2-split-item:last-child { padding-left: 28px; border-right: none; }
    .precio2-split-label {
      font-size: .6rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: var(--textm); margin-bottom: 6px;
    }
    .precio2-split-note {
      font-size: .6rem; font-weight: 800; letter-spacing: .14em;
      text-transform: uppercase; color: var(--textm); margin-top: 4px;
    }
    .precio2-split-amount {
      font-family: var(--font-b); font-size: clamp(1.7rem, 9.5vw, 2.25rem);
      font-weight: 800; letter-spacing: -.04em; color: var(--wine);
      font-variant-numeric: tabular-nums; line-height: 1;
    }
    @media (min-width: 481px) {
      .precio2-split-amount { font-size: clamp(1.65rem, 3vw, 2.5rem); }
    }
    .precio2-split-curr2 { font-size: .42em; vertical-align: super; letter-spacing: -.02em; }
    .precio2-split-when { font-size: .72rem; color: var(--textm); margin-top: 4px; }
    .precio2-ctas { display: flex; gap: 8px; flex-wrap: wrap; }
    .precio2-btn-p {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--wine); color: #e8ddd0;
      font-family: var(--font-b); font-size: .8rem; font-weight: 800;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 15px 26px; border-radius: 100px; text-decoration: none;
      transition: background .2s, transform .2s; white-space: nowrap;
    }
    .precio2-btn-p:hover { background: var(--wine-d); transform: translateY(-2px); }
    .precio2-btn-s {
      display: inline-flex; align-items: center; gap: 9px;
      background: transparent; color: var(--wine);
      font-family: var(--font-b); font-size: .8rem; font-weight: 800;
      letter-spacing: .06em; text-transform: uppercase;
      padding: 14px 26px; border-radius: 100px;
      border: 1.5px solid var(--wine); text-decoration: none;
      transition: background .2s, color .2s, transform .2s; white-space: nowrap;
    }
    .precio2-btn-s:hover { background: var(--wine); color: #e8ddd0; transform: translateY(-2px); }
    .precio2-fine { font-size: .72rem; color: var(--textm); margin-top: 14px; line-height: 1.6; }








    /* ─────────────────────────────────────────
       EXPERIENCIAS OPCIONALES EN DESTINO
    ───────────────────────────────────────── */
    .expop { background: var(--wine); padding: 72px 0; overflow: hidden; }
    .expop-inner {
      display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center;
    }
    .expop-heading {
      font-family: var(--font-b); font-weight: 800; letter-spacing: -.02em;
      font-size: clamp(1.75rem, 3vw, 2.5rem); color: #fff;
      margin: 14px 0 28px; text-wrap: balance;
    }
    .expop-item-text { font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,.75); margin-bottom: 20px; }
    .expop-note { font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: 24px; }

    .expop-photos { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; margin-bottom: 28px; }
    .expop-polaroid {
      position: absolute; width: 300px; background: #fff; border-radius: 0;
      padding: 16px 16px 46px; box-shadow: 0 20px 40px rgba(0,0,0,.16);
      opacity: 0; transition: opacity .5s var(--ease), transform .5s var(--ease), box-shadow .2s var(--ease);
    }
    .expop-polaroid--1 { transform: rotate(-8deg) translate(-140px, -10px) scale(.9); z-index: 1; }
    .expop-polaroid--2 { transform: rotate(7deg) translate(140px, 60px) scale(.9); z-index: 2; }
    .expop-photos.on .expop-polaroid--1 { opacity: 1; transform: rotate(-8deg) translate(-140px, -30px) scale(1); }
    .expop-photos.on .expop-polaroid--2 { opacity: 1; transform: rotate(7deg) translate(140px, 40px) scale(1); transition-delay: .35s; }
    @media (hover: hover) and (pointer: fine) {
      .expop-photos.on .expop-polaroid--1:hover,
      .expop-photos.on .expop-polaroid--2:hover {
        transition-delay: 0s; box-shadow: 0 28px 50px rgba(0,0,0,.24);
      }
      .expop-photos.on .expop-polaroid--1:hover { transform: rotate(-8deg) translate(-140px, -42px) scale(1.03); }
      .expop-photos.on .expop-polaroid--2:hover { transform: rotate(7deg) translate(140px, 28px) scale(1.03); }
    }
    .expop-polaroid-img {
      aspect-ratio: 1/1; border-radius: 0; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .expop-polaroid-cap {
      font-family: var(--font-b); font-style: italic; font-size: .875rem;
      text-align: center; color: var(--textm); margin-top: 14px;
    }
    @media (max-width: 900px) {
      .expop { padding-bottom: 40px; }
      .expop-inner { grid-template-columns: 1fr; gap: 40px; }
      .expop-photos { min-height: 360px; margin-bottom: 0; }
    }
    @media (max-width: 480px) {
      .expop-polaroid { width: 200px; padding: 12px 12px 36px; }
      .expop-polaroid--1 { transform: rotate(-8deg) translate(-59px, -30px); }
      .expop-polaroid--2 { transform: rotate(7deg) translate(59px, 40px); }
      .expop-photos.on .expop-polaroid--1 { transform: rotate(-8deg) translate(-59px, -50px) scale(1); }
      .expop-photos.on .expop-polaroid--2 { transform: rotate(7deg) translate(59px, 30px) scale(1); }
    }


    /* ─────────────────────────────────────────
       VUELOS — flight schedule
    ───────────────────────────────────────── */
    .vuelos { background: var(--wine-d); padding: 80px 0; }
    .vuelos-head { margin-bottom: 52px; }
    .vuelos-tag {
      font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      color: rgba(255,255,255,.45); margin-bottom: 16px;
    }
    .vuelos-title {
      font-family: var(--font-b); font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1;
    }
    .vuelos-title span { color: #FFD580; font-weight: 300; }
    .vuelos-caption { font-size: .9375rem; color: rgba(255,255,255,.55); margin-top: 12px; }
    .vuelos-list { border-top: 1px solid rgba(255,255,255,.1); }
    .vuelo-row {
      display: grid;
      grid-template-columns: 90px 1fr auto;
      align-items: center; gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .vuelo-airline { opacity: .85; }
    .vuelo-airline-logo { width: 84px; height: auto; display: block; }
    .vuelo-route {
      display: flex; align-items: center; gap: 16px;
    }
    .vuelo-code {
      font-family: var(--font-b); font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1;
      min-width: 64px;
    }
    .vuelo-dash {
      flex: 1; height: 1px;
      background-image: repeating-linear-gradient(to right, rgba(255,255,255,.25) 0, rgba(255,255,255,.25) 6px, transparent 6px, transparent 14px);
    }
    .vuelo-arrow { color: rgba(255,255,255,.5); font-size: .85rem; flex-shrink: 0; }
    .vuelo-meta {
      display: flex; align-items: center; gap: 24px;
      font-family: var(--font-b);
    }
    .vuelo-time {
      font-size: clamp(1rem, 1.8vw, 1.25rem); font-weight: 700;
      color: #fff; letter-spacing: -.01em; white-space: nowrap;
    }
    .vuelo-time sup { font-size: .6em; color: rgba(255,255,255,.55); }
    .vuelo-sep { color: rgba(255,255,255,.2); font-size: 1.2rem; }
    .vuelo-date {
      font-size: clamp(.75rem, 1.2vw, .9rem); font-weight: 400;
      color: rgba(255,255,255,.45); white-space: nowrap;
    }
    .vuelos-note {
      margin-top: 28px; font-size: .8125rem;
      color: rgba(255,255,255,.35); letter-spacing: .01em;
    }
    .vuelos-notes {
      margin-top: 28px; display: flex; flex-direction: column; gap: 8px;
      list-style: none; padding-left: 0;
    }
    .vuelos-note-i {
      position: relative; padding-left: 16px; font-size: .8125rem;
      color: rgba(255,255,255,.35); letter-spacing: .01em;
    }
    .vuelos-note-i::before {
      content: ''; position: absolute; left: 0; top: .55em;
      width: 4px; height: 4px; border-radius: 50%;
      background: #FFD580;
    }
    @media (max-width: 640px) {
      .vuelo-row { grid-template-columns: 1fr; gap: 10px; padding: 22px 0; }
      .vuelo-meta { gap: 12px; flex-wrap: wrap; }
    }


