/* =====================================================
   PLAZA TROPICAL SUPERMARKET — styles.css v2.0 PREMIUM
   Tipografía: Fraunces (display) + DM Sans (body) + Satisfy (accent)
   Paleta: Verde #1a4a2e · Naranja #e8620a · Crema #faf8f4 · Ámbar #f5a623
   ===================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --green-dark:    #1a4a2e;
  --green-mid:     #2d6a45;
  --green-light:   #4a9e68;
  --green-pale:    #e8f5ee;
  --orange:        #e8620a;
  --orange-deep:   #c04e08;
  --orange-light:  #f57c30;
  --orange-pale:   #fef0e6;
  --amber:         #f5a623;
  --cream:         #faf8f4;
  --cream-mid:     #f5f0e8;
  --cream-dark:    #ede5d8;
  --warm-white:    #fffcf7;
  --text-dark:     #120d05;
  --text-mid:      #3d3228;
  --text-light:    #7a6e62;
  --white:         #ffffff;

  --shadow-sm:  0 2px 12px rgba(26,10,0,.07);
  --shadow-md:  0 8px 32px rgba(26,10,0,.12);
  --shadow-lg:  0 20px 60px rgba(26,10,0,.18);
  --shadow-xl:  0 30px 90px rgba(26,10,0,.25);
  --glow-orange: 0 0 40px rgba(232,98,10,.3);

  --radius-xs:  4px;
  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  28px;
  --radius-xl:  40px;
  --radius-full: 9999px;

  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease-smooth);
  --transition-slow: 0.5s var(--ease-smooth);

  --font-display: 'TikTok Sans', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-script:  'Satisfy', cursive;
  --font-scale:   1;

  /* Grain texture as SVG data URI */
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
  font-size: calc(16px * var(--font-scale));
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ACCESSIBILITY: prefers-reduced-motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .marquee-inner { animation: none !important; }
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ===== FOCUS STYLES (WCAG 2.1 AA) ===== */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ===== A11Y TOOLBAR ===== */
.a11y-toolbar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.6rem 0.5rem;
  background: var(--green-dark);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.a11y-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  transition: all var(--transition);
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a11y-btn:hover, .a11y-btn:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateX(-3px);
}

/* ===== HIGH CONTRAST ===== */
body.high-contrast {
  --green-dark: #000; --green-mid: #000; --orange: #ffff00;
  --orange-light: #ffff00; --orange-pale: #000; --cream: #000;
  --cream-dark: #111; --text-dark: #fff; --text-mid: #fff;
  --text-light: #ddd; --white: #000;
}
body.high-contrast .navbar-custom { background: #000 !important; border-bottom: 2px solid #ffff00; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--white); }

/* ----- Topbar rotating ticker ----- */
.topbar-ticker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  min-width: 0;
  background: var(--orange);
  border-radius: 19px;
  padding: 4px 21px;
  height: 28px;

  
}
.topbar-ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: tickerPulse 2s ease-in-out infinite;
}
@keyframes tickerPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.7); }
}
.topbar-ticker-text {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.topbar-ticker-text.tb-visible { opacity: 1; }
.topbar-ticker-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color var(--transition);
}
.topbar-ticker-link:hover { border-color: currentColor; }

