/* El Suricano — fiesta brand system */
:root {
  --magenta: #8b2a62;
  --magenta-deep: #4a1536;
  --magenta-mid: #a33874;
  --magenta-soft: #c45a96;
  --green: #1f7a3a;
  --green-deep: #0f4d28;
  --green-bright: #2f9e4a;
  --gold: #f0b429;
  --gold-soft: #ffd56a;
  --red: #d62828;
  --red-deep: #9b1c1c;
  --orange: #f77f00;
  --turquoise: #2a9d8f;
  --cream: #fff6e8;
  --cream-deep: #f3e0c4;
  --ink: #1a0f16;
  --ink-soft: #3d2a35;
  --white: #ffffff;
  --glass: rgba(255, 255, 255, 0.1);
  --radius: 18px;
  --header-h: 78px;
  --font-display: "Bebas Neue", sans-serif;
  --font-dish: "Lilita One", "Bebas Neue", sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-float: 0 20px 50px rgba(26, 15, 22, 0.35);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--magenta-deep);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 300;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 700;
  border-radius: 999px;
  transition: top 0.25s;
}

.skip-link:focus {
  top: 1rem;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Acento mexicano mínimo: una sola franja de marca */
.accent-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  height: calc(6px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  box-sizing: border-box;
}

.accent-top span:nth-child(1) { background: #006847; }
.accent-top span:nth-child(2) { background: #ffffff; }
.accent-top span:nth-child(3) { background: #ce1126; }

.accent-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: accentShine 3.5s ease-in-out infinite;
}

@keyframes accentShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.accent-line {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #006847 0%, #ffffff 50%, #ce1126 100%);
}

.title-ink { color: var(--ink); }
.lead-ink { color: rgba(26, 15, 22, 0.68) !important; }
.eyebrow-red { color: var(--red) !important; }

/* Header */
.site-header {
  position: fixed;
  top: calc(6px + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 clamp(1rem, 3.5vw, 2.5rem);
  background: rgba(26, 15, 22, 0.55);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(240, 180, 41, 0.28);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.site-header.is-scrolled {
  background: rgba(26, 15, 22, 0.92);
  border-bottom-color: rgba(240, 180, 41, 0.45);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 101;
  transition: transform 0.35s var(--ease-spring);
  position: relative;
}

.header-brand:hover {
  transform: scale(1.03);
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--cream);
}

.header-brand-text small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

.header-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 0 3px rgba(0, 104, 71, 0.45),
    0 0 0 5px rgba(206, 17, 38, 0.35),
    0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.35s;
}

.header-brand:hover img {
  transform: rotate(-8deg) scale(1.06);
  box-shadow:
    0 0 0 3px rgba(0, 104, 71, 0.65),
    0 0 0 5px rgba(206, 17, 38, 0.5),
    0 8px 20px rgba(240, 180, 41, 0.35);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  position: fixed;
  top: calc(6px + env(safe-area-inset-top, 0px));
  right: clamp(1rem, 3.5vw, 2.5rem);
  height: var(--header-h);
  z-index: 99;
}

.site-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: rgba(247, 239, 230, 0.88);
  transition: color 0.25s, background 0.25s, transform 0.3s var(--ease-spring);
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #006847, #ffffff, #ce1126);
  transform: translateX(-50%);
  transition: width 0.35s var(--ease-out);
}

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta):focus-visible {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after {
  width: 55%;
}

.site-nav a:nth-child(1):hover { color: #7dcea0; }
.site-nav a:nth-child(2):hover { color: var(--gold-soft); }
.site-nav a:nth-child(3):hover { color: #ff8a8a; }
.site-nav a:nth-child(4):hover { color: #7dcea0; }
.site-nav a:nth-child(5):hover { color: var(--gold-soft); }
.site-nav a:nth-child(6):hover { color: #ff8a8a; }
.site-nav a:nth-child(7):hover { color: #7dcea0; }

.nav-cta {
  margin-left: 0.5rem;
  padding: 0.55rem 1.15rem !important;
  background: linear-gradient(135deg, var(--gold) 0%, #f0a020 100%);
  color: var(--ink) !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 18px rgba(240, 180, 41, 0.4);
  animation: navCtaPulse 2.4s ease-in-out infinite;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--gold-soft) !important;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 24px rgba(240, 180, 41, 0.55);
  animation: none;
}

@keyframes navCtaPulse {
  0%, 100% { box-shadow: 0 6px 18px rgba(240, 180, 41, 0.4); }
  50% { box-shadow: 0 6px 22px rgba(240, 180, 41, 0.65), 0 0 0 4px rgba(240, 180, 41, 0.15); }
}

.nav-toggle {
  display: none;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  z-index: 140;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1.5px solid rgba(240, 180, 41, 0.45);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease-out), opacity 0.25s;
  transform-origin: center;
  flex-shrink: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease-spring), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(240, 180, 41, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(240, 180, 41, 0.4);
  background: var(--gold-soft);
}

.btn-secondary {
  background: var(--cream);
  color: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.btn-secondary:hover {
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.btn-ghost {
  border: 1.5px solid rgba(247, 239, 230, 0.4);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-ghost-ink {
  border-color: rgba(26, 15, 22, 0.25);
  color: var(--ink);
  background: transparent;
}

.btn-ghost-ink:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.85rem;
}

/* Sections */
.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 36rem;
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(247, 239, 230, 0.78);
  margin-bottom: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.12s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 100dvh;
  max-height: 100dvh;
  display: grid;
  place-items: center;
  padding:
    calc(var(--header-h) + clamp(0.35rem, 1.2vh, 1rem))
    1.15rem
    clamp(0.75rem, 2.5vh, 1.75rem);
  overflow: hidden;
  background: var(--magenta-deep);
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  filter: saturate(1.2) contrast(1.05) brightness(1.05) blur(6px);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.08) translateY(0); }
  to { transform: scale(1.14) translateY(-2%); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 60% at 50% 42%, transparent 0%, rgba(26, 15, 22, 0.25) 55%, rgba(26, 15, 22, 0.78) 100%),
    linear-gradient(180deg, rgba(26, 15, 22, 0.35) 0%, transparent 28%, transparent 55%, rgba(26, 15, 22, 0.85) 100%);
}

.hero-flag {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  pointer-events: none;
}

.hero-flag span {
  display: block;
  height: 100%;
}

.hero-flag span:nth-child(1) {
  background: rgba(0, 104, 71, 0.32);
}

.hero-flag span:nth-child(2) {
  background: rgba(255, 255, 255, 0.14);
}

.hero-flag span:nth-child(3) {
  background: rgba(206, 17, 38, 0.28);
}

.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.15), transparent 55%),
    radial-gradient(circle at 50% 30%, rgba(240, 180, 41, 0.08), transparent 40%);
  animation: glowPulse 8s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from { opacity: 0.75; }
  to { opacity: 1; }
}

.guirnaldas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: calc(var(--header-h) - 2px);
}

.guirnalda--sides {
  width: min(1280px, 100%);
  height: auto;
  max-height: min(16vh, 140px);
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.35));
}

