/* ─── Variables ─────────────────────────────────────────── */
:root {
  --gold:        #111111;
  --gold-light:  #333333;
  --gold-dark:   #666666;
  --charcoal:    #E5E5E5;
  --dark:        #FFFFFF;
  --mid:         #F2F2F2;
  --text:        #1A1A1A;
  --text-muted:  #666666;
  --white:       #111111;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--dark);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
a, button, .menu-tab, [onclick] { cursor: pointer; }

/* ─── Utility ────────────────────────────────────────────── */
.gold { color: var(--gold); }
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
  opacity: 0.6;
}
.divider.left { margin-left: 0; }

/* ─── Nav ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--gold);
  position: relative;
  overflow: hidden;
}
.nav-logo::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.3), transparent);
  transition: left 0.5s ease;
}
.nav-logo:hover::after { left: 150%; }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.6rem 1.4rem;
  transition: background 0.3s, color 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

/* Lang toggle inside nav */
nav #lang-toggle {
  display: inline-block;
  margin-right: 0.4rem;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.45);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
nav #lang-toggle:hover { background: var(--gold); color: var(--dark); }

/* ─── Mobile nav ─────────────────────────────────────────── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 1.4rem;
  right: 5%;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.4rem 0.6rem;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 2rem;
  margin-top: 1rem;
}

/* ─── Hero ───────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,0,0,0.04) 0%, transparent 70%),
    linear-gradient(170deg, #FFFFFF 0%, #F5F5F5 60%, #EFEFEF 100%);
  will-change: transform;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 6%;
  right: 6%;
  bottom: 0;
  background-image: url('../images/interior%20berenguela.webp');
  background-size: cover;
  background-position: center 30%;
  opacity: 0.32;
  filter: saturate(0.65) brightness(1.05);
  -webkit-mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 78%, transparent 100%);
  mask-image:
    linear-gradient(to right,  transparent 0%, black 18%, black 82%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, black 14%, black 78%, transparent 100%);
  -webkit-mask-composite: intersect;
  mask-composite: intersect;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

/* ─── Hero ornaments ────────────────────────────────────── */
.hero-ornament {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  pointer-events: none;
  transform-origin: center center;
}
.hero-ornament:nth-child(1) {
  width: 560px; height: 560px;
  margin-top: -280px; margin-left: -280px;
  border: 1px solid rgba(0,0,0,0.07);
  animation: ring-spin 90s linear infinite;
}
.hero-ornament:nth-child(1)::before,
.hero-ornament:nth-child(1)::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.25);
}
.hero-ornament:nth-child(1)::before { top: 50%; left: -4px; width: 8px; height: 1px; }
.hero-ornament:nth-child(1)::after  { top: -4px; left: 50%; width: 1px; height: 8px; }
.hero-ornament:nth-child(2) {
  width: 420px; height: 420px;
  margin-top: -210px; margin-left: -210px;
  border: 1px solid rgba(0,0,0,0.05);
  animation: ring-spin 65s linear infinite reverse;
}
.hero-ornament:nth-child(2)::before,
.hero-ornament:nth-child(2)::after {
  content: '';
  position: absolute;
  background: rgba(0,0,0,0.2);
}
.hero-ornament:nth-child(2)::before { top: 50%; right: -4px; width: 8px; height: 1px; }
.hero-ornament:nth-child(2)::after  { bottom: -4px; left: 50%; width: 1px; height: 8px; }
.hero-ornament:nth-child(3) {
  width: 280px; height: 280px;
  margin-top: -140px; margin-left: -140px;
  border: 1px solid rgba(0,0,0,0.06);
  animation: ring-pulse 6s ease-in-out infinite;
}
.hero-ornament:nth-child(4) {
  width: 700px; height: 700px;
  margin-top: -350px; margin-left: -350px;
  border: 1px solid rgba(0,0,0,0.03);
  animation: ring-fade 8s ease-in-out infinite;
}
@keyframes ring-spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ring-pulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes ring-fade  { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.015); } }