/* ===== NAVBAR ===== */
.navbar-custom {
  background: rgba(255,252,247,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(26,74,46,.08), 0 4px 20px rgba(0,0,0,.06);
  padding: 0.6rem 0;
  transition: box-shadow 0.3s ease, padding 0.3s ease;
}
.navbar-custom.navbar-scrolled {
  box-shadow: 0 2px 0 rgba(26,74,46,.12), 0 8px 32px rgba(0,0,0,.14);
  padding: 0.3rem 0;
}
.navbar-logo {
  border-radius: var(--radius-sm);
  object-fit: contain;
  transition: transform var(--transition);
}
.navbar-brand:hover .navbar-logo { transform: scale(1.05); }

.navbar-custom .nav-link {
  color: var(--text-dark) !important;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { left: 0.9rem; right: 0.9rem; }
.navbar-custom .nav-link:hover { color: var(--orange) !important; }
.navbar-custom .nav-link.active { color: var(--orange) !important; }

.btn-nav-actual {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  padding: 0.5rem 1.4rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(232,98,10,.3);
  transition: all var(--transition) !important;
}
.btn-nav-actual::after { display: none !important; }
.btn-nav-actual:hover, .btn-nav-actual:focus-visible {
  background: var(--green-dark) !important;
  box-shadow: 0 4px 14px rgba(26,74,46,.3) !important;
  transform: translateY(-1px);
}
.navbar-toggler {
  border: 2px solid var(--green-dark);
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.6rem;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231a4a2e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== NAVBAR SOCIAL ICONS ===== */
.nav-social {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(26,74,46,.15);
}
.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.nav-social-link:hover,
.nav-social-link:focus-visible {
  color: var(--orange);
  background: var(--orange-pale);
  transform: translateY(-2px);
}

/* on mobile: show as a row inside the collapsed menu */
@media (max-width: 991.98px) {
  .nav-social {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(26,74,46,.1);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    justify-content: center;
    gap: 0.4rem;
  }
  .nav-social-link {
    width: 40px;
    height: 40px;
    font-size: 1.15rem;
  }
}

/* ===== BUTTON SYSTEM ===== */
.btn-primary-custom {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  padding: 0.85rem 2.2rem;
  box-shadow: 0 4px 20px rgba(232,98,10,.35), inset 0 1px 0 rgba(255,255,255,.2);
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.btn-primary-custom::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  border-radius: inherit;
}
.btn-primary-custom:hover, .btn-primary-custom:focus-visible {
  background: var(--orange-deep);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,98,10,.45);
}
.btn-primary-custom:active { transform: translateY(-1px); }

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.75);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.83rem 2.2rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
}
.btn-outline-custom:hover, .btn-outline-custom:focus-visible {
  background: rgba(255,255,255,.18);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* ===== SECTION SYSTEM ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange-pale);
  color: var(--orange-deep);
  border: 1.5px solid rgba(232,98,10,.25);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1rem;
  width: fit-content;
}
.eyebrow-light {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-text {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
  line-height: 1.8;
}
.text-accent { color: var(--orange); }
.text-accent-light { color: var(--orange-light); }
.text-white-75 { color: rgba(255,255,255,.78); }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn  { from { opacity: 0 } to { opacity: 1 } }
@keyframes slideUp { from { opacity: 0; transform: translateY(36px) } to { opacity: 1; transform: none } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.92) } to { opacity: 1; transform: scale(1) } }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }
@keyframes float   { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
@keyframes pulse   { 0%,100% { transform: scale(1) } 50% { transform: scale(1.035) } }
@keyframes shimmer {
  0%   { background-position: -200% center }
  100% { background-position:  200% center }
}

/* ===== PAGE-LOAD ANIMATION UTILITIES =====
   Apply .anim-fade-up (or .anim-fade) to any element.
   Add .anim-delay-N for staggered timing.
   JS adds body.page-loaded to trigger them.
   ========================================= */
.anim-fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s var(--ease-smooth), transform 0.65s var(--ease-smooth);
}
.anim-fade {
  opacity: 0;
  transition: opacity 0.65s var(--ease-smooth);
}
body.page-loaded .anim-fade-up { opacity: 1; transform: none; }
body.page-loaded .anim-fade    { opacity: 1; }

.anim-delay-1 { transition-delay: 0.10s; }
.anim-delay-2 { transition-delay: 0.22s; }
.anim-delay-3 { transition-delay: 0.34s; }
.anim-delay-4 { transition-delay: 0.46s; }
.anim-delay-5 { transition-delay: 0.58s; }

@media (prefers-reduced-motion: reduce) {
  .anim-fade-up, .anim-fade {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Hero elements: hidden by default, JS assigns delay + triggers .anim-play */
[data-hero-anim] {
  opacity: 0;
  transform: translateY(28px);
}
[data-hero-anim="fade"] {
  transform: none;
}

/* Play state — JS adds this class to each element sequentially */
[data-hero-anim].anim-play {
  animation: slideUp 0.65s var(--ease-smooth) forwards;
}
[data-hero-anim="fade"].anim-play {
  animation: fadeIn 0.55s var(--ease-smooth) forwards;
}

/* Reset state — instantly snap back (no transition) */
[data-hero-anim].anim-reset {
  opacity: 0;
  transform: translateY(28px);
  animation: none !important;
  transition: none !important;
}
[data-hero-anim="fade"].anim-reset {
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-hero-anim].anim-play {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===== HERO SLIDER WRAPPER ===== */
.hero-slider-wrap {
  position: relative;
}
.hero-slider-wrap .hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  z-index: 10;
  line-height: 0;
  pointer-events: none;
}
.hero-slider-wrap .hero-wave svg { width: 100%; display: block; }

/* Swiper overrides */
.hero-swiper { width: 100%; }
.hero-swiper .swiper-slide { height: auto; }




.hero-swiper-prev,
.hero-swiper-next {
  width: 48px !important;
  height: 48px !important;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  transition: background var(--transition), transform var(--transition);
}
.hero-swiper-prev:hover, .hero-swiper-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}
.hero-swiper-prev::after, .hero-swiper-next::after {
  font-size: 1rem !important;
  font-weight: 800;
  color: var(--white);
}
.hero-swiper-pagination {
  bottom: 2rem !important;
  z-index: 6;
}
.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background: rgba(26,74,46,.3);
  opacity: 1;
  transition: all var(--transition);
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ===== HERO BASE (shared by all slides) ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.035;
  z-index: 1;
  pointer-events: none;
}

