/* =============================================================
   INFINITY EVENTS — Demo comercial
   Eventos Culturales y Turísticos · "Nacimos para servir"

   Identidad tomada del logo:
     · PÚRPURA / AUBERGINE   -> color dominante de marca
     · DORADO cálido          -> acento premium (CTA, detalles)
     · AZUL PROFUNDO / INDIGO -> profundidad, secciones oscuras, texto
     · TURQUESA               -> acento de turismo / experiencias (uso puntual)
     · CREMA / BLANCO         -> lienzo, respiración

   Índice
   1. Tokens        5. Botones          9. Eventos
   2. Reset/base    6. Header/Nav      10. Vive Honduras
   3. Utilidades    7. Hero           11. Galería / Redes
   4. Tipografía    8. Nosotros/Exp   12. Contacto / Footer / FX / Responsive
   ============================================================= */

/* ============================ 1. TOKENS ============================ */
:root {
  /* Marca */
  --purple-900: #2A0E24;   /* aubergine muy oscuro */
  --purple-800: #3D1435;
  --purple-700: #521A47;   /* púrpura del wordmark del logo */
  --purple-600: #6E2A5F;
  --purple-500: #8A3B78;
  --purple-300: #C89BBD;

  --indigo-900: #1A1530;   /* azul profundo casi negro */
  --indigo-800: #241D40;

  --gold-600:   #C68A33;
  --gold-500:   #E0A63C;   /* dorado principal */
  --gold-400:   #EEC06B;
  --gold-200:   #F6E0B4;

  --teal-600:   #2A8F86;
  --teal-500:   #35A79B;   /* turquesa acento */
  --teal-200:   #B7E2DC;

  --copper:     #C6885B;   /* tono cobre de la "moneda" del logo */

  /* Neutros / lienzo */
  --cream:      #FBF7F1;
  --cream-2:    #F4ECDF;   /* alterna secciones */
  --cream-3:    #ECE1CF;   /* superficie de tarjeta / bordes */
  --white:      #FFFFFF;

  --ink:        #2A2233;   /* texto principal sobre claro */
  --ink-2:      #5B5266;   /* texto secundario */
  --ink-3:      #8A8393;   /* metadatos */
  --on-dark:    #F4EEE4;   /* texto sobre oscuro */
  --on-dark-2:  #C7BCC6;

  /* Sistema */
  --radius:      18px;
  --radius-sm:   12px;
  --radius-pill: 999px;
  --shell:       1180px;
  --gap:         clamp(1.5rem, 4vw, 3rem);
  --sec-y:       clamp(4.5rem, 9vw, 8rem);

  --shadow-sm:  0 2px 10px rgba(42, 14, 36, .07);
  --shadow-md:  0 14px 40px rgba(42, 14, 36, .12);
  --shadow-lg:  0 30px 70px rgba(26, 21, 48, .28);

  --ease:       cubic-bezier(.4, 0, .2, 1);

  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --wa: #25D366;
}

/* ============================ 2. RESET / BASE ============================ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, textarea { font: inherit; }

::selection { background: var(--gold-400); color: var(--purple-900); }

:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; left: 12px; top: -60px; z-index: 999;
  background: var(--purple-700); color: #fff; padding: .7rem 1.1rem;
  border-radius: 10px; transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ============================ 3. UTILIDADES ============================ */
.shell { width: min(100% - 2.4rem, var(--shell)); margin-inline: auto; }
.section { padding-block: var(--sec-y); }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.grid-2-reverse .destinos-copy { order: 2; }

.section-head { max-width: 680px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head.center { margin-inline: auto; }
.section-intro { color: var(--ink-2); margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--purple-600);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--gold-500);
}
.eyebrow-light { color: var(--gold-400); }
.eyebrow-light::before { background: var(--gold-400); }

/* ============================ 4. TIPOGRAFÍA ============================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--purple-900);
}
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 700; font-family: var(--font-body); letter-spacing: .04em; text-transform: uppercase; }
p { text-wrap: pretty; }
.section-eventos h2, .section-eventos .section-intro,
.section-redes h2, .section-redes .section-intro { color: var(--on-dark); }
.section-eventos .section-intro, .section-redes .section-intro { color: var(--on-dark-2); }

/* ============================ 5. BOTONES ============================ */
.btn {
  --btn-bg: var(--purple-700);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.7rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 18px; height: 18px; fill: currentColor; flex: none; }

