/* ============================================================
   African Adventure Guatemala — sitio público
   Réplica del diseño de africanadventurecr.com (adaptado a Guatemala)
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:        #dca600;
  --amber-hero:   #a57d00;
  --amber-footer: #957000;
  --amber-bar:    #7a5c00;
  --black:        #000000;
  --white:        #ffffff;
  --text:         #212529;
  --red:          #ff0000;
  --btn-gray:     #e6e6e6;
  --nav-h:        76px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Darker Grotesque', sans-serif;
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 { font-family: 'Raleway', sans-serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ============================================================ NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 3px 16px rgba(0,0,0,0.18); }
.navbar__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 50px; max-width: 1400px; margin: 0 auto;
}
.navbar__logo { display: flex; align-items: center; }
.navbar__logo img { height: 56px; width: auto; }
.navbar__logo-text { display: flex; flex-direction: column; line-height: 1; }
.navbar__logo-text strong {
  font-family: 'Raleway', sans-serif; font-weight: 800;
  font-size: 1.4rem; color: var(--text); letter-spacing: .02em;
}
.navbar__logo-text small {
  font-family: 'Darker Grotesque', sans-serif; font-weight: 600;
  font-size: .85rem; color: var(--amber); letter-spacing: .32em; text-transform: uppercase;
}
.navbar__menu { display: flex; align-items: center; gap: 32px; }
.navbar__menu > li > a {
  font-size: 1.25rem; font-weight: 500; color: var(--text);
  transition: color 0.2s; padding: 6px 0;
}
.navbar__menu > li > a:hover { color: var(--amber); }

.nav-dropdown { position: relative; }
.nav-dropdown__toggle::after { content: ' ▾'; font-size: 0.8em; vertical-align: middle; }
/* Puente invisible que cubre el hueco entre el ítem y el submenú, para que el
   cursor pueda llegar al submenú sin que se cierre. */
