:root {
  --bg: #0e0b12;
  --bg2: #15111c;
  --card: #1b1622;
  --ink: #f4eee9;
  --ink2: #cfc6bd;
  --muted: #9a8f86;
  --line: rgba(255,255,255,0.08);
  --gold: #d9a441;
  --gold-soft: #e7c074;
  --wine: #7b2d3a;
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0,0,0,0.45);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.1; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.4rem; }

/* Botones */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font-weight: 600; font-size: .95rem; letter-spacing: .3px; padding: .85rem 1.7rem; border-radius: 50px; cursor: pointer; border: 1px solid transparent; transition: transform .15s, background .2s, color .2s, border-color .2s; }
.btn-sm { padding: .55rem 1.2rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2.1rem; }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-soft)); color: #2a1c08; box-shadow: 0 8px 26px rgba(217,164,65,.28); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* Age gate */
.age { position: fixed; inset: 0; z-index: 999; background: rgba(6,4,9,.92); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 1.4rem; }
.age-card { background: var(--card); border: 1px solid var(--line); border-radius: 20px; max-width: 420px; padding: 2.4rem 2rem; text-align: center; box-shadow: var(--shadow); }
.age-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 4px; color: var(--gold-soft); margin-bottom: 1rem; }
.age-card h2 { font-size: 2rem; margin-bottom: .6rem; }
.age-card p { color: var(--ink2); font-size: .95rem; margin-bottom: 1.4rem; }
.age-btns { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.2rem; }
.age-card small { color: var(--muted); font-size: .76rem; }

/* Header */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(14,11,18,.7); backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: border-color .2s, background .2s; }
.nav.scrolled { border-color: var(--line); background: rgba(14,11,18,.92); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; letter-spacing: 3px; color: var(--ink); }
.logo span { color: var(--gold); }
.links { display: flex; align-items: center; gap: 1.8rem; }
.links a { font-size: .92rem; font-weight: 500; color: var(--ink2); transition: color .15s; }
.links a:hover { color: var(--gold-soft); }
.links .btn { color: #2a1c08; }
.burger { display: none; background: none; border: none; color: var(--ink); cursor: pointer; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 5.5rem 0 5rem; background: radial-gradient(120% 90% at 80% 0%, #241726 0%, var(--bg) 55%); }
.hero-glow { position: absolute; top: -120px; right: -80px; width: 460px; height: 460px; background: radial-gradient(circle, rgba(217,164,65,.22), transparent 70%); pointer-events: none; }
.hero-in { position: relative; max-width: 760px; }
.tag { display: inline-block; color: var(--gold-soft); border: 1px solid rgba(217,164,65,.35); background: rgba(217,164,65,.06); font-size: .78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px; margin-bottom: 1.4rem; }
.hero h1 { font-size: clamp(2.8rem, 7vw, 5rem); letter-spacing: -.01em; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.lead { font-size: 1.12rem; color: var(--ink2); max-width: 560px; margin-bottom: 2rem; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.hero-mini { display: flex; gap: 2.4rem; flex-wrap: wrap; margin-top: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero-mini div { display: flex; flex-direction: column; }
.hero-mini strong { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--gold-soft); }
.hero-mini span { font-size: .82rem; color: var(--muted); }

/* Secciones */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg2); }
.head { max-width: 600px; margin: 0 auto 3.2rem; text-align: center; }
.eyebrow { display: inline-block; color: var(--gold); font-weight: 600; font-size: .76rem; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: .8rem; }
.head h2 { font-size: clamp(2.1rem, 4.5vw, 3rem); margin-bottom: .5rem; }
.head p { color: var(--muted); font-size: 1.02rem; }

/* Ambiente */
.why-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3.5rem; align-items: center; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 130px; gap: 1rem; }
.mood { border-radius: var(--radius); display: flex; align-items: flex-end; padding: 1rem; border: 1px solid var(--line); position: relative; overflow: hidden; }
.mood span { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--ink); position: relative; z-index: 1; }
.mood-a { background: linear-gradient(150deg, #3a2233, #1b1622); grid-row: span 2; }
.mood-b { background: linear-gradient(150deg, #2c2233, #1b1622); }
.mood-c { background: linear-gradient(150deg, #33291b, #1b1622); }
.mood-d { background: linear-gradient(150deg, #1f2a2c, #1b1622); grid-column: span 2; }
.why-lead { color: var(--ink2); font-size: 1.05rem; margin: .8rem 0 1.8rem; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.3rem; }
.why-list li { display: flex; gap: 1rem; align-items: flex-start; }
.why-list span { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: rgba(217,164,65,.1); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-size: .8rem; }
.why-list strong { display: block; font-size: 1.05rem; margin-bottom: .15rem; }
.why-list p { color: var(--muted); font-size: .92rem; }

/* Carta */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2.6rem; }
.menu-col { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.5rem; }
.menu-cat { font-size: 1.5rem; color: var(--gold-soft); margin-bottom: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.menu-item { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; padding: .6rem 0; border-bottom: 1px dashed rgba(255,255,255,.05); }
.menu-item:last-child { border-bottom: none; }
.menu-item b { font-weight: 600; font-size: .96rem; }
.menu-item small { display: block; color: var(--muted); font-size: .8rem; margin-top: .1rem; }
.menu-item span { color: var(--gold-soft); font-weight: 600; white-space: nowrap; font-size: .92rem; }
.menu-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 2.2rem; }

/* Noches */
.nights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.night { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.4rem; transition: transform .2s, border-color .2s; }
.night:hover { transform: translateY(-5px); border-color: rgba(217,164,65,.4); }
.night-day { display: inline-block; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: .8rem; }
.night h3 { font-size: 1.4rem; margin-bottom: .4rem; }
.night p { color: var(--muted); font-size: .9rem; }

/* CTA */
.section-cta { background: radial-gradient(120% 120% at 50% 0%, #2a1a2e, var(--bg) 70%); text-align: center; }
.cta-in { max-width: 640px; margin: 0 auto; }
.cta-in h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .6rem; }
.cta-in p { color: var(--ink2); font-size: 1.06rem; margin-bottom: 2rem; }
.cta-in .hero-btns { justify-content: center; }
.cta-info { font-size: .92rem !important; color: var(--muted) !important; margin-top: 2rem !important; line-height: 1.9; }

/* Footer */
.footer { background: #0a070d; border-top: 1px solid var(--line); padding: 3.2rem 0 1.8rem; }
.footer-in { text-align: center; }
.logo-foot { display: block; margin-bottom: .5rem; }
.footer-tag { color: var(--muted); font-size: .9rem; margin-bottom: 1.4rem; }
.footer-links { display: flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.6rem; }
.footer-links a { color: var(--ink2); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-soft); }
.footer-legal { max-width: 640px; margin: 0 auto 1.6rem; color: var(--muted); font-size: .76rem; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted); }

/* WhatsApp */
.wa-float { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }

/* Responsive */
@media (max-width: 940px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .nights { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}
@media (max-width: 720px) {
  .burger { display: flex; }
  .links { position: absolute; top: 74px; left: 0; right: 0; background: #15111c; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; padding: .5rem 1.4rem 1rem; display: none; }
  .links.open { display: flex; }
  .links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .links a:last-child { border-bottom: none; margin-top: .5rem; }
  .hero-mini { gap: 1.6rem; }
}
@media (max-width: 560px) {
  .menu-grid { grid-template-columns: 1fr; }
  .nights { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
