/* ====================================================
   LA HACIENDA AZTECA — Premium Design System
   ====================================================

   Table of Contents:
   1.  CSS Variables
   2.  CSS Reset
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Badges
   7.  Image Placeholders
   8.  Header / Navigation
   9.  Hero Sections
   10. Location Cards
   11. Menu Item Cards
   12. Daily Special Cards
   13. Featured Dish Cards
   14. Award Section
   15. Bar / Drink Cards
   16. Story Section
   17. Catering Cards
   18. Forms
   19. Gift Certificate
   20. Reviews / Trust
   21. Map Placeholder
   22. Menu Page Tabs
   23. Footer
   24. Mobile Sticky Bar
   25. Scroll Animations
   26. Decorative Elements
   27. Utility Classes
   28. Page-specific Overrides
   29. Responsive — Tablet (≤1024px)
   30. Responsive — Mobile (≤768px)
   31. Responsive — Small (≤480px)
   ==================================================== */


/* ==========================================================
   1. CSS VARIABLES
   ========================================================== */
:root {
  /* Brand Colors */
  --agave:          #1e3d2f;
  --agave-deep:     #0f2218;
  --agave-darker:   #08150e;
  --agave-teal:     #2d5a4f;
  --cream:          #f5f0e6;
  --cream-dark:     #e8e0d0;
  --salsa:          #b5321c;
  --salsa-light:    #d04030;
  --corn:           #e8a020;
  --terracotta:     #c1603f;
  --terracotta-lt:  #d4724f;
  --charcoal:       #181818;
  --charcoal-mid:   #272727;
  --off-white:      #faf8f3;
  --gold:           #c9a227;
  --gold-light:     #e0b83a;

  /* Text */
  --text-dark:      #1a1a1a;
  --text-medium:    #4a4040;
  --text-light:     #7a7070;
  --text-on-dark:   #faf8f3;
  --text-muted:     rgba(250,248,243,.72);

  /* Typography */
  --font-display:   'Cormorant Garamond', Georgia, serif;
  --font-ui:        'Montserrat', system-ui, sans-serif;

  /* Spacing Scale */
  --s1:  .25rem;  --s2:  .5rem;   --s3:  .75rem;  --s4:  1rem;
  --s5:  1.25rem; --s6:  1.5rem;  --s8:  2rem;    --s10: 2.5rem;
  --s12: 3rem;    --s16: 4rem;    --s20: 5rem;    --s24: 6rem;
  --s32: 8rem;

  /* Border Radius */
  --r-sm:   4px;   --r-md:   8px;
  --r-lg:   16px;  --r-xl:   24px;  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12), 0 2px 6px rgba(0,0,0,.08);
  --shadow-card: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15), 0 4px 16px rgba(0,0,0,.08);
  --shadow-lift: 0 16px 48px rgba(0,0,0,.18);

  /* Transitions */
  --t-fast: .15s ease;
  --t-base: .25s ease;
  --t-slow: .4s  ease;

  /* Layout */
  --max-w:         1200px;
  --max-w-wide:    1400px;
  --max-w-narrow:  780px;
  --header-h:      72px;
  --bar-h:         64px;
}


/* ==========================================================
   2. CSS RESET
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul,ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }


/* ==========================================================
   3. TYPOGRAPHY
   ========================================================== */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -.01em;
}

/* Section Label (small caps eyebrow) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* Section Heading Block */
.sec-head { margin-bottom: var(--s12); }
.sec-head--center { text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .accent-line { margin: 0 auto; }

.sec-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--s4);
}

.sec-desc {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-medium);
  max-width: 600px;
}
.sec-head--center .sec-desc { margin: 0 auto; }

.accent-line {
  width: 44px;
  height: 3px;
  background: var(--terracotta);
  border-radius: var(--r-full);
  margin-top: var(--s2);
}


