/* ============================================================
   OASIS · Sistema de diseño — Quiet Luxury oscuro
   ============================================================ */

:root {
  --bg: #0c0c0a;
  --bg-2: #11110d;
  --bg-3: #16150f;
  --line: rgba(201, 169, 97, 0.16);
  --line-soft: rgba(232, 220, 186, 0.09);

--sand: #e8dcba;
  --stone: #b6a67f;
  --muted: #908469;
  --gold: #c8a961;
  --gold-2: #a0803f;
  --gold-grad: linear-gradient(135deg, #e4c98c 0%, #c8a961 45%, #9d7f3c 100%);

  --ff-serif: "Cormorant Garamond", Georgia, serif;
  --ff-sans: "Raleway", system-ui, sans-serif;

  --nav-h: 74px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-padding-top: calc(var(--nav-h) + 12px);
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--sand);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
svg { width: 1.15em; height: 1.15em; }

::selection { background: rgba(200, 169, 97, 0.3); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #26241c; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-2); }

/* ---------- Tipografía ---------- */
h1, h2 { font-family: var(--ff-serif); font-weight: 300; line-height: 1.05; }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.section { padding: clamp(2.75rem, 5.5vw, 5.5rem) clamp(1.25rem, 5vw, 6rem); position: relative; }

.section-title {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.section-title em { font-style: italic; color: var(--gold); }

.accent { color: var(--gold); }

.section-desc { color: var(--muted); max-width: 46ch; font-size: 1.02rem; }

.lead { color: var(--stone); font-size: 1.08rem; max-width: 54ch; }

.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); display: flex; flex-direction: column; align-items: center; }

/* ---------- Botones ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
  white-space: nowrap;
}

.btn-icon { width: 1.1em; height: 1.1em; }

.btn-primary {
  background: var(--gold-grad);
  color: #14120b;
  box-shadow: 0 10px 30px -12px rgba(200, 169, 97, 0.55);
}
.btn-primary:hover { box-shadow: 0 16px 42px -12px rgba(200, 169, 97, 0.7); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-lg { padding: 1.15em 2.6em; font-size: 1rem; }
.btn-xl { width: 100%; padding: 1.35em; font-size: 1.05rem; }
.btn-sm { padding: 0.72em 1.5em; font-size: 0.85rem; }

/* ---------- Glass ---------- */
.glass {
  background: rgba(22, 21, 15, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-soft);
}

.glass-strong {
  background: rgba(17, 17, 13, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  border-radius: 28px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s, box-shadow 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(12, 12, 10, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line-soft);
box-shadow: 0 12px 40px -20px rgba(0, 0, 0, 0.8);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: var(--nav-h);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand { display: inline-flex; align-items: center; }
.brand-mark { height: 2.35rem; width: auto; object-fit: contain; display: block; }

.nav-links { display: flex; gap: 2.2rem; }
.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s;
}
.nav-link::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav-link:hover { color: var(--sand); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-link.active { color: var(--sand); }
.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-burger { display: none; flex-direction: column; gap: 6px; padding: 0.5rem; }
.nav-burger span { width: 26px; height: 2px; background: var(--sand); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 790;
  background: rgba(12, 12, 10, 0.97);
  backdrop-filter: blur(20px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-family: var(--ff-serif);
  font-size: 1.9rem;
}
.nav-mobile.open { display: flex; animation: fade 0.35s both; }
.nav-mobile a { color: var(--sand); padding: 0.3rem 1rem; }
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 78% 20%, rgba(200, 169, 97, 0.10), transparent 55%),
    radial-gradient(90% 80% at 12% 85%, rgba(160, 128, 63, 0.08), transparent 50%),
    linear-gradient(180deg, rgba(12, 12, 10, 0.68) 0%, rgba(12, 12, 10, 0.30) 45%, rgba(12, 12, 10, 0.84) 100%);
  pointer-events: none;
  z-index: 2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 1rem) 1.5rem 5rem;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 0.98;
}

.hero-line { display: block; }
.hero-line.accent {
  font-style: italic;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin: 1.6rem 0 2.4rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--stone);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 3rem;
}
.hero-trust li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--muted); letter-spacing: 0.04em; }
.hero-trust svg { color: var(--gold); width: 1.05em; height: 1.05em; }

