/* ── Reset & Variables ───────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #4d0127;
  --primary-deep: #280e14;
  --primary-light: #a67f91;
  --accent: #d2c2c8;
  --bg: #faf4f7;
  --white: #ffffff;
  --text: #280e14;
  --text-muted: #7a5b68;
  --gray: #aea2a6;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(77, 1, 39, 0.08);
  --shadow-lg: 0 8px 40px rgba(77, 1, 39, 0.12);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Nav ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 244, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(77, 1, 39, 0.06);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: var(--shadow); }

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img { height: 46px; }

.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-links a {
  position: relative;
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: var(--primary-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(170deg, var(--bg) 0%, var(--white) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 1, 39, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(166, 127, 145, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-logo {
  width: 280px;
  margin: 0 auto 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-logo img { width: 100%; }

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--primary);
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary-light);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 1, 39, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary-light);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat { text-align: center; }

.hero-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--primary);
}

.hero-stat span {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Section Shared ──────────────────────────────── */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-alt {
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .overline {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: block;
}

.section-dark .section-header .overline {
  color: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Nosotros Stats ──────────────────────────────── */
.nosotros-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 16px;
}

.nosotros-stat { text-align: center; }

.nosotros-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.nosotros-stat span {
  font-size: 0.82rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Alquileres ──────────────────────────────────── */
.alquileres-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.alquiler-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow:
    0 1px 3px rgba(77, 1, 39, 0.04),
    0 4px 12px rgba(77, 1, 39, 0.06),
    0 12px 32px rgba(77, 1, 39, 0.04);
  border: 1px solid rgba(77, 1, 39, 0.06);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  position: relative;
  overflow: hidden;
}

.alquiler-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(77, 1, 39, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.alquiler-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light), var(--accent));
  opacity: 0;
  transition: opacity 0.35s;
}

.alquiler-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 6px rgba(77, 1, 39, 0.06),
    0 8px 24px rgba(77, 1, 39, 0.1),
    0 20px 48px rgba(77, 1, 39, 0.06);
}

.alquiler-card:hover::before { opacity: 1; }

.alquiler-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(77, 1, 39, 0.2);
}

.alquiler-icon svg {
  width: 26px;
  height: 26px;
}

.alquiler-card h3 {
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.alquiler-card .desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.alquiler-card .feature-group {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(77, 1, 39, 0.06);
}

.alquiler-card .feature-group:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.alquiler-card .feature-group-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary-light);
  margin-bottom: 10px;
  display: block;
}

.alquiler-card .feature-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.alquiler-card .feature-group ul li {
  font-size: 0.76rem;
  background: linear-gradient(135deg, var(--bg), rgba(166, 127, 145, 0.08));
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid rgba(77, 1, 39, 0.04);
  transition: background 0.2s, border-color 0.2s;
}

.alquiler-card:hover .feature-group ul li {
  background: linear-gradient(135deg, rgba(166, 127, 145, 0.1), rgba(166, 127, 145, 0.06));
  border-color: rgba(166, 127, 145, 0.12);
}

.alquiler-card .capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--primary);
  font-weight: 600;
  background: linear-gradient(135deg, rgba(77, 1, 39, 0.04), rgba(166, 127, 145, 0.06));
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(77, 1, 39, 0.06);
}

.alquiler-card .capacity svg {
  width: 16px;
  height: 16px;
}

.alquiler-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── Galería ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--accent);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(40, 14, 20, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* ── Menúes — Cards con Identidad ──────────────────── */
.menus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Base card ─────────────────────────────────────── */
.menu-card {
  position: relative;
  border-radius: 16px;
  padding: 28px 24px 22px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
}

/* Accent bar — left side stripe */
.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  bottom: 0;
  border-radius: 0 3px 3px 0;
}

/* Top edge glow on hover */
.menu-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0;
  transition: opacity 0.35s;
}

.menu-card:hover::after { opacity: 1; }

