/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #08080b;
  --bg-2:      #0d0d12;
  --bg-3:      #141419;
  --bg-card:   #17171e;
  --cream:     #f4ead9;
  --cream-2:   #e3d3b6;
  --cream-3:   #a9987f;
  --gold:      #bb8752;
  --gold-2:    #ddb884;
  --gold-dark: #7a5630;
  --line:      rgba(244, 234, 217, 0.14);
  --line-2:    rgba(244, 234, 217, 0.07);

  --display: "Poppins", "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --container: 1180px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  font-size: 112.5%;
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; letter-spacing: -0.01em; font-family: var(--display); font-weight: 700; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold); color: var(--bg); }

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

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   Fondo estrellado (cielo nocturno titilante)
   ============================================================= */
.starfield {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, #14121b 0%, transparent 60%),
    var(--bg);
}
.starfield::before, .starfield::after {
  content: ""; position: absolute; inset: -60px;
}
.starfield::before {
  background-image:
    radial-gradient(2px 2px at 15% 22%, #ffffff, transparent 62%),
    radial-gradient(1.6px 1.6px at 68% 12%, rgba(255,255,255,.95), transparent 62%),
    radial-gradient(1.4px 1.4px at 42% 55%, rgba(255,255,255,.9), transparent 62%),
    radial-gradient(2.2px 2.2px at 82% 68%, #f0d6ac, transparent 62%),
    radial-gradient(1.5px 1.5px at 28% 82%, rgba(255,255,255,.9), transparent 62%),
    radial-gradient(1.6px 1.6px at 92% 34%, #ffffff, transparent 62%),
    radial-gradient(1.4px 1.4px at 55% 90%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(1.8px 1.8px at 8% 60%, #ffffff, transparent 62%),
    radial-gradient(1.4px 1.4px at 38% 8%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(1.5px 1.5px at 74% 88%, rgba(255,255,255,.9), transparent 62%);
  background-size: 260px 260px;
  animation: twinkle 4.5s ease-in-out infinite;
}
.starfield::after {
  background-image:
    radial-gradient(1.5px 1.5px at 33% 30%, #ffffff, transparent 62%),
    radial-gradient(2px 2px at 75% 48%, #ffffff, transparent 62%),
    radial-gradient(1.6px 1.6px at 12% 78%, #f0d6ac, transparent 62%),
    radial-gradient(1.5px 1.5px at 60% 18%, rgba(255,255,255,.9), transparent 62%),
    radial-gradient(1.5px 1.5px at 88% 82%, rgba(255,255,255,.9), transparent 62%),
    radial-gradient(1.4px 1.4px at 48% 66%, rgba(255,255,255,.85), transparent 62%),
    radial-gradient(1.6px 1.6px at 22% 40%, rgba(255,255,255,.9), transparent 62%),
    radial-gradient(1.4px 1.4px at 95% 14%, rgba(255,255,255,.85), transparent 62%);
  background-size: 200px 200px;
  animation: twinkle 3.2s ease-in-out infinite reverse;
  animation-delay: -1.4s;
}
@keyframes twinkle {
  0%, 100% { opacity: .55; }
  50% { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .starfield::before, .starfield::after { animation: none; opacity: .9; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 1.5rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-2); font-weight: 600;
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--gold);
}
.section { position: relative; padding-block: clamp(4rem, 9vw, 7.5rem); background: transparent; }
.section-alt { background: transparent; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-top: .6rem; }
.section-title em { color: var(--gold-2); font-style: normal; font-weight: 800; }
.section-sub { color: var(--cream-3); font-size: 1.15rem; margin-top: 1rem; max-width: 52ch; }
.center .section-sub { margin-inline: auto; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 1rem 1.9rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 700; font-size: .95rem;
  letter-spacing: .01em;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), background-color .3s var(--ease-out), color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #20160c;
  box-shadow: 0 10px 30px -8px rgba(187, 135, 82, .55);
}
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream);
  background: rgba(243,234,217,.03);
}
.btn-block { width: 100%; white-space: normal; text-align: center; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-icon { padding: 0; width: 52px; height: 52px; border-radius: 50%; }
.btn-icon svg { width: 20px; height: 20px; }

/* =============================================================
   5. Nav
   ============================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,11,.92), rgba(8,8,11,0));
  transition: background-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out), border-color .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(8,8,11,.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav-brand { display: flex; align-items: center; gap: .7rem; font-family: var(--display); font-size: 1.15rem; letter-spacing: .02em; }
.nav-brand-mark { width: 34px; height: 34px; border-radius: 9px; flex: none; }
.nav-links { display: none; align-items: center; gap: 2.1rem; font-size: .92rem; color: var(--cream-2); }
.nav-links a { position: relative; padding-block: .3rem; transition: color .3s var(--ease-out); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--gold); transition: right .35s var(--ease-out);
}
.nav-cta { display: none; }
.nav-burger {
  display: inline-flex; flex-direction: column; gap: 5px; padding: .5rem;
}
.nav-burger span { width: 22px; height: 2px; background: var(--cream); transition: transform .35s var(--ease-out), opacity .3s var(--ease-out); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--bg); padding: calc(var(--nav-h) + 1.5rem) 1.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.6rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu a { font-family: var(--display); font-size: 1.9rem; color: var(--cream-2); }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}

/* =============================================================
   6. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: var(--nav-h);
  overflow: clip;
  background: radial-gradient(ellipse at 50% 0%, #16141d 0%, var(--bg) 60%);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%;
  filter: saturate(1.05) contrast(1.02);
  opacity: .5;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,20,12,.75) 0%, rgba(28,20,12,.55) 30%, rgba(28,20,12,.88) 78%, var(--bg) 100%),
    radial-gradient(60% 50% at 50% 35%, rgba(28,20,12,.35), rgba(28,20,12,.85) 75%);
}

/* Hero con GIF de fondo: se muestra a pantalla completa y sin capas oscuras
   extra (el GIF ya trae su propio filtro). Solo un leve degradado en la base
   para fundir con la sección siguiente. */
.hero-bg-gif img {
  opacity: 1;
  filter: none;
}
.hero-bg-gif::after {
  background: linear-gradient(180deg, transparent 0%, transparent 70%, rgba(28,20,12,.6) 92%, var(--bg) 100%);
}
.hero-waves { position: absolute; inset: 0; z-index: 1; opacity: .8; }
.hero-waves svg { width: 100%; height: 100%; }
.hero-waves path { fill: none; stroke-width: 1.4; }
.hero-glow {
  position: absolute; inset: -20% -10% -10% -10%; z-index: 1;
  background: radial-gradient(45% 40% at 50% 30%, rgba(187,135,82,.22), transparent 70%);
  filter: blur(60px);
  animation: glowDrift 16s ease-in-out infinite;
}
@keyframes glowDrift {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(2%, -3%, 0) scale(1.08); }
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: .05; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.hero-inner { position: relative; z-index: 2; width: 100%; text-align: center; padding-block: 3rem; }
.hero-meta {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1.6rem;
  font-size: .85rem; color: var(--cream-3); letter-spacing: .04em;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.hero-title {
  font-size: clamp(2.7rem, 7.4vw, 6.2rem);
  max-width: 18ch; margin-inline: auto;
  text-wrap: balance;
}
.hero-title em { font-style: normal; font-weight: 800; color: var(--gold-2); }
.hero-sub {
  margin: 1.6rem auto 0; max-width: 46ch;
  color: var(--cream-2); font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}
.hero-actions {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2.4rem;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem 2.4rem;
  max-width: 620px; margin: 3.6rem auto 0; padding-top: 2.4rem; border-top: 1px solid var(--line);
}
.hero-stat-value { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--gold-2); }
.hero-stat-label { font-size: .88rem; color: var(--cream-3); letter-spacing: .03em; margin-top: .3rem; }
@media (min-width: 720px) {
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .hero-stats-3 { max-width: 520px; }
}

/* =============================================================
   7. Nosotros
   ============================================================= */
.about-grid { display: grid; gap: 2.6rem; align-items: center; }
.about-grid-solo { max-width: 980px; margin-inline: auto; text-align: center; }
.about-grid-solo .section-title { margin-inline: auto; }
.about-grid-solo .about-copy p { max-width: 62ch; margin-inline: auto; }
.about-copy p { color: var(--cream-2); font-size: 1.02rem; margin-top: 1.1rem; max-width: 54ch; }
.about-pillars { display: grid; gap: 1.4rem; margin-top: 2.2rem; grid-template-columns: repeat(1, 1fr); text-align: left; }
.about-pillar { padding: 1.5rem; border: 1px solid var(--line); border-radius: 14px; background: rgba(243,234,217,.02); }
.about-pillar-num { font-family: var(--display); font-weight: 800; color: var(--gold); font-size: 1.4rem; }
.about-pillar-icon { color: var(--gold); line-height: 0; margin-bottom: .2rem; }
.about-pillar-icon svg { width: 30px; height: 30px; }
.about-pillar h4 { font-family: var(--sans); font-size: 1.02rem; font-weight: 700; color: var(--cream); margin-top: .6rem; }
.about-pillar p { color: var(--cream-3); font-size: .92rem; margin-top: .4rem; line-height: 1.5; }

@media (min-width: 540px) {
  .about-pillars { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 860px) {
  .about-grid-solo .about-pillars { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   8. Eventos (fotos con overlay)
   ============================================================= */
.events-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; }
.events-grid-photo { grid-template-columns: repeat(2, 1fr); }
.event-tile {
  position: relative; display: block; aspect-ratio: 3 / 4; border-radius: 18px; overflow: hidden;
  border: 1px solid var(--line); background: var(--bg-3);
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
}
.event-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s var(--ease-out);
}
.event-tile-overlay {
  position: absolute; inset: auto 0 0 0; padding: 1.5rem 1.3rem 1.3rem;
  background: linear-gradient(to top, rgba(28,20,12,.94) 15%, rgba(28,20,12,.55) 60%, transparent 100%);
}
.event-tile-tag { display: block; font-size: .82rem; color: var(--gold-2); font-weight: 700; font-family: var(--sans); }
.event-tile-overlay h3 { font-size: clamp(1.25rem, 2.6vw, 1.7rem); margin-top: .3rem; }

@media (min-width: 720px) {
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .events-grid-photo { grid-template-columns: repeat(4, 1fr); }
  .production-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   9. Salón / amenities
   ============================================================= */
.section-humo { position: relative; overflow: clip; }
.salon-humo-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-color: var(--bg);
  background-image: url("assets/img/fondohumo.gif");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.salon-humo-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(0,0,0,.28) 20%, rgba(0,0,0,.28) 80%, var(--bg) 100%);
}
.section-humo > .container { position: relative; z-index: 1; }
.salon-grid { display: grid; gap: 3.5rem; }
.levels { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
.level-row { display: grid; grid-template-columns: 90px 1fr; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.level-num { font-family: var(--display); font-weight: 800; font-size: 1.6rem; color: var(--gold); }
.level-row h4 { font-size: 1.15rem; font-family: var(--sans); font-weight: 700; }
.level-row p { color: var(--cream-3); font-size: 1rem; margin-top: .3rem; }

.amenities-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.amenity {
  padding: 1.1rem 1.2rem; border-radius: 12px; background: rgba(243,234,217,.02);
  border: 1px solid var(--line-2);
}
.amenity-label { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-2); }
.amenity-value { font-size: 1.02rem; color: var(--cream-2); margin-top: .35rem; }

@media (min-width: 960px) {
  .salon-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 540px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   10. Galería
   ============================================================= */
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
.gallery-photo {
  position: relative; aspect-ratio: 4/5; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  display: block;
  transition: transform .5s var(--ease-out), border-color .5s var(--ease-out);
}
.gallery-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease-out), filter .6s var(--ease-out);
}
@media (min-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1280px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =============================================================
   10b. Video
   ============================================================= */
.video-player {
  position: relative; width: 100%; max-width: 340px; margin-inline: auto;
  aspect-ratio: 9 / 16; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-3);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.6);
}
.video-player video { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(28,20,12,.28);
  transition: background-color .3s var(--ease-out);
}
.video-play svg { position: relative; z-index: 1; width: 26px; height: 26px; color: #20160c; margin-left: 3px; }
.video-play::before {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 74px; height: 74px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  box-shadow: 0 10px 30px -6px rgba(187,135,82,.6);
}
.video-player.is-playing .video-play { display: none; }

/* =============================================================
   11. Confianza / stats band
   ============================================================= */
.trust-band {
  padding-block: 3.2rem;
}
.trust-grid { display: grid; gap: 2rem; grid-template-columns: repeat(2, 1fr); text-align: center; }
.trust-value { font-family: var(--display); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-2); }
.trust-label { font-size: .92rem; color: var(--cream-3); margin-top: .3rem; }
.trust-links { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

.reviews-marquee { margin-top: 3rem; }

/* Barra inferior arrastrable del carrusel de reseñas */
.reviews-bar {
  position: relative; height: 6px; margin: 1.2rem auto 0; max-width: 320px;
  border-radius: 999px; background: rgba(244,234,217,.1); cursor: pointer;
  touch-action: none;
}
.reviews-bar-thumb {
  position: absolute; top: 0; left: 0; height: 100%; width: 40%; min-width: 44px;
  border-radius: 999px; background: linear-gradient(90deg, var(--gold-2), var(--gold));
  transition: background-color .3s var(--ease-out);
}
.reviews-track {
  display: flex; gap: 1.2rem;
  overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: .5rem; cursor: grab;
  scroll-behavior: auto;
}
.reviews-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 82%; display: flex; flex-direction: column; gap: .8rem;
  padding: 1.4rem 1.4rem; border-radius: 16px;
  background: linear-gradient(165deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line);
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
@media (min-width: 560px) {
  .review-card { flex-basis: calc((100% - 1.2rem) / 2); }
}
@media (min-width: 960px) {
  .review-card { flex-basis: calc((100% - 2.4rem) / 3); }
}
.review-stars { color: var(--gold-2); letter-spacing: .12em; font-size: .95rem; }
.review-text { color: var(--cream-2); font-size: .92rem; line-height: 1.55; }
.review-author strong { display: block; font-size: .9rem; }
.review-author span { display: block; font-size: .78rem; color: var(--cream-3); margin-top: .15rem; }

@media (min-width: 720px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   12. Formulario de cotización
   ============================================================= */
.quote-wrap {
  display: grid; gap: 2.6rem; grid-template-columns: minmax(0, 1fr);
  background: linear-gradient(165deg, var(--bg-card), var(--bg-3));
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  position: relative; overflow: hidden;
}
.quote-intro, .form-grid { min-width: 0; }
.quote-wrap::after {
  content: ""; position: absolute; inset: -60% -20% auto auto; width: 60%; height: 120%;
  background: radial-gradient(circle, rgba(187,135,82,.14), transparent 70%);
  pointer-events: none;
}
.quote-intro h3 { font-size: clamp(1.7rem, 3vw, 2.2rem); }
.quote-intro p { color: var(--cream-3); margin-top: 1rem; max-width: 42ch; }
.quote-intro-points { margin-top: 1.6rem; display: flex; flex-direction: column; gap: .8rem; }
.quote-intro-points li { display: flex; align-items: flex-start; gap: .7em; font-size: 1rem; color: var(--cream-2); }
.quote-intro-points svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; margin-top: .1em; }

.form-grid { display: grid; gap: 1.1rem; position: relative; z-index: 1; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; color: var(--cream-3); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .96rem; color: var(--cream);
  background: rgba(28,20,12,.6); border: 1px solid var(--line); border-radius: 10px;
  padding: .85rem 1rem; transition: border-color .3s var(--ease-out), background-color .3s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(187,135,82,.06);
}
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.form-foot { display: flex; flex-direction: column; gap: .9rem; margin-top: .4rem; }
.form-note { font-size: .78rem; color: var(--cream-3); }
.form-success {
  display: none; align-items: center; gap: .8rem; padding: 1rem 1.2rem; border-radius: 12px;
  background: rgba(187,135,82,.1); border: 1px solid rgba(187,135,82,.3); color: var(--gold-2); font-size: .9rem;
}
.form-success.is-visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex: none; }
.check-path { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawCheck .6s var(--ease-out) forwards .1s; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

@media (min-width: 640px) {
  .field-row-2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .quote-wrap { grid-template-columns: .8fr 1.2fr; }
}

/* =============================================================
   13. Ubicación
   ============================================================= */
.location-grid { display: grid; gap: 2rem; }
.location-card {
  border: 1px solid var(--line); border-radius: 18px; padding: 1.8rem;
  background: rgba(243,234,217,.02);
}
.location-row { display: flex; gap: .9rem; padding-block: .9rem; border-bottom: 1px solid var(--line-2); }
.location-row:last-child { border-bottom: none; }
.location-row svg { width: 20px; height: 20px; color: var(--gold-2); flex: none; margin-top: .1em; }
.location-row strong { display: block; font-size: .92rem; }
.location-row span { display: block; font-size: .96rem; color: var(--cream-3); margin-top: .15rem; }
.map-frame { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.35) invert(.92) contrast(.9); }

@media (min-width: 960px) {
  .location-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .map-frame { aspect-ratio: auto; }
}

/* =============================================================
   14. Footer
   ============================================================= */
.footer { background: transparent; padding-block: 3.5rem 2rem; }
.footer-grid { display: grid; gap: 2.4rem; }
.footer-brand { display: flex; align-items: center; gap: .8rem; font-family: var(--display); font-size: 1.3rem; }
.footer-brand-mark { width: 40px; height: 40px; border-radius: 10px; flex: none; }
.footer-tag { color: var(--cream-3); font-size: .98rem; margin-top: .6rem; max-width: 32ch; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.3rem; }
.footer-social a {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  color: var(--cream-2); background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out), transform .3s var(--ease-out), background-color .3s var(--ease-out);
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold-2);
  background: rgba(187,135,82,.08); transform: translateY(-3px);
}
.footer-social svg { width: 22px; height: 22px; }
.footer-col h5 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--cream-3); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col p { font-size: 1rem; color: var(--cream-2); }
.footer-bottom {
  margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  font-size: .78rem; color: var(--cream-3);
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr .8fr .8fr 1fr; }
}

/* =============================================================
   15. Floating WhatsApp
   ============================================================= */
.wa-float {
  position: fixed; right: 1.3rem; bottom: 1.3rem; z-index: 600;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #34d67a, #1fb35e);
  box-shadow: 0 12px 30px -8px rgba(31,179,94,.65);
  transition: transform .35s var(--ease-bounce);
}
.wa-float svg { width: 30px; height: 30px; color: #fff; }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: rgba(52,214,122,.55);
  animation: waPulse 2.4s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* =============================================================
   16. Splash
   ============================================================= */
.splash {
  position: fixed; inset: 0; z-index: 900;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  animation: splashSafety .01s 4.5s forwards;
}
.splash.is-out { opacity: 0; pointer-events: none; transition: opacity .6s var(--ease-out); }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; } }
.splash-mark { display: flex; flex-direction: column; align-items: center; gap: 1rem; font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--gold); letter-spacing: .04em; opacity: 0; animation: splashIn 1.4s var(--ease-out) forwards .2s; }
.splash-mark img { width: 56px; height: 56px; border-radius: 14px; }
@keyframes splashIn { to { opacity: 1; } }