.guirnalda-side--left {
  animation: guirnaldaSwayL 8s ease-in-out infinite;
  transform-origin: 0% 0%;
}

.guirnalda-side--right {
  animation: guirnaldaSwayR 8s ease-in-out infinite;
  transform-origin: 100% 0%;
}

.guirnalda-cord {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.papel {
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.28));
}

@keyframes guirnaldaSwayL {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

@keyframes guirnaldaSwayR {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(720px, 100%);
  margin-inline: auto;
  max-height: 100%;
}

.hero-logo-wrap {
  display: grid;
  place-items: center;
  width: min(300px, 52vw, 34vh);
  aspect-ratio: 1;
  margin-bottom: clamp(0.35rem, 1.4vh, 1rem);
  animation: logoIn 1.1s var(--ease-out) both;
  position: relative;
  z-index: 6;
  flex-shrink: 1;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  border: 3px solid rgba(240, 180, 41, 0.55);
  box-shadow:
    0 0 0 6px rgba(26, 15, 22, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.45);
  animation: logoFloat 6s ease-in-out 1.1s infinite;
}

.hero-chip {
  display: inline-flex;
  padding: 0.3rem 0.85rem;
  margin-bottom: clamp(0.25rem, 1vh, 0.7rem);
  border-radius: 999px;
  font-size: clamp(0.68rem, 1.5vh, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(26, 15, 22, 0.45);
  border: 1px solid rgba(240, 180, 41, 0.5);
  color: var(--gold-soft);
  animation: fadeUp 0.9s var(--ease-out) 0.15s both;
  backdrop-filter: blur(8px);
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.82) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.2vh + 2.2vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: clamp(0.3rem, 1vh, 0.75rem);
  animation: fadeUp 0.9s var(--ease-out) 0.25s both;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  max-width: 18ch;
}

.hero-lead {
  font-size: clamp(0.95rem, 1.5vh + 0.4vw, 1.35rem);
  font-weight: 500;
  color: rgba(247, 239, 230, 0.95);
  max-width: 28rem;
  margin-bottom: clamp(0.65rem, 2vh, 1.5rem);
  line-height: 1.35;
  animation: fadeUp 0.9s var(--ease-out) 0.4s both;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1.2vh, 0.9rem);
  justify-content: center;
  animation: fadeUp 0.9s var(--ease-out) 0.55s both;
  width: 100%;
}