/* ==========================================================
   4. LAYOUT UTILITIES
   ========================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s6);
}
.container--wide   { max-width: var(--max-w-wide); }
.container--narrow { max-width: var(--max-w-narrow); }

.section        { padding: var(--s20) 0; }
.section--lg    { padding: var(--s32) 0; }
.section--sm    { padding: var(--s12) 0; }

.section--dark {
  background-color: var(--agave-deep);
  background-image:
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg');
  background-size:
    54px auto, 38px auto, 62px auto, 42px auto, 46px auto,
    58px auto, 36px auto, 52px auto, 44px auto, 60px auto,
    50px auto;
  background-position:
    3%  88%,   11% 15%,   20% 52%,   30%  6%,   40% 73%,
    51% 32%,   62%  8%,   71% 62%,   81% 85%,   89% 24%,
    96% 48%;
  background-repeat: no-repeat;
  color: var(--text-on-dark);
}
.section--charcoal { background: var(--charcoal); color: var(--text-on-dark); }
.section--agave {
  background-color: var(--agave);
  background-image:
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg');
  background-size:
    38px auto, 56px auto, 44px auto, 52px auto, 36px auto,
    60px auto, 42px auto, 50px auto, 40px auto, 54px auto;
  background-position:
    4%  84%,   14% 12%,   24% 48%,   36% 80%,   46%  6%,
    58% 42%,   68% 76%,   78% 18%,   88% 58%,   96% 88%;
  background-repeat: no-repeat;
  color: var(--text-on-dark);
}
.section--cream    { background: var(--cream); }
.section--white    { background: #fff; }

.grid { display: grid; gap: var(--s6); }
.g-2  { grid-template-columns: repeat(2,1fr); }
.g-3  { grid-template-columns: repeat(3,1fr); }
.g-4  { grid-template-columns: repeat(4,1fr); }

.flex         { display: flex; gap: var(--s4); }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap    { flex-wrap: wrap; }


/* ==========================================================
   5. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .75rem 1.5rem;
  border-radius: var(--r-sm);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}

.btn--primary {
  background: var(--salsa);
  color: #fff;
  border-color: var(--salsa);
}
.btn--primary:hover {
  background: var(--salsa-light);
  border-color: var(--salsa-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(181,50,28,.38);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--agave);
  border-color: var(--agave);
}
.btn--outline-dark:hover {
  background: var(--agave);
  color: #fff;
  transform: translateY(-2px);
}

.btn--outline-terra {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn--outline-terra:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  font-weight: 800;
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,162,39,.38);
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.4);
  transform: translateY(-2px);
}

.btn--lg  { padding: 1rem 2rem;  font-size: .8rem; }
.btn--sm  { padding: .5rem 1rem; font-size: .65rem; }
.btn--xl  { padding: 1.1rem 2.5rem; font-size: .85rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
}


/* ==========================================================
   6. BADGES
   ========================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
}
.badge--popular  { background: var(--salsa);      color: #fff; }
.badge--spicy    { background: #e03c00;            color: #fff; }
.badge--new      { background: var(--agave-teal);  color: #fff; }
.badge--chef     { background: var(--gold);        color: var(--charcoal); }
.badge--special  { background: var(--corn);        color: var(--charcoal); }
.badge--veg      { background: #4caf50;            color: #fff; }


/* ==========================================================
   7. IMAGE PLACEHOLDERS
   ========================================================== */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  position: relative;
  overflow: hidden;
  font-size: 2rem;
  color: rgba(255,255,255,.45);
}

/* subtle grain overlay */
.img-ph::before {
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

/* label */
.img-ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: var(--s2);
  left: var(--s3);
  font-size: .6rem;
  font-family: var(--font-ui);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(0,0,0,.25);
  padding: 2px 8px;
  border-radius: 4px;
  z-index: 2;
}

