/* ==========================================================================
   Sidrería Balmes · Estilos de index.html
   Extraído del <style> inline para mantener el HTML legible.
   ========================================================================== */

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

:root {
  --green: #1a3c2e;
  --green-mid: #2d5a42;
  --green-light: #4a7c5f;
  --gold: #c9a84c;
  --gold-light: #e6c97a;
  --cream: #f8f4ed;
  --warm-white: #fefcf8;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  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: 1.2rem 4rem;
  transition:
    background 0.4s,
    box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(26, 60, 46, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform 0.2s;
}
.nav-logo:hover img {
  transform: scale(1.04);
}
.nav-logo span {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo span em {
  color: var(--gold-light);
  font-style: italic;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover {
  color: var(--gold-light);
}
.nav-links a.active {
  color: var(--gold-light);
}
.nav-links a.active::after {
  transform: scaleX(1);
}
.nav-links a.nav-cta::after {
  display: none;
}
.nav-cta {
  background: var(--gold);
  color: var(--green) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition:
    background 0.2s,
    transform 0.2s !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

/* selector de idioma */
.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 0.7rem;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}
.lang-toggle:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: background 0.25s ease;
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.2s ease;
}
.nav-toggle.active {
  background: rgba(255, 255, 255, 0.18);
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(26, 60, 46, 0.88) 0%,
      rgba(10, 25, 18, 0.75) 60%,
      rgba(201, 168, 76, 0.15) 100%
    ),
    url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=75&auto=format&fit=crop")
      center/cover no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center bottom,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.18);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.8rem;
}
.hero-badge::before {
  content: "🍎";
  font-size: 0.85rem;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.3rem;
}
.hero h1 .accent {
  color: var(--gold-light);
  font-style: italic;
}
.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 2.8rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--green);
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
}
.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4),
    transparent
  );
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── SECTIONS ── */
section {
  padding: 7rem 4rem;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  color: var(--green-light);
}

/* ── ABOUT ── */
.about {
  background: var(--cream);
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text .section-title {
  margin-bottom: 1.4rem;
}
.about-text p {
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 1.02rem;
  margin-bottom: 1.2rem;
}
.about-text p:last-of-type {
  margin-bottom: 2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(26, 60, 46, 0.12);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.stat-num span {
  color: var(--gold);
  font-size: 1.4rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(26, 60, 46, 0.2);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-image-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--green);
  color: #fff;
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  max-width: 200px;
}
.about-image-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--gold-light);
}
.about-image-badge span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── SPECIALTIES ── */
.specialties {
  background: var(--warm-white);
}
.specialties-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.specialties-header {
  text-align: center;
  margin-bottom: 4rem;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26, 60, 46, 0.14);
}
.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  background: #f7f3ed;
  display: block;
}
.card-body {
  padding: 1.6rem 1.8rem 2rem;
}
.card-tag {
  display: inline-block;
  background: rgba(201, 168, 76, 0.12);
  color: #8a6f24;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}
.card-accent {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--green);
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── MENU HIGHLIGHT ── */
.menu {
  background: var(--green);
  padding: 7rem 4rem;
}
.menu-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.menu .section-label {
  color: var(--gold-light);
}
.menu .section-label::before,
.menu .section-label::after {
  background: var(--gold-light);
}
.menu .section-title {
  color: #fff;
}
.menu-tabs {
  display: flex;
  gap: 0;
  margin-top: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: sticky;
  top: 86px;
  z-index: 50;
  background: var(--green);
}
.menu-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.8rem;
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s;
  margin-bottom: -1px;
}
.menu-tab-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.menu-tab-btn.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}
.menu-notice {
  margin-top: 1.6rem;
  padding: 0.9rem 1.3rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.6;
}
.menu-notice strong {
  color: var(--gold-light);
}
.menu-notice a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.menu-panel {
  display: none;
}
.menu-panel.active {
  display: block;
}
.especiales-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
.especial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 2rem;
}
.especial-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.especial-course {
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.9rem;
}
.especial-dish {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.2rem;
  line-height: 1.5;
}
.especial-price {
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}
.especial-price-amount {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}
.especial-price-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.especiales-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}
.menu-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3.5rem;
  align-items: start;
}
.menu-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.menu-item:last-child {
  border-bottom: none;
}
.menu-item-info {
  flex: 1;
}
.menu-item-name {
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}
.menu-item-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.15rem;
}
.menu-item-price {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
  font-weight: 600;
}
.menu-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* ── SIDRA SECTION ── */
.sidra {
  background: var(--cream);
}
.sidra-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sidra-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px rgba(26, 60, 46, 0.18);
  position: relative;
}
.sidra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidra-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 60, 46, 0.6) 0%,
    transparent 60%
  );
}
.sidra-image-text {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: #fff;
}
.sidra-image-text strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}
.sidra-image-text span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.sidra-content .section-title {
  margin-bottom: 1.4rem;
}
.sidra-content p {
  color: var(--text-mid);
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.sidra-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s;
}
.feature-row:hover {
  box-shadow: 0 4px 20px rgba(26, 60, 46, 0.1);
}
.feature-icon {
  font-size: 1.5rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 60, 46, 0.07);
  border-radius: 10px;
}
.feature-text strong {
  display: block;
  font-size: 0.92rem;
  color: var(--green);
  margin-bottom: 0.15rem;
}
.feature-text span {
  font-size: 0.83rem;
  color: var(--text-light);
}

