:root {
  --bg: #070707;
  --text: #fff8ef;
  --muted: #c7b9aa;
  --line: rgba(255, 255, 255, 0.08);
  --red: #d7261e;
  --yellow: #ffc928;
  --white: #ffffff;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 24px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  background:
    radial-gradient(circle at top, rgba(215, 38, 30, 0.24), transparent 24%),
    radial-gradient(circle at 80% 10%, rgba(255, 201, 40, 0.14), transparent 18%),
    linear-gradient(180deg, #0a0a0a 0%, #070707 55%, #101010 100%);
  color: var(--text);
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.72);
  border-bottom: 1px solid var(--line);
}
.brand, .footer__brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red), #ff7c24); font-family: "Archivo Black", sans-serif;
  color: var(--white); box-shadow: 0 12px 28px rgba(215, 38, 30, 0.35);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong, .footer strong { font-size: 1rem; }
.brand__text small, .footer p, .footer span, .footer a { color: var(--muted); }
.nav { display: none; align-items: center; gap: 22px; font-weight: 600; }

.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent; font-weight: 800; letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 46px; padding: 0 18px; }
.button--primary { background: linear-gradient(135deg, var(--yellow), #ff8f1f); color: #1f1203; box-shadow: 0 18px 30px rgba(255, 159, 31, 0.25); }
.button--secondary { background: var(--white); color: #0f0f0f; }
.button--ghost, .button--ghost-dark { border-color: rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.04); color: var(--white); }
.button--ghost-dark { border-color: rgba(0, 0, 0, 0.12); color: #1b1b1b; background: rgba(0, 0, 0, 0.04); }

.hero { position: relative; overflow: clip; min-height: calc(100vh - 79px); }
.hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.92) 0%, rgba(7, 7, 7, 0.76) 48%, rgba(7, 7, 7, 0.38) 100%),
    linear-gradient(180deg, rgba(7, 7, 7, 0.15) 0%, rgba(7, 7, 7, 0.64) 100%);
}
.hero__grid, .section, .footer { width: min(calc(100% - 32px), var(--max-width)); margin: 0 auto; }
.hero__grid { position: relative; z-index: 1; display: grid; gap: 28px; padding: 72px 0 48px; }
.hero__copy h1, .section__heading h2, .final-cta h2, .location h2 {
  margin: 0; font-family: "Archivo Black", sans-serif; text-transform: uppercase; line-height: 0.96; letter-spacing: -0.03em;
}
.hero__copy h1 { max-width: 8ch; font-size: clamp(3.3rem, 12vw, 7.2rem); }
.hero__lead, .section__heading p, .delivery__card p, .story-card p, .community-card p, .location__copy p, .final-cta p, .menu-card p, .combo-card p {
  color: var(--muted); font-size: clamp(1rem, 2vw, 1.1rem); line-height: 1.55;
}
.hero__lead { max-width: 34rem; margin: 18px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero__microcopy, .eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-weight: 800; font-size: 0.78rem; }
.eyebrow { color: var(--yellow); margin-bottom: 14px; }
.hero__microcopy { color: var(--text); margin-top: 18px; }
.hero__panel { display: grid; gap: 14px; }
.hero__stat, .delivery__card, .story-card, .community-card, .combo-card, .map-card, .final-cta__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.hero__stat { padding: 18px; backdrop-filter: blur(10px); }
.hero__stat span, .delivery__items span, .combo-card__label {
  display: inline-flex; margin-bottom: 10px; color: var(--yellow); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero__stat strong, .delivery__items strong, .menu-card__top strong, .combo-card strong { font-size: 1.18rem; }
.hero__stat small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.5; }
.section { padding: 88px 0; }
.section--featured { padding-top: 110px; }
.section--accent { position: relative; }
.section--accent::before {
  content: ""; position: absolute; inset: 18% 0 auto auto; width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255, 201, 40, 0.28), transparent 70%); filter: blur(6px);
}
.section__heading { max-width: 760px; margin-bottom: 32px; }
.section__heading h2, .final-cta h2, .location h2 { font-size: clamp(2.2rem, 7vw, 4.4rem); }
.menu-grid, .combo-grid, .story-grid, .community-grid, .gallery-grid, .location { display: grid; gap: 18px; }
.menu-card {
  position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(215, 38, 30, 0.08));
  border: 1px solid var(--line); border-radius: 28px; transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.menu-card:hover { transform: translateY(-6px); border-color: rgba(255, 201, 40, 0.36); box-shadow: 0 22px 34px rgba(0, 0, 0, 0.34); }
