/* ══════════════════════════════════════════════
   MOSTACHYS — CSS
   Brand: Ten10Design 2025
   Dev: 23web
══════════════════════════════════════════════ */

/* ──────────────────────────────
   VARIABLES
────────────────────────────── */
:root {
  --beige:   #F7EFE2;
  --red:     #FF3C38;
  --orange:  #FF7031;
  --dark:    #1E1E1E;
  --dark-2:  #252525;
  --font-primary: 'Neuething', 'Barlow Semi Condensed', 'Helvetica Neue', Arial, sans-serif;
  --font-mono:    'PT Mono', monospace;
  --navbar-h: 85px;
  --radius:   20px;
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ──────────────────────────────
   FONT FACES
────────────────────────────── */
/* La versión "Test" de Neuething solo cubre ASCII básico (68 glifos).
   unicode-range le indica al browser exactamente qué cubre, así los
   acentuados (á é ñ ó ú…) caen limpiamente al fallback Helvetica/Arial. */
@font-face {
  font-family: 'PT Mono';
  src: url('../neuething-font-family/PTMono-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuething';
  src: url('../neuething-font-family/NeuethingSans-RegularSemiExpanded.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuething';
  src: url('../neuething-font-family/NeuethingSans-SemiBoldSemiExpanded.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neuething';
  src: url('../neuething-font-family/NeuethingSans-BlackSemiExpanded.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--dark);
  color: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--navbar-h);
  padding: 0 2.5rem;
  transition: background-color 0.4s var(--ease),
              border-color     0.4s var(--ease),
              backdrop-filter  0.4s var(--ease);
}

.navbar.scrolled {
  background-color: rgba(30, 30, 30, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 239, 226, 0.07);
}

/* backdrop-filter convierte al navbar en containing block de hijos
   fixed — lo neutralizamos mientras el menú mobile está abierto. */
.navbar.menu-open {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background-color: var(--dark);
  transition: none;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px; */
}

/* Logo */
.nav-logo img {
  height: 61px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.85; }

/* Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, 0.6);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width 0.25s var(--ease);
}
.nav-link:hover {
  color: var(--beige);
}
.nav-link:hover::after { width: 100%; }

/* CTA nav item */
.nav-link--cta {
  color: var(--beige) !important;
  background-color: var(--red);
  padding: 0.55rem 1.35rem;
  border-radius: 100px;
  opacity: 1 !important;
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover {
  background-color: #e8312d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 60, 56, 0.4);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background-color: var(--beige);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--dark);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Noise grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%,
      rgba(255, 60, 56, 0.06) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Inner grid */
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--navbar-h) + 3rem) 2.5rem 3rem;
  position: relative;
  z-index: 1;
}

/* ── Hero Content ── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  max-width: 580px;
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  animation: fadeUp 0.6s var(--ease) 0.1s both;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Title */
.hero-title {
  font-weight: 900;
  font-size: clamp(2.75rem, 5.5vw, 5.25rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--beige);
  animation: fadeUp 0.7s var(--ease) 0.2s both;
}
.hero-title em {
  font-style: normal;
  color: var(--red);
  position: relative;
}

/* Description */
.hero-desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(247, 239, 226, 0.45);
  max-width: 360px;
  animation: fadeUp 0.7s var(--ease) 0.35s both;
}

/* Buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease) 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s, transform 0.25s, box-shadow 0.25s,
              border-color 0.25s, color 0.25s;
}

.btn--primary {
  background-color: var(--red);
  color: var(--beige);
}
.btn--primary:hover {
  background-color: #e8312d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 60, 56, 0.38);
}

.btn--ghost {
  background-color: transparent;
  color: var(--beige);
  border: 1.5px solid rgba(247, 239, 226, 0.25);
}
.btn--ghost:hover {
  border-color: rgba(247, 239, 226, 0.7);
  background-color: rgba(247, 239, 226, 0.04);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, 0.3);
  animation: fadeUp 0.7s var(--ease) 0.65s both;
}
.hero-scroll-line {
  width: 40px; height: 1px;
  background: rgba(247, 239, 226, 0.15);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--orange);
  animation: scrollLine 2s ease-in-out infinite 1s;
}

/* ── Hero Visual ── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.9s var(--ease) 0.3s both;
}

/* Card */
.hero-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  background-color: var(--red);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
}

/* Decorative circle */
.hero-card-deco {
  position: absolute;
  bottom: -25%;
  right: -25%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(247, 239, 226, 0.06);
  pointer-events: none;
}
.hero-card-deco::before {
  content: '';
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  border: 1px solid rgba(247, 239, 226, 0.08);
}

/* Logo inside card */
.hero-card-logo {
  width: 72%;
  max-width: 260px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.18));
}