/* ── GALLERY ── */
.gallery {
  background: var(--warm-white);
  padding: 7rem 0;
  overflow: hidden;
}
.gallery-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
}
.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── GALLERY WALL (collage errático con levitación al scroll) ── */
.gallery-wall-wrap {
  position: relative;
  max-height: 640px;
  overflow: hidden;
}
.gallery-wall-wrap.expanded {
  max-height: none;
  overflow: visible;
}
.gallery-fade {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 160px;
  background: linear-gradient(
    to bottom,
    rgba(254, 252, 248, 0),
    var(--warm-white)
  );
  pointer-events: none;
}
.gallery-wall-wrap.expanded .gallery-fade {
  display: none;
}
.gallery-more {
  display: block;
  text-align: center;
  margin-top: 1.6rem;
}
.gallery-more.hidden {
  display: none;
}
.gallery-more button.btn-outline {
  background: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
}
.gallery-more button.btn-outline:hover {
  background: rgba(26, 60, 46, 0.06);
}
.gallery-wall {
  column-count: 5;
  column-gap: 1.4rem;
  max-width: 1300px;
  margin: 2.5rem auto 0;
  padding: 0 4rem;
}
.gallery-item {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 1.4rem;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border: none;
  padding: 0;
  background: none;
  will-change: transform;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 60, 46, 0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(26, 60, 46, 0.3);
}
.gallery-overlay-icon {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay-icon {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .gallery-item {
    transform: none !important;
  }
}

/* ── GALLERY MODAL ── */
#gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 20, 15, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
#gallery-modal.open {
  display: flex;
}
.gm-content {
  background: var(--warm-white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
.gm-image {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gm-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 88vh;
}
.gm-info {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
}
.gm-tag {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.gm-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.gm-desc {
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.7;
}
.gm-counter {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--text-light);
  font-size: 0.85rem;
}
.gm-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gm-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.gm-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}
.gm-prev {
  left: 1.5rem;
}
.gm-next {
  right: 1.5rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--cream);
  padding: 7rem 4rem;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonials-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.review-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  color: var(--green);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.9rem 1.9rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 60, 46, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--green);
}
.testimonial-date {
  font-size: 0.78rem;
  color: var(--text-light);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}

