/* =====================================================================
   MUNDO JOVEN GRUPOS × IKU 2026 — Micrositio
   Estilo editorial cálido (Bricolage Grotesque) + rojo Mundo Joven
   ===================================================================== */

/* ----------------------- Tokens ----------------------- */
:root {
  /* Marca */
  --red: #c92035;
  --red-dark: #a91629;

  /* Editorial cálido */
  --bg: #fbfaf7;          /* off-white cálido */
  --cream: #f3eae0;       /* sand para secciones alternas */
  --cream-2: #ece0d2;
  --espresso: #2e2622;    /* texto / elementos oscuros */
  --espresso-2: #4a403a;
  --muted: #8c8076;
  --line: #e8ddce;        /* borde cálido */
  --sand: #ead7be;        /* acento durazno */
  --sand-soft: #f6ead9;
  --card: #ffffff;
  --success: #16a34a;

  --radius: 24px;
  --radius-lg: 32px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 8px rgba(46,38,34,.05), 0 8px 24px rgba(46,38,34,.05);
  --shadow-md: 0 10px 30px rgba(46,38,34,.10);
  --shadow-lg: 0 24px 60px rgba(46,38,34,.16);
  --max: 1200px;
  --ease: cubic-bezier(.16,.84,.44,1);

  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; color: var(--espresso); background: var(--bg);
  font-family: var(--font-body); font-size: 16.5px; line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; color: var(--espresso); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); font-weight: 800; letter-spacing: -.035em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); font-weight: 700; }