/* Food Gradients */
.ph-hero      { background: radial-gradient(ellipse at 20% 80%, rgba(193,96,63,.5) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(45,90,79,.35) 0%, transparent 50%), linear-gradient(155deg, #080f0a 0%, #1e3d2f 35%, #2a1008 65%, #0c180f 100%); }
.ph-tacos     { background: linear-gradient(135deg, #7a2508 0%, #b5321c 45%, #e8a020 100%); }
.ph-fajitas   { background: linear-gradient(135deg, #5a1505 0%, #8b3a0f 45%, #c1603f 100%); }
.ph-marg      { background: linear-gradient(135deg, #0d2a1a 0%, #1a4a32 50%, #3a8060 100%); }
.ph-flan      { background: linear-gradient(135deg, #8b6910 0%, #c9a227 55%, #e8d078 100%); }
.ph-churros   { background: linear-gradient(135deg, #6b3a0f 0%, #b5720c 55%, #e8a020 100%); }
.ph-agave     { background: linear-gradient(155deg, #081408 0%, #143020 50%, #2a5a38 100%); }
.ph-story     { background: radial-gradient(ellipse at 40% 60%, rgba(45,90,79,.5) 0%, transparent 60%), linear-gradient(155deg, #060e0a 0%, #0f2218 55%, #172d1e 100%); }
.ph-drinks    { background: linear-gradient(135deg, #080f0a 0%, #143020 50%, #2a5040 100%); }
.ph-beer      { background: linear-gradient(135deg, #3d2800 0%, #7a5000 50%, #b87800 100%); }
.ph-wine      { background: linear-gradient(135deg, #3a0810 0%, #6a1828 50%, #9a2a3a 100%); }
.ph-catering  { background: radial-gradient(ellipse at 30% 70%, rgba(193,96,63,.5) 0%, transparent 60%), linear-gradient(155deg, #180805 0%, #3a1808 50%, #0d1c10 100%); }
.ph-gift      { background: radial-gradient(ellipse at 35% 60%, rgba(201,162,39,.28) 0%, transparent 60%), linear-gradient(155deg, #0d0d05 0%, #1a1808 55%, #0f1c12 100%); }
.ph-house     { background: linear-gradient(135deg, #2a0808 0%, #581818 50%, #b5321c 100%); }
.ph-sopa      { background: linear-gradient(135deg, #7a5a10 0%, #c9a227 55%, #f0d080 100%); }
.ph-app       { background: linear-gradient(135deg, #122a0a 0%, #2a5018 50%, #4a8a2a 100%); }
.ph-burrito   { background: linear-gradient(135deg, #3a1808 0%, #6b3a10 50%, #c1603f 100%); }
.ph-kids      { background: linear-gradient(135deg, #082a18 0%, #184a28 50%, #2d7048 100%); }
.ph-soup      { background: linear-gradient(135deg, #3d2800 0%, #6b4810 50%, #b88020 100%); }
.ph-bar-hero  { background: radial-gradient(ellipse at 30% 70%, rgba(30,61,47,.6) 0%, transparent 60%), linear-gradient(155deg, #03080a 0%, #0a2018 55%, #162d28 100%); }
.ph-resto     { background: linear-gradient(135deg, #180e05 0%, #3a2810 55%, #5a4020 100%); }
.ph-enchilada { background: linear-gradient(135deg, #3a1005 0%, #7a280f 50%, #c1603f 100%); }
.ph-topshelf  { background: linear-gradient(135deg, #0d0d18 0%, #1a1a2d 50%, #2d2d50 100%); }
.ph-guac      { background: linear-gradient(135deg, #122808 0%, #285018 50%, #4a8028 100%); }


/* ==========================================================
   8. HEADER / NAVIGATION
   ========================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background var(--t-slow), box-shadow var(--t-slow);
}

.site-header--clear    { background: transparent; }
.site-header--scrolled {
  background: rgba(10,26,16,.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--s8);
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo-mark {
  height: 46px;
  width: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
}
.logo-sub {
  font-family: var(--font-ui);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: 2px;
}

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transition: transform var(--t-fast);
  transform-origin: left;
}
.nav-link:hover, .nav-link.active { color: #fff; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-cta {
  padding: .5rem 1.1rem;
  background: var(--salsa);
  color: #fff !important;
  border-radius: var(--r-sm);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all var(--t-fast);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover  { background: var(--salsa-light); transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
  z-index: 201;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t-base);
}
.hamburger.is-open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.is-open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Overlay Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: var(--agave-darker);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s6);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  padding: var(--s16) var(--s8);
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 600;
  color: rgba(255,255,255,.9);
  transition: color var(--t-fast);
  text-align: center;
}
.mobile-nav-link:hover { color: var(--terracotta-lt); }

.mobile-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
  margin: var(--s2) 0;
}


/* ==========================================================
   9. HERO SECTIONS
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* page heroes are shorter */
.hero--page {
  min-height: 50vh;
  align-items: flex-end;
}
.hero--page .hero-content {
  padding-bottom: var(--s16);
  padding-top: var(--s16);
}

/* Video hero background */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  will-change: transform; /* GPU acceleration */
}
@media (max-width: 768px) {
  .hero-video {
    object-position: 60% center; /* Enfoca las manos/acción en móvil */
  }
}

/* Background layers */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform .1s linear;
}

/* Nopales y cactus sobre fondos hero — distribuidos por toda la altura */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg');
  background-size:
    66px auto, 48px auto, 70px auto, 44px auto, 64px auto, 50px auto,
    68px auto, 46px auto, 62px auto, 52px auto, 72px auto, 42px auto;
  background-position:
    2%  82%,   10% 10%,   18% 50%,   28% 76%,   38% 18%,   48% 55%,
    58% 82%,   67%  8%,   76% 44%,   85% 72%,   93% 20%,   98% 60%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

.hero-bg--home {
  background:
    radial-gradient(ellipse at 18% 82%, rgba(193,96,63,.38) 0%, transparent 52%),
    radial-gradient(ellipse at 82% 22%, rgba(45,90,79,.28) 0%, transparent 48%),
    linear-gradient(160deg, #07100a 0%, #152a1c 30%, #28100a 62%, #0c181000 100%),
    linear-gradient(to bottom right, #0a1208, #1e3d2f);
}
.hero-bg--menu    { background: radial-gradient(ellipse at 22% 80%, rgba(181,50,28,.3) 0%, transparent 50%), linear-gradient(160deg, #0c1810 0%, #1e3d2f 50%, #180a05 100%); }
.hero-bg--specials{ background: radial-gradient(ellipse at 18% 78%, rgba(232,160,32,.3) 0%, transparent 52%), radial-gradient(ellipse at 78% 25%, rgba(181,50,28,.25) 0%, transparent 48%), linear-gradient(160deg, #180e02 0%, #2a2008 55%, #0c1810 100%); }
.hero-bg--catering{ background: radial-gradient(ellipse at 24% 75%, rgba(193,96,63,.42) 0%, transparent 55%), linear-gradient(160deg, #180a05 0%, #3a180a 30%, #0c1810 70%, #081008 100%); }
.hero-bg--bar     { background: radial-gradient(ellipse at 28% 72%, rgba(30,61,47,.55) 0%, transparent 55%), radial-gradient(ellipse at 72% 28%, rgba(45,90,79,.38) 0%, transparent 50%), linear-gradient(160deg, #03080a 0%, #0a201a 40%, #142d22 80%, #03080a 100%); }
.hero-bg--gift    { background: radial-gradient(ellipse at 28% 72%, rgba(201,162,39,.28) 0%, transparent 55%), radial-gradient(ellipse at 72% 28%, rgba(193,96,63,.22) 0%, transparent 50%), linear-gradient(160deg, #080805 0%, #18180a 50%, #0c1810 100%); }
.hero-bg--story   { background: radial-gradient(ellipse at 32% 68%, rgba(45,90,79,.45) 0%, transparent 55%), radial-gradient(ellipse at 68% 32%, rgba(30,61,47,.32) 0%, transparent 50%), linear-gradient(160deg, #080f08 0%, #0f2218 50%, #08100a 100%); }
.hero-bg--locs    { background: radial-gradient(ellipse at 22% 78%, rgba(181,50,28,.3) 0%, transparent 50%), radial-gradient(ellipse at 78% 22%, rgba(30,61,47,.3) 0%, transparent 50%), linear-gradient(160deg, #080808 0%, #1e3d2f 50%, #080808 100%); }

/* Gradient overlay on all heroes */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.45) 0%, rgba(0,0,0,.30) 40%, rgba(0,0,0,.70) 100%);
  z-index: 1;
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.88' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--s24) var(--s6);
  /* Gradiente oscuro localizado solo detrás del texto */
  background: radial-gradient(ellipse at 20% 60%, rgba(0,0,0,.38) 0%, transparent 70%);
}

/* Eyebrow in hero */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terracotta-lt);
  margin-bottom: var(--s5);
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: currentColor;
}

/* Main headline */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: var(--s6);
  text-shadow: 0 2px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5);
}
.hero-title em {
  font-style: normal;
  color: var(--corn);
  text-shadow: 0 2px 14px rgba(0,0,0,.65);
}

/* Subtitle */
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,.9);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: var(--s10);
  text-shadow: 0 1px 8px rgba(0,0,0,.65);
}

/* Trust badges row below CTAs */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s10);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r-full);
  padding: .4rem 1rem;
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
}
.trust-pill.gold {
  background: rgba(201,162,39,.18);
  border-color: rgba(201,162,39,.4);
  color: var(--gold-light);
}
.trust-pill.terra {
  background: rgba(193,96,63,.15);
  border-color: rgba(193,96,63,.38);
  color: var(--terracotta-lt);
}

/* Page hero — smaller */
.hero--page .hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
}
.hero--page .hero-sub {
  font-size: 1rem;
}


/* ==========================================================
   10. LOCATION CARDS
   ========================================================== */
.location-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: var(--s6);
}

.loc-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s8);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.loc-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-3px);
}
.loc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--terracotta);
}
.loc-card--featured::before {
  background: linear-gradient(90deg, var(--gold) 0%, var(--terracotta) 100%);
}

.loc-tag {
  position: absolute;
  top: var(--s4);
  right: var(--s4);
  background: var(--gold);
  color: var(--charcoal);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--r-full);
}

.loc-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--agave);
  margin-bottom: 2px;
}
.loc-region {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s5);
}

.loc-detail {
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  margin-bottom: var(--s4);
}
.loc-detail-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: .7;
}
.loc-detail-text {
  font-size: .88rem;
  color: var(--text-medium);
  line-height: 1.55;
}
.loc-detail-text strong {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.loc-detail-text a { color: var(--agave); font-weight: 600; }
.loc-detail-text a:hover { text-decoration: underline; }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px var(--s4);
  font-size: .84rem;
  color: var(--text-medium);
}
.hours-day { font-weight: 600; color: var(--text-dark); white-space: nowrap; }
.hours-closed { color: var(--salsa); font-weight: 700; }

.loc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s5);
}
.loc-actions .btn { flex: 1; min-width: 80px; font-size: .65rem; }

.catering-note {
  margin-top: var(--s4);
  padding: var(--s3) var(--s4);
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: .8rem;
  color: var(--text-medium);
}
.catering-note strong { color: var(--agave); }


/* ==========================================================
   11. MENU ITEM CARDS
   ========================================================== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: var(--s5);
}

.menu-card {
  background: #fff;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}

.menu-card-img {
  width: 100%;
  height: 190px;
  position: relative;
  overflow: hidden;
}
.menu-card-img .img-ph { height: 100%; }

.menu-card-badges {
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  z-index: 2;
}

.menu-card-body {
  padding: var(--s5);
}
.menu-card-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--s2);
}
.menu-card-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: var(--s4);
}
.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-card-price {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--agave);
}
.menu-card-price.is-special { color: var(--salsa); }


/* ==========================================================
   12. DAILY SPECIAL CARDS
   ========================================================== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: var(--s4);
}

.special-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  transition: transform var(--t-base);
  cursor: default;
}
.special-card:hover { transform: translateY(-6px); }

.special-bg {
  position: absolute;
  inset: 0;
}
.special-body {
  position: relative;
  z-index: 1;
  padding: var(--s8) var(--s6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.special-day-label {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--s2);
}
.special-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: var(--s3);
}
.special-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
  flex: 1;
}
.special-price-block {
  margin-top: var(--s4);
}
.special-price-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.special-price-note {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.62);
  margin-top: 4px;
}

/* Per-day colors */
.special-bg--monday   { background: linear-gradient(145deg, #122a1e 0%, #2d5a4f 100%); }
.special-bg--tuesday  { background: linear-gradient(145deg, #5a1205 0%, #b5321c 100%); }
.special-bg--wednesday{ background: linear-gradient(145deg, #222 0%, #383838 100%); }
.special-bg--thursday { background: linear-gradient(145deg, #3a2800 0%, #7a5200 100%); }
.special-bg--friday   { background: linear-gradient(145deg, #380a05 0%, #8b2000 100%); }

/* Closed card */
.special-card--closed .special-desc { opacity: .55; }
.closed-icon { font-size: 1.75rem; margin: var(--s4) 0; opacity: .4; }


/* ==========================================================
   13. FEATURED DISH CARDS (large portrait cards)
   ========================================================== */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--s5);
}

.featured-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  transition: transform var(--t-base);
  cursor: default;
}
.featured-card:hover { transform: scale(1.025); }
.featured-card--wide { aspect-ratio: 4/3; }

.featured-card .img-ph {
  position: absolute;
  inset: 0;
  height: 100%;
}
.featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.22) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s6);
  z-index: 2;
}
.featured-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s2);
}
.featured-card-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
}
.featured-card-badge {
  margin-bottom: var(--s3);
}


/* ==========================================================
   14. AWARD SECTION
   ========================================================== */
.award-section {
  background-color: #0c1a10;
  background-image:
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    url('../assets/nopal-sm.svg'),
    url('../assets/cactus-sm.svg'),
    linear-gradient(145deg, #0c1a10 0%, #180e05 50%, #0c1a10 100%);
  background-size:
    40px auto, 54px auto, 44px auto, 58px auto, 38px auto,
    52px auto, 42px auto, 56px auto, 36px auto, auto;
  background-position:
    4%  80%,   14%  8%,   26% 52%,   38% 84%,   50%  12%,
    61% 48%,   72% 78%,   83%  6%,   94% 62%,   0 0;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat, no-repeat;
  position: relative;
  overflow: hidden;
}
.award-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,162,39,.11) 0%, transparent 65%);
}
/* Decorative ring */
.award-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,39,.06);
  pointer-events: none;
}

.award-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.award-medal {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s6);
  font-size: 2.25rem;
  box-shadow: 0 0 48px rgba(201,162,39,.38), 0 0 0 8px rgba(201,162,39,.08);
}

.award-eyebrow {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}
.award-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s4);
}
.award-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: var(--s8);
}
.award-ribbon {
  display: inline-flex;
  align-items: center;
  gap: var(--s3);
  background: rgba(201,162,39,.12);
  border: 1px solid rgba(201,162,39,.28);
  border-radius: var(--r-full);
  padding: .6rem 1.5rem;
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
}


/* ==========================================================
   15. BAR / DRINK CARDS
   ========================================================== */
.drink-card {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: var(--s6);
  transition: all var(--t-base);
}
.drink-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateY(-4px);
}
.drink-card-icon { font-size: 2rem; margin-bottom: var(--s4); }
.drink-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--s2);
}
.drink-card-desc {
  font-size: .84rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
}
.drink-card-highlight {
  margin-top: var(--s4);
  font-size: .76rem;
  font-weight: 700;
  color: var(--corn);
  letter-spacing: .04em;
}


/* ==========================================================
   16. STORY SECTION
   ========================================================== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s16);
  align-items: center;
}
.story-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg);
}
.story-image .img-ph { height: 100%; }

.story-pull {
  background: var(--cream);
  border-left: 4px solid var(--terracotta);
  padding: var(--s5) var(--s6);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--s6) 0;
}
.story-pull p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--agave);
  line-height: 1.65;
}


/* ==========================================================
   17. CATERING CARDS
   ========================================================== */
.catering-pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px,1fr));
  gap: var(--s4);
}
.catering-pkg-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-card);
  text-align: center;
  border: 2px solid transparent;
  transition: all var(--t-base);
}
.catering-pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: var(--terracotta);
}
.pkg-icon { font-size: 2.25rem; margin-bottom: var(--s3); }
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--agave);
  margin-bottom: var(--s2);
}
.pkg-desc { font-size: .82rem; color: var(--text-light); line-height: 1.6; }


/* ==========================================================
   18. FORMS
   ========================================================== */
.form-wrap {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--s10);
  box-shadow: var(--shadow-lg);
}

.form-group { margin-bottom: var(--s5); }

.form-label {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: var(--s2);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .75rem 1rem;
  background: var(--off-white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--r-sm);
  font-size: .95rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--t-fast);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--agave-teal); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-light); }
.form-textarea { min-height: 120px; resize: vertical; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.form-note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: var(--s2);
}


/* ==========================================================
   19. GIFT CERTIFICATE
   ========================================================== */
.gift-visual {
  background-color: #0a1c10;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.06) 1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(145deg, #0a1c10 0%, var(--agave) 50%, var(--agave-teal) 100%);
  background-size: 22px 22px, 22px 22px, auto;
  background-position: 0 0, 11px 11px, 0 0;
  border-radius: var(--r-xl);
  padding: var(--s12) var(--s10);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.32);
}
.gift-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 45%, rgba(201,162,39,.22) 0%, transparent 60%);
  pointer-events: none;
}
/* Corner accents */
.gift-visual::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201,162,39,.2);
  border-radius: calc(var(--r-xl) - 4px);
  pointer-events: none;
}

.gift-logo {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}
.gift-sub {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--s8);
  position: relative;
  z-index: 1;
}
.gift-amount {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.gift-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-top: var(--s4);
  position: relative;
  z-index: 1;
}

.gift-use-list { display: flex; flex-direction: column; gap: 0; }
.gift-use-item {
  display: flex;
  align-items: center;
  gap: var(--s4);
  padding: var(--s4) 0;
  border-bottom: 1px solid var(--cream-dark);
}
.gift-use-item:last-child { border-bottom: none; }
.gift-use-icon {
  width: 46px;
  height: 46px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}
.gift-use-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.gift-use-text p { font-size: .82rem; color: var(--text-light); }


/* ==========================================================
   20. REVIEWS / TRUST
   ========================================================== */
.review-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s6);
  box-shadow: var(--shadow-card);
}
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: var(--s3); }
.review-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-medium);
  line-height: 1.75;
  margin-bottom: var(--s4);
}
.review-author { font-size: .84rem; font-weight: 700; color: var(--text-dark); }
.review-loc { font-size: .75rem; color: var(--text-light); margin-top: 2px; }

.trust-pills {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px,1fr));
  gap: var(--s4);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s4);
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  width: 42px;
  height: 42px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-label { font-size: .84rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; }


/* ==========================================================
   21. MAP PLACEHOLDER
   ========================================================== */
.map-ph {
  width: 100%;
  height: 280px;
  border-radius: var(--r-lg);
  background: #e0ddd8;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  color: var(--text-light);
}
.map-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(180,175,170,.4) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg,  rgba(180,175,170,.4) 1px, transparent 1px) 0 0 / 28px 28px;
}
.map-icon { font-size: 2rem; position: relative; z-index: 1; }
.map-label { font-size: .82rem; font-weight: 600; position: relative; z-index: 1; }