.btn-hero {
  min-width: min(200px, 42vw);
  padding: clamp(0.7rem, 1.6vh, 1.05rem) clamp(1.1rem, 2.5vw, 1.85rem);
  font-size: clamp(0.82rem, 1.5vh + 0.2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-width: 2px;
}

.btn-hero.btn-primary {
  box-shadow:
    0 12px 32px rgba(240, 180, 41, 0.45),
    0 0 0 4px rgba(240, 180, 41, 0.18);
  animation: ctaGlow 2.4s ease-in-out infinite;
}

.btn-hero.btn-secondary {
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.35),
    0 0 0 3px rgba(255, 255, 255, 0.12);
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.03);
}

@keyframes ctaGlow {
  0%, 100% {
    box-shadow:
      0 12px 32px rgba(240, 180, 41, 0.45),
      0 0 0 4px rgba(240, 180, 41, 0.18);
  }
  50% {
    box-shadow:
      0 16px 40px rgba(240, 180, 41, 0.65),
      0 0 0 8px rgba(240, 180, 41, 0.1);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.scroll-hint {
  position: absolute;
  bottom: clamp(0.4rem, 1.5vh, 1rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(247, 239, 230, 0.35);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
  opacity: 0.7;
  transition: opacity 0.3s;
  animation: fadeUp 1s var(--ease-out) 1s both;
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint span {
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

/* Experience */
.experience {
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 180, 41, 0.14), transparent 35%),
    linear-gradient(180deg, var(--cream) 0%, #f5e6d0 100%);
  position: relative;
  color: var(--ink);
}

.experience .eyebrow {
  color: var(--red);
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

.exp-item {
  padding: 1.5rem 0 0;
  border-top: 2px solid var(--gold);
  transition: transform 0.4s var(--ease-out);
}

.exp-item:hover {
  transform: translateY(-4px);
}

.exp-item:nth-child(2) { border-top-color: var(--red); }
.exp-item:nth-child(3) { border-top-color: var(--green); }

.exp-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--magenta-mid);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.exp-item:nth-child(2) .exp-num { color: var(--red); }
.exp-item:nth-child(3) .exp-num { color: var(--green); }

.exp-item h3 {
  font-family: var(--font-dish);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.exp-item p {
  font-weight: 400;
  color: rgba(26, 15, 22, 0.62);
  font-size: 0.98rem;
}

/* Menu */
.menu-section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(163, 56, 116, 0.35), transparent 45%),
    radial-gradient(ellipse at 85% 80%, rgba(31, 122, 58, 0.18), transparent 40%),
    linear-gradient(180deg, #2a1220 0%, var(--magenta-deep) 100%);
  overflow: hidden;
}

/* Spotlight — hits de la casa */
.spotlight {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.spot-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(240, 180, 41, 0.35);
  background: #1a0f16;
  cursor: default;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, border-color 0.35s;
}

.spot-card:first-child {
  min-height: 420px;
  border-color: rgba(240, 180, 41, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3);
}

.spot-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.4);
}

.spot-visual {
  position: relative;
  flex: 1;
  min-height: 200px;
  overflow: hidden;
}

.spot-visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.spot-card:first-child .spot-visual img {
  min-height: 280px;
}

.spot-card:hover .spot-visual img {
  transform: scale(1.08);
}

.spot-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(26, 15, 22, 0.75) 100%);
  pointer-events: none;
}

.spot-steam {
  position: absolute;
  top: 14%;
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.spot-steam i {
  display: block;
  width: 3px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  animation: steamUp 2s ease-in-out infinite;
  opacity: 0;
}

.spot-steam i:nth-child(2) { animation-delay: 0.35s; height: 36px; }
.spot-steam i:nth-child(3) { animation-delay: 0.7s; }

@keyframes steamUp {
  0% { transform: translateY(12px) scaleY(0.4); opacity: 0; }
  40% { opacity: 0.7; }
  100% { transform: translateY(-28px) scaleY(1); opacity: 0; }
}

.spot-body {
  position: relative;
  z-index: 1;
  padding: 1.25rem 1.35rem 1.35rem;
  background: linear-gradient(180deg, rgba(26, 15, 22, 0.2) 0%, rgba(26, 15, 22, 0.95) 30%);
  margin-top: -2.5rem;
}

.spot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
}

.spot-body h3 {
  font-family: var(--font-dish);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 0.4rem;
}

.spot-body p {
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(247, 239, 230, 0.72);
  margin-bottom: 1rem;
}

.spot-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.spot-price {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}

.spot-add {
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}

.spot-add:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.spot-add.is-added {
  background: var(--green);
  color: var(--cream);
}

.menu-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.menu-heading {
  margin-bottom: 0;
}

.menu-heading h3 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.menu-heading p {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  color: rgba(247, 239, 230, 0.55);
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(240, 180, 41, 0.3);
}