.hero-content {
  position: relative;
  z-index: 2;
  animation: heroFadeIn 1.4s ease both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-icon { width: 72px; height: 72px; margin: 0 auto 2rem; opacity: 0.9; }
.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
  text-shadow: 0 1px 12px rgba(255,255,255,0.9), 0 0 30px rgba(255,255,255,0.7);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.3rem;
  text-shadow: 0 2px 20px rgba(255,255,255,0.8);
}
.hero-subtitle {
  font-size: 0.68rem;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: #111;
  font-weight: 500;
  margin-bottom: 3rem;
  text-shadow: 0 1px 10px rgba(255,255,255,0.95), 0 0 25px rgba(255,255,255,0.6);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 1rem 2.4rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 200%;
  padding-bottom: 200%;
  border-radius: 50%;
  background: rgba(0,0,0,0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-primary:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.btn-outline {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1.5px solid rgba(0,0,0,0.75);
  color: #111;
  font-weight: 500;
  padding: 1rem 2.4rem;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: #111; background: rgba(255,255,255,0.8); color: #000; }
.hero-flor {
  display: block;
  margin: 0 auto 1.5rem;
  width: clamp(80px, 14vw, 160px);
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 18px rgba(0,0,0,0.4));
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Sections shared ────────────────────────────────────── */
section { padding: 7rem 5%; }
.container { max-width: 1140px; margin: 0 auto; }

/* ─── About ──────────────────────────────────────────────── */
#about { background: var(--charcoal); position: relative; overflow: hidden; }
#about::before {
  content: 'BERENGUELA';
  position: absolute;
  top: 50%; left: -2%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: 18vw;
  font-weight: 600;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.04);
  pointer-events: none;
  white-space: nowrap;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.about-text p { font-size: 0.9rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 1.2rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.stat-item { border-left: 1px solid rgba(0,0,0,0.3); padding-left: 1.2rem; }
.stat-number {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  transition: color 0.3s;
}
.stat-item:hover .stat-number { color: var(--gold-light); }
.stat-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.about-image { position: relative; }
.about-img-frame {
  position: relative;
  background: var(--mid);
  aspect-ratio: 3/4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(0,0,0,0.15);
  pointer-events: none;
  z-index: 2;
}
.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1c17 0%, #252218 50%, #1a1814 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 100px; height: 100px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--dark);
}
.about-badge span:first-child { font-family: var(--serif); font-size: 1.8rem; font-weight: 500; line-height: 1; }
.about-badge span:last-child  { font-size: 0.5rem; letter-spacing: 0.2em; text-transform: uppercase; }

/* ─── Menu / Carta ───────────────────────────────────────── */
#menu { background: var(--dark); }
.menu-header { text-align: center; margin-bottom: 4rem; }
.menu-header h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); }
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.menu-tab {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  transition: color 0.3s;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}
.menu-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.menu-tab:hover { color: var(--text); }
.menu-panel { display: none; }
.menu-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 0 4rem; animation: panelFadeIn 0.4s ease both; }
@keyframes panelFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  gap: 1rem;
  position: relative;
}
.menu-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transition: width 0.4s ease;
}
.menu-item:hover::after { width: 100%; }
.menu-item:hover .menu-item-name { color: var(--gold-light); }
.menu-item-info { flex: 1; }
.menu-item-name { font-family: var(--serif); font-size: 1.05rem; font-weight: 400; color: var(--white); margin-bottom: 0.25rem; transition: color 0.3s; }
.menu-item-desc { font-size: 0.75rem; color: var(--text-muted); line-height: 1.5; }
.menu-item-price { font-family: var(--serif); font-size: 1rem; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.menu-item-tag {
  display: inline-block;
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  border: 1px solid rgba(0,0,0,0.2);
  padding: 0.15rem 0.4rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.allergen-tags { display: flex; flex-wrap: wrap; gap: 0.25rem; margin-top: 0.5rem; }
.allergen-tag {
  display: inline-block;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(138,126,110,0.7);
  border: 1px solid rgba(138,126,110,0.18);
  padding: 0.23rem 0.65rem;
  transition: border-color 0.25s, color 0.25s;
  line-height: 1.6;
}
.allergen-tag:hover { border-color: rgba(0,0,0,0.5); color: var(--gold); }

/* ─── Galería ────────────────────────────────────────────── */
#galeria { background: var(--dark); padding: 0; overflow: hidden; }
.galeria-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  grid-template-rows: 420px;
  gap: 3px;
}
.galeria-item { position: relative; overflow: hidden; cursor: pointer; }
.galeria-item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.78) saturate(0.85);
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.5s ease;
}
.galeria-item:hover img { transform: scale(1.06); filter: brightness(0.9) saturate(1); }
.galeria-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.6) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.galeria-item:hover .galeria-item-overlay { opacity: 1; }
.galeria-item-label { font-family: var(--serif); font-style: italic; font-size: 0.9rem; color: var(--white); letter-spacing: 0.05em; }