/* ===== SLIDE 1 — Fondo gris claro, texto oscuro ===== */
.hero-slide-1 {
  background: #f6f6f6;
}
.hero-slide-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 92% 50%, rgba(26,74,46,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 8% 85%, rgba(232,98,10,.05) 0%, transparent 60%);
  z-index: 0;
}
.hero-slide-1 .hero-overlay {
  background: none;
}
.hero-slide-1 .hero-badge {
  background: rgba(26,74,46,.08);
  border: 1px solid rgba(26,74,46,.18);
  color: var(--green-mid);
}
.hero-slide-1 .hero-title {
  color: var(--green-dark);
}
.hero-slide-1 .hero-title-line2 {
  color: var(--orange);
  font-style: italic;
  font-family: var(--font-script);
}
.hero-slide-1 .hero-subtitle {
  color: var(--text-mid);
}
.hero-slide-1 .btn-outline-custom {
  color: var(--green-dark);
  border-color: rgba(26,74,46,.45);
}
.hero-slide-1 .btn-outline-custom:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}
.hero-slide-1 .hero-stats {
  border-top-color: rgba(26,74,46,.12);
}
.hero-slide-1 .hero-stat-num { color: var(--orange); }
.hero-slide-1 .hero-stat-label { color: var(--text-light); }

.hero-slide-1::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/verduras22.png') center/cover no-repeat;

z-index: 0;
    width: 105%;
    left: 684px;
    background-size: contain;
}

.ver{
     background: url(../img/verduras22.png) center / cover no-repeat;
    width: 900px;
    /* height: 500px; */
    position: absolute;
    left: 800px;
    top: 200px;
}

/* ===== SLIDE 2 — Fondo verde oscuro ===== */
.hero-slide-2 {
  background: linear-gradient(150deg, #0f2e1a 0%, var(--green-dark) 50%, #1a4a2e 100%);
}
.hero-slide-2::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1555244162-803834f70033?w=1600&q=50') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 10% 60%, rgba(232,98,10,.1) 0%, transparent 60%),
    linear-gradient(to right, rgba(15,46,26,.6) 0%, transparent 80%);
  z-index: 2;
}
.hero-slide-2 .hero-badge-2 {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.25);
  color: #a8f0be;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}
.hero-slide-2 .hero-title-2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero-slide-2 .hero-title-line2 {
  display: block;
  color: var(--amber);
  font-style: italic;
  font-family: var(--font-script);
}
.hero-slide-2 .hero-subtitle-2 {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

/* Botón outline para slide 2 */
.btn-outline-custom-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-family: var(--font-body);
  padding: 0.83rem 2.2rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-outline-custom-dark:hover, .btn-outline-custom-dark:focus-visible {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-3px);
}

/* Feature pills — slide 2 */
.hero-features { flex-wrap: wrap; }
.hero-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
}
.hero-feature-pill .bi-check-circle-fill { color: var(--amber); }

/* ===== HERO SHARED ELEMENTS ===== */
.hero-overlay { position: absolute; inset: 0; z-index: 2; }
.hero-content  { position: relative; z-index: 4; padding: 5rem 0 6rem; }
.min-vh-hero   { min-height: 82vh; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.75rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero-title-line2 { display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-btns { flex-wrap: wrap; }
.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid rgba(26,74,46,.12);
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.hero-stat { text-align: center; }
.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* ===== ANNOUNCEMENT MARQUEE ===== */
.announcement-strip {
  background: var(--orange);
  overflow: hidden;
  padding: 0;
  position: relative;
  height: 44px;
  display: flex;
  align-items: center;
}
.announcement-strip::before,
.announcement-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.announcement-strip::before { left: 0; background: linear-gradient(to right, var(--orange), transparent); }
.announcement-strip::after  { right: 0; background: linear-gradient(to left, var(--orange), transparent); }

.marquee-track { display: flex; width: 100%; overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  will-change: transform;
}
.marquee-item {
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 0 1.5rem;
}
.marquee-item i { margin-right: 0.4rem; }
.marquee-sep {
  color: rgba(255,255,255,.5);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ===== ABOUT / NOSOTROS ===== */
.section-about {
  padding: 7rem 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.section-about::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,98,10,.05) 0%, transparent 60%);
  pointer-events: none;
}

.about-img-collage {
  position: relative;
  height: 500px;
}
.about-img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-main {
 
  top: 0; left: 0;
  z-index: 1;
  border: 5px solid var(--white);
}
.about-img-secondary {
  width: 210px; height: 260px;
  bottom: 0; right: 10px;
  z-index: 2;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-xl);
}
.about-badge-exp {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  text-align: center;
  z-index: 3;
  box-shadow: var(--shadow-md), var(--glow-orange);
  min-width: 95px;
}
.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.exp-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  opacity: .9;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.script-accent {
  font-family: var(--font-script);
  color: var(--orange);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.25rem;
  opacity: 0.85;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 1.1rem;
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,98,10,.2);
}
.value-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: linear-gradient(135deg, var(--orange-pale), #fde4cc);
  color: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.value-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
}
.value-text { font-size: 0.82rem; color: var(--text-light); margin: 0; line-height: 1.5; }

