/* LOCURA Burger — brand site styles */
:root {
  /* Mantenemos los nombres --rosa / --rosa-fluor para no romper referencias.
     El valor pasa a VERDE NEÓN (logo oficial Locura Burger) + verde lima fluor. */
  --rosa: #4CAC00;
  --rosa-2: #6EE000;
  --rosa-fluor: #6EE000;
  --negro: #111111;
  --blanco: #FFFFFF;
  --crema: #FFF8E8;
  --checker-size: 18px;
  --shadow-rosa: 0 14px 0 -4px rgba(110, 224, 0, 0.45), 0 24px 60px -12px rgba(17,17,17,0.35);
  --display: "DM Serif Display", "Recoleta", Georgia, serif;
  --kicker: "Bebas Neue", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  color: var(--negro);
  background: var(--rosa);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

/* ---------- Checker strip ---------- */
.checker-strip {
  width: 100%;
  background-image:
    linear-gradient(45deg, var(--negro) 25%, transparent 25%),
    linear-gradient(-45deg, var(--negro) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--negro) 75%),
    linear-gradient(-45deg, transparent 75%, var(--negro) 75%);
  background-size: 36px 36px;
  background-position: 0 0, 0 18px, 18px -18px, -18px 0;
  background-color: var(--rosa);
}
/* simpler robust pattern using conic gradient */
.checker-strip {
  background:
    conic-gradient(var(--negro) 25%, var(--rosa) 0 50%, var(--negro) 0 75%, var(--rosa) 0)
    0 0 / calc(var(--checker-size) * 2) calc(var(--checker-size) * 2);
}
.checker-anim {
  animation: chk-scroll 30s linear infinite;
}
@keyframes chk-scroll {
  to { background-position: calc(var(--checker-size) * 2) 0; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--rosa);
  transition: box-shadow 0.25s ease, background 0.25s ease;
  border-bottom: 2px solid transparent;
}
.site-header.scrolled {
  background: var(--rosa);
  border-bottom-color: var(--negro);
  box-shadow: 0 4px 0 0 var(--negro), 0 8px 24px -8px rgba(17,17,17,0.25);
}
.header-inner {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.hamburger {
  width: 44px; height: 44px;
  background: var(--negro);
  border: none;
  border-radius: 8px;
  display: inline-flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center;
}
.hamburger span {
  display: block; width: 20px; height: 2px; background: var(--blanco);
}
.logo-wrap { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.logo-display {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 44px);
  letter-spacing: -0.04em;
  color: var(--negro);
  transform: skew(-3deg) rotate(-1deg);
  text-transform: uppercase;
  line-height: 0.9;
}
.logo-display.small { font-size: 28px; }
.logo-kicker {
  font-family: var(--kicker);
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 400;
  margin-top: 4px;
  color: var(--negro);
}
.header-cta {
  background: var(--negro);
  color: var(--blanco);
  font-family: var(--body);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  transition: transform 0.15s ease;
}
.header-cta:hover { transform: translateY(-2px) rotate(-1deg); }
.header-cta .arrow { display: inline-block; transition: transform 0.2s ease; }
.header-cta:hover .arrow { transform: translateX(4px); }

@media (max-width: 600px) {
  .header-cta { font-size: 11px; padding: 10px 12px; }
}

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(17,17,17,0.6);
  display: flex; align-items: stretch;
}
.mobile-menu-inner {
  width: min(360px, 88%);
  background: var(--rosa);
  padding: 24px;
  display: flex; flex-direction: column; gap: 8px;
  border-right: 4px solid var(--negro);
}
.mobile-menu-inner a, .mobile-menu-inner .link-btn {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  color: var(--negro);
  padding: 10px 0;
  border-bottom: 2px solid var(--negro);
  background: none; border-left: none; border-right: none; border-top: none;
  text-align: left;
  letter-spacing: -0.02em;
}
.mobile-menu-inner a.primary {
  background: var(--negro); color: var(--blanco);
  border: none; border-radius: 8px;
  text-align: center; padding: 16px; margin-top: 16px; font-size: 18px;
  font-family: var(--body); letter-spacing: 0.08em;
}
.mobile-menu-inner .close {
  align-self: flex-end;
  background: none; border: none;
  font-size: 36px; line-height: 1;
  color: var(--negro);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 32px 20px 60px;
  overflow: hidden;
}
.hero-mascots {
  position: relative;
  height: 220px;
  display: flex; justify-content: center; align-items: flex-end;
}
.hero-mascots .m-viejo {
  width: 180px; transform: rotate(-6deg);
}
.hero-mascots .m-chef {
  width: 200px; transform: translateY(10px) rotate(4deg);
  margin-left: -30px;
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-kicker {
  font-family: var(--kicker);
  letter-spacing: 0.4em;
  font-size: 12px;
  margin-bottom: 12px;
}
.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  margin: 0;
  line-height: 0.85;
  text-transform: uppercase;
  font-size: clamp(52px, 13vw, 96px);
  letter-spacing: -0.04em;
  overflow-wrap: break-word;
  word-break: break-word;
}
@media (min-width: 1100px) {
  .hero-h1 { font-size: clamp(80px, 8vw, 112px); }
}
.hero-h1 .line { display: block; transform: skew(-2deg); }
.hero-h1 .line.accent { color: var(--negro); transform: skew(-2deg) rotate(-1.5deg); }
.hero-sub {
  font-size: 17px;
  font-weight: 500;
  max-width: 520px;
  margin: 18px auto 28px;
  line-height: 1.45;
}
.hero-sub strong { font-weight: 900; }
.hero-ctas {
  display: flex; flex-direction: column; gap: 10px;
  max-width: 360px; margin: 0 auto;
}
@media (min-width: 600px) {
  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 28px;
  font-family: var(--kicker);
  letter-spacing: 0.18em;
  font-size: 13px;
}

