/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --gold-light:   #F5D78E;
  --gold-mid:     #C9A84C;
  --gold-dark:    #8B6914;
  --gold-grad:    linear-gradient(135deg, #F5D78E 0%, #C9A84C 50%, #8B6914 100%);
  --black:        #0d0d0d;
  --surface:      #141414;
  --surface-2:    #1c1c1c;
  --border:       rgba(201,168,76,0.15);
  --text-primary: #f0ece4;
  --text-muted:   #8a8070;
  --text-dim:     #4a4540;
  --font:         'Outfit', sans-serif;
  --radius:       14px;
  --radius-lg:    24px;
  --transition:   cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul { list-style: none; }

/* ─── SCROLL REVEAL ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.32s; }
.reveal--delay-4 { transition-delay: 0.44s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── SHARED TOKENS ─────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s var(--transition), box-shadow 0.2s var(--transition);
}
.btn:active { transform: scale(0.97); }
.btn--gold {
  background: var(--gold-grad);
  color: #1a1000;
}
.btn--gold:hover { box-shadow: 0 6px 28px rgba(201,168,76,0.35); transform: translateY(-1px); }
.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.82rem; }
.btn--full { width: 100%; justify-content: center; padding: 1rem; font-size: 1rem; }
.btn svg { width: 18px; height: 18px; }

/* ─── STORE BUTTONS ──────────────────────────────────────── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.06);
  color: var(--text-primary);
  font-size: 0.88rem;
  transition: border-color 0.25s, background 0.25s, transform 0.2s var(--transition);
}
.store-btn:hover { border-color: var(--gold-mid); background: rgba(201,168,76,0.12); transform: translateY(-2px); }
.store-btn svg { width: 22px; height: 22px; flex-shrink: 0; fill: var(--text-primary); }
.store-btn div { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn span { font-size: 0.7rem; color: var(--text-muted); }
.store-btn strong { font-weight: 700; font-size: 0.95rem; }
.store-btn--dark { background: var(--surface); border-color: var(--border); }
.store-btn--dark:hover { background: var(--surface-2); }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s;
}
.nav.is-scrolled {
  background: rgba(13,13,13,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 36px; width: auto; }
.nav__logo-text { font-size: 1.4rem; font-weight: 900; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 2rem; margin-left: auto; }
.nav__links a { font-size: 0.88rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav__links a:hover { color: var(--gold-light); }
.nav__cta { margin-left: 1rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav__mobile { display: none; flex-direction: column; gap: 0; background: var(--surface); border-top: 1px solid var(--border); padding: 1rem 2rem; }
.nav__mobile a { padding: 0.85rem 0; font-size: 1rem; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile.is-open { display: flex; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.80) 50%, rgba(13,13,13,0.5) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-mid);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: rgba(201,168,76,0.07);
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 44ch;
}
.hero__actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 1.5rem; font-weight: 800; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero__stat span { font-size: 0.72rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.hero__stat-divider { width: 1px; height: 36px; background: var(--border); }
.hero__visual { display: flex; justify-content: center; align-items: center; }
.hero__phone-wrap {
  position: relative;
  width: 260px;
}
.hero__phone-img { display: none; }
.hero__phone-frame {
  width: 260px;
  height: 530px;
  background: #111111;
  border-radius: 38px;
  border: 1.5px solid rgba(201,168,76,0.25);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.04), 0 40px 80px rgba(0,0,0,0.65);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__phone-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 5px;
  background: rgba(201,168,76,0.18);
  border-radius: 3px;
  z-index: 2;
}
.hero__phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 52px 24px 32px;
  background: radial-gradient(ellipse at 50% 30%, rgba(197,155,60,0.13) 0%, transparent 65%);
  gap: 1.4rem;
}
.hero__phone-logo {
  width: 130px;
  filter: drop-shadow(0 8px 24px rgba(201,168,76,0.35));
}
.hero__phone-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero__phone-pill {
  padding: 0.6rem 1.5rem;
  background: var(--gold-grad);
  color: #0d0d0d;
  font-weight: 800;
  font-size: 0.82rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}
.hero__phone-dots {
  display: flex;
  gap: 6px;
  margin-top: 0.5rem;
}
.hero__phone-dots span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
}
.hero__phone-dots span:first-child { background: var(--gold-mid); }
.hero__phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.18) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.hero__scroll-hint span { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.hero__scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-mid), transparent);
  animation: scrollArrow 2s ease-in-out infinite;
}
@keyframes scrollArrow {
  0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  padding: 8rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.about__img-stack {
  position: relative;
  height: 540px;
}
.about__img {
  position: absolute;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 1px solid var(--border);
}
.about__img--back {
  width: 78%;
  height: 85%;
  top: 0; left: 0;
  filter: brightness(0.85);
}
.about__img--front {
  width: 65%;
  height: 72%;
  bottom: 0; right: 0;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about__img--solo {
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  object-position: top center;
  filter: brightness(0.92);
  border: 1.5px solid rgba(201,168,76,0.2);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about__img-tag {
  position: absolute;
  bottom: 2.5rem;
  left: -0.5rem;
  background: var(--gold-grad);
  color: #1a1000;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  box-shadow: 0 12px 32px rgba(201,168,76,0.4);
}
.about__img-tag span { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.1em; }
.about__img-tag strong { font-size: 1.6rem; font-weight: 900; }
.about__label { display: block; margin-bottom: 0.75rem; }
.about__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 52ch;
}
.about__body strong { color: var(--gold-light); font-weight: 600; }
.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__pillar-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about__pillar-icon svg { width: 18px; height: 18px; stroke: var(--gold-mid); }
.about__pillar div { display: flex; flex-direction: column; }
.about__pillar strong { font-size: 0.9rem; font-weight: 700; color: var(--text-primary); }
.about__pillar span { font-size: 0.82rem; color: var(--text-muted); }

/* ─── SCHEDULE BANNER ────────────────────────────────────── */
.schedule-banner {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.schedule-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.schedule-banner__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.schedule-banner__item svg { width: 16px; height: 16px; stroke: var(--gold-mid); flex-shrink: 0; }
.schedule-banner__item strong { color: var(--text-primary); }
.schedule-banner__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-dim); }