/* Stat inside card */
.hero-card-stat {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1;
}
.stat-number {
  display: block;
  font-weight: 900;
  font-size: clamp(3.5rem, 6vw, 5rem);
  color: var(--beige);
  letter-spacing: -0.03em;
  opacity: 0.9;
}
.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, 0.6);
  margin-top: 0.35rem;
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background-color: var(--dark-2);
  color: var(--beige);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(247, 239, 226, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

/* ── Ticker ── */
.hero-ticker {
  position: relative;
  z-index: 1;
  background-color: var(--red);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  animation: ticker 24s linear infinite;
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--beige);
}
.ticker-track i {
  font-style: normal;
  color: rgba(247, 239, 226, 0.4);
  font-size: 0.55rem;
}

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes scrollLine {
  0%   { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

/* ══════════════════════════════════════════════
   HERO CARD — PHOTO VARIANT
══════════════════════════════════════════════ */
.hero-card {
  background-color: var(--dark); /* fallback */
}

.hero-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}
.hero-card:hover .hero-card-photo { transform: scale(1.04); }

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(255, 60, 56, 0.12) 0%,
    rgba(30, 30, 30, 0.55) 50%,
    rgba(30, 30, 30, 0.88) 100%
  );
  z-index: 1;
}

.hero-card-logo {
  z-index: 2;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.4));
}

.hero-card-stat { z-index: 2; }

/* ══════════════════════════════════════════════
   SHARED SECTION UTILITIES
══════════════════════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}
.section-eyebrow--red { color: var(--red); }
.section-eyebrow--red::before { background: var(--red); }

.section-title {
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--beige);
}
.section-title em {
  font-style: normal;
  color: var(--red);
}
.section-title--dark { color: var(--dark); }
.section-title--dark em { color: var(--red); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay  { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }

/* ══════════════════════════════════════════════
   NOSOTROS
══════════════════════════════════════════════ */
.nosotros {
  background-color: var(--dark);
  overflow: hidden;
}

.nosotros-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Media side ── */
.nosotros-media {
  position: relative;
  height: 560px;
}

.nosotros-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 85%;
  border-radius: var(--radius);
  overflow: hidden;
}
.nosotros-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.nosotros-img-main:hover img { transform: scale(1.04); }

.nosotros-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 52%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.nosotros-img-float img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.nosotros-img-float:hover img { transform: scale(1.04); }

.nosotros-year-badge {
  position: absolute;
  top: 2rem; right: 0;
  background-color: var(--red);
  color: var(--beige);
  padding: 1rem 1.25rem;
  border-radius: 12px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 8px 30px rgba(255, 60, 56, 0.35);
}
.year-number {
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.year-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.3rem;
}

/* ── Content side ── */
.nosotros-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.nosotros-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247, 239, 226, 0.55);
  max-width: 460px;
}

.nosotros-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 0.5rem;
}

.nstat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.nstat-number {
  font-weight: 900;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.03em;
  color: var(--beige);
  line-height: 1;
}
.nstat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, 0.4);
}
.nstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(247, 239, 226, 0.12);
  flex-shrink: 0;
}

/* ── Values strip ── */
.nosotros-values {
  background-color: var(--beige);
}

.nosotros-values-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(3.5rem, 6vw, 5rem) 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-item {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem;
  border-radius: var(--radius);
  background-color: rgba(30, 30, 30, 0.04);
  border: 1px solid rgba(30, 30, 30, 0.07);
  transition: background-color 0.25s, border-color 0.25s;
}
.value-item:hover {
  background-color: rgba(30, 30, 30, 0.07);
  border-color: rgba(30, 30, 30, 0.12);
}