@media (min-width: 900px) {
  .hero {
    display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px;
    align-items: center;
    padding: 60px 40px 100px;
    max-width: 1280px; margin: 0 auto;
  }
  .hero-mascots { height: 420px; }
  .hero-mascots .m-viejo { width: 280px; }
  .hero-mascots .m-chef { width: 320px; margin-left: -40px; }
  .hero-content { text-align: left; }
  .hero-sub { margin-left: 0; }
  .hero-ctas { justify-content: flex-start; max-width: none; }
  .hero-meta { justify-content: flex-start; }
}

/* mascot wobble */
@keyframes wobble {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(-3deg) translateY(-4px); }
}
@keyframes wobble2 {
  0%, 100% { transform: translateY(10px) rotate(4deg); }
  50% { transform: translateY(4px) rotate(7deg); }
}
.wob-on { animation: wobble 3.5s ease-in-out infinite; }
.hero-mascots .m-chef.wob-on { animation: wobble2 4s ease-in-out infinite; }
.wob-low { animation: wobble 6s ease-in-out infinite; }
.wob-off { animation: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center; justify-content: center; gap: 8px;
  font-family: var(--body);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 999px;
  border: 3px solid var(--negro);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--negro); color: var(--blanco);
  box-shadow: 4px 4px 0 0 var(--negro);
}
.btn-primary:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--negro); }
.btn-outline {
  background: transparent; color: var(--negro);
  box-shadow: 4px 4px 0 0 var(--negro);
}
.btn-outline:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 0 var(--negro); background: var(--blanco); }
.btn-fluor {
  background: var(--rosa-fluor); color: var(--negro);
  box-shadow: 4px 4px 0 0 var(--blanco), 4px 4px 0 3px var(--negro);
}
.btn-fluor:hover { transform: translate(-2px, -2px); }
.btn.big { font-size: 17px; padding: 20px 32px; }
.btn.mega { font-size: 20px; padding: 24px 40px; }

/* ---------- Sections ---------- */
section { position: relative; }
.kicker {
  font-family: var(--kicker);
  letter-spacing: 0.3em;
  font-size: 13px;
  margin-bottom: 16px;
  color: var(--negro);
}
.kicker.pink { color: var(--rosa); }
.section-h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.section-h2 em {
  font-style: italic;
  color: var(--rosa-fluor);
  font-weight: 900;
  -webkit-text-stroke: 2px var(--negro);
}
@media (max-width: 600px) {
  .section-h2 em { -webkit-text-stroke: 1.5px var(--negro); }
}