.hero-scroll {
  position: absolute;
  bottom: 2.4rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
z-index: 3;
  color: var(--muted);
}
.hero-scroll-label { font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 52px; background: linear-gradient(180deg, var(--gold), transparent); animation: drip 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes drip { 0% { transform: scaleY(0); } 40% { transform: scaleY(1); } 100% { transform: scaleY(1.25); opacity: 0; } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  padding: 1.1rem 0;
  position: relative;
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--stone);
  white-space: nowrap;
}
.marquee-track em { color: var(--gold); font-style: normal; font-size: 0.9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   EXPERIENCIA
   ============================================================ */
.exp { background: var(--bg); }
.exp-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.exp-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: radial-gradient(80% 80% at 30% 20%, #1d1b13, #0f0f0c);
}
.exp-media img {
  width: 100%; height: 115%;
  object-fit: cover;
  will-change: transform;
}

.exp-badge {
  position: absolute;
  right: 1.4rem; bottom: 1.4rem;
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1rem 1.3rem;
  border-radius: 16px;
}
.exp-badge-num { font-family: var(--ff-serif); font-size: 2.3rem; color: var(--gold); line-height: 1; }
.exp-badge-label { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.5; }

.exp-list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.9rem; }
.exp-list li { display: flex; align-items: center; gap: 0.8rem; color: var(--stone); font-size: 0.98rem; }
.exp-list svg { color: var(--gold); flex: none; }

/* Stats */
.stats { margin-top: 2.8rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.stat b { display: block; font-family: var(--ff-serif); font-weight: 400; font-size: clamp(1.7rem, 2.6vw, 2.4rem); color: var(--sand); }
.stat b span { color: var(--gold); }
.stat span.lbl { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============================================================
   SERVICIOS
   ============================================================ */
.services { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
}

.svc {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.5s var(--ease);
  will-change: transform;
}
.svc:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.85);
}

.svc-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: radial-gradient(90% 90% at 50% 30%, #1d1b13, #0f0f0c);
}
.svc-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), opacity 0.3s;
  opacity: 0.92;
}
.svc:hover .svc-media img { transform: scale(1.07); }

.svc-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #14120b;
  background: var(--gold-grad);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.svc-price {
  position: absolute;
  bottom: 1rem; right: 1rem;
  z-index: 2;
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(12, 12, 10, 0.6);
  backdrop-filter: blur(10px);
  padding: 0.15rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--line);
}
.svc-price small { font-size: 0.72rem; color: var(--muted); font-family: var(--ff-sans); letter-spacing: 0.05em; }

.svc-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.svc-title { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 400; color: var(--sand); }
.svc-desc { color: var(--muted); font-size: 0.92rem; flex: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.4rem; }
.svc-dur { display: flex; align-items: center; gap: 0.45rem; color: var(--stone); font-size: 0.8rem; letter-spacing: 0.08em; }
.svc-dur svg { color: var(--gold); }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold);
}
.svc-link svg { transition: transform 0.3s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(4px); }