.filter-btn {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 42px;
  padding: 0.5rem 0.85rem;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.filter-btn:hover,
.filter-btn:focus-visible {
  border-color: rgba(240, 180, 41, 0.45);
  color: var(--gold-soft);
  background: rgba(240, 180, 41, 0.1);
  outline: none;
}

.filter-btn.is-active {
  background: var(--gold);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 6px 16px rgba(240, 180, 41, 0.35);
}

.filter-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.3rem;
  height: 1.3rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  background: rgba(26, 15, 22, 0.18);
  color: inherit;
}

.filter-btn:not(.is-active) .filter-count {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(247, 239, 230, 0.7);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  transition: opacity 0.18s ease;
}

.menu-grid.is-updating {
  opacity: 0.4;
  pointer-events: none;
}

.menu-grid--pair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 720px;
}

.catalog-block {
  margin-top: clamp(2.25rem, 5vw, 3.25rem);
  padding-top: clamp(1.75rem, 3.5vw, 2.35rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: calc(var(--header-h) + 24px + env(safe-area-inset-top, 0px));
}

.catalog-block--first {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.catalog-block .menu-heading {
  margin-bottom: 0;
}

.menu-card--contain .menu-plate {
  background: linear-gradient(160deg, #fff8ef 0%, #f3e0c4 100%);
}

.menu-card--contain .menu-photo {
  object-fit: contain;
  padding: 0.85rem;
}

.menu-card--contain:hover .menu-photo {
  transform: scale(1.04);
}

.menu-card--contain .menu-plate::after {
  background: linear-gradient(180deg, transparent 70%, rgba(26, 15, 22, 0.12) 100%);
}

.menu-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: #241018;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.45s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.45s,
    opacity 0.4s;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
}

.menu-card.is-featured {
  border-color: rgba(240, 180, 41, 0.4);
}

.menu-card.is-visible {
  opacity: 1;
  transform: none;
}

.menu-card.is-hidden {
  display: none;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 180, 41, 0.55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.menu-plate {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #1a0f16;
}

.menu-card.is-featured .menu-plate {
  height: 168px;
}

.menu-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease-out);
}

.menu-card:hover .menu-photo {
  transform: scale(1.08);
}

.menu-plate::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26, 15, 22, 0.5) 100%);
  pointer-events: none;
}

.menu-price-stamp {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  padding: 0.4rem 0.65rem;
  border-radius: 10px;
  background: rgba(26, 15, 22, 0.88);
  border: 1.5px solid var(--gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s var(--ease-spring), background 0.3s, color 0.3s;
}

.menu-card:hover .menu-price-stamp {
  transform: scale(1.05);
  background: var(--gold);
  color: var(--ink);
}

.menu-heat {
  position: absolute;
  bottom: 0.75rem;
  left: 0.85rem;
  z-index: 2;
  display: flex;
  gap: 3px;
}

.menu-heat span {
  width: 8px;
  height: 14px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
}

.menu-heat span.is-on {
  background: linear-gradient(180deg, #ff6b35, var(--red));
  box-shadow: 0 0 8px rgba(196, 60, 44, 0.55);
}

.menu-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 0.95rem 1rem 1.05rem;
  flex: 1;
}

.menu-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
}

.menu-tag.is-hot {
  background: var(--red);
  color: var(--cream);
}

.menu-tag.is-fresh {
  background: var(--green-bright);
  color: var(--cream);
}

.menu-card h3 {
  font-family: var(--font-dish);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.menu-card.is-featured h3 {
  font-size: 1.35rem;
}

.menu-card p {
  font-size: 0.86rem;
  font-weight: 300;
  color: rgba(247, 239, 230, 0.7);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
  flex: 1;
}

.menu-card.is-in-cart {
  border-color: rgba(240, 180, 41, 0.7);
  box-shadow:
    0 0 0 1px rgba(240, 180, 41, 0.35),
    0 18px 40px rgba(0, 0, 0, 0.28);
}

.menu-card.is-in-cart .menu-qty {
  background: rgba(240, 180, 41, 0.18);
  border-color: rgba(240, 180, 41, 0.45);
}

.menu-card.is-in-cart .qty-val {
  color: var(--gold);
}

.menu-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.menu-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.15rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.2s;
}

.qty-btn:hover,
.qty-btn:focus-visible {
  background: var(--magenta-mid);
  transform: scale(1.06);
  outline: none;
}

.qty-val {
  min-width: 1.5rem;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.btn-add {
  flex: 1;
  margin-top: 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  border: none;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-spring), color 0.3s;
}

.btn-add:hover,
.btn-add:focus-visible {
  background: var(--gold);
  transform: translateY(-1px);
  outline: none;
}

.btn-add.is-added {
  background: var(--green);
  color: var(--cream);
}