/* ---------- Por qué ---------- */
.porque {
  background: var(--blanco);
  padding: 80px 0;
  border-top: 4px solid var(--negro);
  border-bottom: 4px solid var(--negro);
}
.porque-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .porque-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.porque-card {
  background: var(--rosa);
  border: 3px solid var(--negro);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 6px 6px 0 0 var(--negro);
  transition: transform 0.2s ease;
}
.porque-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 0 var(--negro); }
.porque-card h3 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
  text-transform: uppercase;
}
.porque-card p { font-size: 15px; line-height: 1.5; margin: 0; }
.bullet-icon { width: 56px; height: 56px; background: var(--blanco); border-radius: 50%; padding: 6px; border: 2px solid var(--negro); }

/* ---------- Pizzas ---------- */
.pizzas { padding: 80px 0; background: var(--rosa); }
.pizzas-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
  margin-top: 32px;
}
@media (min-width: 900px) {
  .pizzas-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pizza-card {
  background: var(--blanco);
  border: 3px solid var(--negro);
  border-radius: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.pizza-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 0 var(--negro), 0 12px 0 -4px var(--rosa-fluor), 0 18px 30px -6px rgba(17,17,17,0.4);
}
.pizza-img {
  background: var(--rosa-2);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  border-bottom: 3px solid var(--negro);
}
.pizza-svg { width: 90%; height: 90%; }
.badge-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--negro); color: var(--blanco);
  font-family: var(--body); font-weight: 900;
  font-size: 11px; letter-spacing: 0.1em;
  padding: 6px 10px; border-radius: 999px;
  text-transform: uppercase;
}
.badge-tag.detroit { background: var(--rosa-fluor); color: var(--negro); }
.pizza-body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pizza-name {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
}
.pizza-desc { font-size: 12px; line-height: 1.45; margin: 0; color: #444; flex: 1; }
.pizza-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.pizza-price { font-family: var(--body); font-weight: 900; font-size: 22px; letter-spacing: -0.01em; }
.pizza-add {
  background: var(--rosa); color: var(--negro);
  border: 2px solid var(--negro);
  font-weight: 900; font-size: 12px; letter-spacing: 0.08em;
  padding: 8px 12px; border-radius: 999px;
  text-transform: uppercase;
}
.pizza-add:hover { background: var(--negro); color: var(--blanco); }
.pizzas-foot { text-align: center; margin-top: 40px; }

/* ---------- Tu gusto (banner negro) ---------- */
.tu-gusto {
  background: var(--negro);
  color: var(--rosa);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--negro);
  border-bottom: 4px solid var(--negro);
}
.tg-content { text-align: center; position: relative; z-index: 2; }
.tg-h2 {
  font-family: var(--display);
  font-weight: 900;
  color: var(--rosa);
  font-size: clamp(46px, 9vw, 104px);
  line-height: 0.85;
  margin: 0 0 24px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.tg-h2 .outline-text {
  -webkit-text-stroke: 2px var(--rosa);
  color: transparent;
}
.tg-h2 .fluor { color: var(--rosa-fluor); }
.tg-sub {
  font-size: 18px; font-weight: 500;
  color: var(--blanco);
  max-width: 520px; margin: 0 auto 32px;
}
.tg-sub strong { color: var(--rosa-fluor); font-weight: 900; }
.tg-mascot {
  position: absolute; right: -40px; bottom: -20px;
  width: 200px; opacity: 0.95;
  transform: rotate(8deg);
  animation: floaty 5s ease-in-out infinite;
  z-index: 1;
}
@keyframes floaty {
  0%,100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(11deg) translateY(-12px); }
}
@media (min-width: 768px) {
  .tg-mascot { width: 280px; right: 4%; bottom: 0; }
}