.svc-actions { display: inline-flex; align-items: center; gap: 0.7rem; }
.svc-wa {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--stone);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.svc-wa svg { width: 16px; height: 16px; }
.svc-wa:hover { border-color: #1eab52; color: #1eab52; transform: translateY(-2px); }

.services-note { text-align: center; color: var(--muted); margin-top: 2.6rem; font-size: 0.9rem; }
.services-note b { color: var(--gold); font-weight: 500; }

/* ============================================================
   GALERÍA HORIZONTAL
   ============================================================ */
.gallery {
  position: relative;
  padding: clamp(2.75rem, 5.5vw, 5.5rem) 0;
  background: var(--bg);
  overflow: hidden;
}
.gallery-head { padding: 0 clamp(1.25rem, 5vw, 6rem); text-align: center; margin-bottom: 2.6rem; }

.gallery-stage { width: 100%; overflow: hidden; }

.gallery.mobile-scroll .gallery-stage {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery.mobile-scroll .gallery-stage::-webkit-scrollbar { display: none; }
.gallery-track { display: flex; gap: 1.4rem; padding: 0 clamp(1.25rem, 5vw, 6rem); width: max-content; will-change: transform; }

.g-item {
  position: relative;
  width: clamp(300px, 44vw, 560px);
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  flex: none;
  background: radial-gradient(90% 90% at 50% 30%, #1d1b13, #0f0f0c);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12, 12, 10, 0.55));
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover::after { opacity: 1; }

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.gallery-footer svg { color: var(--gold); animation: nudge 1.6s var(--ease) infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

/* ============================================================
   PAQUETES
   ============================================================ */
.packages { background: var(--bg-2); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.4rem 2.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, rgba(22, 21, 15, 0.6), rgba(17, 17, 13, 0.9));
  transition: transform 0.5s var(--ease), border-color 0.4s, background 0.4s;
}
.pkg:hover { transform: translateY(-6px); border-color: var(--line); }

.pkg.highlight {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200, 169, 97, 0.1), rgba(17, 17, 13, 0.95));
  box-shadow: 0 30px 70px -40px rgba(200, 169, 97, 0.4);
}
.pkg-flag {
  position: absolute;
  top: 1.2rem; right: 1.4rem;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.pkg-name { font-family: var(--ff-serif); font-size: 1.7rem; font-weight: 400; color: var(--sand); }
.pkg-desc { color: var(--muted); font-size: 0.92rem; margin: 0.8rem 0 1.4rem; }
.pkg-price { display: flex; align-items: baseline; gap: 0.7rem; margin-bottom: 1.5rem; }
.pkg-price b { font-family: var(--ff-serif); font-size: 2.8rem; font-weight: 400; color: var(--sand); line-height: 1; }
.pkg-price b small { font-size: 1.1rem; color: var(--muted); }
.pkg-price s { color: var(--muted); font-size: 1rem; }
.pkg-price span.disc { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; }
.pkg-list { flex: 1; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; }
.pkg-list li { display: flex; align-items: center; gap: 0.7rem; color: var(--stone); font-size: 0.92rem; }
.pkg-list svg { color: var(--gold); flex: none; width: 1em; height: 1em; }

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonials { background: var(--bg); }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
}
.stars { display: inline-flex; gap: 0.15rem; color: var(--gold); }
.stars svg { width: 0.95em; height: 0.95em; }
.rating-text { font-size: 0.82rem; color: var(--stone); letter-spacing: 0.04em; }

.t-carousel { max-width: 820px; margin: 2rem auto 0; position: relative; overflow: hidden; }
.t-track { display: flex; transition: transform 0.7s var(--ease); width: max-content; }

.t-item {
  width: 100%;
  flex: 0 0 100%;
  padding: 0 0.4rem;
  display: flex;
}
.t-card {
  width: 100%;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(22, 21, 15, 0.6), rgba(17, 17, 13, 0.9));
  border: 1px solid var(--line-soft);
  text-align: center;
  position: relative;
}
.t-quote {
  position: absolute; top: -0.9rem; left: 1.6rem;
  color: var(--gold); opacity: 0.25; font-size: 3.2rem;
  font-family: var(--ff-serif);
}
.t-card p { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: var(--sand); font-weight: 300; margin: 0.6rem 0 1.6rem; }
.t-stars { color: var(--gold); display: inline-flex; gap: 0.2rem; margin-bottom: 0.4rem; }
.t-name { font-family: var(--ff-serif); color: var(--gold); font-size: 1.15rem; margin-top: 0.6rem; }
.t-role { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }

.t-nav { display: flex; align-items: center; justify-content: center; gap: 1.4rem; margin-top: 1.8rem; }
.t-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--sand);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.t-btn:hover { border-color: var(--gold); color: var(--gold); transform: scale(1.08); }
.t-btn.flip svg { transform: rotate(180deg); }
.t-dots { display: flex; gap: 0.5rem; }
.t-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--line); transition: all 0.35s var(--ease); }
.t-dot.active { width: 26px; background: var(--gold); }

/* ============================================================
   RESERVA
   ============================================================ */
.booking { background: var(--bg-2); }
.booking-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4vw, 3.6rem);
}
.booking-head { text-align: center; margin-bottom: 2.6rem; }
.booking-head .section-desc { margin: 0 auto; }

.booking-cols {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 2rem;
}
.booking-col { display: flex; flex-direction: column; gap: 0.9rem; }

.booking-label {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 0.2rem;
}
.booking-label svg { color: var(--gold); width: 1em; height: 1em; }

.service-pills { display: flex; flex-direction: column; gap: 0.6rem; }

.pill {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease);
  background: rgba(17, 17, 13, 0.4);
}
.pill:hover { border-color: var(--line); transform: translateY(-2px); }
.pill input { position: absolute; opacity: 0; pointer-events: none; }
.pill:has(input:checked) {
  border-color: var(--gold);
  background: rgba(200, 169, 97, 0.09);
  box-shadow: inset 0 0 0 1px rgba(200, 169, 97, 0.35);
}
.pill-t { display: flex; flex-direction: column; }
.pill-t b { font-family: var(--ff-serif); font-weight: 500; font-size: 1.08rem; color: var(--sand); }
.pill-t span { font-size: 0.74rem; color: var(--muted); }
.pill-price { font-family: var(--ff-serif); font-size: 1.2rem; color: var(--gold); white-space: nowrap; }
.pill-price small { font-size: 0.66rem; color: var(--muted); font-family: var(--ff-sans); }

