:root {
  --bg: #0b0a08;
  --bg-soft: #15110d;
  --panel: #1b1510;
  --panel-2: #241a13;
  --cream: #f5e4c6;
  --muted: #c6b497;
  --tan: #aa896e;
  --copper: #c98a54;
  --copper-2: #e0a66f;
  --line: rgba(224,166,111,.28);
  --white: #fffaf1;
  --shadow: 0 24px 80px rgba(0,0,0,.38);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.08) 0 1px, transparent 1px), radial-gradient(circle at 80% 60%, rgba(255,255,255,.06) 0 1px, transparent 1px);
  background-size: 28px 28px, 34px 34px;
  z-index: 100;
  mix-blend-mode: soft-light;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--copper-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-family: "Oswald", sans-serif;
  font-size: .82rem;
  font-weight: 700;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1,h2,h3 { font-family: "Oswald", sans-serif; margin: 0 0 18px; line-height: 1.03; text-transform: uppercase; letter-spacing: .02em; }
h1 { font-size: clamp(3.4rem, 8vw, 7.5rem); max-width: 900px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.6rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 18px; color: var(--muted); font-size: 1.08rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { background: rgba(11,10,8,.82); backdrop-filter: blur(16px); border-bottom-color: rgba(255,255,255,.08); }
.nav { height: 90px; display: flex; align-items: center; justify-content: space-between; }
.brand img { width: 122px; height: auto; filter: drop-shadow(0 8px 20px rgba(0,0,0,.35)); }
.nav-menu { display: flex; align-items: center; gap: 28px; font-weight: 600; }
.nav-menu > a:not(.btn) { position: relative; color: #eee2d1; }
.nav-menu > a:not(.btn)::after { content:""; position:absolute; left:0; right:100%; bottom:-6px; height:1px; background:var(--copper-2); transition:right .2s; }
.nav-menu > a:not(.btn):hover::after { right:0; }
.nav-toggle { display:none; background:none; border:0; width:44px; height:44px; padding:10px; }
.nav-toggle span { display:block; height:2px; background:#fff; margin:6px 0; transition:.2s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid var(--copper);
  background: linear-gradient(180deg, var(--copper-2), var(--copper));
  color: #16100c;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(201,138,84,.2);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201,138,84,.28); filter: brightness(1.05); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .9rem; }
.btn-ghost { color: var(--cream); background: rgba(13,10,8,.42); backdrop-filter: blur(6px); border-color: rgba(245,228,198,.35); box-shadow:none; }

.hero { min-height: 100svh; position: relative; display:flex; align-items:flex-end; padding: 150px 0 100px; overflow:hidden; }
.hero-bg { position:absolute; inset:0; }
.hero-bg img { width:100%; height:100%; object-fit:cover; object-position:center 57%; }
.hero-shade { position:absolute; inset:0; background: linear-gradient(90deg, rgba(7,6,5,.93) 0%, rgba(7,6,5,.65) 48%, rgba(7,6,5,.18) 78%), linear-gradient(0deg, rgba(11,10,8,.92) 0%, transparent 42%); }
.hero-content { position:relative; z-index:2; }
.hero-content p { max-width: 720px; font-size:1.25rem; color:#e0d1be; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:32px; }
.hero-meta { display:flex; gap:24px; flex-wrap:wrap; margin-top:38px; color:#e9dcc9; font-weight:600; }
.scroll-cue { position:absolute; right:28px; bottom:24px; z-index:3; width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.25); border-radius:50%; animation:float 2s ease-in-out infinite; }
@keyframes float { 50% { transform: translateY(6px); } }

.experience { background: radial-gradient(circle at 80% 20%, rgba(201,138,84,.12), transparent 35%), var(--bg); }
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap:80px; align-items:center; }
.content > p { max-width: 670px; }
.feature-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:34px; }
.feature-grid article { border:1px solid var(--line); background:rgba(255,255,255,.025); padding:22px; border-radius:16px; }
.feature-grid strong { display:block; font-family:"Oswald"; text-transform:uppercase; font-size:1.2rem; margin-bottom:4px; }
.feature-grid span { color:var(--muted); }
.photo-card { margin:0; border-radius:28px; overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); transform:rotate(1.2deg); }
.photo-card img { width:100%; aspect-ratio:4/5; object-fit:cover; }

.menu-section { background: linear-gradient(180deg,#15100c,#0e0c0a); border-block:1px solid rgba(255,255,255,.05); }
.section-head { max-width:780px; margin-bottom:42px; }
.menu-cards { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.menu-card { padding:28px; min-height:240px; border:1px solid var(--line); background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015)); border-radius:20px; transition:transform .25s,border-color .25s,background .25s; }
.menu-card:hover { transform:translateY(-6px); border-color:rgba(224,166,111,.55); background:rgba(201,138,84,.08); }
.menu-icon { display:block; font-size:2rem; margin-bottom:22px; filter:saturate(.75); }
.menu-card h3 { color:var(--cream); }
.menu-card p { font-size:1rem; }
.pdf-panel { margin-top:18px; border:1px solid var(--line); border-radius:var(--radius); padding:30px; display:flex; align-items:center; justify-content:space-between; gap:24px; background:linear-gradient(120deg,rgba(201,138,84,.13),rgba(255,255,255,.02)); }
.pdf-panel h3 { font-size:2rem; margin:6px 0; }
.pdf-panel p { margin:0; }
.pdf-actions { display:flex; gap:10px; flex-wrap:wrap; }

.gallery-section { background: var(--bg); }
.gallery { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:250px; gap:12px; }
.gallery-item { border:0; padding:0; overflow:hidden; border-radius:18px; cursor:zoom-in; background:#1a1714; grid-column:span 4; }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 8; }
.gallery-item img { width:100%; height:100%; object-fit:cover; transition:transform .55s ease,filter .3s; }
.gallery-item:hover img { transform:scale(1.045); filter:brightness(1.06); }

.location-section { background: linear-gradient(180deg,#0d0b09,#17110d); }
.location-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:center; }
.contact-list { display:grid; gap:10px; margin:30px 0; }
.contact-list a { display:flex; justify-content:space-between; gap:20px; padding:16px 0; border-bottom:1px solid rgba(255,255,255,.09); }
.contact-list span { color:var(--muted); }
.contact-list strong { text-align:right; }
.location-actions { display:flex; gap:10px; flex-wrap:wrap; }
.location-visual { position:relative; border-radius:28px; overflow:hidden; box-shadow:var(--shadow); border:1px solid var(--line); }
.location-visual img { width:100%; height:580px; object-fit:cover; }
.location-badge { position:absolute; left:20px; bottom:20px; display:flex; align-items:center; gap:12px; padding:14px 18px; background:rgba(9,8,7,.82); backdrop-filter:blur(12px); border:1px solid rgba(255,255,255,.12); border-radius:16px; }
.location-badge span { font-size:1.4rem; }
.location-badge strong,.location-badge small { display:block; }
.location-badge small { color:var(--muted); }

.reservation-strip { padding:70px 0; background:linear-gradient(100deg,#6e4528,#b27b50 55%,#6f472d); }
.reservation-inner { display:flex; justify-content:space-between; align-items:center; gap:30px; }
.reservation-strip .eyebrow { color:#2a190f; }
.reservation-strip h2 { color:#130e0a; margin:6px 0 0; }
.reservation-strip .btn { background:#100d0b; border-color:#100d0b; color:var(--cream); box-shadow:none; }
footer { padding:34px 0; background:#080706; border-top:1px solid rgba(255,255,255,.06); }
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:24px; }
.footer-inner img { width:110px; }
.footer-inner p { margin:0; font-size:.96rem; }
.footer-inner a { color:var(--copper-2); font-weight:700; }

.whatsapp-float { position:fixed; right:20px; bottom:20px; z-index:45; width:58px; height:58px; display:grid; place-items:center; border-radius:50%; background:#25D366; color:#061c0e; font-weight:900; box-shadow:0 12px 32px rgba(0,0,0,.4); border:3px solid rgba(255,255,255,.18); }

.pdf-modal,.lightbox { border:1px solid var(--line); background:#0c0a08; color:#fff; padding:0; border-radius:18px; box-shadow:var(--shadow); }
.pdf-modal { width:min(1050px,94vw); height:min(88vh,900px); }
.pdf-modal::backdrop,.lightbox::backdrop { background:rgba(0,0,0,.84); backdrop-filter:blur(5px); }
.modal-bar { height:58px; display:flex; align-items:center; justify-content:space-between; padding:0 18px; border-bottom:1px solid rgba(255,255,255,.08); }
.modal-bar button,.lightbox-close { background:none; border:0; color:white; font-size:2rem; cursor:pointer; }
.pdf-modal iframe { width:100%; height:calc(100% - 58px); border:0; background:#fff; }
.lightbox { width:min(980px,94vw); max-height:92vh; overflow:hidden; }
.lightbox img { width:100%; max-height:88vh; object-fit:contain; background:#050505; }
.lightbox-close { position:absolute; top:8px; right:12px; z-index:2; width:44px; height:44px; border-radius:50%; background:rgba(0,0,0,.55); }

.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease,transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 980px) {
  .nav-menu { position:absolute; top:80px; left:20px; right:20px; padding:22px; border:1px solid var(--line); border-radius:18px; background:rgba(11,10,8,.96); backdrop-filter:blur(14px); flex-direction:column; align-items:stretch; gap:16px; transform:translateY(-12px); opacity:0; pointer-events:none; transition:.2s; }
  .nav-menu.open { transform:none; opacity:1; pointer-events:auto; }
  .nav-toggle { display:block; }
  .nav-menu .btn { width:100%; }
  .split,.location-grid { grid-template-columns:1fr; gap:42px; }
  .menu-cards { grid-template-columns:repeat(2,1fr); }
  .photo-card { max-width:680px; }
  .location-visual img { height:480px; }
  .reservation-inner { align-items:flex-start; flex-direction:column; }
}
@media (max-width: 720px) {
  .container { width:min(100% - 28px,1180px); }
  .section { padding:78px 0; }
  .nav { height:76px; }
  .brand img { width:100px; }
  .hero { padding:130px 0 70px; min-height:92svh; }
  .hero-bg img { object-position:60% center; }
  .hero-shade { background:linear-gradient(0deg,rgba(7,6,5,.97) 0%,rgba(7,6,5,.66) 60%,rgba(7,6,5,.35) 100%); }
  h1 { font-size:clamp(3.1rem,16vw,5rem); }
  h2 { font-size:clamp(2.3rem,12vw,3.5rem); }
  .hero-content p { font-size:1.1rem; }
  .hero-meta { gap:12px 18px; font-size:.95rem; }
  .scroll-cue { display:none; }
  .feature-grid,.menu-cards { grid-template-columns:1fr; }
  .menu-card { min-height:0; }
  .pdf-panel { align-items:flex-start; flex-direction:column; }
  .pdf-actions,.pdf-actions .btn { width:100%; }
  .gallery { grid-template-columns:1fr; grid-auto-rows:340px; }
  .gallery-item,.gallery-item.wide { grid-column:auto; }
  .gallery-item.tall { grid-row:auto; }
  .contact-list a { flex-direction:column; gap:4px; }
  .contact-list strong { text-align:left; }
  .location-visual img { height:430px; }
  .footer-inner { flex-direction:column; text-align:center; }
  .whatsapp-float { width:54px; height:54px; right:14px; bottom:14px; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}

/* FAQ / contenido semántico para SEO y GEO */
.faq-section { background: radial-gradient(circle at 15% 10%, rgba(201,138,84,.10), transparent 30%), #0d0b09; }
.faq-wrap { display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:start; }
.faq-list { display:grid; gap:12px; }
.faq-list details { border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.025); overflow:hidden; }
.faq-list summary { cursor:pointer; list-style:none; padding:20px 22px; font-family:"Oswald",sans-serif; font-size:1.15rem; font-weight:600; letter-spacing:.02em; color:var(--cream); position:relative; padding-right:52px; }
.faq-list summary::-webkit-details-marker { display:none; }
.faq-list summary::after { content:"+"; position:absolute; right:22px; top:50%; transform:translateY(-50%); color:var(--copper-2); font-size:1.6rem; line-height:1; }
.faq-list details[open] summary::after { content:"–"; }
.faq-list details p { margin:0; padding:0 22px 22px; color:var(--muted); }
.faq-list details a { color:var(--copper-2); font-weight:700; }
@media (max-width: 980px) { .faq-wrap { grid-template-columns:1fr; gap:28px; } }

/* Ajustes visuales v2 */
.brand {
  display:flex;
  align-items:center;
  justify-content:center;
  width:88px;
  height:76px;
  flex:0 0 auto;
}
.brand img {
  width:76px;
  height:76px;
  object-fit:contain;
  filter:drop-shadow(0 8px 20px rgba(0,0,0,.45));
}
.footer-inner img {
  width:92px;
  height:92px;
  object-fit:contain;
}
.gallery {
  grid-template-columns:repeat(3,minmax(0,1fr));
  grid-auto-rows:auto;
  gap:16px;
}
.gallery-item,
.gallery-item.tall,
.gallery-item.wide {
  grid-column:auto;
  grid-row:auto;
  aspect-ratio:4/5;
  border-radius:20px;
  border:1px solid rgba(224,166,111,.16);
  box-shadow:0 14px 40px rgba(0,0,0,.22);
}
.gallery-item img {
  object-position:center;
}
.gallery-item:nth-child(1) img,
.gallery-item:nth-child(4) img {
  object-position:center 55%;
}
.whatsapp-float {
  width:62px;
  height:62px;
  color:#fff;
  border:2px solid rgba(255,255,255,.82);
  box-shadow:0 14px 38px rgba(0,0,0,.48), 0 0 0 6px rgba(37,211,102,.12);
  transition:transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-float:hover {
  transform:translateY(-3px) scale(1.04);
  box-shadow:0 18px 46px rgba(0,0,0,.52), 0 0 0 8px rgba(37,211,102,.14);
  filter:brightness(1.04);
}
.whatsapp-float svg {
  width:31px;
  height:31px;
  display:block;
}
@media (max-width:980px) {
  .gallery { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:720px) {
  .brand { width:72px; height:66px; }
  .brand img { width:64px; height:64px; }
  .gallery { grid-template-columns:1fr; gap:14px; }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide { aspect-ratio:4/5; }
  .whatsapp-float { width:56px; height:56px; }
  .whatsapp-float svg { width:28px; height:28px; }
}


/* GEO / answer-engine information block */
.facts-section { background: linear-gradient(180deg,#15100c,#0d0b09); border-top:1px solid rgba(255,255,255,.05); }
.facts-wrap { display:grid; grid-template-columns:.8fr 1.2fr; gap:64px; align-items:start; }
.facts-head { margin-bottom:0; }
.facts-grid { margin:0; display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.facts-grid > div { padding:20px 22px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.025); }
.facts-grid dt { color:var(--muted); font-size:.86rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:6px; }
.facts-grid dd { margin:0; color:var(--cream); font-weight:700; }
.facts-grid a { color:var(--copper-2); }
@media (max-width:980px) { .facts-wrap { grid-template-columns:1fr; gap:28px; } }
@media (max-width:620px) { .facts-grid { grid-template-columns:1fr; } }
