:root {
  --negro: #080806;
  --verde: #2A4028;
  --verde-claro: #3d5c3a;
  --dorado: #B8963E;
  --dorado-claro: #d4af6a;
  --crema: #F0E6D0;
  --crema-suave: #FAF5EE;
  --blanco: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--negro);
  color: var(--crema);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  background: rgba(8,8,6,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,150,62,0.2);
  transition: background 0.3s;
}
nav .nav-logo img { height: 36px; filter: brightness(1); }
nav ul { list-style: none; display: flex; gap: 36px; }
nav ul a {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--crema); text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--dorado); }
nav .nav-cta {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; color: var(--negro); background: var(--dorado);
  padding: 10px 24px; text-decoration: none;
  transition: background 0.2s;
}
nav .nav-cta:hover { background: var(--dorado-claro); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 120px 20px 80px;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(42,64,40,0.35) 0%, transparent 70%),
              radial-gradient(ellipse 60% 40% at 50% 80%, rgba(184,150,62,0.08) 0%, transparent 60%);
}
/* Arco decorativo SVG detrás del logo */
.hero-arch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(600px, 90vw); opacity: 0.06;
  pointer-events: none;
}
.hero-logo {
  position: relative; z-index: 2;
  width: min(340px, 75vw);
  animation: fadeUp 1.2s ease both;
}
.hero-tagline {
  position: relative; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 2.5vw, 18px);
  font-style: italic; font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--dorado-claro);
  margin-top: 28px;
  animation: fadeUp 1.4s ease both 0.2s;
}
.hero-divider {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 16px;
  margin: 32px auto;
  color: var(--dorado); opacity: 0.7;
  animation: fadeUp 1.5s ease both 0.35s;
}
.hero-divider span { font-size: 20px; }
.hero-divider::before, .hero-divider::after {
  content: ''; display: block; width: 80px; height: 1px; background: var(--dorado); opacity: 0.5;
}
.hero-sub {
  position: relative; z-index: 2;
  font-size: clamp(11px, 1.5vw, 13px); letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400; color: rgba(240,230,208,0.6);
  animation: fadeUp 1.6s ease both 0.45s;
}
.hero-badges {
  position: relative; z-index: 2;
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center;
  margin-top: 48px;
  animation: fadeUp 1.7s ease both 0.6s;
}
.badge {
  border: 1px solid rgba(184,150,62,0.35);
  padding: 10px 22px;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dorado-claro); font-weight: 500;
}
.badge strong { display: block; font-size: 14px; color: var(--crema); margin-bottom: 2px; font-family: 'Cormorant Garamond', serif; font-style: italic; letter-spacing: 0.05em; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── ARCH DIVIDER ── */
.arch-divider {
  display: flex; justify-content: center; align-items: flex-end;
  height: 60px; overflow: hidden; position: relative;
}

/* ── SECCIÓN PROPUESTA ── */
.section-about {
  background: var(--crema-suave);
  color: var(--negro);
  padding: 100px 5vw;
}
.section-about .inner {
  max-width: 720px; margin: 0 auto;
}
.section-label {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dorado); font-weight: 600; margin-bottom: 16px;
}
.section-about h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300; line-height: 1.15;
  color: var(--verde); margin-bottom: 24px;
}
.section-about h2 em { font-style: italic; color: var(--dorado); }
.section-about p {
  font-size: 15px; line-height: 1.8; color: #3a3530; font-weight: 300;
  margin-bottom: 16px;
}

/* ── HALAL ── */
.section-halal {
  background: var(--negro);
  padding: 100px 5vw;
  position: relative; overflow: hidden;
}
.section-halal::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 70% 80% at 70% 50%, rgba(42,64,40,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.halal-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center;
}
.halal-logo-wrap { display: flex; justify-content: center; }
.halal-logo-wrap img { width: min(260px, 60vw); filter: drop-shadow(0 8px 40px rgba(184,150,62,0.2)); }
.halal-content .section-label { color: var(--dorado); }
.halal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 300; line-height: 1.2;
  color: var(--crema); margin-bottom: 24px;
}
.halal-content p {
  font-size: 15px; line-height: 1.8; color: rgba(240,230,208,0.75); font-weight: 300;
  margin-bottom: 16px;
}
/* ── MENÚ HIGHLIGHT ── */
.section-menu {
  background: var(--verde);
  padding: 100px 5vw;
}
.section-menu .section-head {
  text-align: center; margin-bottom: 64px;
}
.section-menu .section-label { color: var(--dorado-claro); }
.section-menu h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 300;
  color: var(--crema); margin-bottom: 12px;
}
.section-menu h2 em { font-style: italic; color: var(--dorado-claro); }
.section-menu .head-sub {
  font-size: 13px; color: rgba(240,230,208,0.55); letter-spacing: 0.1em;
}
.menu-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.menu-card {
  background: rgba(8,8,6,0.4);
  padding: 40px 32px;
  border-top: 1px solid rgba(184,150,62,0.2);
  transition: background 0.3s;
}
.menu-card:hover { background: rgba(8,8,6,0.65); }
.card-cat {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dorado); font-weight: 600; margin-bottom: 14px;
}
.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 300; color: var(--crema);
  line-height: 1.2; margin-bottom: 10px;
}
.card-name em { font-style: italic; }
.card-desc {
  font-size: 13px; line-height: 1.7; color: rgba(240,230,208,0.6); font-weight: 300;
}
.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--dorado-claro); margin-top: 20px;
}