/* ---------- Detroit ---------- */
.detroit {
  background: var(--blanco);
  padding: 80px 0;
  border-top: 4px solid var(--negro);
  border-bottom: 4px solid var(--negro);
}
.detroit-lead { font-size: 17px; max-width: 600px; margin: 0 0 32px; line-height: 1.5; }
.detroit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
@media (min-width: 900px) {
  .detroit-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
}
.detroit-card {
  background: var(--rosa);
  border: 3px solid var(--negro);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.detroit-card:hover { transform: translateY(-4px) rotate(-0.5deg); }
.detroit-img { aspect-ratio: 4/3; background: #FFE6CF; border-bottom: 3px solid var(--negro); }
.detroit-svg { width: 100%; height: 100%; }
.detroit-body {
  padding: 14px;
  display: flex; flex-direction: column; gap: 4px;
}
.detroit-body h4 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.detroit-price { font-family: var(--body); font-weight: 900; font-size: 18px; }

/* ---------- Nosotros ---------- */
.nosotros {
  background: var(--rosa);
  padding: 80px 0;
}
.nosotros-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .nosotros-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}
.nosotros-art {
  background: var(--blanco);
  border: 4px solid var(--negro);
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: 8px 8px 0 0 var(--negro);
}
.art-stack {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  aspect-ratio: 1;
}
.ns-m { width: 100%; height: 100%; }
.lead { font-size: 18px; line-height: 1.5; font-weight: 500; }
.nosotros-text p { font-size: 16px; line-height: 1.55; }
.nosotros-list {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--kicker); letter-spacing: 0.18em; font-size: 16px;
}

/* ---------- Instagram ---------- */
.instagram {
  background: var(--blanco);
  padding: 80px 0;
  border-top: 4px solid var(--negro);
}
.ig-head {
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start; margin-bottom: 32px;
}
.ig-head p { margin: 8px 0 0; font-size: 16px; }
@media (min-width: 768px) {
  .ig-head { flex-direction: row; justify-content: space-between; align-items: center; }
}
.ig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
@media (min-width: 768px) {
  .ig-grid { grid-template-columns: repeat(6, 1fr); gap: 12px; }
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  border: 3px solid var(--negro);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  transition: transform 0.2s ease;
}
.ig-tile:hover { transform: scale(1.04) rotate(-1deg); z-index: 2; }
.ig-svg { width: 100%; height: 100%; }
.ig-overlay {
  position: absolute; inset: 0;
  background: rgba(17,17,17,0.65);
  color: var(--blanco);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 16px;
  opacity: 0; transition: opacity 0.2s ease;
}
.ig-tile:hover .ig-overlay { opacity: 1; }

/* ---------- Ubicación ---------- */
.ubicacion {
  background: var(--rosa);
  padding: 80px 0;
  border-top: 4px solid var(--negro);
}
.ubicacion-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 900px) {
  .ubicacion-grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
}
.map-wrap {
  border: 4px solid var(--negro);
  border-radius: 16px;
  overflow: hidden;
  background: var(--rosa);
  box-shadow: 8px 8px 0 0 var(--negro);
  min-height: 420px;
  height: 100%;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; display: block; border: 0; }
@media (max-width: 899px) {
  .map-wrap { aspect-ratio: 4/3; min-height: 0; height: auto; }
}
.map-svg { width: 100%; height: 100%; }
.contact-list {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.contact-list li, .contact-list a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--blanco);
  border: 3px solid var(--negro);
  border-radius: 12px;
  font-size: 15px;
  transition: transform 0.15s ease;
}
.contact-list a:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 0 var(--negro); }
.contact-list .ico { font-size: 24px; }
.horarios {
  background: var(--negro);
  color: var(--rosa);
  padding: 20px 24px;
  border-radius: 12px;
  border: 3px solid var(--negro);
}
.horarios h4 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--rosa-fluor);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.horario-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0;
  border-bottom: 1px dashed rgba(110,224,0,0.3);
  font-size: 14px;
}
.horario-row:last-child { border-bottom: none; }
.horario-row .dias { font-weight: 700; color: var(--blanco); }
.horario-row .hora { color: var(--rosa); font-variant-numeric: tabular-nums; }