.btn-sm { padding: .6rem 1.1rem; font-size: .82rem; }
.btn-lg { padding: 1.1rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.btn-primary { --btn-bg: var(--purple-700); }
.btn-primary:hover { background: var(--purple-600); }

.btn-gold {
  --btn-bg: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  --btn-fg: var(--purple-900);
}
.btn-gold:hover { --btn-bg: linear-gradient(135deg, var(--gold-400), var(--gold-500)); }

.btn-whatsapp { --btn-bg: var(--wa); --btn-fg: #06331c; }
.btn-whatsapp:hover { --btn-bg: #1fbe5b; }

.btn-ghost-light {
  --btn-bg: rgba(255,255,255,.08);
  --btn-fg: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { --btn-bg: rgba(255,255,255,.16); }

.btn-outline-light {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  border: 1.5px solid rgba(244,238,228,.45);
}
.btn-outline-light:hover { --btn-bg: rgba(244,238,228,.1); }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 700;
  font-size: .9rem;
  color: var(--purple-600);
  letter-spacing: .02em;
}
.link-more span { transition: transform .2s var(--ease); }
.link-more:hover span { transform: translateX(4px); }

/* ============================ 6. HEADER / NAV ============================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: .9rem;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
}
.site-header.is-stuck {
  background: rgba(251, 247, 241, .92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding-block: .55rem;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: .8rem; }
.brand-logo {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,.25);
  transition: width .3s var(--ease), height .3s var(--ease);
}
.is-stuck .brand-logo { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: .02em;
  color: #fff;
  transition: color .3s var(--ease);
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  transition: color .3s var(--ease);
}
.is-stuck .brand-name { color: var(--purple-900); }
.is-stuck .brand-tag { color: var(--ink-2); }

.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.site-nav > a:not(.btn) {
  font-weight: 600;
  font-size: .92rem;
  color: rgba(255,255,255,.9);
  position: relative;
  padding-block: .3rem;
  transition: color .25s var(--ease);
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.site-nav > a:not(.btn):hover::after,
.site-nav > a:not(.btn).is-active::after { transform: scaleX(1); }
.is-stuck .site-nav > a:not(.btn) { color: var(--ink); }
.is-stuck .site-nav > a:not(.btn):hover { color: var(--purple-700); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), background .3s var(--ease);
}
.is-stuck .nav-toggle span { background: var(--purple-900); }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .nav-toggle span { background: var(--purple-900); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--cream);
  padding: 6.5rem 1.6rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform .4s var(--ease);
}
.mobile-menu[hidden] { display: flex; }
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--purple-900);
  padding: .85rem 0;
  border-bottom: 1px solid var(--cream-3);
}
.mobile-menu nav a:active { color: var(--purple-600); }

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--purple-600), var(--gold-500), var(--teal-500));
  z-index: 101;
  transition: width .1s linear;
}

/* ============================ 7. HERO ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  padding-block: 8rem 5rem;
}
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(115% 80% at 12% 35%, rgba(26,21,48,.72), transparent 62%),
    linear-gradient(180deg, rgba(26,21,48,.62) 0%, rgba(42,14,36,.78) 55%, rgba(42,14,36,.95) 100%);
}
.hero-inner { max-width: 760px; }
.hero-title {
  color: #fff;
  font-weight: 500;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  letter-spacing: .01em;
  line-height: 1.02;
}
.hero-title-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(.85rem, 2.2vw, 1.05rem);
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: 1.1rem;
}
.hero-slogan {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 3vw, 1.6rem);
  color: var(--on-dark);
  margin-top: 1.4rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 600;
  margin-top: 1.6rem;
  max-width: 34ch;
}
.hero-desc {
  color: rgba(244,238,228,.82);
  margin-top: .9rem;
  max-width: 52ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}
.hero-scroll {
  position: absolute;
  left: 50%; bottom: 1.8rem;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: scrollcue 1.8s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80%, 100% { opacity: 0; transform: translateY(12px); }
}

/* ============================ 8. NOSOTROS / EXPERIENCIAS ============================ */
.section-nosotros { background: var(--cream); }
.nosotros-copy p { color: var(--ink-2); margin-top: 1rem; }
.nosotros-copy p:first-of-type { margin-top: 1.4rem; }

.nosotros-media { position: relative; }
.nosotros-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.media-badge {
  position: absolute;
  left: -1.2rem; bottom: 1.8rem;
  background: var(--purple-700);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .9rem 1.3rem;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: .6rem;
  box-shadow: var(--shadow-md);
}
.infinity-mark {
  font-size: 1.4rem;
  color: var(--gold-400);
  line-height: 1;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: clamp(3rem, 7vw, 5rem);
}
.concept {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.concept:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-400);
}
.concept-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal-600);
}
.concept h3 { margin: .7rem 0 .5rem; }
.concept p { color: var(--ink-2); font-size: .96rem; }

.section-experiencias { background: var(--cream-2); }
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.exp-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.exp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.exp-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.exp-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.exp-card:hover .exp-media img { transform: scale(1.06); }
.exp-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(42,14,36,.5));
}
.exp-num {
  position: absolute;
  left: 1.1rem; top: .9rem;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--gold-400);
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.exp-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.exp-body p { color: var(--ink-2); font-size: .96rem; flex: 1; }
.exp-body .link-more { margin-top: .4rem; }

/* ============================ 9. EVENTOS ============================ */
.section-eventos {
  background: linear-gradient(160deg, var(--indigo-900), var(--purple-800));
  color: var(--on-dark);
}
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.event-card {
  display: flex;
  gap: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(244,238,228,.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.event-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,.09);
  border-color: var(--gold-400);
}
.event-date {
  flex: none;
  width: 62px;
  text-align: center;
  border-right: 1px solid rgba(244,238,228,.18);
  padding-right: 1rem;
}
.event-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-400);
  line-height: 1;
}
.event-month {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-dark-2);
  margin-top: .35rem;
}
.event-kicker {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-200);
}
.event-info h3 { color: #fff; margin: .3rem 0 .4rem; }
.event-meta { font-size: .86rem; color: var(--on-dark-2); }
.badge {
  display: inline-block;
  margin-top: .8rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--purple-900);
  background: var(--gold-400);
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
}
.section-eventos .center { margin-top: 2.6rem; }