/* ===== STATS BANNER ===== */
.stats-banner {
  background: var(--green-dark);
  padding: 30px 20px 45px 20px;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.04;
  pointer-events: none;
}
.stat-card {
  padding: 1rem 0.5rem;
  position: relative;
}
.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.12);
}
.stat-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.025em;
}
.stat-desc {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ===== BENTO GRID — DEPARTMENTS ===== */
.section-depts {
  padding: 7rem 0;
  background: var(--cream-mid);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

/* Hero card: col 1-7, row 1-2 */
.bento-hero {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 480px;
}
/* Frutas: col 8-12, row 1 */
.bento-grid article:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
/* Carnes tall: col 1-4, row 3-4 */
.bento-tall { grid-column: 1 / 5; grid-row: 3 / 5; min-height: 300px; }
/* Abarrotes: col 8-10, row 2 */
.bento-grid article:nth-child(4) { grid-column: 8 / 11; grid-row: 2; }
/* Lácteos: col 11-13, row 2 */
.bento-grid article:nth-child(5) { grid-column: 11 / 13; grid-row: 2; }
/* Hot Food: col 5-9, rows 3-4 */
.bento-wide { grid-column: 5 / 9; grid-row: 3 / 5; }
/* Fila 4 para el resto */
.bento-grid article:nth-child(5) { grid-row: 2; }
/* Services: col 9-13, rows 3-4 */
.bento-services { grid-column: 9 / 13; grid-row: 3 / 5; }

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: default;
  min-height: 220px;
  background: var(--green-dark);
}
.bento-card:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.bento-img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.7s var(--ease-smooth), filter 0.5s var(--ease-smooth);
}
.bento-card:hover .bento-img,
.bento-card:focus-visible .bento-img {
  transform: scale(1.07);
  filter: brightness(0.85);
}

.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,25,10,.82) 0%, rgba(15,25,10,.3) 40%, transparent 70%);
  z-index: 1;
  transition: opacity var(--transition);
}
.bento-card:hover .bento-overlay { opacity: 1.2; }

.bento-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  z-index: 2;
  transform: translateY(4px);
  transition: transform var(--transition);
}
.bento-card:hover .bento-content { transform: translateY(0); }

.bento-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}
.bento-icon { font-size: 1.6rem; display: block; margin-bottom: 0.4rem; }
.bento-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.25rem;
  letter-spacing: -0.025em;
}
.bento-hero .bento-title { font-size: 2rem; }
.bento-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition), max-height var(--transition);
}
.bento-card:hover .bento-sub,
.bento-card:focus-visible .bento-sub {
  opacity: 1;
  transform: none;
  max-height: 6em;
}

/* ===== MENU ===== */
.section-menu {
  padding: 7rem 0;
  background: var(--warm-white);
  position: relative;
}
.section-menu::after {
  content: '';
  position: absolute;
  left: -100px; bottom: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,158,104,.06) 0%, transparent 70%);
  pointer-events: none;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0.4rem;
  background: var(--cream-mid);
  border-radius: var(--radius-xl);
  border: 1px solid var(--cream-dark);
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.menu-tab {
  background: transparent;
  border: none;
  color: var(--text-light);
  padding: 0.6rem 1.3rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  flex: 1;
  min-width: fit-content;
}
.menu-tab:hover { color: var(--orange); }
.menu-tab.active {
  background: var(--white);
  color: var(--green-dark);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.menu-grid { display: none; }
.menu-grid.active { display: block; animation: fadeIn 0.4s ease; }

.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  position: relative;
}
.menu-card:hover, .menu-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,98,10,.2);
}
.menu-img-wrap {
  height: 180px;
  overflow: hidden;
  position: relative;
}
.menu-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.menu-card:hover .menu-img { transform: scale(1.1); }
.menu-card-body { padding: 1.1rem 1.1rem 1.3rem; text-align: center; }
.menu-dish {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.35rem;
  letter-spacing: -0.025em;
}
.menu-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.9rem; line-height: 1.5; }
.menu-price {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-pale), #fde8d0);
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(232,98,10,.2);
}
.menu-note {
  color: var(--text-light);
  font-size: 0.88rem;
  background: var(--cream-mid);
  border: 1px solid var(--cream-dark);
  display: inline-block;
  padding: 0.65rem 1.75rem;
  border-radius: var(--radius-full);
}