/* ─── RESTAURANTS ────────────────────────────────────────── */
.restaurants {
  padding: 8rem 2rem;
}
.restaurants__inner { max-width: 1320px; margin: 0 auto; }
.restaurants__header {
  margin-bottom: 3rem;
}
.restaurants__filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: transparent;
  transition: all 0.2s var(--transition);
}
.filter-btn:hover { border-color: var(--gold-mid); color: var(--gold-light); }
.filter-btn--active { background: rgba(201,168,76,0.12); border-color: var(--gold-mid); color: var(--gold-light); }
.restaurants__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.resto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s var(--transition), box-shadow 0.25s;
  position: relative;
}
.resto-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}
.resto-card__img-wrap {
  background: var(--surface-2);
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.resto-card__logo {
  max-height: 90px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
}
.resto-card__body { padding: 1.25rem 1.4rem 1.4rem; }
.resto-card__type { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); }
.resto-card__name { font-size: 1.1rem; font-weight: 800; margin: 0.3rem 0 0.6rem; letter-spacing: -0.01em; }
.resto-card__desc { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.resto-card__hours,
.resto-card__phone {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}
.resto-card__hours svg,
.resto-card__phone svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 2px; stroke: var(--text-dim); }
.resto-card__delivery {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.6rem;
  padding: 0.35rem 0.65rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.resto-card__delivery svg { width: 13px; height: 13px; flex-shrink: 0; stroke: var(--gold-mid); }
.resto-card__delivery strong { color: var(--gold-light); font-weight: 700; }
.resto-card__delivery em { color: var(--text-dim); font-style: normal; font-size: 0.72rem; }
.resto-card--levar { border-color: rgba(201,168,76,0.25); }
.resto-card__levar-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold-grad);
  color: #1a1000;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 100px;
}
.resto-card.is-hidden { display: none; }