/* ─── Alérgenos ──────────────────────────────────────────── */
#alergenos { background: var(--charcoal); border-top: 1px solid rgba(0,0,0,0.08); }
.alergenos-header { text-align: center; margin-bottom: 3rem; }
.alergenos-header h2 { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; color: var(--white); margin-bottom: 0.8rem; }
.alergenos-header p { font-size: 0.82rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.alergenos-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.7rem; margin-bottom: 2.5rem; }
.al-card {
  background: var(--mid);
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.35rem 0.3rem;
  text-align: center;
  pointer-events: none;
}
.al-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border: 1px solid rgba(0,0,0,0.25);
  margin: 0 auto 0.45rem;
  font-family: var(--serif);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.al-card-name { font-family: var(--serif); font-size: 0.95rem; color: var(--white); margin-bottom: 0.15rem; }
.al-card-code { font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.alergenos-notice {
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.12);
  padding: 1.5rem 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.alergenos-notice .notice-icon {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  width: 24px; height: 24px;
  border: 1px solid rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: var(--gold);
}
.alergenos-notice p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }
.alergenos-notice strong { color: var(--text); font-weight: 400; }

/* ─── Experience ─────────────────────────────────────────── */
#experience { background: var(--charcoal); text-align: center; }
.exp-photo {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  margin-bottom: 4rem;
  border-radius: 2px;
}
.exp-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
  filter: brightness(0.75) saturate(0.85);
}
.exp-photo-credit {
  position: absolute;
  bottom: 0.6rem;
  right: 0.8rem;
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}
#experience h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); margin-bottom: 1rem; }
#experience > .container > p { max-width: 560px; margin: 0 auto 4rem; color: var(--text-muted); font-size: 0.88rem; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.exp-card {
  background: var(--mid);
  padding: 3rem 2.5rem;
  text-align: left;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.exp-card:hover { background: #2c2a25; }
.exp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.exp-card:hover::before { height: 100%; }
.exp-icon { width: 40px; height: 40px; margin-bottom: 1.5rem; opacity: 0.7; }
.exp-card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 400; color: var(--white); margin-bottom: 0.8rem; }
.exp-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; }

/* ─── Quote Strip ────────────────────────────────────────── */
#quote { background: var(--gold); padding: 5rem 5%; text-align: center; }
#quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 1rem;
  line-height: 1.5;
  transition: transform 0.4s ease;
}
#quote:hover blockquote { transform: translateY(-2px); }
#quote cite { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-dark); }