/* ── Tier: Base ────────────────────────────────────── */
.tier-base {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-base::before {
  background: rgba(255, 255, 255, 0.15);
}

.tier-base::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.tier-base:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ── Tier: Clásico ─────────────────────────────────── */
.tier-clasico {
  background: linear-gradient(160deg, rgba(166, 127, 145, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(166, 127, 145, 0.15);
}

.tier-clasico::before {
  background: linear-gradient(to bottom, var(--primary-light), rgba(166, 127, 145, 0.3));
}

.tier-clasico::after {
  background: linear-gradient(90deg, transparent, rgba(166, 127, 145, 0.25), transparent);
}

.tier-clasico:hover {
  box-shadow: 0 8px 24px rgba(166, 127, 145, 0.1);
}

/* ── Tier: Gourmet ─────────────────────────────────── */
.tier-gourmet {
  background: linear-gradient(160deg, rgba(210, 194, 200, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(210, 194, 200, 0.08) 100%);
  border: 1px solid rgba(210, 194, 200, 0.25);
}

.tier-gourmet::before {
  width: 4px;
  background: linear-gradient(to bottom, var(--accent), rgba(210, 194, 200, 0.4));
}

.tier-gourmet::after {
  background: linear-gradient(90deg, transparent, rgba(210, 194, 200, 0.3), transparent);
}

.tier-gourmet:hover {
  box-shadow:
    0 0 40px rgba(210, 194, 200, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

/* ── Tier: Premium ─────────────────────────────────── */
.tier-premium {
  background: linear-gradient(160deg, rgba(240, 208, 128, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(240, 208, 128, 0.2);
}

.tier-premium::before {
  background: linear-gradient(to bottom, #f0d080, rgba(240, 208, 128, 0.3));
}

.tier-premium::after {
  background: linear-gradient(90deg, transparent, rgba(240, 208, 128, 0.25), transparent);
}

.tier-premium:hover {
  box-shadow: 0 8px 24px rgba(240, 208, 128, 0.08);
}

/* ── Ribbons ───────────────────────────────────────── */
.ribbon {
  position: absolute;
  top: 14px;
  right: -30px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 5px 38px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.ribbon-popular {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: var(--primary-deep);
}

.ribbon-premium {
  background: linear-gradient(135deg, #f0d080, #d4a843);
  color: var(--primary-deep);
}

/* ── Card header ───────────────────────────────────── */
.menu-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.menu-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-icon svg {
  width: 18px;
  height: 18px;
}

.tier-base .menu-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
}

.tier-clasico .menu-icon {
  background: rgba(166, 127, 145, 0.12);
  border: 1px solid rgba(166, 127, 145, 0.2);
  color: var(--primary-light);
}

.tier-gourmet .menu-icon {
  background: rgba(210, 194, 200, 0.12);
  border: 1px solid rgba(210, 194, 200, 0.2);
  color: var(--accent);
}

.tier-premium .menu-icon {
  background: rgba(240, 208, 128, 0.1);
  border: 1px solid rgba(240, 208, 128, 0.25);
  color: #f0d080;
}

.menu-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  margin: 0;
}

.menu-tier-label {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.tier-base .menu-tier-label { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.35); }
.tier-clasico .menu-tier-label { background: rgba(166, 127, 145, 0.1); color: var(--primary-light); }
.tier-gourmet .menu-tier-label { background: rgba(210, 194, 200, 0.1); color: var(--accent); }
.tier-premium .menu-tier-label { background: rgba(240, 208, 128, 0.1); color: #f0d080; }

/* ── Price ─────────────────────────────────────────── */
.menu-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.menu-price .currency {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.menu-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.tier-premium .menu-price .amount { color: #f0d080; }

.menu-price .per {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-left: 4px;
}

/* ── Items ─────────────────────────────────────────── */
.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-items li {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

/* Bullet — colored per tier */
.menu-items li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.tier-base .menu-items li::before { background: rgba(255, 255, 255, 0.2); }
.tier-clasico .menu-items li::before { background: var(--primary-light); opacity: 0.5; }
.tier-gourmet .menu-items li::before { background: var(--accent); opacity: 0.6; }
.tier-premium .menu-items li::before { background: #f0d080; opacity: 0.6; }

/* Category headers */
.menu-items .item-category {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.menu-items .item-category::before { display: none; }
.menu-items .item-category + li { margin-top: 4px; }

.menu-items .option-note {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
}

/* ── Note footer ───────────────────────────────────── */
.menu-note {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  font-style: italic;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  line-height: 1.5;
}

/* ── CTA ───────────────────────────────────────────── */
.menus-cta {
  text-align: center;
  margin-top: 36px;
}

.menus-cta p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 14px;
}

.menus-cta .btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(210, 194, 200, 0.25);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.menus-cta .btn-outline-light:hover {
  background: rgba(210, 194, 200, 0.08);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ── Lightbox ────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(40, 14, 20, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  cursor: zoom-out;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(40, 14, 20, 0.6);
  padding: 8px 20px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ── Contacto ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-weight: 300;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-item-text a {
  color: var(--primary);
  font-weight: 500;
}

.contact-item-text a:hover { text-decoration: underline; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 360px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── WhatsApp Float ──────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ── Footer ──────────────────────────────────────── */
.footer {
  background: var(--primary-deep);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-logo img {
  height: 40px;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

.footer p {
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.footer a {
  color: var(--accent);
}

.footer a:hover { text-decoration: underline; }

/* ── Animations ──────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.55); }
}

/* ── Scroll Reveal ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
  .alquileres-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 32px; }
  .nosotros-stats { gap: 40px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(77, 1, 39, 0.06);
    box-shadow: var(--shadow);
  }
      .nav-toggle { display: flex; }
      .nav-links a.active::after { display: none; }
      .menus-grid { grid-template-columns: 1fr; gap: 16px; max-width: 420px; }
  .ribbon {
    position: static;
    display: inline-block;
    transform: none;
    border-radius: 50px;
    padding: 3px 12px;
    margin-bottom: 10px;
    box-shadow: none;
  }
  .menu-card-header { flex-wrap: wrap; gap: 8px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .nosotros-stats { flex-direction: column; gap: 24px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .section { padding: 60px 0; }
}