/* ── FAQ ── */
.faq {
  background: var(--cream);
  padding: 7rem 4rem;
}
.faq-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.faq-inner .section-title {
  margin-bottom: 3rem;
}
.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.4rem;
  align-items: start;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.faq-q {
  font-family: "Inter", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.faq-a {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-a a {
  color: var(--green);
  font-weight: 600;
}

/* ── LOCATION ── */
.location {
  background: var(--warm-white);
  padding: 7rem 4rem;
}
.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.location-content .section-title {
  margin-bottom: 1.4rem;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2rem;
}
.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.detail-icon {
  font-size: 1.3rem;
  min-width: 46px;
  height: 46px;
  background: rgba(26, 60, 46, 0.07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-text strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.detail-text span {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.detail-text a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
}
.detail-text a:hover {
  color: var(--gold);
}
.hours-grid {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid rgba(26, 60, 46, 0.08);
  border-radius: 14px;
  overflow: hidden;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(26, 60, 46, 0.08);
  transition: background 0.2s;
}
.hour-row:last-child {
  border-bottom: none;
}
.hour-row.today {
  background: rgba(201, 168, 76, 0.14);
}
.hour-day {
  color: var(--text-mid);
  font-weight: 600;
}
.hour-row.today .hour-day {
  color: var(--green);
}
.hour-row.today .hour-day::after {
  content: "HOY";
  margin-left: 0.5rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--gold);
  padding: 0.15rem 0.4rem;
  border-radius: 20px;
  vertical-align: middle;
}
.hour-time {
  color: var(--green);
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}
.hour-time.closed {
  color: #b5473f;
  font-style: italic;
  font-weight: 600;
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 4/3;
  background: #e8f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.map-placeholder {
  text-align: center;
  color: var(--green-light);
}
.map-placeholder .map-pin {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.map-placeholder p {
  font-size: 0.9rem;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--green) 0%,
    var(--green-mid) 60%,
    #1f4d38 100%
  );
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(
    ellipse,
    rgba(201, 168, 76, 0.07) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-banner h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: #0d1f17;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 4rem 2.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1)
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s;
}
.social-btn svg {
  width: 19px;
  height: 19px;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--green);
}
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--gold-light);
}
.powered-by {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition:
    color 0.2s,
    opacity 0.2s;
  opacity: 0.7;
}
.powered-by:hover {
  color: var(--gold-light) !important;
  opacity: 1;
}