/* ============================ 10. VIVE HONDURAS ============================ */
.section-destinos { background: var(--cream); }
.destinos-copy p { color: var(--ink-2); margin: 1.2rem 0 1.8rem; }
.destinos-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 1rem;
}
.destinos-collage img {
  width: 100%; height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.destinos-collage img:nth-child(1) { border-top-left-radius: var(--radius); }
.destinos-collage img:nth-child(4) { border-bottom-right-radius: var(--radius); }
.destinos-collage img:hover { transform: scale(1.03); }

/* ============================ 11. GALERÍA / REDES ============================ */
.section-galeria { background: var(--cream-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
.gallery-grid figure {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}
.gallery-grid figure:nth-child(1) { grid-row: span 2; }
.gallery-grid figure:nth-child(4) { grid-row: span 2; }
.gallery-grid figure:nth-child(6) { grid-column: span 2; }
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), filter .5s var(--ease);
}
.gallery-grid figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(42,14,36,.35));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figure:hover::after { opacity: 1; }
.section-galeria .center { margin-top: 2.6rem; }

.section-redes {
  background:
    radial-gradient(90% 120% at 80% 0%, rgba(53,167,155,.16), transparent 55%),
    linear-gradient(160deg, var(--purple-800), var(--indigo-900));
  color: var(--on-dark);
  text-align: center;
}
.social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}
.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  width: 132px;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(244,238,228,.16);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .86rem;
  color: var(--on-dark);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.social-btn svg { width: 30px; height: 30px; fill: var(--gold-400); transition: fill .3s var(--ease); }
.social-btn:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.12);
  border-color: var(--gold-400);
}
.social-btn:hover svg { fill: #fff; }

/* ============================ 12. CONTACTO / FOOTER / FX ============================ */
.section-contacto { background: var(--cream); }
.contacto-copy p { color: var(--ink-2); margin-top: 1rem; }

.contact-list {
  display: grid;
  gap: 1.1rem;
  margin: 2rem 0;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-500);
}
.contact-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--purple-600);
}
.contact-list a, .contact-list span:not(.contact-label) { font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--purple-700); }

.contacto-form-wrap {
  background: var(--white);
  border: 1px solid var(--cream-3);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
}
.field { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.1rem; }
.field label { font-weight: 700; font-size: .85rem; color: var(--ink); }
.field input, .field textarea {
  padding: .85rem 1rem;
  border: 1.5px solid var(--cream-3);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--purple-500);
  background: #fff;
}
.field textarea { resize: vertical; }
.form-note { font-size: .8rem; color: var(--ink-3); margin-top: .9rem; text-align: center; }

.site-footer {
  background: var(--purple-900);
  color: var(--on-dark-2);
  padding-top: clamp(3.5rem, 7vw, 5rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer-brand img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; }
.footer-name { font-family: var(--font-display); font-size: 1.25rem; color: #fff; font-weight: 600; }
.footer-tag { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-2); margin-top: .2rem; }
.footer-slogan { font-family: var(--font-display); font-style: italic; color: var(--gold-400); margin: .9rem 0; }
.footer-addr { font-size: .9rem; margin-top: .5rem; }
.footer-addr a:hover { color: #fff; }
.footer-col h4 { color: #fff; margin-bottom: 1.1rem; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { font-size: .92rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid rgba(244,238,228,.12);
  font-size: .82rem;
}
.footer-credit a { color: var(--on-dark-2); transition: color .2s var(--ease); }
.footer-credit a:hover { color: var(--gold-400); }

/* FAB WhatsApp */
.whatsapp-fab {
  position: fixed;
  right: 1.2rem; bottom: 1.2rem;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--wa);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(6,51,28,.4);
  transition: transform .3s var(--ease);
  animation: fabpulse 2.6s var(--ease) infinite;
}
.whatsapp-fab svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-fab:hover { transform: scale(1.08); }
@keyframes fabpulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(6,51,28,.4), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 30px rgba(6,51,28,.4), 0 0 0 14px rgba(37,211,102,0); }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,21,48,.92);
  display: grid;
  place-items: center;
  padding: 5vw;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.lightbox.is-open { opacity: 1; }
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.lightbox-close {
  position: absolute;
  top: 1.4rem; right: 1.8rem;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span, .whatsapp-fab { animation: none; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 1000px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-reverse .destinos-copy { order: 0; }
  .concept-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .event-grid { grid-template-columns: 1fr; }
  .media-badge { left: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-grid figure:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 520px) {
  body { font-size: .98rem; }
  .btn { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero { padding-block: 7rem 4rem; }
  .brand-tag { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .whatsapp-fab { width: 52px; height: 52px; right: 1rem; bottom: 1rem; }
}