/* ===== EXPERIENCE PLAZA TROPICAL — sticky scroll ===== */

/* outer section is tall to provide scroll distance */
.section-experience {
  position: relative;
  height: 280vh;
  background: var(--cream);
}

/* sticky panel — pins while parent scrolls */
.exp-sticky {
  position: sticky;
  top: 0;
  height: 800px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

/* grain + warm radial on sticky panel */
.exp-sticky::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    var(--grain),
    radial-gradient(ellipse 70% 70% at 30% 50%, rgba(232,98,10,.04) 0%, transparent 70%);
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

/* ---- left: content column ---- */
.exp-content-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem clamp(1.5rem, 3vw, 4rem) 5rem clamp(2rem, 7vw, 7rem);
}

.exp-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(232,98,10,.1);
  border: 1px solid rgba(232,98,10,.25);
  border-radius: var(--radius-full);
  padding: 0.32rem 1rem;
  margin-bottom: 1.75rem;
  width: fit-content;
}

.exp-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
}

.exp-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2.25rem;
  max-width: 38ch;
}

.exp-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.exp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid rgba(26,74,46,.3);
  color: var(--green-dark);
  background: transparent;
  transition: all var(--transition);
}
.exp-btn-ghost:hover, .exp-btn-ghost:focus-visible {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- right: images column ---- */
.exp-images-col {
  position: relative;
  overflow: hidden;
}

/* the track JS will translate upward on scroll */
.exp-img-track {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 2rem 2rem 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  will-change: transform;
  /* starts slightly low, JS drives it upward */
  transform: translateY(6%);
}

.exp-img-item {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,74,46,.12), 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow 0.5s ease;
}
.exp-img-item:hover {
  box-shadow: 0 20px 60px rgba(26,74,46,.2), 0 4px 16px rgba(0,0,0,.12);
}

.exp-img-wide { grid-column: 1 / -1; height: 240px; }
.exp-img-half { height: 170px; }


.exp-img-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(.22,1,.36,1);
}
.exp-img-item:hover img { transform: scale(1.05); }

/* ---- responsive ---- */
@media (max-width: 991.98px) {
  .section-experience { height: auto; }
  .exp-sticky {
    position: relative;
    height: auto;
    grid-template-columns: 1fr;
    padding: 5rem 0 4rem;
  }
  .exp-images-col { display: none; } /* hide on tablet/mobile */
  .exp-content-col {
    padding: 0 2rem;
    text-align: center;
    align-items: center;
  }
  .exp-subtitle { max-width: 100%; }
}

/* ===== TESTIMONIALS ===== */
.section-testimonials {
  padding: 7rem 0;
  background: var(--cream-mid);
  position: relative;
  overflow: hidden;
}
.section-testimonials::before {
  content: '"';
  position: absolute;
  top: 3rem; left: 3%;
  font-family: var(--font-display);
  font-size: 20rem;
  color: var(--green-dark);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  font-weight: 900;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange-pale);
  line-height: 1;
  font-weight: 900;
  transition: color var(--transition);
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232,98,10,.2);
}
.testimonial-card:hover::before { color: rgba(232,98,10,.15); }
.testimonial-stars { color: var(--amber); font-size: 0.88rem; margin-bottom: 1.1rem; gap: 2px; display: flex; }
.testimonial-text {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-dark);
  margin-top: auto;
}
.author-avatar {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--cream-dark);
  transition: border-color var(--transition);
}
.testimonial-card:hover .author-avatar { border-color: var(--orange-pale); }
.avatar-img { width: 100%; height: 100%; object-fit: cover; }
.author-name {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--green-dark);
  font-style: normal;
}
.author-location {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== HOT FOOD & CATERING FEATURES ===== */
.section-cf {
  padding: 7rem 0;
  background: var(--green-dark);
  position: relative;
  overflow: hidden;
}

/* Ambient glow — top-right warm flare */
.section-cf::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 95% 5%,  rgba(232,98,10,.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 5%  95%, rgba(245,166,35,.07) 0%, transparent 65%);
  pointer-events: none;
}



.cf-grain {
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

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

/* Left column */
.cf-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 1.25rem 0 1.5rem;
}
.cf-heading em {
  font-style: italic;
  color: var(--orange);
  font-family: var(--font-script);
  font-size: 0.92em;
}

.cf-lead {
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 1.75rem;
  max-width: 400px;
}