/* ── MOBILE STICKY CALL CTA ── */
.mobile-call-fab {
  display: none;
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-call-fab svg {
  flex-shrink: 0;
  color: var(--gold-light);
}

/* ── RESPONSIVE ── */
/* Nav: los 7 enlaces + logo + CTA solo caben holgados en pantallas anchas.
   En la franja intermedia se aprieta el nav para que quepa, y por debajo de
   1200px se pasa al menú hamburguesa (antes solo aparecía a ≤768px, dejando
   la barra desbordada en portátiles y ventanas estrechas). */
@media (max-width: 1340px) {
  nav {
    padding: 1.2rem 2rem;
  }
  .nav-links {
    gap: 1.4rem;
  }
}
@media (max-width: 1200px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.4rem;
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(10, 25, 18, 0.98);
    padding: 6rem 2rem 3rem;
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-y: auto;
  }
  .nav-links a {
    font-size: 1.15rem;
  }
  .nav-links a::after {
    display: none;
  }
  .nav-links a.active {
    color: var(--gold-light);
  }
  .nav-links .nav-cta {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.7rem 2rem;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 101;
  }
}
@media (max-width: 1024px) {
  section {
    padding: 5rem 2.5rem;
  }
  nav {
    padding: 1.2rem 2.5rem;
  }
  .about-inner,
  .sidra-inner,
  .location-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image,
  .sidra-image {
    max-width: 500px;
  }
  .specialties-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-wall,
  .gallery-inner {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .gallery-wall {
    column-count: 3;
  }
  .gm-content {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }
  .gm-image {
    max-height: 40vh;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .menu-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .especiales-grid {
    grid-template-columns: 1fr;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-bg {
    background:
      linear-gradient(
        160deg,
        rgba(26, 60, 46, 0.88) 0%,
        rgba(10, 25, 18, 0.75) 60%,
        rgba(201, 168, 76, 0.15) 100%
      ),
      url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=900&q=70&auto=format&fit=crop")
        center/cover no-repeat;
  }
  .mobile-call-fab {
    display: flex;
  }
  footer {
    padding-bottom: 5.5rem;
  }
  .nav-logo img {
    height: 38px;
  }
  .nav-logo span {
    font-size: 1.05rem;
  }
  section {
    padding: 4rem 1.5rem;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .hero {
    min-height: 100svh;
    height: 100svh;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2.2rem;
  }
  .specialties-grid {
    grid-template-columns: 1fr;
  }
  .gallery-wall {
    column-count: 2;
    column-gap: 0.8rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .gallery-item {
    margin-bottom: 0.8rem;
  }
  .gallery-wall-wrap {
    max-height: 560px;
  }
  .gallery-fade {
    height: 140px;
  }
  #gallery-modal {
    padding: 1rem;
  }
  .gm-info {
    padding: 1.6rem;
  }
  .gm-nav {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .gm-prev {
    left: 0.5rem;
  }
  .gm-next {
    right: 0.5rem;
  }
  .gm-close {
    top: 0.8rem;
    right: 0.8rem;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cta-banner {
    padding: 4rem 1.5rem;
  }
  .menu {
    padding: 5rem 1.25rem;
  }
  .location {
    padding: 4rem 1.5rem;
  }
  /* En móvil el horario no cabe en una línea: dejar que el tramo horario
     parta por el separador " · " y que los textos flex puedan encogerse,
     para que la sección de ubicación no fuerce scroll horizontal. */
  .hour-time {
    white-space: normal;
  }
  .hour-day {
    min-width: 0;
  }
  .detail-text {
    min-width: 0;
  }
  .detail-text span,
  .detail-text strong {
    overflow-wrap: break-word;
  }
  .gallery {
    padding: 4rem 1.5rem;
  }
  .testimonials {
    padding: 4rem 1.5rem;
  }
  .menu-tabs {
    width: 100%;
    top: 70px;
  }
  .menu-tab-btn {
    flex: 1;
    padding: 0.8rem 0.5rem;
    font-size: 0.78rem;
  }
  .especial-card {
    padding: 1.5rem;
  }
  .curtain-name {
    font-size: 2.5rem;
  }
  .curtain-apple {
    width: 64px;
    height: 64px;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 1.25rem;
  }
  .section-title {
    font-size: 1.9rem;
  }
  /* Las 4 pestañas del menú no caben en una línea en pantallas pequeñas:
     dejar que el texto se ajuste y encoja para que quepan sin desbordar. */
  .menu-tab-btn {
    padding: 0.7rem 0.3rem;
    font-size: 0.7rem;
    white-space: normal;
    line-height: 1.15;
    min-width: 0;
    overflow-wrap: break-word;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 0.6rem 1.5rem;
  }
  .nav-logo span {
    font-size: 0.92rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    text-align: center;
  }
  .hero-badge {
    font-size: 0.68rem;
    padding: 0.4rem 0.9rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .card-body {
    padding: 1.3rem 1.4rem 1.6rem;
  }
  .menu-item-name {
    font-size: 0.9rem;
  }
  .menu-item-price {
    font-size: 1rem;
  }
  .especial-price-amount {
    font-size: 1.5rem;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-actions .btn-primary {
    text-align: center;
  }
}

/* ── PAGE CURTAIN ── */
#page-curtain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  transform: translateY(-100%);
  transition: transform 0.52s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
#page-curtain.visible {
  transform: translateY(0);
  pointer-events: all;
}
.curtain-apple {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.25s,
    transform 0.3s ease 0.25s;
}
#page-curtain.visible .curtain-apple {
  opacity: 1;
  transform: translateY(0);
}
.curtain-name {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.18em;
  line-height: 1;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.3s ease 0.35s,
    transform 0.3s ease 0.35s;
}
#page-curtain.visible .curtain-name {
  opacity: 1;
  transform: translateY(0);
}
.curtain-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease 0.3s;
}
#page-curtain.visible .curtain-line {
  opacity: 0.6;
}