/* ─── Reservas ───────────────────────────────────────────── */
#reservas { background: var(--dark); position: relative; overflow: hidden; }
#reservas::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,0,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.reservas-header { text-align: center; margin-bottom: 3.5rem; }
.reservas-header h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; color: var(--white); }
.reservas-header p { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.8rem; }
.reservas-form { max-width: 700px; margin: 0 auto; background: var(--charcoal); border: 1px solid rgba(0,0,0,0.1); padding: 3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); opacity: 0.6; }
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 0.5rem;
}
.form-submit:hover:not(:disabled) { background: var(--gold-light); }
.form-submit:disabled { background: rgba(0,0,0,0.08); color: var(--text-muted); cursor: not-allowed; letter-spacing: 0.15em; }
.form-success { display: none; text-align: center; padding: 2rem; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--gold); }
#mensaje-error { color: #c0392b; }
.reservas-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 700px; margin: 3rem auto 0; text-align: center; }
.rinfo-item .rinfo-label { font-size: 0.58rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem; }
.rinfo-item .rinfo-val { font-family: var(--serif); font-size: 1rem; color: var(--text); }

/* ─── Mapa ───────────────────────────────────────────────── */
.mapa-wrapper { margin-top: 3.5rem; position: relative; }
.mapa-label { font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.mapa-frame { position: relative; border: 1px solid rgba(0,0,0,0.12); overflow: hidden; }
.mapa-frame iframe { display: block; width: 100%; height: 340px; border: none; filter: invert(0.88) hue-rotate(180deg) saturate(0.3) brightness(0.85); }
.mapa-overlay-info {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.18);
  padding: 1rem 1.4rem;
  pointer-events: none;
}
.mapa-overlay-info .moi-name { font-family: var(--serif); font-size: 1rem; color: var(--white); margin-bottom: 0.2rem; }
.mapa-overlay-info .moi-address { font-size: 0.7rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* ─── Footer ─────────────────────────────────────────────── */
footer { background: #fff; padding: 5rem 5% 2rem; border-top: 2px solid #111; box-shadow: 0 -8px 28px rgba(0,0,0,0.18); position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand .brand-tag { font-size: 0.55rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col p, .footer-col a { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.7rem; color: var(--text-muted); }
.social-links { display: flex; gap: 1.2rem; }
.social-links a { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); transition: color 0.3s; }
.social-links a:hover { color: var(--gold); }

/* ─── Powered by Cedar Soul ─────────────────────────────── */
.footer-powered { display: flex; align-items: center; justify-content: center; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); margin-top: 1.5rem; }
.cedar-soul-link { display: flex; align-items: center; gap: 0.6rem; opacity: 1; transition: opacity 0.3s; text-decoration: none; }
.cedar-soul-link:hover { opacity: 0.7; }
.cedar-soul-link span { font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: #111; font-weight: 500; }
.cedar-soul-logo { height: 22px; width: auto; object-fit: contain; }

/* ─── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .alergenos-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { display: block; order: -1; }
  .about-img-frame { aspect-ratio: 16/9; max-height: 280px; }
  .menu-panel.active { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  nav #lang-toggle { display: inline-block; }
  .nav-hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .reservas-info { grid-template-columns: 1fr; }
  .alergenos-grid { grid-template-columns: repeat(3, 1fr); }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
}
@media (max-width: 600px) {
  section { padding: 4.5rem 5%; }
  .hero-title { font-size: clamp(1.5rem, 8vw, 2.8rem); letter-spacing: 0.08em; }
  .hero-ornament:nth-child(1) { width: 320px; height: 320px; margin-top: -160px; margin-left: -160px; }
  .hero-ornament:nth-child(2) { width: 240px; height: 240px; margin-top: -120px; margin-left: -120px; }
  .hero-ornament:nth-child(3) { width: 160px; height: 160px; margin-top: -80px;  margin-left: -80px; }
  .hero-ornament:nth-child(4) { width: 420px; height: 420px; margin-top: -210px; margin-left: -210px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .menu-tabs { flex-wrap: wrap; }
  .menu-tab { padding: 0.6rem 1rem; font-size: 0.55rem; }
  .alergenos-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .alergenos-notice { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .reservas-form { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; max-width: 280px; }
  .galeria-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px; gap: 2px; }
}