.value-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.value-title {
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  color: var(--dark);
  line-height: 1.2;
}
.value-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(30, 30, 30, 0.55);
}

/* ══════════════════════════════════════════════
   MENÚ
══════════════════════════════════════════════ */
.menu {
  background-color: var(--beige);
}

.menu-header {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 2.5rem 3rem;
}

.menu-header-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 640px;
}

.menu-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(30, 30, 30, 0.5);
  max-width: 480px;
}

/* ── Filter ── */
.menu-filter {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1.5px solid rgba(30, 30, 30, 0.18);
  background: transparent;
  color: rgba(30, 30, 30, 0.55);
  cursor: pointer;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}
.filter-btn:hover {
  border-color: var(--dark);
  color: var(--dark);
}
.filter-btn.active {
  background-color: var(--dark);
  border-color: var(--dark);
  color: var(--beige);
}

/* ── Grid ── */
.menu-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background-color: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30, 30, 30, 0.18);
}

.menu-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }

.menu-card-img--logo {
  background-color: var(--charcoal, #1a1a1a);
}
.menu-card-img--logo img {
  object-fit: contain;
  padding: 1.5rem;
}
.menu-card:hover .menu-card-img--logo img { transform: none; }

.menu-card-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background-color: var(--red);
  color: var(--beige);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.menu-card-body {
  padding: 1.35rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-card-title {
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--beige);
  line-height: 1.2;
}

.menu-card-desc {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(247, 239, 226, 0.45);
}

/* ── Menu CTA ── */
.menu-cta {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3.5rem 2.5rem clamp(5rem, 10vw, 8rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.menu-cta p {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.55);
}

.btn--dark {
  background-color: var(--dark);
  color: var(--beige);
}
.btn--dark:hover {
  background-color: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(30, 30, 30, 0.18);
}

.btn--sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.72rem;
}

.btn--lg {
  padding: 1.05rem 2.5rem;
  font-size: 0.85rem;
}

/* ══════════════════════════════════════════════
   LOCALES
══════════════════════════════════════════════ */
.locales {
  background-color: var(--dark);
  overflow: hidden;
}

.locales-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.locales-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 540px;
}

.locales-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.local-card {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--dark-2);
  border: 1px solid rgba(247, 239, 226, 0.06);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.local-card:hover {
  border-color: rgba(247, 239, 226, 0.12);
  transform: translateY(-4px);
}

.local-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.local-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.local-card:hover .local-card-img img { transform: scale(1.05); }

.local-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 50%,
    rgba(30, 30, 30, 0.5) 100%
  );
}

.local-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.local-number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.local-name {
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  color: var(--beige);
  line-height: 1;
}

.local-address,
.local-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(247, 239, 226, 0.5);
  line-height: 1.4;
}
.local-address svg,
.local-hours svg {
  flex-shrink: 0;
  color: rgba(247, 239, 226, 0.3);
}

/* ══════════════════════════════════════════════
   FRANQUICIA
══════════════════════════════════════════════ */
.franquicia {
  background-color: #161616;
  overflow: hidden;
  position: relative;
}
.franquicia::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 60, 56, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.franquicia-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 8rem) 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.franquicia-media {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.franquicia-img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
  transition: transform 0.6s var(--ease);
}
.franquicia-media:hover .franquicia-img { transform: scale(1.02) rotate(-1deg); }

.franquicia-media-deco {
  position: absolute;
  inset: -5%;
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid rgba(255, 60, 56, 0.12);
  pointer-events: none;
}

.franquicia-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.franquicia-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(247, 239, 226, 0.5);
  max-width: 440px;
}

.franquicia-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.pillar-check {
  width: 26px; height: 26px;
  flex-shrink: 0;
  background-color: rgba(255, 60, 56, 0.12);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 2px;
}

.pillar-text h4 {
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--beige);
  margin-bottom: 0.25rem;
}
.pillar-text p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 239, 226, 0.45);
}