/* ==========================================================
   22. MENU PAGE CONTROLS
   ========================================================== */
.menu-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.menu-tabs {
  display: flex;
  gap: var(--s2);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  flex-shrink: 0;
  padding: .5rem 1.1rem;
  border-radius: var(--r-full);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  background: #fff;
  border: 2px solid var(--cream-dark);
  color: var(--text-medium);
}
.menu-tab:hover { border-color: var(--agave); color: var(--agave); }
.menu-tab.is-active { background: var(--agave); border-color: var(--agave); color: #fff; }

.menu-search {
  position: relative;
  flex-shrink: 0;
}
.menu-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: .9rem;
  pointer-events: none;
}
.menu-search input {
  padding: .6rem 1rem .6rem 2.5rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--r-full);
  font-size: .84rem;
  width: 220px;
  outline: none;
  transition: border-color var(--t-fast);
  background: #fff;
}
.menu-search input:focus { border-color: var(--agave); }

.menu-cat-section { display: none; }
.menu-cat-section.is-active { display: block; margin-bottom: var(--s12); }

.menu-cat-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--agave);
  margin-bottom: var(--s6);
  padding-bottom: var(--s3);
  border-bottom: 2px solid var(--cream-dark);
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.menu-cat-title::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terracotta);
  flex-shrink: 0;
}