h3 { font-size: 1.15rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ----------------------- Helpers ----------------------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; width: 100%; }
.container.narrow { max-width: 900px; }
.section { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--espresso { background: var(--espresso); color: #f3eade; }
.section--espresso h2, .section--espresso h3 { color: #fff; }
.center { text-align: center; }
.muted { color: var(--muted); }
.lead { font-size: 1.15rem; color: var(--espresso-2); }
.rule { border: none; border-top: 1px solid var(--line); margin: 0; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: .76rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  background: var(--sand-soft); padding: 7px 14px; border-radius: 999px; margin-bottom: 20px;
}
.section--espresso .eyebrow { background: rgba(255,255,255,.1); color: var(--sand); }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 26px; border-radius: 999px;
  font-family: var(--font-body); font-size: .96rem; font-weight: 600; white-space: nowrap;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, border-color .2s, color .2s;
}
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(201,32,53,.26); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(201,32,53,.34); }
.btn-dark { background: var(--espresso); color: #fff; }
.btn-dark:hover { background: #1d1714; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn-secondary:hover { background: var(--espresso); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: #fff; color: var(--espresso); border: 1px solid var(--line); }
.btn-ghost:hover { background: var(--cream); transform: translateY(-2px); }
.btn-on-dark { background: #fff; color: var(--espresso); }
.btn-on-dark:hover { background: var(--sand-soft); transform: translateY(-2px); }
.btn-outline-dark { background: transparent; border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-outline-dark:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 1.02rem; }
.btn-block { display: flex; width: 100%; }
.center-btn { display: flex; width: fit-content; margin: 40px auto 0; }
.btn-wa { color: var(--success); border-color: var(--line); background: #fff; }
.btn-wa:hover { background: #f0fdf4; color: var(--success); border-color: #bbf7d0; }

/* ----------------------- Header ----------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,247,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner { max-width: var(--max); margin: 0 auto; padding: 0 28px; height: 76px; display: flex; align-items: center; gap: 26px; }

/* Co-brand lockup */
.cobrand { display: flex; align-items: center; gap: 14px; }
.cobrand img.mj { height: 26px; width: auto; }
.cobrand .divider { width: 1px; height: 30px; background: var(--line); }
.cobrand img.iku { height: 38px; width: auto; }

.main-nav { display: flex; gap: 28px; margin-left: 14px; }
.main-nav a { font-size: .94rem; font-weight: 500; color: var(--espresso-2); padding: 6px 0; position: relative; }
.main-nav a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--red); transition: width .25s var(--ease); }
.main-nav a:hover { color: var(--espresso); }
.main-nav a:hover::after { width: 100%; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--espresso); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ----------------------- HERO · Banner oficial IKU + intro ----------------------- */
.hero-banner-section { background: var(--bg); }
.hero-banner { width: 100%; line-height: 0; background: var(--cream); }
.hero-banner img { display: block; width: 100%; height: auto; }
@media (min-width: 901px) {
  .hero-banner img { height: clamp(360px, 44vw, 520px); object-fit: cover; object-position: center; }
}
.hero-intro { max-width: 860px; padding: 48px 0 4px; }
.hero-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.hero-badges .chip { display: inline-flex; align-items: center; gap: 7px; background: var(--sand-soft); border: 1px solid var(--sand); color: var(--espresso); padding: 8px 15px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.hero-intro h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 16ch; }
.hero-sub { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.15rem, 2.4vw, 1.55rem); color: var(--red); margin: 14px 0 0; }
.hero-text { color: var(--espresso-2); max-width: 620px; margin-top: 14px; font-size: 1.08rem; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-quickfacts { display: flex; flex-wrap: wrap; gap: 22px 46px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.hero-quickfacts .qf b { display: block; font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; line-height: 1; color: var(--espresso); }
.hero-quickfacts .qf span { font-size: .82rem; color: var(--muted); margin-top: 4px; display: block; }

/* ----------------------- Contenido full width ----------------------- */
.layout-split { display: block; }
.block { margin-bottom: 0; }
.block + .block { margin-top: 80px; }

/* trip headline */
.trip-headline h2 { margin-bottom: 8px; }
.trip-meta { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: .95rem; }
.trip-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ----------------------- Summary cards ----------------------- */
.summary-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-ic { font-size: 1.7rem; display: block; margin-bottom: 14px; }
.info-card h3 { margin-bottom: 6px; }
.info-card p { color: var(--muted); font-size: .92rem; }

/* ----------------------- Feature (emotion) ----------------------- */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.feature.reverse { grid-template-columns: 1fr 1.05fr; }
.feature.reverse .feature-media { order: 2; }
.feature-media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3.2; box-shadow: var(--shadow-md); }
.feature-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-media:hover img { transform: scale(1.05); }
.link-arrow { color: var(--red); font-weight: 600; display: inline-flex; gap: 6px; margin-top: 10px; }
.link-arrow:hover { text-decoration: underline; }

/* ----------------------- Stats band ----------------------- */
.stats-band { display: grid; grid-template-columns: repeat(6,1fr); gap: 8px; }
.stat { text-align: center; padding: 22px 10px; }
.stat b { display: block; font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 800; color: var(--red); line-height: 1; letter-spacing: -.03em; }
.stat span { font-size: .82rem; color: var(--muted); margin-top: 8px; display: block; }
.section--espresso .stat b { color: var(--sand); }
.section--espresso .stat span { color: rgba(243,234,222,.7); }

/* ----------------------- Itinerary timeline (estático, sin colapsar) ----------------------- */
.timeline { border-top: 1px solid var(--line); }
.day { border-bottom: 1px solid var(--line); padding: 22px 0 20px; }
.day-head { display: grid; grid-template-columns: 64px 1fr; align-items: baseline; gap: 18px; }
.day-num { font-family: var(--font-display); font-size: 1.7rem; font-weight: 800; color: var(--red); line-height: 1; }
.day-info .day-date { font-size: .8rem; color: var(--muted); letter-spacing: .02em; }
.day-info .day-title { font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; margin-top: 2px; }
.day-detail { padding: 8px 0 0 82px; }
.day-detail p { color: var(--espresso-2); font-size: 1.04rem; }
.itin-note { display: inline-flex; align-items: center; gap: 8px; background: var(--sand-soft); border: 1px solid var(--sand); color: var(--espresso-2); padding: 10px 16px; border-radius: 12px; font-size: .9rem; font-weight: 500; margin: 0 0 26px; }
.placeholder { background: linear-gradient(135deg, var(--cream), var(--cream-2)); display: flex; align-items: center; justify-content: center; color: var(--muted); font-weight: 600; font-size: .9rem; text-align: center; padding: 16px; }
@media (max-width: 560px) { .day-detail { padding-left: 0; } }

/* ----------------------- Route / map ----------------------- */
.route-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.route { display: flex; align-items: center; gap: 6px; overflow-x: auto; padding-bottom: 10px; justify-content: flex-start; }
.route-stop { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; white-space: nowrap; color: var(--espresso-2); }
.route-stop .pin { width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--cream-2); }
.route-stop.active .pin { border-color: var(--red); background: var(--red); box-shadow: 0 0 0 5px rgba(201,32,53,.14); }
.route-seg { width: 46px; height: 2px; background: var(--line); flex-shrink: 0; margin-top: -22px; }
.route-card .btn { margin-top: 28px; }

/* ----------------------- Interactive trip map (Leaflet) ----------------------- */
.tripmap-wrap {
  display: grid; grid-template-columns: 1fr 384px;
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); height: 580px; background: var(--card);
}
.tripmap { height: 100%; width: 100%; background: var(--cream); z-index: 1; }
.tripmap-wrap .leaflet-control-zoom a { border-radius: 10px !important; color: var(--espresso); }
.trip-itin { border-left: 1px solid var(--line); overflow-y: auto; background: var(--card); }
.trip-itin-head { padding: 22px 24px 14px; position: sticky; top: 0; background: rgba(255,255,255,.94); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); z-index: 2; }
.trip-itin-head h3 { font-size: 1.4rem; }
.trip-itin-head p { font-size: .82rem; color: var(--muted); margin: 4px 0 0; }
.itin-day { width: 100%; text-align: left; display: grid; grid-template-columns: 34px 1fr 18px; gap: 14px; align-items: start; padding: 16px 24px; border-bottom: 1px solid var(--line); border-left: 3px solid transparent; transition: background .2s, border-color .2s; }
.itin-day:hover { background: var(--sand-soft); }
.itin-day.active { background: #fdeef0; border-left-color: var(--red); }
.itin-day .dnum { width: 30px; height: 30px; border-radius: 50%; background: var(--espresso); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
.itin-day.active .dnum { background: var(--red); }
.itin-day .ddate { font-size: .74rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.itin-day .dtitle { font-family: var(--font-display); font-weight: 600; font-size: 1rem; margin-top: 1px; }
.itin-day .dloc { font-size: .8rem; color: var(--muted); margin-top: 3px; display: flex; align-items: center; gap: 5px; }
.itin-day .darrow { fill: none; stroke: var(--muted); stroke-width: 2; width: 16px; height: 16px; margin-top: 6px; }

/* Leaflet numbered markers */
.map-pin { background: var(--espresso); color: #fff; width: 30px; height: 30px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: flex; align-items: center; justify-content: center; box-shadow: 0 3px 8px rgba(0,0,0,.3); border: 2px solid #fff; }
.map-pin span { transform: rotate(45deg); font-family: var(--font-display); font-weight: 700; font-size: .82rem; }
.map-pin.active { background: var(--red); width: 38px; height: 38px; z-index: 1000 !important; }

/* Leaflet popup card */
.leaflet-popup-content-wrapper { border-radius: 18px !important; box-shadow: var(--shadow-lg) !important; padding: 0 !important; overflow: hidden; }
.leaflet-popup-content { margin: 0 !important; width: 300px !important; }
.leaflet-popup-tip { box-shadow: var(--shadow-md); }
.pop { font-family: var(--font-body); }
.pop-img { height: 130px; position: relative; }
.pop-img img, .pop-img .placeholder { width: 100%; height: 100%; object-fit: cover; }
.pop-badge { position: absolute; left: 12px; top: 12px; background: var(--red); color: #fff; font-size: .72rem; font-weight: 700; padding: 4px 11px; border-radius: 999px; }
.pop-body { padding: 16px 18px 18px; }
.pop-body h4 { font-size: 1.12rem; margin-bottom: 8px; }
.pop-body ul { display: grid; gap: 7px; }
.pop-body li { position: relative; padding-left: 16px; font-size: .85rem; color: var(--espresso-2); line-height: 1.45; }
.pop-body li::before { content:""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.pop-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--line); }
.pop-nav button { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); font-size: 1.1rem; color: var(--espresso); display: flex; align-items: center; justify-content: center; transition: .15s; }
.pop-nav button:hover { background: var(--cream); }
.pop-nav button:disabled { opacity: .35; cursor: not-allowed; }
.pop-nav .count { font-family: var(--font-display); font-weight: 600; font-size: .9rem; }

@media (max-width: 900px) {
  .tripmap-wrap { grid-template-columns: 1fr; height: auto; }
  .tripmap { height: 360px; }
  .trip-itin { border-left: none; border-top: 1px solid var(--line); max-height: 380px; }
}

/* ----------------------- Hotel ----------------------- */
.hotel-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--card); }
.hotel-media { min-height: 380px; position: relative; }
.hotel-media img, .hotel-media .placeholder { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hotel-body { padding: 42px; }
.hotel-body .rating { color: #e0a92e; margin: 8px 0 16px; font-size: 1rem; }
.feature-list { display: grid; gap: 12px; margin: 20px 0 26px; }
.feature-list li { display: flex; align-items: center; gap: 10px; font-size: .98rem; }

/* ----------------------- Includes ----------------------- */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.includes-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.includes-col.no { background: var(--cream); }
.includes-col h3 { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 1.3rem; }
.badge-yes, .badge-no { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.badge-yes { background: #dcfce7; color: var(--success); }
.badge-no { background: #fde2e4; color: var(--red); }
.includes-col ul { display: grid; gap: 13px; }
.includes-col li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--espresso-2); }
.includes-col.yes li::before { content:"✓"; position:absolute; left:0; color: var(--success); font-weight: 700; }
.includes-col.no li::before { content:"×"; position:absolute; left:3px; color: var(--muted); font-weight: 700; }

/* ----------------------- Installment + steps ----------------------- */
.installment { background: linear-gradient(135deg, var(--sand-soft), var(--cream)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px; text-align: center; }
.installment .eyebrow { justify-content: center; }
.installment h2 span { color: var(--red); }
.installment p { color: var(--espresso-2); max-width: 520px; margin: 12px auto 0; }
.installment .btn { margin-top: 24px; }
.payment-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: step; }
.pay-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; position: relative; }
.pay-step .num { width: 42px; height: 42px; border-radius: 50%; background: var(--red); color: #fff; font-family: var(--font-display); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.pay-step strong { display: block; margin-bottom: 4px; }
.pay-step p { color: var(--muted); font-size: .9rem; }
.fineprint { font-size: .82rem; color: var(--muted); margin-top: 22px; }

/* ----------------------- Gallery (estilo Booking.com) ----------------------- */
.gallery-booking { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(2,1fr); gap: 6px; height: 470px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gb { position: relative; overflow: hidden; cursor: pointer; padding: 0; border: none; background: var(--cream); }
.gb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.gb:hover img { transform: scale(1.05); }
.gb::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 62%, rgba(0,0,0,.4)); opacity: 0; transition: opacity .3s; }
.gb:hover::after { opacity: 1; }
.gb-big { grid-column: span 2; grid-row: span 2; }
.gb-cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-weight: 600; font-size: .9rem; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.gb-overlay { position: absolute; inset: 0; z-index: 3; background: rgba(28,22,18,.52); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #fff; transition: background .2s; }
.gb-more:hover .gb-overlay { background: rgba(28,22,18,.66); }
.gb-overlay b { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.gb-overlay span { font-size: .84rem; font-weight: 600; }
@media (max-width: 760px) {
  .gallery-booking { grid-template-columns: repeat(2,1fr); grid-template-rows: 200px 120px 120px; height: auto; }
  .gb-big { grid-column: span 2; grid-row: span 1; }
}

/* ----------------------- Destinations ----------------------- */
.dest-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dest-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s; }
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.dest-media { aspect-ratio: 4/3; overflow: hidden; }
.dest-media img, .dest-media .placeholder { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.dest-card:hover .dest-media img { transform: scale(1.06); }
.dest-body { padding: 20px 22px 24px; }
.dest-body h3 { margin-bottom: 6px; }
.dest-body p { color: var(--muted); font-size: .9rem; }

/* ----------------------- Team ----------------------- */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.team-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 22px; text-align: center; transition: transform .25s var(--ease); }
.team-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.1); }
.team-ic { font-size: 1.9rem; display: block; margin-bottom: 14px; }
.team-card h3 { font-size: 1.02rem; }

/* ----------------------- FAQ ----------------------- */
.chev { width: 24px; height: 24px; flex-shrink: 0; fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform .3s var(--ease); }
.faq { border-top: 1px solid var(--line); max-width: 860px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); stroke: var(--red); }
.faq-a { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .35s var(--ease); }
.faq-a > div { min-height: 0; }
.faq-item.open .faq-a > div { padding-bottom: 24px; }
.faq-a p { color: var(--espresso-2); }

/* ----------------------- Legal ----------------------- */
.legal-block { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 6px 24px; margin-bottom: 14px; background: var(--card); }
.legal-block summary { padding: 18px 0; font-family: var(--font-display); font-weight: 600; cursor: pointer; }
.legal-block summary::marker { color: var(--red); }
.legal-block p { font-size: .88rem; color: var(--muted); padding-bottom: 12px; }

/* ----------------------- Booking card ----------------------- */
.layout-aside { position: sticky; top: 100px; }
.booking-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.booking-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.booking-price .from { font-size: .85rem; color: var(--muted); }
.booking-price .amount { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; letter-spacing: -.03em; }
.booking-price .cur { font-size: .9rem; font-weight: 600; color: var(--muted); }
.booking-card .per { font-size: .84rem; color: var(--muted); margin: 2px 0 20px; }
.booking-selectors { display: grid; gap: 12px; margin-bottom: 18px; }
.selector { display: block; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 12px 16px; transition: border-color .2s; }
.selector:focus-within { border-color: var(--espresso); }
.selector-label { display: block; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 3px; }
.selector select { width: 100%; border: none; background: none; font-size: .96rem; font-weight: 600; color: var(--espresso); outline: none; appearance: none; }
.stepper { display: flex; align-items: center; justify-content: space-between; }
.stepper button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: .15s; }
.stepper button:hover { border-color: var(--espresso); }
.stepper button:disabled { opacity: .4; cursor: not-allowed; }
.stepper span { font-weight: 600; font-size: .95rem; }
.booking-micro { margin: 20px 0; display: grid; gap: 9px; }
.booking-micro li { font-size: .84rem; color: var(--espresso-2); display: flex; gap: 8px; }
.booking-micro li::before { content:"✓"; color: var(--success); font-weight: 700; }
.booking-badge { background: var(--sand-soft); border: 1px solid var(--sand); border-radius: var(--radius-sm); padding: 13px 15px; font-size: .82rem; color: #8a5a1a; display: flex; align-items: center; gap: 9px; }
.booking-badge strong { color: var(--red); }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--red); flex-shrink: 0; position: relative; }
.pulse::after { content:""; position:absolute; inset:0; border-radius:50%; background: var(--red); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{ transform: scale(1); opacity:.7;} 100%{ transform: scale(3); opacity:0;} }