/* ── CF feature image ── */
.cf-img-frame {
  position: relative;
  margin-bottom: 2rem;
  isolation: isolate;
}
.cf-img-frame::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, var(--orange) 0%, var(--amber) 45%, transparent 65%);
  opacity: 0.55;
  transform: rotate(-2deg);
  transition: transform 0.5s var(--ease-smooth), opacity 0.4s ease;
  z-index: -1;
}
.cf-img-frame:hover::before {
  transform: rotate(0deg);
  opacity: 0.75;
}
.cf-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
  transform: rotate(-1.5deg) scale(0.99);
  transition: transform 0.5s var(--ease-smooth);
  display: block;
}
.cf-img-frame:hover .cf-img {
  transform: rotate(0deg) scale(1);
}
.cf-img-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 1.2rem;
  background: var(--orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(232,98,10,.5);
  transform: rotate(1deg);
  pointer-events: none;
}

/* Feature cards */
.cf-card {
  background: var(--cream-mid);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.6rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

/* Subtle corner blush */
.cf-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 90px; height: 90px;
  background: radial-gradient(circle at 100% 100%, rgba(232,98,10,.07) 0%, transparent 65%);
  pointer-events: none;
}

.cf-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(232,98,10,.1);
}

.cf-card-icon {
  width: 50px; height: 50px;
  background: rgba(232,98,10,.12);
  border: 1px solid rgba(232,98,10,.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.35rem;
  margin-bottom: 1.1rem;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.cf-card:hover .cf-card-icon {
  background: rgba(232,98,10,.2);
  border-color: rgba(232,98,10,.42);
  transform: scale(1.08);
}

.cf-card-title {
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--green-dark);
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.cf-card-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.75;
  margin: 0;
}

/* ===== CONTACT ===== */
.section-contact {
  padding: 7rem 0;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}

/* Section header */
.ct-header {
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

/* Info card */
.contact-info-card {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  color: var(--white);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: 0.045;
  pointer-events: none;
}
.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  pointer-events: none;
}

/* Visit Us editorial intro */
.ct-visit-intro {
  margin-bottom: 1.75rem;

  position: relative;
  z-index: 1;
}
.ct-visit-script {
  font-family: var(--font-script);
  font-size: 1.05rem;
  color: var(--amber);
  display: block;
  margin-bottom: 0.15rem;
  opacity: 0.9;
}
.ct-visit-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.65rem;
}
.ct-visit-body {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(250,248,244,.6);
  line-height: 1.72;
  margin: 0;
}

/* Contact info list */
.ct-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.ct-info-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.ct-info-item--last { border-bottom: none; }
.ct-info-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--amber);
  min-width: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.ct-info-label i { font-size: 0.65rem; opacity: 0.85; }
.ct-hours { display: flex; flex-direction: column; gap: 0.2rem; }
.ct-hour-row { display: flex; justify-content: space-between; gap: 1.5rem; }
.ct-hour-row span:last-child { color: var(--amber); font-weight: 600; }
.ct-info-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255,255,255,.82);
  font-style: normal;
  margin: 0;
  line-height: 1.45;
}
.contact-link {
  color: var(--amber);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--white); }

/* Social */
.contact-social {
  position: relative;
  z-index: 1;
}
.contact-social-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 0.65rem;
}
.social-links { display: flex; gap: 0.45rem; }
.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.social-link:hover, .social-link:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(232,98,10,.45);
}

/* Keep legacy icon class functional */
.contact-icon {
  width: 38px; height: 38px; min-width: 38px;
  background: rgba(255,255,255,.1);
  color: var(--amber);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,.1);
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 220px;
  border: 1.5px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  z-index: 1;
}
.map-chip {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  z-index: 2;
  background: var(--green-dark);
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  border: 1px solid rgba(245,166,35,.25);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

/* Form card — bright panel against dark section */
.contact-form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  box-shadow: 0 32px 80px rgba(0,0,0,.32), 0 4px 16px rgba(0,0,0,.14);
  border: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .contact-form-card { transform: translateY(-12px); }
}

.ct-form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--cream-dark);
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 0.2rem;
  letter-spacing: -0.025em;
}
.ct-form-sub {
  font-family: var(--font-body);
  font-size: 0.83rem;
  color: var(--text-light);
  margin: 0;
}