.franquicia-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.franquicia-note {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(247, 239, 226, 0.3);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background-color: var(--dark);
  border-top: 1px solid rgba(247, 239, 226, 0.06);
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(4rem, 7vw, 5.5rem) 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-link { display: inline-block; }
.footer-logo {height: 160px;width: auto;/* margin: 0 auto; */}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(247, 239, 226, 0.4);
  max-width: 240px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: rgba(247, 239, 226, 0.45);
  transition: color 0.2s;
}
.social-link:hover { color: var(--beige); }

.footer-nav-title {
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 226, 0.35);
  margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-contact a,
.footer-contact li {
  font-size: 0.9rem;
  color: rgba(247, 239, 226, 0.5);
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--beige); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.5rem 2.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(247, 239, 226, 0.06);
  flex-wrap: wrap;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(247, 239, 226, 0.25);
}

.footer-bottom span {
  color: rgba(247, 239, 226, 0.4);
}

/* ══════════════════════════════════════════════
   HERO — IMAGEN MOBILE
══════════════════════════════════════════════ */
.hero-img-mobile {
  display: none;
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.hero-img-mobile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, var(--dark), transparent);
  z-index: 1;
  pointer-events: none;
}

.hero-img-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .hero-inner   { gap: 2rem; }
  .hero-card    { max-width: 360px; }

  .nosotros-inner { gap: 3rem; }
  .nosotros-media { height: 480px; }

  .franquicia-inner { gap: 3rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile ── */
@media (max-width: 860px) {

  /* Navbar */
  .navbar { padding: 0 1.5rem; }
  .nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    top: var(--navbar-h);
    background-color: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    border-top: 1px solid rgba(247, 239, 226, 0.06);
  }
  .nav-menu.open  { display: flex; }
  .nav-link {
    font-size: 1.4rem;
    letter-spacing: 0.04em;
    color: var(--beige) !important;
    opacity: 1 !important;
  }
  .nav-link::after   { display: none; }
  .nav-link--cta     { font-size: 1rem; }
  .nav-toggle        { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: calc(var(--navbar-h) + 2.5rem) 1.5rem 1.5rem;
    text-align: center;
    justify-items: center;
  }
  .hero-content  { align-items: center; }
  .hero-desc     { text-align: center; }
  .hero-eyebrow  { justify-content: center; }
  .hero-actions  { justify-content: center; }
  .hero-scroll   { display: none; }
  .hero-visual   { display: none; }
  .hero-img-mobile { display: block; }

  /* Nosotros */
  .nosotros-inner {
    grid-template-columns: 1fr;
    padding: clamp(4rem, 8vw, 6rem) 1.5rem 3rem;
  }
  .nosotros-media  { height: 360px; }
  .nosotros-content {
    align-items: center;
    text-align: center;
  }
  .nosotros-desc   { max-width: 100%; }
  .nosotros-stats  {
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
  }
  /* Ocultar línea del eyebrow en contextos centrados */
  .nosotros-content .section-eyebrow::before,
  .franquicia-content .section-eyebrow::before { display: none; }

  .nosotros-values-inner {
    grid-template-columns: 1fr;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  /* Menú */
  .menu-header  { padding: clamp(4rem, 8vw, 6rem) 1.5rem 2.5rem; }
  .menu-filter  {
    padding: 0 1.5rem 2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu-filter::-webkit-scrollbar { display: none; }
  .filter-btn   { flex-shrink: 0; }
  .menu-grid    {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
    gap: 1rem;
  }
  .menu-cta     { padding: 3rem 1.5rem clamp(4rem, 8vw, 6rem); }

  /* Locales */
  .locales-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
  .locales-grid  { grid-template-columns: 1fr; }

  /* Franquicia */
  .franquicia-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .franquicia-content {
    align-items: center;
    text-align: center;
  }
  .franquicia-desc  { max-width: 100%; }
  .franquicia-pillars { width: 100%; }
  .pillar           { text-align: left; }
  .franquicia-cta-wrap { align-items: center; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .footer-brand  { grid-column: auto; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ── Mobile chico ── */
@media (max-width: 480px) {
  .hero-title    { font-size: 2.2rem; }
  .hero-img-mobile { height: 399px; }

  .nosotros-media { height: 300px; }

  .menu-grid    { grid-template-columns: 1fr; }

  .franquicia-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