/* ----------------------- Dates section ----------------------- */
.dates-selectors { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 28px 0; }
.dates-selectors .selector { background: var(--card); min-width: 240px; }
.date-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; display: grid; grid-template-columns: 1fr auto auto; gap: 32px; align-items: center; box-shadow: var(--shadow-sm); max-width: 820px; margin: 0 auto; }
.date-leg { display: flex; align-items: center; gap: 24px; }
.date-label { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.date-leg strong { font-family: var(--font-display); font-size: 1.1rem; }
.date-arrow { width: 26px; height: 26px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.date-price { text-align: right; }
.date-price b { display: block; font-family: var(--font-display); font-size: 1.5rem; color: var(--red); }

/* ----------------------- CTA final ----------------------- */
.cta-final { position: relative; padding: 110px 0; text-align: center; color: #fff; overflow: hidden; }
.cta-final img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-final::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(46,38,34,.78), rgba(169,22,41,.82)); z-index: 1; }
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 { color: #fff; font-size: clamp(2.2rem,5vw,3.4rem); }
.cta-final p { color: rgba(255,255,255,.92); max-width: 600px; margin: 18px auto 30px; font-size: 1.1rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.microcopy { font-size: .84rem; margin-top: 20px; opacity: .82; }

/* ----------------------- Footer ----------------------- */
.site-footer { background: var(--espresso); color: #cdbfb2; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; }
.footer-brand img { height: 30px; margin-bottom: 14px; }
.footer-brand p { font-size: .9rem; color: #9a8d80; }
.footer-col h4 { color: #fff; font-family: var(--font-display); font-size: 1rem; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .9rem; color: #b3a596; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.socials a { padding: 0; }
.footer-bottom { border-top: 1px solid #463a33; margin-top: 44px; padding-top: 22px; text-align: center; font-size: .82rem; color: #8a7d70; }

/* ----------------------- Mobile bottom bar ----------------------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: rgba(251,250,247,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line); padding: 12px 18px calc(12px + env(safe-area-inset-bottom)); display: none; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 -6px 24px rgba(46,38,34,.1); }
.mobile-bar-price strong { display: block; font-family: var(--font-display); font-size: 1.1rem; }
.mobile-bar-price .muted { font-size: .72rem; }
.mobile-bar .btn { padding: 13px 30px; }

/* ----------------------- Lightbox ----------------------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(28,22,18,.95); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-stage { width: min(94vw, 1100px); height: min(78vh, 720px); display: flex; align-items: center; justify-content: center; }
.lightbox-stage img, .lightbox-stage .placeholder { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 18px; right: 24px; color: #fff; font-size: 2.4rem; line-height: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 3rem; padding: 0 24px; opacity: .8; }
.lightbox-nav:hover { opacity: 1; }
.lightbox-nav.prev { left: 0; } .lightbox-nav.next { right: 0; }
.lightbox-cap { position: absolute; bottom: 52px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 1rem; font-weight: 600; text-shadow: 0 1px 8px rgba(0,0,0,.6); }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .85rem; }

/* ----------------------- Reveal ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
  .layout-split { grid-template-columns: 1fr; gap: 40px; }
  .layout-aside { position: static; max-width: 460px; }
  .summary-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .section { padding: 64px 0; }
  .block + .block { margin-top: 60px; }
  .main-nav, .header-actions .btn-wa, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 76px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 8px 28px 18px; box-shadow: var(--shadow-md); }
  .main-nav.open a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 28px; }
  .feature.reverse .feature-media { order: 0; }
  .hotel-card { grid-template-columns: 1fr; }
  .hotel-media { min-height: 280px; }
  .includes-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(3,1fr); }
  .payment-steps { grid-template-columns: repeat(2,1fr); }
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .g-wide { grid-column: span 2; }
  .day-grid { grid-template-columns: 1fr; padding-left: 0; gap: 18px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 78px; }
  .date-card { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .date-price { text-align: left; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero-content { padding-bottom: 38px; }
  .summary-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .dest-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-tall { grid-row: span 1; }
  .day-head { grid-template-columns: 48px 1fr auto; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .cta-buttons .btn { width: 100%; }
  .cobrand img.iku { height: 32px; } .cobrand img.mj { height: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
