/* ── MARÍA DEL ALMA ──
   Core Design System & Stylesheet
   Theme: Cocina de mi Tierra (Dark Forest Green & Warm Gold)
   Fonts: Fraunces (Display Serif), Plus Jakarta Sans (Body), DM Mono (Utility/Price)
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

/* ── Custom Properties & Tokens ── */
:root {
  /* Color Palette */
  --forest-dark: #091914;
  --forest-mid: #122C24;
  --forest-light: #1B3F34;
  --gold: #CFA65B;
  --gold-light: #E4C180;
  --gold-dark: #A57E3B;
  --cream: #FCFAF6;
  --cream-dark: #F5EFEB;
  --terracotta: #C0553A;
  --terracotta-hover: #A03E26;
  --charcoal: #2C3531;
  --white: #FFFFFF;
  --border-color: rgba(207, 166, 91, 0.25);
  
  /* Layout & Animations */
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --container-width: 1140px;
  --header-height: 80px;
}

/* ── Reset & Base Styles ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Typography Selection */
h1, h2, h3, h4, .display-font {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

p {
  font-size: 1rem;
  color: rgba(44, 53, 49, 0.85);
}

a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ── Global Layout Components ── */
.container {
  width: min(100% - 2.5rem, var(--container-width));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section--dark {
  background-color: var(--forest-dark);
  color: var(--cream);
}

.section--dark p {
  color: rgba(252, 250, 246, 0.85);
}

.section--alt {
  background-color: var(--cream-dark);
}

.section-title-wrap {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

/* Elegant gold divider below section titles */
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 100%);
}

.section-intro {
  max-width: 60ch;
  margin: 1.25rem auto 0;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ── Interactive & Common Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn--primary {
  background-color: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(192, 85, 58, 0.25);
}

.btn--primary:hover {
  background-color: var(--terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 85, 58, 0.35);
}

.btn--outline {
  background-color: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn--outline:hover {
  background-color: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-2px);
}

.btn--dark {
  background-color: var(--forest-dark);
  border: 1px solid var(--gold);
  color: var(--cream);
}

.btn--dark:hover {
  background-color: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-2px);
}

.btn--uber {
  background-color: #000000;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--uber:hover {
  background-color: #1a1a1a;
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.btn--whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background-color: #25D366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  font-size: 1.8rem;
  transition: var(--transition-smooth);
}

.btn--whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.55);
}

.btn--whatsapp-float .tooltip {
  position: absolute;
  right: 75px;
  background: var(--forest-dark);
  color: var(--cream);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  border: 1px solid var(--gold);
}

.btn--whatsapp-float:hover .tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── Navigation Bar ── */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.nav-header.scrolled {
  background-color: rgba(9, 25, 20, 0.95);
  backdrop-filter: blur(12px);
  height: 70px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(207, 166, 91, 0.15);
}

.nav-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-badge {
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  background-color: var(--forest-dark);
  overflow: hidden;
}

.nav-logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nav-logo-text {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.nav-logo-text span {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(252, 250, 246, 0.8);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--gold-light);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
  background-color: var(--forest-dark);
  color: var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

/* Subtle overlay gradient to darken and create warmth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9, 25, 20, 0.95) 25%, rgba(9, 25, 20, 0.4) 60%, rgba(9, 25, 20, 0.95) 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(207, 166, 91, 0.15);
  border: 1px solid rgba(207, 166, 91, 0.4);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}

.hero-badge-text {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold-light);
  letter-spacing: 0.15em;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(252, 250, 246, 0.85);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  border-top: 1px solid rgba(207, 166, 91, 0.2);
  padding-top: 2rem;
}

.hero-stat-card {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(252, 250, 246, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

/* Floating brand emblem badge on the right */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-badge-seal {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px dashed var(--gold);
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate-slow 30s linear infinite;
}

.hero-badge-seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--forest-mid);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--cream);
}