.form-label {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}
.required { color: var(--orange); }
.custom-input {
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--cream);
  font-family: var(--font-body);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  width: 100%;
}
.custom-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,98,10,.12);
  outline: none;
  background: var(--white);
}
.custom-input.is-invalid { border-color: #dc3545; }
.form-error {
  font-size: 0.75rem;
  color: #d63031;
  margin-top: 0.3rem;
  font-weight: 600;
  min-height: 1em;
}
.form-success {
  background: var(--green-pale);
  color: var(--green-mid);
  border: 1.5px solid rgba(74,158,104,.4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 991px) {
  .section-contact { padding: 5rem 0; }
  .contact-form-card { transform: none; padding: 2.25rem; }
}
@media (max-width: 767px) {
  .section-contact { padding: 4.5rem 0; }
  .contact-form-card { padding: 1.75rem; }
  .ct-header { margin-bottom: 2.5rem; }
}

/* ===== FOOTER ===== */
.site-footer { background: #0c2618; }

.footer-top {
  padding: 5rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.footer-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grain);
  opacity: 0.04;
  pointer-events: none;
}
.footer-logo {
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  object-fit: contain;
}
.footer-brand-desc {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.5rem; }
.footer-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-link:hover, .footer-social-link:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(232,98,10,.35);
}
.footer-heading {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.3rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-link {
  color: rgba(255,255,255,.58);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-link:hover, .footer-link:focus-visible {
  color: var(--amber);
  padding-left: 4px;
}

.footer-contact {
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  line-height: 2;
  font-style: normal;
}
.footer-contact a.footer-link { display: inline; padding: 0; }
.footer-contact a.footer-link:hover { padding-left: 0; }

.footer-hours li {
  display: flex;
 
  gap: 0.5rem;
}
.footer-day { color: rgba(255,255,255,.58); }
.footer-time { color: var(--amber); font-weight: 600; white-space: nowrap; }

.footer-newsletter-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 0.6rem;
}
.newsletter-input-wrap {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
}
.newsletter-input {
  flex: 1;
  border: none;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-family: var(--font-body);
  background: transparent;
  color: var(--white);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { background: rgba(255,255,255,.05); }
.newsletter-btn {
  background: var(--orange);
  border: none;
  color: var(--white);
  padding: 0 1.1rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition);
}
.newsletter-btn:hover { background: var(--orange-deep); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-copy { color: rgba(255,255,255,.38); font-size: 0.82rem; margin: 0; }
.footer-legal-link {
  color: rgba(255,255,255,.38);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-legal-link:hover { color: var(--amber); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 6.5rem;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md), var(--glow-orange);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
}
.back-to-top.visible { opacity: 1; }
.back-to-top:hover, .back-to-top:focus-visible {
  background: var(--green-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .bento-hero { grid-column: 1 / 7; }
  .bento-grid article:nth-child(2) { grid-column: 7 / 13; }
}

@media (max-width: 991px) {
  .exp-btn-ghost{
        width: 100%;
    text-align: center;
    justify-content: center;
  }

  .centraritem{
        text-align: center;
  }
  .footer-social{
        display: flex;
    gap: 0.5rem;
    justify-content: center;

  }
  .footer-logo{
        margin: 0 auto;
  }
  .footer-brand-desc{
    max-width: fit-content;
    text-align: center;
    padding-top: 20px;
  }
  .btn-primary-custom{
    font-size: 12px;
  }
  .btn-outline-custom{
    font-size: 12px;
  }
  .hero-section { min-height: 88vh; }
  .min-vh-hero { min-height: auto; }
  .hero-content { padding: 5.5rem 0 4rem; }
  .hero-slide-1::before { left: 0px; background-size: cover; }
  .hero-slide-1 .hero-overlay {
    background:
      linear-gradient(
        165deg,
        rgba(250,248,244,0.97) 0%,
        rgba(250,248,244,0.90) 28%,
        rgba(250,248,244,0.70) 52%,
        rgba(250,248,244,0.35) 72%,
        rgba(250,248,244,0.08) 88%,
        transparent 100%
      ),
      radial-gradient(
        ellipse 110% 65% at 50% 5%,
        rgba(250,248,244,0.88) 0%,
        transparent 68%
      );
  }
  .hero-title { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .about-img-collage { height: 340px; }
  .about-img-main {  height: 300px; }
  .about-img-secondary { width: 170px; height: 200px; right: 0; }
  .about-badge-exp { right: -5px; }
  .values-grid { grid-template-columns: 1fr; }

  /* Bento simplified on tablet */
  .bento-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .bento-hero, .bento-tall, .bento-wide, .bento-services { grid-column: 1 / -1; grid-row: auto; }
  .bento-grid article:nth-child(2),
  .bento-grid article:nth-child(4),
  .bento-grid article:nth-child(5) { grid-column: auto; grid-row: auto; }

  .a11y-toolbar { top: auto; bottom: 6.5rem; transform: none; }
}

@media (max-width: 767px) {
  .topbar{font-size: 0.6rem;}
  .section-about, .section-depts, .section-menu,
  .section-catering, .section-testimonials, .section-cf { padding: 4.5rem 0; }

  .cf-lead { max-width: 100%; }

  .about-img-collage { height: auto; margin-bottom: 3rem; }
  .about-img { position: static !important; width: 100% !important; height: 260px !important; }
  .about-img-secondary, .about-badge-exp { display: none; }

  .hero-stats { flex-direction: row; gap: 1.5rem; }
  .hero-float-card { display: none; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-card { min-height: 200px; }

  .menu-tabs { max-width: 100%; }
  .menu-tab { font-size: 0.8rem; padding: 0.55rem 0.8rem; }

  .contact-form-card { padding: 1.75rem; }
  .back-to-top { right: 1.25rem; bottom: 1.5rem; }
  .a11y-toolbar { right: 0; bottom: 5rem; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.1rem; }
  .hero-btns { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-banner .stat-num { font-size: 2.2rem; }
  .stat-card:not(:last-child)::after { display: none; }
  .hero-stats { flex-direction: column; gap: 1rem; }
}

@media print {
  .a11y-toolbar, .back-to-top, .navbar-custom, .topbar,
  .hero-wave, .announcement-strip { display: none !important; }
  body { background: white; color: black; }
}

/* ===== ORDER MODAL ===== */
/* ── DISH PHOTO MODAL ─────────────────────────────────────── */

.dish-photo-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--text-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5), 0 4px 20px rgba(0,0,0,.2);
  animation: modalSlideUp 0.3s cubic-bezier(.22,1,.36,1);
}

.dish-photo-modal-panel .order-modal-close {
  background: rgba(0,0,0,.45);
  color: var(--white);
  z-index: 2;
}
.dish-photo-modal-panel .order-modal-close:hover {
  background: var(--orange);
  color: var(--white);
}

.dish-photo-modal-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--text-dark);
}

.dish-photo-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-smooth);
}

.dish-photo-modal-panel:hover .dish-photo-modal-img {
  transform: scale(1.04);
}

.dish-photo-modal-footer {
  padding: 1rem 1.5rem 1.25rem;
}

.dish-photo-modal-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.01em;
  margin: 0;
  text-align: center;
}