@keyframes pillFlash {
  0% { box-shadow: 0 0 0 0 rgba(200, 169, 97, 0.55); }
  100% { box-shadow: 0 0 0 14px rgba(200, 169, 97, 0); }
}
.pill.flash {
  border-color: var(--gold);
  background: rgba(200, 169, 97, 0.16);
  animation: pillFlash 1.6s ease-out 1;
}

.field { position: relative; }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(14, 14, 11, 0.7);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  color: var(--sand);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.95rem 1.05rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.35s var(--ease), background 0.3s;
  appearance: none;
}
.field textarea { resize: vertical; }

.field input::placeholder, .field textarea::placeholder { color: #5c543f; }

.field select {
  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 d='M1 1l5 5 5-5' fill='none' stroke='%23c8a961' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
}
.field select:invalid { color: #5c543f; }
.field select option { background: #16150f; color: var(--sand); }

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.14);
}
.field input.invalid, .field select.invalid {
  border-color: #b0564a;
  box-shadow: 0 0 0 3px rgba(176, 86, 74, 0.16);
  animation: shake 0.4s ease;
}
@keyframes shake { 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }

.booking-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.4rem;
  justify-content: center;
  margin: 1.8rem 0 1.4rem;
  padding: 1rem 1.4rem;
  border-radius: 14px;
  background: rgba(14, 14, 11, 0.5);
  border: 1px dashed var(--line);
}
.bs-item { font-size: 0.9rem; color: var(--muted); }
.bs-item b { color: var(--stone); font-weight: 500; }
.bs-item em { color: var(--gold); font-style: normal; }

.booking-form .btn-xl { margin-top: 0; }