.menu-download-bar {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--s4) var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-bottom: var(--s10);
  border: 1px solid var(--cream-dark);
}
.menu-download-bar p { font-size: .84rem; color: var(--text-medium); }


/* ==========================================================
   23. FOOTER
   ========================================================== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.78);
  padding: var(--s16) 0 var(--s10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3,1fr);
  gap: var(--s10);
  margin-bottom: var(--s12);
}

.footer-logo-mark { margin-bottom: var(--s4); }
.footer-brand-desc {
  font-size: .84rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-bottom: var(--s5);
}
.social-links { display: flex; gap: var(--s3); }
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  transition: all var(--t-fast);
  color: rgba(255,255,255,.65);
}
.social-link:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}

.footer-head {
  font-family: var(--font-ui);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-link {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
}
.footer-link:hover { color: #fff; }

.footer-loc-name { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: var(--s2); }
.footer-loc-detail {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
}
.footer-loc-detail a { color: rgba(255,255,255,.65); }
.footer-loc-detail a:hover { color: #fff; }
.footer-loc-wrap + .footer-loc-wrap { margin-top: var(--s5); }

.footer-hours {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.9;
}
.footer-hours .closed { color: rgba(181,50,28,.85); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
}
.footer-copy { font-size: .72rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: var(--s5); }
.footer-legal a {
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.65); }


/* ==========================================================
   24. MOBILE STICKY BAR
   ========================================================== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,.09);
  height: var(--bar-h);
}
.sticky-bar-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 100%;
}
.sticky-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--t-fast);
  padding: 0 var(--s2);
}
.sticky-action:hover { color: #fff; }
.sticky-action.cta {
  background: var(--salsa);
  color: #fff;
  margin: 8px 4px;
  border-radius: var(--r-sm);
  letter-spacing: .06em;
}
.sticky-action.cta:hover { background: var(--salsa-light); }
.sticky-icon { font-size: 1.2rem; line-height: 1; }


/* ==========================================================
   25. SCROLL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .62s ease, transform .62s ease;
}
.reveal.is-vis {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { opacity: 0; transform: translateX(-28px); transition: opacity .62s ease, transform .62s ease; }
.reveal-right { opacity: 0; transform: translateX(28px);  transition: opacity .62s ease, transform .62s ease; }
.reveal-left.is-vis,
.reveal-right.is-vis { opacity: 1; transform: translateX(0); }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }
.d6 { transition-delay: .6s; }


/* ==========================================================
   26. DECORATIVE ELEMENTS
   ========================================================== */