/* ─── APP SECTION ────────────────────────────────────────── */
.app-section {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.app-section__badges {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.app-section__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.app-section__stars {
  display: flex;
  gap: 2px;
}
.app-section__stars svg { width: 14px; height: 14px; fill: var(--gold-mid); }
.app-section__mockup {
  position: relative;
  display: flex;
  justify-content: center;
}
.app-section__mockup img {
  width: 260px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.app-section__mockup-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.15) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ─── CONTACT ────────────────────────────────────────────── */
.contact {
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}
.contact::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 20%, rgba(201,168,76,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.contact__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
}
.contact__header { margin-bottom: 4rem; }
.contact__layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.contact__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.contact__tab {
  flex: 1;
  padding: 0.7rem 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  transition: background 0.2s, color 0.2s;
  border-right: 1px solid var(--border);
}
.contact__tab:last-child { border-right: none; }
.contact__tab--active { background: rgba(201,168,76,0.1); color: var(--gold-light); }
.contact__tab:hover:not(.contact__tab--active) { background: rgba(255,255,255,0.03); color: var(--text-primary); }

.contact__form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.04em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group select { cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group.is-hidden { display: none; }

.contact__form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 0.5rem;
}
.contact__form-note a { color: var(--gold-mid); }
.contact__form-note a:hover { color: var(--gold-light); }

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 4rem 2rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.contact__success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.contact__success-icon svg { width: 24px; height: 24px; stroke: var(--gold-mid); }
.contact__success h3 { font-size: 1.2rem; font-weight: 800; }
.contact__success p { font-size: 0.88rem; color: var(--text-muted); }

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact__info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact__info-card h3 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 1.25rem; }
.contact__info-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.contact__info-item:last-child { border-bottom: none; }
.contact__info-item:hover { color: var(--gold-light); }
.contact__info-item svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--gold-mid); }
.contact__hours-table { display: flex; flex-direction: column; gap: 0; }
.contact__hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(201,168,76,0.06);
}
.contact__hours-row:last-child { border-bottom: none; }
.contact__hours-open { color: #4caf80; font-weight: 600; font-size: 0.78rem; }
.contact__hours-row--closed { opacity: 0.45; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem 2rem;
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer__logo-text { display: block; font-size: 1.6rem; font-weight: 900; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 0.75rem; letter-spacing: -0.02em; }
.footer__brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.25rem; }
.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer__social:hover { border-color: var(--gold-mid); color: var(--gold-light); }
.footer__social svg { width: 17px; height: 17px; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.85rem; color: var(--text-muted); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__app { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__app h4 { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); margin-bottom: 0.5rem; }
.footer__store {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.5rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, color 0.2s;
}
.footer__store:hover { border-color: var(--gold-mid); color: var(--gold-light); }
.footer__bottom {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ─── STATS SECTION ──────────────────────────────────────── */
.stats-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 2rem;
}
.stats-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  text-align: center;
  min-width: 140px;
}
.stats-item__num {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stats-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stats-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── OPEN BADGE ──────────────────────────────────────────── */
.resto-card__img-wrap { position: relative; }
.open-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px 4px 7px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
  border: 1px solid;
  z-index: 2;
}
.open-badge--open {
  background: rgba(16, 36, 22, 0.85);
  border-color: rgba(74, 222, 128, 0.3);
  color: #4ade80;
}
.open-badge--closed {
  background: rgba(36, 16, 16, 0.85);
  border-color: rgba(248, 113, 113, 0.25);
  color: #f87171;
}
.open-badge__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-badge--open .open-badge__dot {
  background: #4ade80;
  animation: pulse-green 2s ease-in-out infinite;
}
.open-badge--closed .open-badge__dot { background: #f87171; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  60% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}

/* ─── COVERAGE ────────────────────────────────────────────── */
.coverage {
  padding: 8rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.coverage__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.coverage__text { display: flex; flex-direction: column; }
.coverage__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.coverage__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-mid);
  border: 1px solid var(--border);
  background: rgba(201,168,76,0.05);
}
.coverage__chip svg { width: 11px; height: 11px; stroke: var(--gold-mid); }
.coverage__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.coverage__map iframe { display: block; filter: grayscale(20%) invert(5%); }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reviews__inner { max-width: 1320px; margin: 0 auto; }
.reviews__header { margin-bottom: 3.5rem; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: border-color 0.25s, transform 0.25s var(--transition);
}
.review-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
}
.review-card__stars {
  display: flex;
  gap: 3px;
}
.review-card__stars svg { width: 14px; height: 14px; fill: var(--gold-mid); }
.review-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.12);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold-mid);
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 0.85rem; font-weight: 700; color: var(--text-primary); }
.review-card__author span { font-size: 0.72rem; color: var(--text-dim); }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq { padding: 8rem 2rem; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__inner { max-width: 860px; margin: 0 auto; }
.faq__header { margin-bottom: 3rem; }
.faq__list { display: flex; flex-direction: column; gap: 0; }
.faq__item {
  border-bottom: 1px solid var(--border);
}
.faq__item:first-child { border-top: 1px solid var(--border); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--gold-light); }
.faq__q svg {
  width: 18px; height: 18px;
  stroke: var(--gold-mid);
  flex-shrink: 0;
  transition: transform 0.3s var(--transition);
}
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--transition), padding 0.3s;
}
.faq__a p {
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.faq__a p strong { color: var(--text-primary); font-weight: 600; }
.faq__a p a { color: var(--gold-mid); }
.faq__a p a:hover { color: var(--gold-light); }
.faq__item.is-open .faq__a { max-height: 300px; }

/* ─── RESTAURANT MENU MODAL ──────────────────────────────── */
.resto-card { cursor: pointer; }

.resto-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.resto-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}
.resto-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px);
}
.resto-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  width: min(680px, 100%);
  max-height: calc(100vh - 3rem);
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.resto-modal.is-open .resto-modal__panel {
  transform: translateY(0) scale(1);
}
.resto-modal__close {
  position: sticky;
  top: 1rem;
  float: right;
  margin: 1rem 1rem -2.5rem auto;
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
  z-index: 2;
}
.resto-modal__close:hover { color: var(--text); background: rgba(255,255,255,0.14); }
.resto-modal__close svg { width: 0.9rem; height: 0.9rem; }
.resto-modal__header {
  padding: 2rem 2rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.resto-modal__logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--bg);
  padding: 8px;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.resto-modal__info h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.resto-modal__body { padding: 1.5rem 2rem 2.5rem; }