.booking-alt {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.4rem;
  color: var(--muted); font-size: 0.85rem;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.4rem);
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-item svg {
  color: var(--gold);
  width: 1.25em; height: 1.25em;
  margin-top: 0.1rem;
  flex: none;
}
.contact-item b { display: block; color: var(--stone); font-weight: 500; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-item span { color: var(--muted); font-size: 0.96rem; }
.contact-actions { margin-top: 0.6rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  min-height: 340px;
  position: relative;
  background: radial-gradient(80% 80% at 40% 30%, #1d1b13, #0f0f0c);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); opacity: 0.9; }

/* ============================================================
   FOOTER + FLOAT
   ============================================================ */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
  padding: 3rem 1.5rem 2.4rem;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-brand .brand-mark { height: 3.1rem; }
.footer-brand p { font-family: var(--ff-serif); font-style: italic; font-size: 0.98rem; color: var(--muted); margin-top: 0.2rem; }
.footer-copy { font-size: 0.8rem; color: var(--muted); }

.wa-float {
  position: fixed;
  right: 1.3rem; bottom: 1.3rem;
  z-index: 850;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #1eab52;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 38px -12px rgba(30, 171, 82, 0.6);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.wa-float:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 22px 48px -12px rgba(30, 171, 82, 0.75); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; }
.wa-float::before {
  content: "";
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(30, 171, 82, 0.4);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.85); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

body.admin-on .wa-float { bottom: 4.6rem; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1200; border-radius: 50%; }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1px solid rgba(200, 169, 97, 0.5);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s, background 0.3s, opacity 0.3s;
}
.cursor-ring.hover { width: 62px; height: 62px; border-color: rgba(200, 169, 97, 0.9); background: rgba(200, 169, 97, 0.07); }
.cursor-ring.hide { opacity: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid, .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-cols { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-media { aspect-ratio: 16 / 12; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
.services-grid, .packages-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .hero-scroll { display: none; }
  .booking-wrap { padding: 1.6rem 1.1rem; }
  .g-item { width: 82vw; }
}

/* ============================================================
   ACCESIBILIDAD / REDUCED MOTION
   ============================================================ */
.skip-link {
  position: fixed;
  top: -70px; left: 1rem;
  z-index: 9999;
  background: #14120b;
  color: var(--gold);
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-weight: 500;
  transition: top 0.25s;
}
.skip-link:focus { top: 1rem; }

@media (hover: none), (pointer: coarse) {
  .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  .hero-scroll-line { animation: none; }
  .wa-float::before { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   MODO ADMIN
   ============================================================ */
.admin-entry { color: var(--gold); font-weight: 500; text-decoration: underline; text-underline-offset: 3px; opacity: 0.75; }
.admin-entry:hover { opacity: 1; }
.admin-entry.on { text-decoration: none; opacity: 1; }

/* Controles sobre tarjetas de servicio */
.svc-admin {
  position: absolute;
  top: 0.8rem; right: 0.8rem;
  z-index: 3;
  display: flex;
  gap: 0.3rem;
  background: rgba(12, 12, 10, 0.72);
  backdrop-filter: blur(10px);
  padding: 0.3rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 169, 97, 0.45);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
body.admin-on .svc-admin { opacity: 1; transform: none; }
.sa {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-size: 0.8rem;
  color: var(--sand);
  background: rgba(30, 30, 22, 0.8);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.sa:hover { background: rgba(200, 169, 97, 0.22); color: var(--gold); transform: scale(1.08); }
.sa.danger:hover { background: rgba(176, 86, 74, 0.3); color: #e0877a; }
.sa-sep { width: 1px; background: rgba(200, 169, 97, 0.3); }

.svc-add, .a-btn.dashed {
  border: 1.5px dashed var(--line);
  background: rgba(22, 21, 15, 0.35);
  color: var(--gold);
  letter-spacing: 0.06em;
}
.svc-add:hover, .a-btn.dashed:hover { border-color: var(--gold); background: rgba(200, 169, 97, 0.08); }

.svc-add {
  border-radius: var(--radius);
  min-height: 140px;
  display: grid; place-items: center;
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-style: italic;
}

/* Barra flotante admin */
.admin-bar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.8rem;
  border-radius: 16px;
  background: rgba(17, 17, 13, 0.92);
  backdrop-filter: blur(18px);
  border: 1px solid var(--gold);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.9);
  max-width: calc(100vw - 1rem);
}
.admin-title {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-right: 0.4rem;
  white-space: nowrap;
}
.admin-bar button {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--sand);
  background: rgba(40, 38, 28, 0.9);
  border: 1px solid rgba(200, 169, 97, 0.25);
  padding: 0.45rem 0.85rem;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}
.admin-bar button:hover { border-color: var(--gold); color: var(--gold); }
.admin-bar button.acc { background: var(--gold-grad); color: #14120b; border-color: transparent; font-weight: 600; }
.admin-bar .a-sep { width: 1px; align-self: stretch; background: rgba(200, 169, 97, 0.25); margin: 0 0.25rem; }

@media (max-width: 720px) {
  .admin-bar { bottom: 0.6rem; left: 0.5rem; right: 0.5rem; transform: none; justify-content: flex-start; flex-wrap: wrap; }
}

/* Modal */
body.modal-open { overflow: hidden; }
.a-overlay {
  position: fixed; inset: 0;
  z-index: 1100;
  background: rgba(8, 8, 6, 0.82);
  backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 1rem;
}
.a-modal {
  width: min(92vw, 520px);
  max-height: 86vh;
  overflow-y: auto;
  background: #14130e;
  border: 1px solid var(--gold);
  border-radius: 22px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  padding: 1.8rem;
  position: relative;
  animation: aIn 0.35s var(--ease) both;
}
.a-modal.wide { width: min(94vw, 760px); }
@keyframes aIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } }
.a-close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--stone);
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.2s;
}
.a-close:hover { color: var(--sand); background: rgba(255, 255, 255, 0.1); }

/* Pantalla de acceso admin */
.a-login {
  position: fixed; inset: 0; z-index: 1300;
  background: rgba(8, 8, 6, 0.92);
  backdrop-filter: blur(10px);
  display: grid; place-items: center; padding: 1rem;
}
.a-login-card {
  width: min(92vw, 380px);
  background: #14130e;
  border: 1px solid rgba(200, 169, 97, 0.4);
  border-radius: 24px;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.9);
  padding: 2.2rem 2rem 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  text-align: center;
  animation: aIn 0.35s var(--ease) both;
}
.a-login-card .brand-mark { height: 2.4rem; margin-bottom: 0.4rem; }
.a-login-card h2 { font-family: var(--ff-serif); font-weight: 400; font-size: 1.6rem; color: var(--sand); }
.a-login-sub { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.8rem; }
.a-login-card input {
  width: 100%;
  background: #1b1a14;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--sand);
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  outline: none;
}
.a-login-card input:focus { border-color: var(--gold); }
.a-login-card .btn { width: 100%; margin-top: 0.4rem; }
.a-login-err { color: #ff7b72; font-size: 0.85rem; min-height: 1.1rem; }
.a-login-out { color: var(--stone); font-size: 0.82rem; margin-top: 0.6rem; text-decoration: none; }
.a-login-out:hover { color: var(--gold); }

.a-title { font-family: var(--ff-serif); font-weight: 400; font-size: 1.8rem; color: var(--sand); margin-bottom: 1.3rem; }

.a-field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.a-field-label {
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone);
}
.a-input, .a-textarea {
  width: 100%;
  background: #1b1a14;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  color: var(--sand);
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.a-input:focus, .a-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 169, 97, 0.14); }
.a-textarea { resize: vertical; }
.a-hint { font-size: 0.76rem; color: var(--muted); }

.a-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }

