/* ===== TOKENS ===== */
:root {
  --red-900: #071a3a;
  --red-800: #0d2a5e;
  --red-700: #143a86;
  --red-600: #1a52b0;
  --red-500: #2563eb;
  --red-400: #3b82f6;
  --chile:   #38bdf8;
  --cream:   #f3f7fd;
  --cream-2: #e4ecfa;
  --amber:   #ffc24b;
  --lime:    #86c232;
  --ink:     #0e1a30;
  --ink-soft:#52607a;
  --white:   #ffffff;

  --shadow: 0 18px 40px -18px rgba(12, 40, 120, .45);
  --radius: 20px;
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.05; letter-spacing: -.01em; }

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

section { padding: clamp(3.5rem, 8vw, 7rem) 1.25rem; }

.eyebrow {
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.eyebrow--dark { color: var(--red-600); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 1rem;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 10px 22px -10px rgba(255, 160, 40, .8);
}
.btn:hover { transform: translateY(-2px) rotate(-.5deg); box-shadow: 0 16px 30px -12px rgba(255, 160, 40, .9); }
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: none;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }
.btn--sm { padding: .6rem 1.15rem; font-size: .9rem; }
.btn--big { padding: 1.1rem 2.2rem; font-size: 1.15rem; margin-top: 2.5rem; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 26, 58, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: .85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
}
.brand__mark { font-size: 1.6rem; filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.brand__name em { color: var(--amber); font-style: normal; }
.nav__links {
  margin-left: auto;
  display: flex;
  gap: 1.75rem;
}
.nav__links a {
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
  font-size: .98rem;
  transition: color .15s;
}
.nav__links a:hover { color: var(--amber); }
.nav .btn { margin-left: .25rem; }

.nav__toggle {
  display: none;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: .25s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  background: var(--red-900);
}
.nav__mobile a {
  color: var(--white);
  padding: .9rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  font-weight: 500;
}
.nav__mobile.open { max-height: 240px; padding-bottom: 1rem; }

.hero {
  position: relative;
  background:
    radial-gradient(120% 90% at 80% -10%, var(--red-500) 0%, transparent 55%),
    linear-gradient(160deg, var(--red-800) 0%, var(--red-900) 60%, #04122e 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: clamp(3rem, 7vw, 5.5rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}
.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 50% at 15% 100%, rgba(255, 194, 75, .18), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  margin: 0 auto;
  max-width: 760px;
}
.hero__title {
  font-family: 'Anton', 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(3rem, 11vw, 6.2rem);
  text-transform: uppercase;
  letter-spacing: .005em;
  margin-bottom: 1.5rem;
  text-shadow: 0 6px 30px rgba(0,0,0,.35);
}
.hero__title .hl {
  color: var(--amber);
  position: relative;
  display: inline-block;
}
.hero__title .hl::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: .08em;
  height: .14em;
  background: var(--chile);
  border-radius: 4px;
  z-index: -1;
  transform: rotate(-1.2deg);
}
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(243, 247, 253, .88);
  max-width: 46ch;
  margin-bottom: 2.25rem;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero__stats div { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  color: var(--amber);
}
.hero__stats span { font-size: .85rem; color: rgba(255,255,255,.7); }
.hero__taco {
  position: absolute;
  right: -4%;
  bottom: -8%;
  font-size: clamp(11rem, 30vw, 24rem);
  opacity: .9;
  transform: rotate(-14deg);
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.4));
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: rotate(-14deg) translateY(0); }
  50%     { transform: rotate(-11deg) translateY(-18px); }
}

.marquee {
  background: var(--amber);
  color: var(--red-800);
  overflow: hidden;
  padding: .75rem 0;
  border-top: 3px solid var(--red-800);
  border-bottom: 3px solid var(--red-800);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll 22s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .05em;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.section-head {
  max-width: var(--maxw);
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head--left { text-align: left; margin-bottom: 2.5rem; }
.section-head h2, .about h2, .visit h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--red-700);
}
.section-sub {
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}
.section-head--left .section-sub { margin-left: 0; }