.order-empty-hint {
  font-size: 0.9rem;
  max-width: 22ch;
  margin: 0 auto;
  line-height: 1.45;
}

.order-empty .btn {
  margin-top: 0.35rem;
  justify-self: center;
}

/* Cart drawer + order panel */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(18, 8, 14, 0.55);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.cart-backdrop.is-open {
  opacity: 1;
}

.cart-backdrop[hidden] {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 120;
  width: min(420px, 100%);
  height: 100%;
  height: 100dvh;
  background: linear-gradient(180deg, #fff8ef 0%, var(--cream) 100%);
  color: var(--ink);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  padding:
    max(1.25rem, env(safe-area-inset-top))
    max(1.35rem, env(safe-area-inset-right))
    max(1.25rem, env(safe-area-inset-bottom))
    1.35rem;
  transform: translateX(105%);
  transition: transform 0.45s var(--ease-spring);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26, 15, 22, 0.1);
}

.cart-drawer-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.25rem;
}

.cart-drawer-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--ink);
}

.cart-drawer-close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 15, 22, 0.08);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}

.cart-drawer-close:hover {
  background: var(--gold);
  transform: scale(1.05);
}

.order-panel {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-height: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  overflow: auto;
}

.order-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 0 0 auto;
}

.order-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(26, 15, 22, 0.08);
  animation: fadeUp 0.4s var(--ease-out) both;
  color: var(--ink);
}

.order-item-name {
  font-weight: 600;
}

.order-item-meta {
  grid-column: 1;
  font-size: 0.85rem;
  color: rgba(26, 15, 22, 0.5);
}

.order-item-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--magenta-mid);
  letter-spacing: 0.03em;
}

.order-item-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.order-item .qty-btn {
  background: rgba(26, 15, 22, 0.06);
  color: var(--ink);
}

.order-item .qty-btn:hover {
  background: var(--gold);
}

.order-empty {
  flex: 1;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.75rem;
  color: rgba(26, 15, 22, 0.45);
  min-height: 160px;
}

.order-empty[hidden],
.order-footer[hidden] {
  display: none;
}

.order-empty a {
  color: var(--magenta-mid);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-footer {
  margin-top: auto;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 15, 22, 0.1);
  background: linear-gradient(180deg, transparent, #fff8ef 18%);
}

.order-item .qty-btn.qty-remove {
  margin-left: auto;
  width: auto;
  min-width: 44px;
  height: 44px;
  padding: 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.order-total strong {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--magenta-mid);
}

/* Extras en el drawer */
.extras-panel {
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(26, 15, 22, 0.14);
}

.extras-panel[hidden] {
  display: none;
}

.extras-head {
  margin-bottom: 0.85rem;
}

.extras-head h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0 0 0.2rem;
  color: var(--ink);
}

.extras-head p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(26, 15, 22, 0.5);
}

.extras-groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.extras-group-label {
  margin: 0 0 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.extras-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.extras-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0.35rem 0;
}

.extras-info {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.55rem;
  min-width: 0;
}

.extras-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.extras-meta {
  flex-basis: 100%;
  font-size: 0.78rem;
  color: rgba(26, 15, 22, 0.5);
  line-height: 1.3;
}

.extras-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--magenta-mid);
  white-space: nowrap;
}

.extras-add,
.extras-qty-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 15, 22, 0.07);
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
}

.extras-add:hover,
.extras-qty-btn:hover {
  background: var(--gold);
  transform: scale(1.06);
}

.extras-qty {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.extras-remove {
  border: none;
  background: transparent;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.35rem 0.4rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.extras-remove:hover {
  color: var(--ink);
}

/* Modal potes */
.pote-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(12, 6, 10, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.pote-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pote-modal[hidden] {
  display: none;
}

.pote-dialog {
  position: relative;
  width: min(380px, 100%);
  max-height: min(90dvh, 560px);
  overflow: auto;
  background: linear-gradient(180deg, #fff8ef 0%, var(--cream) 100%);
  color: var(--ink);
  border-radius: 18px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transform: translateY(12px) scale(0.97);
  transition: transform 0.28s var(--ease-spring);
}

.pote-modal.is-open .pote-dialog {
  transform: none;
}

.pote-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(26, 15, 22, 0.08);
  color: var(--ink);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.pote-close:hover {
  background: var(--gold);
}

.pote-dialog h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  margin: 0 2rem 0.35rem 0;
}

.pote-sub {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: rgba(26, 15, 22, 0.55);
}

.pote-options {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.pote-option {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(26, 15, 22, 0.05);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}

.pote-option:has(input:checked) {
  background: rgba(240, 180, 41, 0.35);
}

.pote-option:has(input:disabled) {
  opacity: 0.45;
  cursor: not-allowed;
}

.pote-option input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--red);
}

.pote-count {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(26, 15, 22, 0.55);
}

.pote-count strong {
  color: var(--magenta-mid);
  font-size: 1.05rem;
}

.pote-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pote-actions .btn {
  flex: 1 1 auto;
  min-height: 46px;
}

/* Contact */
.contact {
  position: relative;
  padding: clamp(4.5rem, 10vw, 7rem) 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(240, 180, 41, 0.12), transparent 40%),
    linear-gradient(180deg, #2a1220 0%, var(--magenta-deep) 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.contact-meta li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.85rem 0 0.85rem 1rem;
  border-left: 3px solid var(--gold);
  transition: transform 0.3s var(--ease-out);
}

.contact-meta li:hover {
  transform: translateX(4px);
}

.contact-meta li:nth-child(2) { border-left-color: var(--red); }
.contact-meta li:nth-child(3) { border-left-color: var(--green-bright); }

.contact-meta span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 239, 230, 0.5);
  font-weight: 600;
}