.a-preview {
  display: flex; align-items: center; gap: 0.9rem;
  margin-bottom: 1.1rem;
  padding: 0.7rem;
  border-radius: 14px;
  background: #1b1a14;
  border: 1px solid var(--line-soft);
  color: var(--muted); font-size: 0.78rem; letter-spacing: 0.08em;
}
.a-preview img { width: 86px; height: 56px; object-fit: cover; border-radius: 10px; }

.a-actions { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.4rem; }
.a-spacer { flex: 1; }
.a-btn {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--sand);
  background: rgba(40, 38, 28, 0.9);
  border: 1px solid rgba(200, 169, 97, 0.3);
  padding: 0.6rem 1.3rem;
  border-radius: 10px;
  transition: all 0.2s;
  white-space: nowrap;
}
.a-btn:hover { border-color: var(--gold); color: var(--gold); }
.a-btn.acc { background: var(--gold-grad); color: #14120b; border-color: transparent; font-weight: 600; }
.a-btn.danger { border-color: rgba(176, 86, 74, 0.5); color: #e0877a; }
.a-btn.danger:hover { background: rgba(176, 86, 74, 0.18); }
.a-btn.mini { padding: 0.35rem 0.8rem; font-size: 0.78rem; }
.a-btn.dashed { border-style: dashed; width: 100%; padding: 0.8rem; }

/* Tabs */
.a-tabs { display: flex; gap: 0.4rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.a-tab {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  transition: all 0.2s;
}
.a-tab.active { background: rgba(200, 169, 97, 0.14); border-color: var(--gold); color: var(--gold); }
.a-tab:hover { color: var(--sand); }

/* Tarjetas anidadas */
.a-card {
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 1.1rem;
  margin-bottom: 1rem;
  background: rgba(18, 18, 13, 0.6);
}
.a-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.4rem; }
.a-card-head b { font-family: var(--ff-serif); font-weight: 400; font-size: 1.15rem; color: var(--gold); }
.a-card-actions { display: flex; margin-top: 0.6rem; }
.a-check {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: var(--stone);
  margin: 0.4rem 0 0.8rem;
  cursor: pointer;
}
.a-check input[type="checkbox"] { accent-color: var(--gold-2); width: 16px; height: 16px; }

/* Adaptaci�n m�vil del grid */
@media (max-width: 640px) {
  .a-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
body.lb-open { overflow: hidden; }
.lb-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(8, 8, 6, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 2rem 1rem;
}
.lb-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  animation: aIn 0.3s var(--ease) both;
}
.lb-content img {
  max-width: 100%;
  max-height: 74vh;
  border-radius: 20px;
  border: 1px solid var(--line);
  object-fit: cover;
}
.lb-caption { font-family: var(--ff-serif); font-style: italic; color: var(--stone); font-size: 1.15rem; }
.lb-close {
  position: absolute;
  top: -2.7rem;
  right: -0.4rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--stone);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  font-size: 0.95rem;
  transition: all 0.2s;
}
.lb-close:hover { color: var(--sand); border-color: var(--gold); }

/* ============================================================
   ADMIN · extras
   ============================================================ */
.a-tabpanel { max-height: 54vh; overflow-y: auto; padding-right: 0.3rem; }
.a-section {
  margin: 1.3rem 0 0.7rem;
  padding-top: 0.8rem;
  border-top: 1px dashed var(--line-soft);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.a-order { display: inline-flex; gap: 0.3rem; }
.a-btn.mini:disabled { opacity: 0.35; cursor: default; }
.a-btn.mini:disabled:hover { border-color: rgba(200, 169, 97, 0.3); color: var(--sand); }