/* ---------- CTA Final ---------- */
.cta-final {
  position: relative;
  padding: 100px 0 120px;
  background: var(--rosa);
  overflow: hidden;
  border-top: 4px solid var(--negro);
}
.cta-bg {
  position: absolute; inset: 0;
  background:
    conic-gradient(var(--negro) 25%, var(--rosa) 0 50%, var(--negro) 0 75%, var(--rosa) 0)
    0 0 / 80px 80px;
  opacity: 0.18;
  z-index: 0;
}
.cta-bg.moving { animation: chk-scroll-big 60s linear infinite; }
@keyframes chk-scroll-big { to { background-position: 80px 0; } }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(46px, 9vw, 104px);
  line-height: 0.85;
  margin: 0 0 32px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  overflow-wrap: break-word;
}
.cta-h2 em {
  font-style: italic;
  color: var(--blanco);
  -webkit-text-stroke: 3px var(--negro);
}
.cta-secondary {
  margin-top: 28px;
  font-family: var(--kicker);
  letter-spacing: 0.18em;
  font-size: 15px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
}
.cta-secondary .dot { opacity: 0.4; }
.cta-mascot {
  position: absolute; right: -20px; bottom: 0;
  width: 140px;
  z-index: 1;
  transform: rotate(8deg);
  animation: floaty 6s ease-in-out infinite;
}
.cta-mascot.left {
  right: auto; left: -20px;
  transform: rotate(-8deg);
  animation-delay: -2s;
}
@media (min-width: 768px) {
  .cta-mascot { width: 200px; right: 5%; }
  .cta-mascot.left { left: 5%; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--negro);
  color: var(--blanco);
  padding: 60px 0 40px;
}
.site-footer .logo-display { color: var(--blanco); }
.site-footer .logo-kicker { color: var(--rosa); }
.footer-inner {
  display: flex; flex-direction: column; gap: 24px; align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; }
.footer-links a, .footer-links .link-btn {
  font-family: var(--kicker);
  letter-spacing: 0.18em;
  font-size: 14px;
  color: var(--blanco);
  background: none; border: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.footer-links a:hover, .footer-links .link-btn:hover {
  color: var(--rosa);
  border-bottom-color: var(--rosa);
}
.footer-meta { font-size: 12px; opacity: 0.6; font-family: var(--body); }
.link-btn { background: none; border: none; cursor: pointer; }

/* ---------- Modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(17,17,17,0.7);
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  backdrop-filter: blur(4px);
}
.modal {
  background: var(--rosa);
  border: 4px solid var(--negro);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  display: flex; flex-direction: column;
  box-shadow: 12px 12px 0 0 var(--negro);
  overflow: hidden;
}
.modal-head {
  padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-start;
  border-bottom: 3px solid var(--negro);
  background: var(--rosa);
}
.modal-h2 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 36px;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.modal-h2 em { font-style: italic; color: var(--rosa-fluor); -webkit-text-stroke: 2px var(--negro); }
.modal-close {
  background: var(--negro); color: var(--blanco);
  border: none; width: 44px; height: 44px; border-radius: 50%;
  font-size: 28px; line-height: 1;
}
.modal-body { padding: 24px; overflow-y: auto; flex: 1; background: var(--blanco); }
.modal-group { margin-bottom: 28px; }
.group-h {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  border-bottom: 2px solid var(--negro);
  padding-bottom: 8px;
}
.group-p { font-size: 14px; color: #444; }
.carta-row {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(17,17,17,0.15);
  align-items: flex-start;
}
.carta-name strong { font-family: var(--display); font-weight: 900; font-size: 17px; display: block; letter-spacing: -0.01em; }
.carta-name span { font-size: 13px; color: #555; }
.carta-price { font-family: var(--body); font-weight: 900; font-size: 16px; white-space: nowrap; }
.modal-foot {
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 3px solid var(--negro);
  background: var(--rosa);
}
@media (min-width: 600px) {
  .modal-foot { flex-direction: row; justify-content: flex-end; }
}

.ico { display: inline-flex; }

/* improve text-stroke fallback for hero */
@supports not (-webkit-text-stroke: 1px black) {
  .section-h2 em, .modal-h2 em, .cta-h2 em { color: var(--rosa-fluor); }
}

/* ---------- Hero carousel (foto real de fondo) ---------- */
.hero { position: relative; overflow: hidden; }
.hero-carousel { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-carousel picture { position: absolute; inset: 0; }
.hero-carousel-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-carousel-img.active { opacity: .9; filter: saturate(1.25) contrast(1.05); }
.hero-carousel-overlay {
  position: absolute; inset: 0;
  /* Degradado lateral: oscurece la izquierda donde va el texto, deja la foto limpia a la derecha */
  background:
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.30) 35%, rgba(0,0,0,0) 70%),
    linear-gradient(180deg, rgba(76,172,0,.10) 0%, rgba(17,17,17,.10) 100%);
  pointer-events: none;
}
.hero-content, .hero-mascots { position: relative; z-index: 2; }