.contact-meta strong {
  font-weight: 500;
  font-size: 1.05rem;
}

.contact-meta a {
  color: var(--gold-soft);
  transition: color 0.25s;
}

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

.contact-visual {
  display: grid;
  place-items: center;
}

.contact-logo {
  width: min(240px, 65%);
  border-radius: 50%;
  animation: logoFloat 7s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  border: 3px solid rgba(240, 180, 41, 0.4);
}

/* Footer */
.site-footer {
  padding: 0 0 5.5rem;
  background: var(--ink);
}

.site-footer .accent-line {
  margin-bottom: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.footer-inner img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(240, 180, 41, 0.4);
}

.footer-inner p {
  font-size: 0.88rem;
  color: rgba(247, 239, 230, 0.55);
}

/* Cart float */
.cart-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  z-index: 98;
  min-height: 68px;
  padding: 0.65rem 1.1rem 0.65rem 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd24a 0%, var(--gold) 55%, #e0a010 100%);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  box-shadow:
    0 14px 36px rgba(240, 180, 41, 0.55),
    0 0 0 5px rgba(240, 180, 41, 0.22);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, opacity 0.3s;
}

.cart-float[hidden] {
  display: none;
}

.cart-float.is-active {
  animation: cartPulse 1.6s ease-in-out infinite;
}

.cart-float.is-pop {
  animation: cartPop 0.55s var(--ease-spring);
}

.cart-float-pulse {
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 2px solid rgba(240, 180, 41, 0.85);
  animation: cartRing 1.5s ease-out infinite;
  pointer-events: none;
  opacity: 0;
}

.cart-float.is-active .cart-float-pulse {
  opacity: 1;
}

.cart-float-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(26, 15, 22, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.cart-float-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  padding-right: 0.35rem;
}

.cart-float-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
}

.cart-float-total {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.cart-float-count {
  position: absolute;
  top: -8px;
  right: -6px;
  min-width: 28px;
  height: 28px;
  padding: 0 7px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(206, 17, 38, 0.5);
}

.cart-float:hover,
.cart-float:focus-visible {
  transform: scale(1.06);
  animation: none;
  outline: none;
  box-shadow:
    0 18px 44px rgba(240, 180, 41, 0.7),
    0 0 0 7px rgba(240, 180, 41, 0.28);
}

@keyframes cartPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 14px 36px rgba(240, 180, 41, 0.55),
      0 0 0 5px rgba(240, 180, 41, 0.22);
  }
  50% {
    transform: translateY(-4px) scale(1.04);
    box-shadow:
      0 20px 44px rgba(240, 180, 41, 0.75),
      0 0 0 10px rgba(240, 180, 41, 0.14);
  }
}

@keyframes cartPop {
  0% { transform: scale(0.86); }
  55% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

@keyframes cartRing {
  0% { transform: scale(0.92); opacity: 0.95; }
  100% { transform: scale(1.28); opacity: 0; }
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 95;
  min-height: 64px;
  padding: 0 1.15rem 0 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.55),
    0 0 0 4px rgba(37, 211, 102, 0.25);
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s, opacity 0.35s, filter 0.35s;
  animation: waBounce 2.8s ease-in-out infinite;
}

.wa-float-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.7);
  animation: waRing 2s ease-out infinite;
  pointer-events: none;
}

.wa-float-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-right: 0.15rem;
}