.hero-badge-seal-logo {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-badge-seal-sub {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
}

.hero-badge-seal-star {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 0.75rem;
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── About Section (Story & Interior) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-highlight {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-dark);
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-bullets {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.about-bullet-icon {
  color: var(--terracotta);
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.about-image-wrapper img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
  transform: scale(1.03);
}

.about-visual-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background-color: var(--forest-dark);
  border: 1px solid var(--gold);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-badge-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--gold);
  display: block;
}

.about-badge-desc {
  font-size: 0.75rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Interactive Customizer (Signature Element) ── */
.customizer-box {
  background-color: var(--forest-mid);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.customizer-header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(207, 166, 91, 0.2);
  background-color: var(--forest-dark);
}

.customizer-header h3 {
  font-size: 1.6rem;
  color: var(--cream);
}

.customizer-header h3 span {
  color: var(--gold);
  font-style: italic;
}

.customizer-body-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

/* Left panel: Customizer selectors */
.customizer-controls {
  padding: 2.5rem;
  border-right: 1px solid rgba(207, 166, 91, 0.2);
}

.customizer-step {
  margin-bottom: 2.25rem;
}

.customizer-step-title {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* Salsa Selector Grid */
.salsa-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.salsa-btn {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 166, 91, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 0.5rem;
  color: var(--cream);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-smooth);
}

.salsa-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.salsa-btn.active {
  background-color: var(--forest-light);
  border-color: var(--gold);
  box-shadow: inset 0 0 10px rgba(207, 166, 91, 0.2);
}

/* Specific Salsa Active States for glow */
.salsa-btn.active[data-salsa="habanero"] {
  border-color: var(--terracotta);
  box-shadow: 0 0 15px rgba(184, 75, 48, 0.4);
}

.salsa-btn-emoji {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.4rem;
}

.salsa-btn-name {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Protein Selector Cards */
.protein-select-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.protein-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(207, 166, 91, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: var(--cream);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.protein-label:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
}

.protein-label-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.protein-radio {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.protein-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  transform: scale(0);
  transition: var(--transition-fast);
}

.protein-radio:checked::after {
  transform: scale(1);
}

.protein-label.active {
  background-color: var(--forest-light);
  border-color: var(--gold);
}

.protein-name {
  font-size: 0.95rem;
  font-weight: 500;
}

.protein-price {
  font-family: 'DM Mono', monospace;
  color: var(--gold);
  font-weight: 500;
}

/* Right panel: Live Plate Preview */
.customizer-preview {
  padding: 3rem 2.5rem;
  background-color: var(--forest-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.preview-salsa-glow {
  position: absolute;
  top: 15%;
  left: 20%;
  right: 20%;
  bottom: 30%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  transition: var(--transition-smooth);
  border-radius: 50%;
  z-index: 0;
}

/* Heat-specific backgrounds */
.preview-salsa-glow.verde-glow { background-color: #6B8E23; }
.preview-salsa-glow.roja-glow { background-color: #C0553A; }
.preview-salsa-glow.habanero-glow { background-color: #FF5722; opacity: 0.25; }

.preview-top {
  position: relative;
  z-index: 1;
}

.preview-badge-status {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.preview-salsa-title {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--cream);
}

.preview-salsa-desc {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(252, 250, 246, 0.75);
}

.preview-heat-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.preview-heat-label {
  font-size: 0.8rem;
  font-family: 'DM Mono', monospace;
  color: rgba(252, 250, 246, 0.5);
  text-transform: uppercase;
}

.preview-heat-flames {
  display: flex;
  gap: 0.25rem;
  color: var(--gold);
}

.preview-heat-flame {
  opacity: 0.25;
  transition: var(--transition-fast);
}

.preview-heat-flame.active {
  color: var(--terracotta);
  opacity: 1;
  text-shadow: 0 0 10px var(--terracotta);
}

.preview-plate-wrap {
  margin: 2rem 0;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.preview-plate-container {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid var(--forest-mid);
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  position: relative;
}

.preview-plate-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

/* Interactive SVG overlay representing salsa coverage */
.preview-salsa-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: color-burn;
  opacity: 0.65;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.preview-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(207, 166, 91, 0.15);
  padding-top: 1.5rem;
}

.preview-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.preview-total-label {
  font-size: 0.9rem;
  color: rgba(252, 250, 246, 0.7);
}

.preview-total-price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--gold-light);
  font-weight: 700;
}

.customizer-cta {
  width: 100%;
}

/* ── Interactive Menu Section ── */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.menu-tab-btn {
  background: none;
  border: none;
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.6;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.menu-tab-btn:hover {
  opacity: 0.9;
}

.menu-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -0.55rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.menu-tab-btn.active {
  opacity: 1;
  color: var(--forest-dark);
  font-weight: 600;
}

.menu-tab-btn.active::after {
  transform: scaleX(1);
}

/* Menu Items Grid */
.menu-items-container {
  position: relative;
  min-height: 400px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition-smooth);
}

.menu-grid.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}

.menu-item-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
  transition: var(--transition-fast);
}

.menu-item-card:hover {
  transform: translateX(3px);
}

.menu-item-info {
  flex-grow: 1;
}

.menu-item-title-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.menu-item-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--forest-dark);
}

.menu-item-popular {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--terracotta);
  border: 1px solid var(--terracotta);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  font-weight: 500;
}

.menu-item-desc {
  font-size: 0.875rem;
  color: rgba(44, 53, 49, 0.75);
  max-width: 48ch;
}

/* Dotted connection line to price */
.menu-item-line {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(207, 166, 91, 0.4);
  margin: 0 0.5rem 0.3rem;
  min-width: 20px;
}

.menu-item-price {
  font-family: 'DM Mono', monospace;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-dark);
  white-space: nowrap;
}