.ornament {
  display: flex;
  align-items: center;
  gap: var(--s4);
  color: var(--terracotta);
  margin-bottom: var(--s4);
  opacity: .5;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: currentColor;
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cream-dark), transparent);
  margin: var(--s8) 0;
}

.info-banner {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
  border: 1px solid var(--cream-dark);
  font-size: .84rem;
  color: var(--text-medium);
}
.info-banner strong { color: var(--agave); }

.disclaimer {
  font-size: .76rem;
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  margin-top: var(--s6);
}


/* ==========================================================
   27. UTILITY CLASSES
   ========================================================== */
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.mt-4  { margin-top: var(--s4); }
.mt-6  { margin-top: var(--s6); }
.mt-8  { margin-top: var(--s8); }
.mt-10 { margin-top: var(--s10); }
.mt-12 { margin-top: var(--s12); }
.mb-4  { margin-bottom: var(--s4); }
.mb-6  { margin-bottom: var(--s6); }
.mb-8  { margin-bottom: var(--s8); }
.mb-10 { margin-bottom: var(--s10); }
.mb-12 { margin-bottom: var(--s12); }

.c-gold      { color: var(--gold); }
.c-terra     { color: var(--terracotta); }
.c-salsa     { color: var(--salsa); }
.c-agave     { color: var(--agave); }
.c-muted     { color: var(--text-muted); }
.c-on-dark   { color: var(--text-on-dark); }