.wa-float:hover,
.wa-float:focus-visible {
  transform: scale(1.08);
  box-shadow:
    0 18px 44px rgba(37, 211, 102, 0.65),
    0 0 0 6px rgba(37, 211, 102, 0.3);
  animation: none;
  outline: none;
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes waRing {
  0% { transform: scale(0.92); opacity: 0.9; }
  100% { transform: scale(1.25); opacity: 0; }
}

body.has-cart .wa-float {
  opacity: 0.88;
  filter: saturate(0.92);
  animation: none;
}

body.has-cart .wa-float-pulse {
  animation: none;
  opacity: 0.35;
}

/* Toast */
.toast {
  position: fixed;
  top: calc(var(--header-h) + 6px + env(safe-area-inset-top, 0px) + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 200;
  padding: 0.55rem 0.55rem 0.55rem 1.15rem;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  max-width: min(92vw, 420px);
}

.toast-msg {
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 58vw;
}

.toast.is-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.toast-action {
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
  transition: background 0.25s;
}

.toast-action:hover,
.toast-action:focus-visible {
  background: rgba(255, 255, 255, 0.35);
  outline: none;
}

.toast-action[hidden] {
  display: none;
}

/* Responsive */
@media (min-width: 769px) {
  .site-nav {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: transparent;
    flex-direction: row;
    height: var(--header-h);
    top: calc(6px + env(safe-area-inset-top, 0px));
    right: clamp(1rem, 3.5vw, 2.5rem);
    left: auto;
    inset: auto;
    padding: 0;
    gap: 0.35rem;
  }

  .site-header {
    /* deja espacio visual a la derecha para el nav fijo */
    padding-right: clamp(1rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    order: -1;
  }

  .contact-logo {
    width: 160px;
  }

  .menu-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 64px;
  }

  .hero-photo {
    filter: saturate(1.15) contrast(1.05) brightness(1.05) blur(4px);
    animation: none;
    transform: scale(1.06);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    height: 100dvh;
    z-index: 120;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding:
      calc(var(--header-h) + env(safe-area-inset-top, 0px) + 2rem)
      1.5rem
      max(2rem, env(safe-area-inset-bottom));
    background: #160910;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    opacity: 1;
    padding: 0.85rem 1.5rem;
    min-height: 52px;
    width: min(280px, 86vw);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--cream);
    background: transparent;
  }

  .site-nav a:not(.nav-cta):hover,
  .site-nav a:not(.nav-cta):focus-visible {
    background: rgba(240, 180, 41, 0.12);
    color: var(--gold-soft);
    transform: none;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin: 1rem 0 0 !important;
    width: min(280px, 86vw);
    font-family: var(--font-body) !important;
    font-size: 1rem !important;
    letter-spacing: 0.04em !important;
    text-transform: none;
    min-height: 54px;
    padding: 1rem 1.5rem !important;
    border-radius: 999px !important;
    justify-content: center;
  }

  .site-header {
    z-index: 130;
    background: rgba(22, 9, 16, 0.94);
  }

  .header-brand-text small {
    display: none;
  }

  .header-brand img {
    width: 44px;
    height: 44px;
  }

  .header-brand-text {
    font-size: 1.35rem;
  }

  /* Hero móvil: cabe y se disfruta */
  .hero {
    height: auto;
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
    padding:
      calc(var(--header-h) + 6px + env(safe-area-inset-top, 0px) + 0.75rem)
      1rem
      calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .hero-logo-wrap {
    width: min(180px, 42vw, 26vh);
    margin-bottom: 0.65rem;
  }

  .hero-logo {
    border-width: 2px;
    box-shadow:
      0 0 0 5px rgba(26, 15, 22, 0.35),
      0 14px 32px rgba(0, 0, 0, 0.4);
  }

  .hero-title {
    font-size: clamp(1.65rem, 6.5vw, 2.35rem);
    max-width: 16ch;
    margin-bottom: 0.55rem;
  }

  .hero-lead {
    font-size: 1rem;
    margin-bottom: 1.15rem;
    max-width: 22rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 0.65rem;
  }

  .hero-cta .btn,
  .btn-hero {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 0.95rem 1.25rem;
    font-size: 0.95rem;
  }

  .hero-chip {
    margin-bottom: 0.45rem;
    font-size: 0.7rem;
  }

  .scroll-hint {
    display: none;
  }

  .guirnaldas {
    display: none;
  }

  /* Spotlight: carrusel horizontal */
  .spotlight {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0.15rem 0.15rem 0.85rem;
    margin-bottom: 1.5rem;
    scrollbar-width: none;
  }

  .spotlight::-webkit-scrollbar {
    display: none;
  }

  .spot-card,
  .spot-card:first-child {
    flex: 0 0 min(82vw, 300px);
    min-height: 260px;
    scroll-snap-align: start;
  }

  /* Toolbars de sección */
  .menu-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    position: sticky;
    top: calc(var(--header-h) + 6px + env(safe-area-inset-top, 0px));
    z-index: 40;
    padding: 0.55rem 0 0.65rem;
    margin: 0 0 1rem;
    background: linear-gradient(180deg, rgba(42, 18, 32, 0.97) 55%, rgba(42, 18, 32, 0.88));
    backdrop-filter: blur(10px);
  }

  .menu-filters {
    width: 100%;
  }

  .filter-btn {
    flex: 1 1 0;
    font-size: 0.76rem;
    padding: 0.5rem 0.35rem;
    min-height: 40px;
  }

  .catalog-block {
    scroll-margin-top: calc(var(--header-h) + 24px + env(safe-area-inset-top, 0px));
  }

  /* Cards compactas en móvil: 2 columnas */
  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .menu-card {
    border-radius: 14px;
  }

  .menu-card.is-featured .menu-plate,
  .menu-plate {
    height: 112px;
  }

  .menu-price-stamp {
    top: 0.4rem;
    right: 0.4rem;
    padding: 0.25rem 0.4rem;
    font-size: 0.92rem;
    border-radius: 8px;
    border-width: 1px;
  }

  .menu-heat {
    bottom: 0.4rem;
    left: 0.45rem;
    gap: 2px;
  }

  .menu-heat span {
    width: 5px;
    height: 10px;
  }

  .menu-body {
    padding: 0.6rem 0.65rem 0.7rem;
    gap: 0.3rem;
  }

  .menu-tag {
    font-size: 0.56rem;
    padding: 0.12rem 0.35rem;
    letter-spacing: 0.08em;
  }

  .menu-card h3,
  .menu-card.is-featured h3 {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .menu-card p {
    display: none;
  }

  .menu-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    margin-top: 0.25rem;
  }

  .menu-qty {
    justify-content: center;
    padding: 0.15rem;
    border-radius: 10px;
  }

  .menu-qty .qty-btn,
  .qty-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .qty-val {
    min-width: 1.15rem;
    font-size: 0.88rem;
  }

  .btn-add {
    min-height: 38px;
    padding: 0.45rem 0.5rem;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .menu-card--contain .menu-photo {
    padding: 0.4rem;
  }

  .menu-grid--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .menu-section,
  .experience,
  .contact {
    padding: 3.25rem 0;
  }

  .menu-section {
    padding-bottom: calc(7.5rem + env(safe-area-inset-bottom, 0px));
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .section-lead {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }

  /* Floats: carrito protagonista */
  .cart-float {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
    min-height: 58px;
    padding: 0.5rem 0.95rem 0.5rem 0.6rem;
    gap: 0.45rem;
    z-index: 98;
  }

  .cart-float-icon {
    width: 36px;
    height: 36px;
  }

  .cart-float-total {
    font-size: 1.05rem;
  }

  .wa-float {
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    padding: 0;
    width: 56px;
    height: 56px;
    min-height: 56px;
    justify-content: center;
    border-radius: 50%;
    animation: none;
  }

  .wa-float-label {
    display: none;
  }

  .wa-float-pulse {
    inset: -6px;
    border-radius: 50%;
  }

  body.has-cart .wa-float {
    opacity: 0.75;
    width: 52px;
    height: 52px;
    min-height: 52px;
  }

  .cart-drawer {
    width: 100%;
  }

  .site-footer {
    padding-bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .hero-logo-wrap {
    width: min(150px, 38vw, 22vh);
  }

  .hero-title {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
  }

  .hero-lead {
    font-size: 0.95rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .menu-card,
  .menu-card.is-featured {
    grid-column: auto;
  }

  .menu-plate,
  .menu-card.is-featured .menu-plate {
    height: 96px;
  }

  .section-inner {
    width: min(1120px, calc(100% - 1.5rem));
  }

  .spot-card,
  .spot-card:first-child {
    flex-basis: min(86vw, 280px);
    min-height: 240px;
  }

  .spot-foot {
    flex-wrap: wrap;
  }

  .cart-float-label {
    display: none;
  }

  .menu-body {
    padding: 0.5rem 0.55rem 0.6rem;
    gap: 0.25rem;
  }

  .menu-card h3,
  .menu-card.is-featured h3 {
    font-size: 0.92rem;
  }

  .menu-price-stamp {
    font-size: 0.82rem;
    padding: 0.2rem 0.35rem;
  }

  .btn-add {
    min-height: 36px;
    font-size: 0.74rem;
    padding: 0.4rem 0.35rem;
  }

  .menu-qty .qty-btn,
  .qty-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-height: 700px) and (max-width: 900px) {
  .hero-logo-wrap {
    width: min(130px, 22vh);
  }

  .hero-chip {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.35rem, 5vh, 1.85rem);
  }

  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-photo {
    transform: none;
    animation: none;
    filter: saturate(1.2) contrast(1.05) brightness(1.05) blur(6px);
  }

  .guirnalda-side--left,
  .guirnalda-side--right,
  .cart-float,
  .cart-float-pulse,
  .wa-float,
  .wa-float-pulse,
  .nav-cta,
  .btn-hero.btn-primary,
  .accent-top::after {
    animation: none !important;
  }
}