/* =============================================================
   17. Responsive base tweaks
   ============================================================= */
@media (min-width: 540px)  { .container { padding-inline: 2rem; } }
@media (min-width: 1280px) { .container { padding-inline: 2.5rem; } }

/* =============================================================
   18. Hover effects — real pointers only
   Touch browsers simulate :hover on tap and don't reliably clear
   it until the next tap elsewhere, so Safari and Chrome end up
   showing these cards in different "stuck" states. Gating hover
   behind (hover: hover) keeps touch devices consistent everywhere.
   ============================================================= */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 16px 38px -10px rgba(187, 135, 82, .7); }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); background: rgba(187,135,82,.08); }
  .nav-links a:hover { color: var(--cream); }
  .nav-links a:hover::after { right: 0; }
  .mobile-menu a:hover { color: var(--gold-2); }
  .event-tile:hover { transform: translateY(-4px); border-color: rgba(187,135,82,.45); }
  .event-tile:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1.03); }
  .gallery-photo:hover { transform: translateY(-4px); border-color: rgba(187,135,82,.4); }
  .gallery-photo:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1.03); }
  .video-play:hover { background: rgba(28,20,12,.15); }
  .review-card:hover { border-color: rgba(187,135,82,.45); transform: translateY(-3px); }
  .footer-social a:hover { border-color: var(--gold); transform: translateY(-2px); }
  .footer-col a:hover { color: var(--gold-2); }
  .wa-float:hover { transform: scale(1.08); }
}