/* ==========================================================
   28. PAGE-SPECIFIC OVERRIDES
   ========================================================== */

/* Timeline (Our Story) */
.timeline {
  position: relative;
  padding-left: var(--s10);
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terracotta), var(--corn));
}
.timeline-item {
  position: relative;
  margin-bottom: var(--s10);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--s10) + 7px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px rgba(193,96,63,.22);
}
.tl-year {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s2);
}
.tl-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--agave);
  margin-bottom: var(--s2);
}
.tl-desc {
  font-size: .88rem;
  color: var(--text-medium);
  line-height: 1.75;
}

/* CTA Banner */
.cta-band {
  text-align: center;
  padding: var(--s20) 0;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--s4);
}
.cta-band-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  margin: 0 auto var(--s8);
  line-height: 1.75;
}


/* ==========================================================
   29. RESPONSIVE — TABLET (≤1024px)
   ========================================================== */
@media (max-width: 1024px) {
  .site-nav .nav-link { display: none; }
  .site-nav .nav-cta  { display: none; }
  .hamburger          { display: flex; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s8); }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  .story-image {
    aspect-ratio: 16/9;
    max-height: 380px;
  }

  .specials-grid { grid-template-columns: repeat(3,1fr); }

  .featured-grid { grid-template-columns: repeat(2,1fr); }
}