/* ── EXPERIENCIA ── */
.section-exp {
  background: var(--crema-suave);
  padding: 100px 5vw;
  color: var(--negro);
}
.exp-inner {
  max-width: 1100px; margin: 0 auto;
}
.section-exp .section-head {
  text-align: center; margin-bottom: 64px;
}
.section-exp .section-label { color: var(--dorado); }
.section-exp h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 48px); font-weight: 300; color: var(--verde);
}
.exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
  margin-top: 48px;
}
.exp-item { text-align: center; }
.exp-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 300; color: var(--verde); opacity: 0.15;
  line-height: 1; margin-bottom: -10px;
}
.exp-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--verde); margin-bottom: 12px;
}
.exp-item p {
  font-size: 14px; line-height: 1.7; color: #555; font-weight: 300;
}
.exp-line {
  width: 40px; height: 1px; background: var(--dorado); margin: 16px auto;
}

/* ── RESERVA / CTA ── */
.section-cta {
  background: var(--negro);
  padding: 120px 5vw;
  text-align: center; position: relative; overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(42,64,40,0.25) 0%, transparent 70%);
}
.section-cta .section-label { color: var(--dorado); }
.section-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 300;
  color: var(--crema); line-height: 1.1; margin-bottom: 16px;
  position: relative;
}
.section-cta h2 em { font-style: italic; color: var(--dorado); }
.section-cta p {
  font-size: 15px; color: rgba(240,230,208,0.6); font-weight: 300;
  max-width: 460px; margin: 0 auto 48px; line-height: 1.7; position: relative;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-primary {
  background: var(--dorado); color: var(--negro);
  padding: 16px 40px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; text-decoration: none; transition: background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-primary:hover { background: var(--dorado-claro); }
.btn-secondary {
  border: 1px solid rgba(240,230,208,0.3); color: var(--crema);
  padding: 16px 40px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; text-decoration: none; transition: border-color 0.2s, color 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.btn-secondary:hover { border-color: var(--dorado); color: var(--dorado); }

/* ── FOOTER ── */
footer {
  background: #040403;
  border-top: 1px solid rgba(184,150,62,0.15);
  padding: 60px 5vw 40px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px; line-height: 1.7; color: rgba(240,230,208,0.45); font-weight: 300;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--dorado); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  font-size: 13px; color: rgba(240,230,208,0.5); margin-bottom: 10px; font-weight: 300;
}
.footer-col ul li a {
  color: inherit; text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--dorado); }
.footer-bottom {
  border-top: 1px solid rgba(184,150,62,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(240,230,208,0.25);
}

/* ── GALERÍA ── */
.gallery-hero {
  background: var(--negro);
  padding: 160px 5vw 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(42,64,40,0.3) 0%, transparent 70%);
}
.gallery-hero .section-label { color: var(--dorado); position: relative; }
.gallery-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 6vw, 72px); font-weight: 300;
  color: var(--crema); margin-bottom: 12px; position: relative;
}
.gallery-hero .head-sub {
  font-size: 14px; color: rgba(240,230,208,0.6); letter-spacing: 0.05em; position: relative;
}
.section-gallery {
  background: var(--crema-suave);
  padding: 80px 5vw 100px;
}
.gallery-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.gallery-item {
  display: block; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid rgba(42,64,40,0.15);
  padding: 0; background: none; cursor: pointer;
  font: inherit;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #6b6459;
  font-size: 14px;
  padding: 60px 0;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center;
  background: rgba(4,4,3,0.94);
  backdrop-filter: blur(4px);
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 88vw; max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 5vw;
  background: none; border: none; cursor: pointer;
  font-size: 32px; line-height: 1; color: var(--crema);
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--dorado); }
.lightbox-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: 1px solid rgba(240,230,208,0.3);
  width: 48px; height: 48px; border-radius: 50%;
  color: var(--crema); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.lightbox-arrow:hover { border-color: var(--dorado); color: var(--dorado); }
.lightbox-prev { left: 5vw; }
.lightbox-next { right: 5vw; }

@media (max-width: 768px) {
  .lightbox-arrow { width: 40px; height: 40px; font-size: 15px; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 16px; right: 16px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .halal-inner, .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