/* ── ORDER MODAL ──────────────────────────────────────────── */

.order-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.order-modal[hidden] { display: none; }

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,22,14,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
  animation: modalFadeIn 0.25s ease;
}

.order-modal-panel {
  position: relative;
  z-index: 1;
  background: var(--warm-white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem 2.25rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.28), 0 4px 20px rgba(0,0,0,.12);
  animation: modalSlideUp 0.3s cubic-bezier(.22,1,.36,1);
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0)    scale(1); }
}

.order-modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--cream-mid);
  border: none;
  border-radius: var(--radius-full);
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--text-mid);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.order-modal-close:hover, .order-modal-close:focus-visible {
  background: var(--green-dark);
  color: var(--white);
  transform: rotate(90deg);
}

.order-modal-logo {
  margin: 0 auto 1.25rem;
  width: 64px; height: 64px;
}
.order-modal-logo img {
  border-radius: var(--radius-md);
  object-fit: contain;
}

.order-modal-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.order-modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.order-modal-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.order-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s cubic-bezier(.22,1,.36,1);
  border: 2px solid transparent;
}

.order-option-icon {
  flex-shrink: 0;
  display: flex;
}
.order-option-icon svg { border-radius: 8px; }

.order-option-label { flex: 1; text-align: left; }

.order-option-arrow {
  font-size: 0.95rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}
.order-option:hover .order-option-arrow,
.order-option:focus-visible .order-option-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* UberEats */
.order-option-ubereats {
  background: #f8faf8;
  color: #000;
  border-color: #e0ede4;
}
.order-option-ubereats:hover, .order-option-ubereats:focus-visible {
  background: #06C167;
  color: #fff;
  border-color: #06C167;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6,193,103,.3);
}

/* DoorDash */
.order-option-doordash {
  background: #fff5f4;
  color: #000;
  border-color: #fde0db;
}
.order-option-doordash:hover, .order-option-doordash:focus-visible {
  background: #FF3008;
  color: #fff;
  border-color: #FF3008;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,48,8,.3);
}

/* Grubhub */
.order-option-grubhub {
  background: #fff5f5;
  color: #000;
  border-color: #fde0e0;
}
.order-option-grubhub:hover, .order-option-grubhub:focus-visible {
  background: #F63440;
  color: #fff;
  border-color: #F63440;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(246,52,64,.3);
}

/* Instacart */
.order-option-instacart {
  background: #f4fbf2;
  color: #000;
  border-color: #d4edce;
}
.order-option-instacart:hover, .order-option-instacart:focus-visible {
  background: #43B02A;
  color: #fff;
  border-color: #43B02A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,176,42,.3);
}

@media (prefers-reduced-motion: reduce) {
  .order-modal-backdrop,
  .order-modal-panel { animation: none !important; }
}


.bancore{
  display: flex;
 
    justify-content: space-between;
    align-items: flex-end;
  
}

.botones{
  display: flex;
}