/* Texto del hero sobre foto: blanco con sombra para legibilidad */
.hero .hero-kicker { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero .hero-sub { color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.hero .hero-sub strong { color: var(--rosa-fluor, #6EE000); }
.hero .hero-meta { color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6); }
.hero .hero-meta span { color: #fff; }

/* Botones del hero — mismo estilo: fondo translúcido, borde negro, sombra negra */
.hero .btn-primary {
  background: rgba(0,0,0,.35);
  border: 2px solid var(--negro, #111);
  backdrop-filter: blur(2px);
  box-shadow: 4px 4px 0 0 var(--negro, #111);
  color: #fff;
}
.hero .btn-primary:hover {
  background: var(--negro, #111);
}
.hero .btn-outline {
  color: #fff;
  border-color: var(--negro, #111);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(2px);
  box-shadow: 4px 4px 0 0 var(--negro, #111);
}
.hero .btn-outline:hover {
  background: var(--negro, #111);
  color: #fff;
}

/* ---------- Pizzas: foto real ---------- */
.pizza-img-real {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* ---------- Entrantes ---------- */
.entrantes { padding: 80px 0; background: var(--rosa); }
.entrantes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.entrante-card {
  background: #fff;
  border: 3px solid #111;
  border-radius: 16px;
  overflow: hidden;
  transition: transform .2s;
}
.entrante-card:hover { transform: translateY(-4px); }
.entrante-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.entrante-body { padding: 16px; }
.entrante-body h4 {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 6px;
}
.entrante-body p {
  font-size: 14px;
  color: #444;
  margin: 0 0 10px;
  line-height: 1.4;
}
.entrante-price { font-weight: 900; font-size: 18px; }
@media (max-width: 720px) {
  .entrantes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .entrantes-grid { grid-template-columns: 1fr; }
}

/* ---------- Postre estrella ---------- */
.postre { padding: 80px 0; background: #fff; }
.postre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.postre-img-wrap {
  border: 4px solid #111;
  border-radius: 20px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  box-shadow: 8px 8px 0 #111;
}
.postre-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.postre-text .section-h2 { margin-top: 8px; }
.postre-price {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--display);
  font-size: 42px;
  font-weight: 900;
  color: var(--rosa-fluor);
  -webkit-text-stroke: 1px #111;
}
@media (max-width: 720px) {
  .postre-grid { grid-template-columns: 1fr; gap: 24px; }
  .postre-img-wrap { transform: none; }
}

/* ---------- Locura BURGER overrides ---------- */

/* Logo: la palabra "BURGER" se realza en el subtítulo con un underline verde
   que mantenemos sutil; no rompemos el wordmark "LOCURA". */
.logo-burger { /* hook por si queremos detalles diferenciados */ }
.site-header .logo-burger + .logo-kicker,
.site-footer .logo-burger + .logo-kicker {
  position: relative;
}
.site-header .logo-burger + .logo-kicker::before,
.site-footer .logo-burger + .logo-kicker::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--rosa-fluor);
  opacity: .55;
}

/* Delirio Gallego: descripciones más legibles dentro de la card oscura */
.delirio-desc {
  font-size: 12.5px;
  line-height: 1.4;
  color: #2a2a2a;
  margin: 4px 0 8px;
  font-weight: 500;
}

/* Entrantes con SVG placeholder (cuando no hay foto real) */
.entrante-svg-wrap {
  background: var(--rosa);
  display: flex; align-items: center; justify-content: center;
  border-bottom: 3px solid #111;
}
.entrante-svg-wrap svg { max-height: 100%; }

/* Si el horario aparece como "Cerrado", lo marcamos discreto */
.horario-row .hora { color: var(--rosa); }