.menu-card img { aspect-ratio: 1 / 0.9; object-fit: cover; }
.menu-card__body { padding: 18px; }
.menu-card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.menu-card__top h3, .combo-card h3, .story-card h3, .community-card h3 { margin: 0; font-size: 1.4rem; }
.badge {
  position: absolute; left: 16px; top: 16px; z-index: 1; display: inline-flex; padding: 8px 12px; border-radius: 999px;
  background: rgba(7, 7, 7, 0.72); border: 1px solid rgba(255, 255, 255, 0.12); font-size: 0.8rem; font-weight: 800;
}
.combo-card, .story-card, .community-card { padding: 24px; }
.combo-card strong { display: block; margin: 18px 0; font-size: 2rem; font-family: "Archivo Black", sans-serif; }
.delivery__card { padding: 28px; }
.delivery__items { display: grid; gap: 18px; margin: 26px 0; }
.story-grid, .community-grid { grid-template-columns: 1fr; }
.gallery-grid { grid-template-columns: repeat(2, 1fr); }
.gallery-item { overflow: hidden; min-height: 180px; border-radius: 24px; border: 1px solid var(--line); background: #0f0f0f; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform 0.3s ease, filter 0.3s ease; }
.gallery-item:hover img { transform: scale(1.04); filter: saturate(1.08); }
.location { align-items: stretch; }
.map-card {
  position: relative; overflow: hidden; min-height: 340px;
  background: linear-gradient(135deg, rgba(255, 201, 40, 0.08), rgba(215, 38, 30, 0.12)), #f4e8d7;
}
.map-card__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0, 0, 0, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
}
.map-card__pin {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%); min-width: 170px;
  padding: 20px 18px 16px; border-radius: 22px; background: rgba(7, 7, 7, 0.86); color: var(--white); text-align: center; box-shadow: var(--shadow);
}
.map-card__pin span { display: block; width: 18px; height: 18px; margin: 0 auto 12px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 10px rgba(215, 38, 30, 0.18); }
.final-cta__card {
  padding: 28px;
  background: radial-gradient(circle at top right, rgba(255, 201, 40, 0.18), transparent 28%), linear-gradient(135deg, rgba(215, 38, 30, 0.2), rgba(255, 255, 255, 0.05));
}
.footer { display: grid; gap: 24px; padding: 0 0 110px; }
.footer__info { display: grid; gap: 10px; }
.floating-whatsapp {
  position: fixed; right: 16px; bottom: 16px; z-index: 40; display: inline-flex; align-items: center; gap: 10px;
  min-height: 58px; padding: 0 18px; border-radius: 999px; background: linear-gradient(135deg, #24d366, #0d9f47);
  color: #07110a; font-weight: 900; box-shadow: 0 20px 30px rgba(36, 211, 102, 0.28);
}
.floating-whatsapp__dot { width: 10px; height: 10px; border-radius: 999px; background: #dfffe9; animation: pulse 1.8s infinite; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.5; } }

@media (min-width: 760px) {
  .topbar { padding: 18px 28px; }
  .nav { display: flex; }
  .hero__grid { grid-template-columns: 1.2fr 0.8fr; align-items: end; padding: 102px 0 68px; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .combo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .community-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .location { grid-template-columns: 0.9fr 1.1fr; }
  .delivery__items { grid-template-columns: repeat(3, 1fr); }
  .footer { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

@media (min-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .combo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .button, .menu-card, .gallery-item img, .floating-whatsapp__dot { transition: none; animation: none; }
  .reveal { opacity: 1; transform: none; }
}