.nav-dropdown::after { content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.nav-dropdown__menu {
  display: none; position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); background: var(--white); min-width: 190px;
  border-radius: 8px; box-shadow: 0 6px 20px rgba(0,0,0,0.14); padding: 8px 0; z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu { display: block; }
.nav-dropdown__menu li a {
  display: block; padding: 10px 22px; font-size: 1.0625rem; font-weight: 400; color: var(--text);
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown__menu li a:hover { background: #f5f5f5; color: var(--amber); }

.navbar__hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 4px; font-size: 1.6rem; color: var(--text);
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-block; font-family: 'Darker Grotesque', sans-serif;
  font-size: 1.25rem; font-weight: 500; cursor: pointer;
  transition: background 0.2s, transform 0.15s; border: none;
}
.btn--light { background: var(--btn-gray); color: var(--text); padding: 14px 44px; border-radius: 100px; }
.btn--light:hover { background: #cccccc; transform: translateY(-1px); }
.btn--red { background: var(--red); color: var(--white); padding: 16px 44px; border-radius: 6px; font-weight: 600; white-space: nowrap; }
.btn--red:hover { background: #cc0000; }
/* Botón de envío del formulario: tono mate, amplio, integrado al formulario */
.btn--submit { background: #b3543e; color: #fff; padding: 18px 40px; border-radius: 10px; font-size: 1.25rem; font-weight: 700; letter-spacing: .01em; box-shadow: 0 4px 14px rgba(179,84,62,.28); }
.btn--submit:hover { background: #9c4734; box-shadow: 0 6px 18px rgba(179,84,62,.36); transform: translateY(-1px); }

/* ============================================================ HOME HERO */
.hero {
  margin-top: var(--nav-h); position: relative; min-height: 728px;
  background-color: #241a00;
  background-size: cover; background-position: center center; background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; display: block; pointer-events: none; }
.hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(rgba(40,30,0,0.42), rgba(30,22,0,0.60)); }
.hero__content { position: relative; z-index: 3; text-align: center; padding: 80px 40px; max-width: 960px; }
.hero__scroll { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px; display: flex; justify-content: center; }
.hero__scroll span { display: block; width: 5px; height: 9px; margin-top: 7px; border-radius: 3px; background: #fff; animation: heroScroll 1.6s infinite; }
@keyframes heroScroll { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }
.hero__content h1 { font-size: 4rem; font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: .4em; }
.hero__content p { font-size: 1.69rem; color: var(--white); margin-bottom: 2rem; }

/* ============================================================ PAGE HERO (destino/programa) */
.page-hero {
  margin-top: var(--nav-h); position: relative; min-height: 420px;
  background-color: #241a00; background-size: cover; background-position: center center; background-repeat: no-repeat;
  display: flex; align-items: flex-end; color: var(--white);
}
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(90,68,0,.25)); }
.page-hero__content { position: relative; z-index: 1; padding: 48px 50px; max-width: 1400px; margin: 0 auto; width: 100%; }
.page-hero__content .breadcrumb a { color: var(--amber); font-size: 1.05rem; font-weight: 600; }
.page-hero__content h1 { font-size: 3rem; font-weight: 800; line-height: 1.12; margin: 8px 0; }
.page-hero__content .duration { font-size: 1.44rem; font-weight: 600; color: var(--amber); }
.page-hero__content .tagline { font-size: 1.44rem; opacity: .95; }

/* ============================================================ SECTION HELPERS */
.section { padding: 64px 50px; max-width: 1400px; margin: 0 auto; }
.section-title { font-size: 2.4rem; font-weight: 800; text-align: center; margin-bottom: 8px; }
.section-sub { text-align: center; color: #666; margin-bottom: 40px; font-size: 1.5rem; }

/* ============================================================ WELCOME */
.welcome { background: var(--amber); display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.welcome__img { padding: 48px; }
.welcome__img img { width: 100%; height: 440px; object-fit: cover; object-position: center; display: block;
  border-radius: 18px; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.welcome__body { padding: 56px; display: flex; flex-direction: column; justify-content: center; }
.welcome__body h2 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: .8em; }
.welcome__body p { font-size: 1.48rem; line-height: 1.7; text-align: justify; }

/* ============================================================ SERVICES */
.services { background: var(--white); padding: 64px 50px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1400px; margin: 0 auto; }
.service { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; }
.service__icon {
  display: block; width: 64px; height: 64px; margin-bottom: 20px;
  background-color: #333333;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain;
}
.service h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: .5em; }
.service p { font-size: 1.31rem; color: #444; line-height: 1.55; }

/* ============================================================ DESTINATIONS GRID */
.dest-section { background: #faf6ec; padding: 64px 50px; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1400px; margin: 0 auto; }
.dest-card { position: relative; display: block; height: 300px; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 14px rgba(0,0,0,.12); background: #1a1a2e; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .5s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__label { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 22px; background: linear-gradient(to top, rgba(0,0,0,.62), transparent 60%); }
.dest-card__label h3 { color: var(--white); font-size: 1.7rem; font-weight: 800; }

/* ============================================================ CTA BANNER */
.cta { background: var(--black); padding: 54px 50px; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta__text h3 { font-size: 1.85rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.cta__text p { font-size: 1.44rem; color: rgba(255,255,255,.9); max-width: 600px; }

/* ============================================================ INTRO (destino) */
.intro { padding: 56px 50px; max-width: 980px; margin: 0 auto; font-size: 1.5rem; line-height: 1.75; color: #333; }

/* ============================================================ PROGRAMS GRID */
.prog-section { padding: 56px 50px; max-width: 1400px; margin: 0 auto; }
.prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.prog-card { display: flex; flex-direction: column; background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,.1); transition: transform .2s, box-shadow .2s; }
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.prog-card img { width: 100%; height: 270px; object-fit: cover; object-position: center; }
.prog-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.prog-card__body h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 6px; }
.prog-card__body .duration { color: var(--amber); font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.prog-card__body .tagline { color: #555; font-size: 1.31rem; margin-bottom: 16px; flex: 1; }
.prog-card__cta { align-self: flex-start; background: var(--amber); color: var(--white); padding: 9px 22px; border-radius: 100px; font-weight: 700; font-size: 1rem; }
.prog-card__cta:hover { background: var(--amber-hero); }

/* ============================================================ ITINERARY */
.itinerary { padding: 72px 50px; max-width: 1080px; margin: 0 auto; }
.itinerary__title, .includes-wrap h2 { font-size: 2.3rem; font-weight: 800; text-align: center; }
.itinerary__title { margin-bottom: 6px; }
.itinerary__sub { text-align: center; color: var(--amber-hero); font-weight: 700; letter-spacing: .05em; margin-bottom: 56px; }

/* ---- Timeline moderno ---- */
.timeline { position: relative; }
.timeline__track { position: absolute; top: 8px; bottom: 8px; left: 50%; width: 4px; transform: translateX(-50%); background: #ececec; border-radius: 4px; overflow: hidden; }
.timeline__progress { position: absolute; left: 0; top: 0; width: 100%; height: 0; background: linear-gradient(var(--amber), var(--amber-hero)); }

.tl-day { position: relative; width: 50%; box-sizing: border-box; padding: 0 56px 56px 0; }
.tl-day:nth-of-type(even) { margin-left: 50%; padding: 0 0 56px 56px; }
.tl-day__node { position: absolute; top: 2px; right: -23px; width: 46px; height: 46px; border-radius: 50%; background: var(--amber); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 1.1rem; box-shadow: 0 0 0 6px #fff, 0 6px 18px rgba(220,166,0,.45); z-index: 2; }
.tl-day:nth-of-type(even) .tl-day__node { right: auto; left: -23px; }

.tl-day__card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 12px 34px rgba(0,0,0,.12); transition: transform .35s ease, box-shadow .35s ease; }
.tl-day__card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(0,0,0,.18); }
.tl-day__media { position: relative; overflow: hidden; }
.tl-day__media img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform .65s ease; }
.tl-day__card:hover .tl-day__media img { transform: scale(1.07); }
.tl-day__badge { position: absolute; top: 14px; left: 14px; background: rgba(20,15,0,.55); color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.tl-day__body { padding: 22px 26px 26px; }
.tl-day__label { display: inline-block; color: var(--amber); font-family: 'Raleway', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 6px; }
.tl-day__body h3 { font-size: 1.5rem; font-weight: 800; color: #262626; line-height: 1.22; margin-bottom: 12px; }
.tl-day__body p { color: #555; line-height: 1.7; font-size: 1.31rem; }

/* Reveal al hacer scroll (solo si JS añade .js-reveal; si falla, queda visible) */
.js-reveal .tl-day[data-reveal] { opacity: 0; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js-reveal .tl-day:nth-of-type(odd)[data-reveal]  { transform: translate(-44px, 26px); }
.js-reveal .tl-day:nth-of-type(even)[data-reveal] { transform: translate(44px, 26px); }
.js-reveal .tl-day.in-view { opacity: 1; transform: none; }

@media (max-width: 768px) {
  .itinerary { padding: 56px 22px; }
  .timeline__track { left: 21px; }
  .tl-day, .tl-day:nth-of-type(even) { width: 100%; margin-left: 0; padding: 0 0 36px 54px; }
  .tl-day__node, .tl-day:nth-of-type(even) .tl-day__node { left: -1px; right: auto; width: 44px; height: 44px; }
  .js-reveal .tl-day:nth-of-type(odd)[data-reveal], .js-reveal .tl-day:nth-of-type(even)[data-reveal] { transform: translateY(26px); }
}

/* ============================================================ INCLUDES / EXCLUDES */
.includes-wrap { padding: 24px 50px 56px; max-width: 1000px; margin: 0 auto; }
.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.incl-col h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; }
.incl-col ul li { padding: 8px 0 8px 28px; position: relative; line-height: 1.5; border-bottom: 1px dashed #eee; }
.incl-col--inc li::before { content: '✓'; position: absolute; left: 0; color: #1aa251; font-weight: 800; }
.incl-col--exc li::before { content: '✕'; position: absolute; left: 0; color: var(--red); font-weight: 800; }

/* ============================================================ CONTACT */
.contact { background: var(--amber); padding: 64px 50px; }
.contact__box { max-width: 760px; margin: 0 auto; background: var(--white); border-radius: 14px; padding: 40px; box-shadow: 0 10px 30px rgba(0,0,0,.16); }
.contact__box h2 { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 6px; }
.contact__box .contact__sub { text-align: center; color: #666; margin-bottom: 26px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 13px 16px; margin-bottom: 14px; border: 1px solid #ddd; border-radius: 8px;
  font-family: 'Darker Grotesque', sans-serif; font-size: 1.32rem; background: #fafafa; transition: border .2s, background .2s;
}
.contact-form select { color: #333; cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 38px; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: var(--amber); background-color: #fff; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .cf-turnstile { display: flex; justify-content: center; width: 100%; margin: 6px 0 20px; min-height: 65px; }
.contact-form button { width: 100%; }

/* Teléfono con prefijo de país (bandera + código) */
.contact-form .tel-field { display: flex; align-items: stretch; margin-bottom: 14px; }
.contact-form .tel-prefix { display: flex; align-items: center; gap: 6px; padding: 0 12px;
  background: #f0f0f0; border: 1px solid #ddd; border-right: none; border-radius: 8px 0 0 8px;
  white-space: nowrap; font-size: 1.32rem; color: #333; font-family: 'Darker Grotesque', sans-serif; }
.contact-form .tel-prefix .tel-flag { font-size: 1.4rem; line-height: 1; }
.contact-form .tel-field input[type="tel"] { flex: 1; min-width: 0; margin-bottom: 0; border-radius: 0 8px 8px 0; }

/* Checkbox de consentimiento (Términos y condiciones) */
.contact-form .cf-consent { display: flex; align-items: flex-start; gap: 9px; margin: 2px 0 18px; font-size: 1.1rem; color: #444; line-height: 1.4; cursor: pointer; }
.contact-form .cf-consent input { width: auto; margin: 3px 0 0; flex-shrink: 0; }
.contact-form .cf-consent a { color: var(--amber-hero); text-decoration: underline; font-weight: 600; }

/* Páginas legales (Términos, privacidad…) */
.legal-content { max-width: 860px; }
.legal-content h2 { font-size: 1.5rem; font-weight: 800; margin: 26px 0 10px; }
.legal-content p { margin-bottom: 12px; line-height: 1.7; }
.legal-content ul, .legal-content ol { margin: 0 0 14px 22px; line-height: 1.7; }
.form-status { margin-top: 14px; text-align: center; font-weight: 600; color: var(--amber-hero); min-height: 1.4em; }

/* ============================================================ MODAL ENVÍO FORMULARIO */
.cf-modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; }
.cf-modal[hidden] { display: none; }
.cf-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(3px); animation: promoFade .25s ease; }
.cf-modal__card { position: relative; background: #fff; border-radius: 16px; padding: 40px 34px; width: 86%; max-width: 400px;
  text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,.4); animation: promoPop .28s cubic-bezier(.2,.8,.25,1); }
.cf-modal__spinner { width: 56px; height: 56px; margin: 0 auto 20px; border: 5px solid #eee; border-top-color: var(--amber);
  border-radius: 50%; animation: cfSpin .8s linear infinite; }
.cf-modal__spinner[hidden] { display: none; }
@keyframes cfSpin { to { transform: rotate(360deg); } }
.cf-modal__icon { font-size: 56px; line-height: 1; margin-bottom: 16px; font-weight: 700; }
.cf-modal__icon[hidden] { display: none; }
.cf-modal__icon.is-success { color: #2e9e5b; }
.cf-modal__icon.is-error { color: #d9534f; }
.cf-modal__msg { font-size: 1.25rem; line-height: 1.45; color: #333; margin: 0; font-weight: 600; }
.cf-modal__close { margin-top: 22px; padding: 10px 26px; border: 1px solid #ddd; border-radius: 8px; background: #f5f5f5;
  font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 1rem; cursor: pointer; transition: background .2s; }
.cf-modal__close[hidden] { display: none; }
.cf-modal__close:hover { background: #ebebeb; }

/* ============================================================ FRANJA PROMO */
.promo-strip { min-height: 150px; background: #000; padding: 10px 0; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.promo-strip__trigger { display: block; max-width: 100%; padding: 0; border: 0; background: transparent; cursor: pointer; }
.promo-strip__trigger img, .promo-strip__img { max-height: 130px; width: auto; max-width: 100%; object-fit: contain; display: block; margin: 0 auto; transition: transform .35s ease, opacity .3s ease; }
.promo-strip__trigger:hover img { transform: scale(1.04); opacity: .92; }

/* Modal */
.promo-modal { position: fixed; inset: 0; z-index: 1000; }
.promo-modal[hidden] { display: none; }
.promo-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(3px); animation: promoFade .25s ease; }
.promo-modal__dialog { position: absolute; inset: 10%; display: flex; flex-direction: column;
  background: #111; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.55); animation: promoPop .28s cubic-bezier(.2,.8,.25,1); }
/* Documentos (PDF / URL): casi a pantalla completa para que se ajusten bien. */
.promo-modal__dialog.is-doc { inset: 2.5%; }
.promo-modal__head { background: #1a1a1a; color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 1.05rem; letter-spacing: .02em; text-align: center; padding: 14px 18px; flex-shrink: 0; }
.promo-modal__body { flex: 1; min-height: 0; background: #000; display: flex; align-items: center; justify-content: center; }
.promo-modal__body iframe.promo-modal__media { object-fit: fill; }
.promo-modal__media { width: 100%; height: 100%; border: 0; display: block; object-fit: contain; background: #000; }
.promo-modal__actions { display: flex; gap: 12px; justify-content: flex-end; align-items: center; padding: 14px 18px; background: #1a1a1a; }
.promo-modal__btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 22px; border-radius: 8px;
  font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; border: 0; text-decoration: none; transition: filter .2s, background .2s; }
.promo-modal__btn--dl { background: var(--amber); color: #fff; }
.promo-modal__btn--dl:hover { filter: brightness(1.08); }
.promo-modal__btn--close { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.35); }
.promo-modal__btn--close:hover { background: rgba(255,255,255,.12); }
@keyframes promoFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes promoPop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
@media (max-width: 640px) {
  .promo-modal__dialog { inset: 5%; }
  /* Documentos (PDF/URL): pantalla completa en móvil para que el contenido quepa. */
  .promo-modal__dialog.is-doc { inset: 0; border-radius: 0; }
  .promo-modal__head { font-size: .95rem; padding: 11px 14px; }
  .promo-modal__actions { justify-content: center; padding: 10px 14px; }
  .promo-modal__btn { padding: 9px 16px; font-size: .92rem; }
  .promo-modal__media { max-width: 100%; }
}

/* ============================================================ FOOTER */
.site-footer { background: var(--amber-footer); }
.footer { display: grid; grid-template-columns: 1.9fr 1.2fr 1fr 1.1fr; gap: 48px; padding: 52px 50px 40px; max-width: 1400px; margin: 0 auto; }
.footer__col h4 { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.footer__col p, .footer__col a { font-size: 1.25rem; color: rgba(255,255,255,.92); line-height: 1.75; }
.footer__col a:hover { color: var(--white); text-decoration: underline; }
.footer__row { display: flex; gap: 10px; margin-bottom: 8px; align-items: flex-start; }
.footer__row .fi { width: 18px; height: 18px; flex-shrink: 0; margin-top: 3px; display: inline-block;
  background-color: var(--amber);
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
  -webkit-mask-size: contain; mask-size: contain; }
.footer__row .fi--phone { -webkit-mask-image: url('/assets/img/icons/phone.png'); mask-image: url('/assets/img/icons/phone.png'); }
.footer__row .fi--email { -webkit-mask-image: url('/assets/img/icons/email.png'); mask-image: url('/assets/img/icons/email.png'); }
.footer__row .fi--location { -webkit-mask-image: url('/assets/img/icons/location.png'); mask-image: url('/assets/img/icons/location.png'); }
.footer__social { display: flex; gap: 10px; margin-top: 14px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,.18); border-radius: 8px; color: var(--white); font-size: 1.05rem; transition: background .2s; }
.footer__social a:hover { background: rgba(255,255,255,.36); }
.footer-bar { background: #000000; padding: 14px 50px; text-align: center; font-size: .92rem; color: rgba(255,255,255,.85); }
.footer-bar a { color: var(--amber); text-decoration: none; font-weight: 600; }
.footer-bar a:hover { text-decoration: underline; }
.footer-credits { display: inline-block; margin-left: 6px; font-size: .82rem; color: rgba(255,255,255,.6); }
.footer-credits a { color: rgba(255,255,255,.8); font-weight: 400; text-decoration: underline; }
.footer-credits::before { content: '· '; }

/* ============================================================ RESPONSIVE — TABLET */
@media (max-width: 1024px) {
  .navbar__inner { padding: 10px 30px; }
  .hero__content h1 { font-size: 3rem; }
  .welcome__body { padding: 40px 36px; }
  .welcome__body h2 { font-size: 2rem; }
  .services { grid-template-columns: 1fr 1fr; padding: 48px 30px; }
  .dest-grid, .prog-grid { grid-template-columns: 1fr 1fr; }
  .cta { padding: 44px 30px; }
  .footer { grid-template-columns: repeat(2, 1fr); padding: 44px 30px; gap: 32px; }
}

/* ============================================================ RESPONSIVE — MOBILE */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar__inner { padding: 8px 20px; flex-wrap: wrap; }
  .navbar__menu { display: none; flex-direction: column; align-items: flex-start; gap: 0; width: 100%; background: #fff; border-top: 1px solid #eee; }
  .navbar__menu.open { display: flex; }
  .navbar__menu > li { width: 100%; }
  .navbar__menu > li > a { display: block; padding: 12px 4px; border-bottom: 1px solid #f0f0f0; }
  .nav-dropdown__menu { position: static; transform: none; box-shadow: none; border-radius: 0; padding-left: 16px; display: none; }
  .nav-dropdown.open .nav-dropdown__menu { display: block; }
  .navbar__hamburger { display: block; }
  .hero { min-height: 546px; }
  .hero__content { padding: 60px 24px; }
  .hero__content h1 { font-size: 2rem; }
  .hero__content p { font-size: 1.1rem; }
  .page-hero__content { padding: 32px 24px; }
  .page-hero__content h1 { font-size: 2rem; }
  .services, .dest-section, .prog-section, .itinerary, .includes-wrap, .contact, .intro { padding-left: 24px; padding-right: 24px; }
  .welcome { grid-template-columns: 1fr; }
  .welcome__img { padding: 24px 24px 0; }
  .welcome__img img { max-height: 300px; min-height: 220px; }
  .welcome__body { padding: 32px 24px; }
  .welcome__body h2 { font-size: 1.75rem; }
  .services, .dest-grid, .prog-grid { grid-template-columns: 1fr; }
  .cta { flex-direction: column; text-align: center; padding: 40px 24px; }
  .includes { grid-template-columns: 1fr; }
  .contact__box { padding: 28px 20px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; padding: 36px 24px; gap: 30px; }
  .footer-bar { padding: 13px 24px; }
  .day { grid-template-columns: 48px 1fr; gap: 14px; }
  .day__num { width: 48px; height: 48px; font-size: .95rem; }
}
@media (max-width: 480px) { .hero__content h1 { font-size: 1.7rem; } }