.menu { background: var(--cream); }
.menu__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.card {
  display: flex;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--red-500);
}
.card__emoji {
  font-size: 2.6rem;
  flex-shrink: 0;
  width: 66px; height: 66px;
  display: grid;
  place-items: center;
  background: var(--cream-2);
  border-radius: 16px;
}
.card__body { flex: 1; }
.card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
}
.card__row h3 { font-family: 'Fraunces', serif; font-size: 1.25rem; color: var(--ink); }
.price {
  font-family: 'Anton', sans-serif;
  color: var(--red-600);
  font-size: 1.4rem;
  white-space: nowrap;
}
.price--big { font-size: 2.6rem; }
.card p { font-size: .95rem; color: var(--ink-soft); margin-top: .25rem; }
.tag {
  display: inline-block;
  margin-top: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--red-700);
}
.tag--hot { background: var(--red-500); color: var(--white); }

.menu__combo {
  max-width: var(--maxw);
  margin: 2rem auto 0;
  background: linear-gradient(120deg, var(--red-700), var(--red-500));
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: var(--shadow);
}
.menu__combo h3 { font-family: 'Fraunces', serif; font-size: 1.8rem; }
.menu__combo p { color: rgba(255,255,255,.85); margin-top: .35rem; }
.menu__combo-price { display: flex; align-items: center; gap: 1.5rem; }
.menu__combo-price .price { color: var(--amber); }

.about {
  background: linear-gradient(160deg, var(--red-900), #04102a);
  color: var(--cream);
}
.about__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__text h2 { color: var(--white); margin-bottom: 1.25rem; }
.about__text p { color: rgba(243,247,253,.85); margin-bottom: 1rem; }
.about__list { list-style: none; margin-top: 1.5rem; display: grid; gap: .65rem; }
.about__list li {
  font-weight: 500;
  color: var(--white);
  background: rgba(255,255,255,.06);
  padding: .7rem 1rem;
  border-radius: 12px;
  border-left: 3px solid var(--amber);
}
.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ministat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform .2s, background .2s;
}
.ministat:hover { transform: translateY(-4px); background: rgba(255,194,75,.14); }
.ministat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.35rem;
  color: var(--amber);
  margin-bottom: .35rem;
}
.ministat span { font-size: .85rem; color: rgba(255,255,255,.72); }

.visit { background: var(--cream); }
.visit__inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.visit__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.info {
  background: var(--white);
  border: 2px solid var(--cream-2);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.info:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.info__ico { font-size: 2rem; display: block; margin-bottom: .75rem; }
.info h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--red-700); margin-bottom: .5rem; }
.info p { color: var(--ink-soft); }
.info a { color: var(--red-600); font-weight: 600; }

.footer {
  background: #040d20;
  color: rgba(243,247,253,.75);
  padding: 3rem 1.25rem 2rem;
  text-align: center;
}
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.brand--light { font-size: 1.7rem; }
.footer__tag { font-size: .95rem; }
.footer__social { display: flex; gap: 1.5rem; margin-top: .5rem; }
.footer__social a {
  color: var(--amber);
  font-weight: 600;
  transition: opacity .15s;
}
.footer__social a:hover { opacity: .7; }
.footer__copy {
  margin-top: 2rem;
  font-size: .82rem;
  color: rgba(243,247,253,.45);
}

@media (max-width: 860px) {
  .about__inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__inner > .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__mobile { display: flex; }
  .hero__taco { opacity: .35; right: -18%; bottom: -4%; }
  .hero__stats { gap: 1.5rem; }
  .menu__combo { flex-direction: column; text-align: center; align-items: center; }
  .about__cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .hero__stats strong { font-size: 1.5rem; }
  .card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__taco, .marquee__track { animation: none; }
  * { scroll-behavior: auto; }
}