/* ── Promotional Banner Section ── */
.promo-section {
  position: relative;
  background-color: var(--forest-dark);
  color: var(--cream);
  overflow: hidden;
  padding: 5rem 0;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.promo-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  display: block;
}

.promo-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.15;
}

.promo-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.promo-offer {
  display: flex;
  align-items: center;
  gap: 2rem;
  background-color: rgba(27, 63, 52, 0.4);
  border: 1px dashed var(--gold);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.promo-price-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--terracotta);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(192, 85, 58, 0.35);
}

.promo-price-currency {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.promo-price-value {
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.promo-offer-details h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.promo-offer-details p {
  font-size: 0.9rem;
  color: rgba(252, 250, 246, 0.8);
}

.promo-offer-note {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--gold);
  margin-top: 0.75rem;
  display: block;
}

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(9, 25, 20, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
}

.gallery-title {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--cream);
  font-weight: 500;
}

/* Asymmetrical Spanning for premium editorial layout */
.gallery-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card:nth-child(4) {
  grid-column: span 2;
}

/* ── Reviews / Testimonials ── */
.reviews-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
}

.reviews-carousel {
  position: relative;
  min-height: 250px;
}

.review-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.98);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.review-item.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(44, 53, 49, 0.7);
}

.review-author span {
  font-family: 'DM Mono', monospace;
  font-weight: 400;
  margin-left: 0.5rem;
  color: var(--gold-dark);
}

.review-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.review-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest-dark);
  transition: var(--transition-fast);
}

.review-nav-btn:hover {
  background-color: var(--gold);
  color: var(--forest-dark);
  border-color: var(--gold);
}

.reviews-badge-card {
  background-color: var(--forest-dark);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--cream);
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.reviews-badge-stars {
  color: var(--gold);
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.reviews-badge-score {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--cream);
}

.reviews-badge-label {
  font-size: 0.85rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
  display: block;
}

.reviews-badge-meta {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: rgba(252, 250, 246, 0.5);
  margin-top: 1.5rem;
  display: block;
  border-top: 1px solid rgba(207, 166, 91, 0.15);
  padding-top: 1.5rem;
}

/* ── Contact & Visit Section ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.contact-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-card-icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h3 {
  font-size: 1.3rem;
  color: var(--forest-dark);
  margin: 0;
}

.contact-card-content p, 
.contact-card-content li {
  font-size: 0.95rem;
  color: rgba(44, 53, 49, 0.8);
}

.contact-card-content ul {
  list-style: none;
}

.contact-card-content li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(207, 166, 91, 0.1);
}

.contact-card-content li:last-child {
  border: none;
}

.contact-closed {
  color: var(--terracotta) !important;
  font-weight: 600;
}

.contact-socials {
  display: flex;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--cream-dark);
  color: var(--forest-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.contact-social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-social-btn:hover {
  background-color: var(--gold);
  color: var(--forest-dark);
  transform: translateY(-2px);
}

/* Map Integration Styling */
.map-container {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  height: 350px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.1) brightness(0.95);
}

/* ── Footer ── */
.footer {
  background-color: var(--forest-dark);
  color: var(--cream);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--gold-dark);
  font-size: 0.95rem;
}

.footer p {
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-column h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  overflow: hidden;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.95;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(252, 250, 246, 0.95);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 3px;
}

.footer-hours-list {
  list-style: none;
}

.footer-hours-list li {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.footer-cta p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid rgba(207, 166, 91, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

/* ── Responsive Styling (Mobile First Grid Adaptability) ── */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-content {
    margin-inline: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .about-visual {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  
  .customizer-body-grid {
    grid-template-columns: 1fr;
  }
  
  .customizer-controls {
    border-right: none;
    border-bottom: 1px solid rgba(207, 166, 91, 0.2);
  }
  
  .menu-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .promo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .promo-offer {
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .reviews-badge-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--forest-dark);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-stat-value {
    font-size: 1.8rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  
  .gallery-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  
  .gallery-card:nth-child(4) {
    grid-column: span 2;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .about-bullets {
    grid-template-columns: 1fr;
  }
  
  .salsa-select-grid {
    grid-template-columns: 1fr;
  }
  
  .promo-offer {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .btn--whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
  }
  
  .btn--whatsapp-float .tooltip {
    display: none;
  }
}

/* ── Accessibility: Contrast focus ring & Reduced motion overrides ── */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: 0s !important;
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important;
  }
  
  .hero-badge-seal {
    animation: none;
  }
}