/* ==========================================================
   30. RESPONSIVE — MOBILE (≤768px)
   ========================================================== */
@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .site-logo-mark { height: 38px; width: 38px; }

  body { padding-bottom: var(--bar-h); }

  .sticky-bar { display: block; }

  /* Hero ocupa exactamente el viewport visible sin espacio extra */
  .hero { min-height: calc(100vh - var(--bar-h)); }

  /* Reset grids */
  .g-2, .g-3, .g-4          { grid-template-columns: 1fr; }
  .location-cards             { grid-template-columns: 1fr; }
  .specials-grid              { grid-template-columns: repeat(2,1fr); }
  .featured-grid              { grid-template-columns: repeat(2,1fr); }
  .catering-pkg-grid          { grid-template-columns: repeat(2,1fr); }
  .form-grid-2                { grid-template-columns: 1fr; }
  .trust-pills                { grid-template-columns: 1fr; }

  .section     { padding: var(--s12) 0; }
  .section--lg { padding: var(--s20) 0; }

  .footer-grid      { grid-template-columns: 1fr; gap: var(--s8); }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .footer-legal     { justify-content: center; }

  .form-wrap { padding: var(--s6); }

  .header-inner { padding: 0 var(--s5); }

  /* Hero content: sube el padding-top para que el eyebrow no quede bajo el header */
  .hero-content { padding-top: calc(var(--header-h) + var(--s10)); }

  /* Eyebrow más visible en móvil */
  .hero-eyebrow { font-size: .65rem; letter-spacing: .18em; }

  .menu-controls { flex-direction: column; align-items: flex-start; }
  .menu-search input { width: 100%; }
  .menu-search { width: 100%; }

  .gift-visual { padding: var(--s8) var(--s6); }
  .gift-amount { font-size: 3.5rem; }
}


/* ==========================================================
   31. RESPONSIVE — SMALL (≤480px)
   ========================================================== */
@media (max-width: 480px) {
  .specials-grid  { grid-template-columns: 1fr; }
  .featured-grid  { grid-template-columns: 1fr; }
  .catering-pkg-grid { grid-template-columns: 1fr; }

  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }

  .hero-trust { flex-direction: column; align-items: flex-start; }

  .menu-tabs { padding-bottom: var(--s2); }
}

/* No mobile bar on desktop */
@media (min-width: 769px) {
  .sticky-bar { display: none !important; }
  body { padding-bottom: 0; }
}