.menu-category { margin-bottom: 1.75rem; }
.menu-category__title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.menu-item:last-child { border-bottom: none; }
.menu-item__name { font-size: 0.88rem; color: var(--text); }
.menu-item__price {
  color: var(--gold-mid);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.resto-modal__delivery {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-top: 0.6rem;
  padding: 0.4rem 0.65rem;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.resto-modal__delivery svg { width: 13px; height: 13px; flex-shrink: 0; stroke: var(--gold-mid); }
.resto-modal__delivery strong { color: var(--gold-light); font-weight: 700; }
.resto-modal__delivery-sep { color: var(--text-dim); }
.resto-modal__note {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}
.resto-modal__empty {
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ─── ABOUT PHOTO GRID ───────────────────────────────────── */
.about__photo-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.about__photo-item {
  overflow: hidden;
  position: relative;
}
.about__photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
  display: block;
}
.about__photo-item:hover img { transform: scale(1.06); }

/* ─── SOCIAL PROOF (app + reviews unificados) ────────────── */
.social-proof {
  padding: 8rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.social-proof__inner { max-width: 1320px; margin: 0 auto; }
.social-proof__top {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.social-proof__cta-box {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.social-proof__cta-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: var(--text-muted);
}
.social-proof__stars { display: flex; gap: 3px; }
.social-proof__stars svg { width: 16px; height: 16px; fill: var(--gold-mid); }
.social-proof__cta-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.social-proof__badges {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.social-proof__reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── FAQ CARDS ──────────────────────────────────────────── */
.faq__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.faq__card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: border-color 0.25s, transform 0.25s var(--transition), box-shadow 0.25s;
}
.faq__card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.faq__card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}
.faq__card-icon svg { width: 20px; height: 20px; stroke: var(--gold-mid); }
.faq__card h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  letter-spacing: -0.01em;
}
.faq__card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq__card p strong { color: var(--text-primary); font-weight: 600; }
.faq__card p a { color: var(--gold-mid); }
.faq__card p a:hover { color: var(--gold-light); }

/* ─── FOOD STRIP ─────────────────────────────────────────── */
.food-strip { overflow: hidden; }
.food-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 280px;
}
.food-strip__item {
  position: relative;
  overflow: hidden;
}
.food-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--transition);
  display: block;
}
.food-strip__item:hover img { transform: scale(1.07); }
.food-strip__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.8) 0%, rgba(13,13,13,0.1) 55%, transparent 100%);
  pointer-events: none;
}
.food-strip__caption {
  position: absolute;
  bottom: 1rem;
  left: 1.1rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-stack { height: 380px; max-width: 480px; }
  .about__photo-grid { height: 380px; max-width: 480px; }
  .app-section__inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .coverage__inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .social-proof__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .social-proof__reviews { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero__visual { display: none; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.5rem); }
  .hero__stats { gap: 1rem; }
  .about { padding: 5rem 1.5rem; }
  .about__img-stack { display: none; }
  .about__photo-grid { display: none; }
  .about__inner { grid-template-columns: 1fr; }
  .restaurants { padding: 5rem 1.5rem; }
  .restaurants__grid { grid-template-columns: 1fr; }
  .app-section { padding: 5rem 1.5rem; }
  .app-section__mockup { display: none; }
  .contact { padding: 5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .schedule-banner__inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .schedule-banner__dot { display: none; }
  .stats-section__inner { gap: 1.5rem; }
  .stats-divider { width: 40px; height: 1px; }
  .coverage { padding: 5rem 1.5rem; }
  .reviews { padding: 5rem 1.5rem; }
  .reviews__grid { grid-template-columns: 1fr; }
  .faq { padding: 5rem 1.5rem; }
  .faq__cards { grid-template-columns: 1fr; }
  .social-proof { padding: 5rem 1.5rem; }
  .social-proof__reviews { grid-template-columns: 1fr; }
  .social-proof__badges { flex-direction: row; flex-wrap: wrap; }
  .food-strip__grid { grid-template-columns: repeat(2, 1fr); height: 360px; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .store-btn { width: 100%; }
  .app-section__badges { flex-direction: column; }
  .stats-item { min-width: 100px; }
  .resto-modal__header { flex-direction: column; align-items: flex-start; }
  .resto-modal__body { padding: 1rem 1.25rem 2rem; }
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
  }
  .hero__stat { align-items: center; }
  .hero__stat-divider { display: none; }
  .hero__stat strong { font-size: 1.2rem; }
  .hero__stat span { font-size: 0.58rem; letter-spacing: 0.04em; }
}
