:root {
  --bg: #0f1115;
  --bg-gradient-top: rgba(200, 170, 114, 0.16);
  --bg-gradient-bottom: rgba(84, 87, 54, 0.24);
  --bg-soft: #151920;
  --card: rgba(255, 255, 255, 0.07);
  --card-strong: rgba(255, 255, 255, 0.1);
  --text: #f6f4ef;
  --muted: #b8b4aa;
  --gold: #c8aa72;
  --olive: #545736;
  --olive-soft: #70764c;
  --accent: #f0e5cf;
  --dark: #20242b;
  --border: rgba(255, 255, 255, 0.12);
  --header-bg: rgba(15, 17, 21, 0.75);
  --nav-bg-mobile: rgba(15, 17, 21, 0.96);
  --soft-section-bg: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  --theme-control-bg: rgba(255,255,255,0.05);
  --theme-control-border: rgba(255,255,255,0.12);
  --theme-control-text: var(--text);
  --theme-control-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  --lava-shell: rgba(255,255,255,0.04);
  --lava-shell-border: rgba(255,255,255,0.1);
  --lava-overlay: rgba(12, 14, 18, 0.18);
  --lava-blob-1: rgba(200, 170, 114, 0.85);
  --lava-blob-2: rgba(112, 118, 76, 0.78);
  --lava-blob-3: rgba(240, 229, 207, 0.5);
  --lava-highlight: rgba(255,255,255,0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

body[data-theme='light'] {
  --bg: #f6f1e6;
  --bg-gradient-top: rgba(200, 170, 114, 0.22);
  --bg-gradient-bottom: rgba(84, 87, 54, 0.12);
  --bg-soft: #fffaf1;
  --card: rgba(255, 255, 255, 0.84);
  --card-strong: rgba(255, 255, 255, 0.96);
  --text: #1f2327;
  --muted: #625a4b;
  --gold: #9a6e2f;
  --olive: #657044;
  --olive-soft: #7e8c54;
  --accent: #eadcc1;
  --dark: #1f2327;
  --border: rgba(31, 35, 39, 0.12);
  --header-bg: rgba(246, 241, 230, 0.82);
  --nav-bg-mobile: rgba(255, 250, 241, 0.98);
  --soft-section-bg: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.24));
  --theme-control-bg: rgba(255,255,255,0.88);
  --theme-control-border: rgba(31, 35, 39, 0.1);
  --theme-control-text: #1f2327;
  --theme-control-shadow: 0 18px 36px rgba(69, 54, 27, 0.12);
  --lava-shell: rgba(255,255,255,0.58);
  --lava-shell-border: rgba(154, 110, 47, 0.14);
  --lava-overlay: rgba(255, 248, 236, 0.18);
  --lava-blob-1: rgba(154, 110, 47, 0.72);
  --lava-blob-2: rgba(101, 112, 68, 0.62);
  --lava-blob-3: rgba(255, 235, 195, 0.7);
  --lava-highlight: rgba(255,255,255,0.48);
  --shadow: 0 22px 50px rgba(69, 54, 27, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, var(--bg-gradient-top), transparent 35%),
    radial-gradient(circle at bottom right, var(--bg-gradient-bottom), transparent 30%),
    var(--bg);
  color: var(--text);
  transition: background-color .35s ease, color .35s ease;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }
.site-shell { overflow: hidden; }

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand__logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(255,255,255,0.9);
  padding: 0.25rem;
}

.brand__title {
  display: block;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.brand__subtitle {
  display: block;
  font-size: 0.86rem;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav a {
  font-size: 0.96rem;
  color: var(--muted);
  transition: color .2s ease;
}
.nav a:hover { color: var(--text); }

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 48px;
  padding: 0 .95rem;
  margin-left: auto;
  border-radius: 999px;
  border: 1px solid var(--theme-control-border);
  background: var(--theme-control-bg);
  color: var(--theme-control-text);
  box-shadow: var(--theme-control-shadow);
  cursor: pointer;
  transition: transform .2s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
}

.theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  background: rgba(200,170,114,.16);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.theme-toggle__text {
  font-size: 0.95rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px auto;
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: 0 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--gold), #e9d2a2);
  color: #1b1d20;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.button--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.button--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}
.button--dark {
  background: var(--dark);
  color: var(--text);
  box-shadow: none;
}

body[data-theme='light'] .button--dark {
  color: #f6f4ef;
}

.promo-trigger {
  border-style: dashed;
}

.hero {
  position: relative;
  padding: 4.8rem 0 3rem;
  overflow: hidden;
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.hero__content h1,
.section-heading h2,
.menu-day__content h2 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  line-height: 1.02;
}
.hero__content h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 11ch;
}
.hero__content p,
.section-heading p,
.category-card p,
.featured-card__body p,
.menu-day__content p,
.info-panel p,
.community-card p,
.footer__text {
  color: var(--muted);
  line-height: 1.7;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow--dark {
  background: rgba(32,36,43,0.12);
  color: #544620;
  border-color: rgba(32,36,43,0.1);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.8rem 0;
}
.hero__meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .65rem;
}
.hero__meta li {
  color: var(--muted);
}
.hero__meta strong { color: var(--text); }

.hero__visual {
  position: relative;
  min-height: 540px;
}

.hero-lava {
  position: absolute;
  inset: 1.2rem 0 0;
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid var(--lava-shell-border);
  background:
    radial-gradient(circle at 20% 20%, var(--lava-highlight), transparent 28%),
    linear-gradient(180deg, var(--lava-overlay), transparent 35%),
    var(--lava-shell);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-lava::before,
.hero-lava::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  pointer-events: none;
}

.hero-lava::before {
  top: 8%;
  left: 10%;
  width: 38%;
  height: 24%;
  background: radial-gradient(circle, var(--lava-highlight), transparent 72%);
  opacity: 0.7;
}

.hero-lava::after {
  right: -8%;
  bottom: -10%;
  width: 42%;
  height: 36%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.hero-lava__canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-card {
  position: absolute;
  z-index: 1;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.hero-card h3 { margin: .7rem 0; font-size: 1.4rem; }
.hero-card p { margin: 0 0 1rem; color: var(--muted); }
.hero-card strong { font-size: 1.25rem; }
.hero-card--primary {
  inset: 0 18% 16% 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04)),
    radial-gradient(circle at top, rgba(200,170,114,0.25), transparent 45%),
    var(--card);
}
.hero-card--accent {
  right: 0;
  bottom: 0;
  width: 72%;
  background: linear-gradient(135deg, rgba(84,87,54,0.95), rgba(112,118,76,0.92));
}
.badge {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 700;
}
.badge--light {
  color: #fff7e7;
  background: rgba(255,255,255,0.16);
}

.section { padding: 5rem 0; }
.section--soft {
  background: var(--soft-section-bg);
}
.section--accent {
  background: linear-gradient(135deg, var(--accent), #d8c7a8);
  color: #1d2024;
}
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.section-heading--left {
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.section-heading h2,
.menu-day__content h2 { font-size: clamp(2rem, 4vw, 3.2rem); }

.menu-grid,
.featured-grid,
.community-grid {
  display: grid;
  gap: 1.25rem;
}
.menu-grid {
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}
.category-card,
.featured-card,
.info-panel,
.community-card,
.menu-day__card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.category-card {
  padding: 1.35rem;
}
.category-card h3,
.info-panel h3,
.community-card h3,
.menu-day__card h3 { margin-top: 0; }
.category-card h3 {
  margin-top: 0;
}
.category-card ul,
.footer__list,
.info-panel ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.category-card li,
.footer__list li,
.info-panel li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.category-card li:last-child,
.footer__list li:last-child,
.info-panel li:last-child { border-bottom: 0; }
.category-card span { color: var(--gold); font-weight: 700; }

.featured-grid {
  grid-template-columns: repeat(3, 1fr);
}
.featured-card { overflow: hidden; }
.featured-card__image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.featured-card__image--burger {
  background-image:
    linear-gradient(180deg, transparent, rgba(15,17,21,.18)),
    url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=1200&q=80');
}
.featured-card__image--pizza {
  background-image:
    linear-gradient(180deg, transparent, rgba(15,17,21,.18)),
    url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1200&q=80');
}
.featured-card__image--texmex {
  background-image:
    linear-gradient(180deg, transparent, rgba(15,17,21,.18)),
    url('https://images.unsplash.com/photo-1618040996337-56904b7850b9?auto=format&fit=crop&w=1200&q=80');
}
.featured-card__body { padding: 1.2rem; }
.featured-card__body strong { color: var(--gold); font-size: 1.1rem; }

.menu-day {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}
.menu-day__content p { color: rgba(29, 32, 36, 0.8); }
.menu-day__list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.menu-day__list span {
  display: inline-flex;
  padding: .75rem .95rem;
  border-radius: 999px;
  background: rgba(32,36,43,.08);
  color: #1f2327;
  font-weight: 600;
}
.menu-day__card {
  padding: 1.5rem;
  background: rgba(255,255,255,0.5);
  border-color: rgba(32,36,43,0.08);
  box-shadow: 0 18px 40px rgba(32,36,43,.12);
}
.menu-day__card p { color: rgba(29,32,36,.75); }

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}
.corporate-cards {
  display: grid;
  gap: 1rem;
}
.info-panel {
  padding: 1.3rem;
}
.info-panel li {
  justify-content: flex-start;
  color: var(--muted);
}
.text-link {
  display: block;
  margin-top: .45rem;
  color: var(--gold);
}

.community-grid {
  grid-template-columns: repeat(2, 1fr);
}
.community-card {
  padding: 1.3rem;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
}
.qr-wrap {
  background: rgba(255,255,255,0.9);
  border-radius: 24px;
  padding: .7rem;
}
.tag {
  display: inline-flex;
  margin-top: .5rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(200,170,114,.12);
  color: var(--gold);
  font-weight: 700;
}

.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
}
.footer__logo {
  width: 96px;
  margin-bottom: .75rem;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  padding: .3rem;
}
.footer h4 { margin-top: 0; }
.footer__list li {
  color: var(--muted);
  justify-content: flex-start;
}
.footer__bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.promo-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(12px);
}

.promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 0;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    var(--bg-soft);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.promo-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.promo-modal__media {
  padding: 1.25rem;
  background:
    radial-gradient(circle at top left, rgba(200,170,114,0.16), transparent 30%),
    rgba(255,255,255,0.03);
}

.promo-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.promo-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 2rem 2rem 1rem;
}

.promo-modal__eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(200,170,114,.14);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promo-modal__content h3 {
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.promo-modal__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.promo-modal__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}

.promo-modal__list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--text);
}

.promo-modal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--gold);
}

.promo-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.4rem;
}

body[data-theme='light'] .promo-modal__dialog {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.68)),
    var(--bg-soft);
}

body[data-theme='light'] .promo-modal__close {
  background: rgba(255,255,255,0.9);
  color: #1f2327;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero__grid,
  .menu-day,
  .corporate-grid,
  .footer__grid,
  .community-grid,
  .featured-grid,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__visual { min-height: 420px; }
  .hero-card--primary { inset: 0 8% 18% 0; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--nav-bg-mobile);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .65rem .2rem; }
  .theme-toggle {
    margin-left: auto;
    order: 2;
  }
  .menu-toggle {
    order: 3;
  }

  .hero__grid,
  .menu-day,
  .corporate-grid,
  .featured-grid,
  .menu-grid,
  .community-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero { padding-top: 2rem; }
  .hero__content h1 { max-width: 100%; }
  .hero__visual {
    min-height: 380px;
    display: grid;
    gap: 1rem;
  }
  .hero-lava {
    inset: 0.75rem 0 0;
    border-radius: 28px;
  }
  .hero-card { position: relative; }
  .community-card {
    grid-template-columns: 1fr;
  }
  .promo-modal__dialog {
    grid-template-columns: 1fr;
  }
  .promo-modal__content {
    padding: 0 1.25rem 1.5rem;
  }
}

@media (max-width: 560px) {
  .brand__subtitle { display: none; }
  .hero__actions,
  .menu-day__list { flex-direction: column; }
  .button { width: 100%; }
  .promo-modal__actions {
    flex-direction: column;
  }
  .section { padding: 4rem 0; }
  .hero__visual {
    min-height: 340px;
  }
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }
  .theme-toggle {
    min-width: 0;
    padding: 0 .8rem;
  }
  .theme-toggle__text {
    display: none;
  }
  .category-card li {
    flex-direction: column;
    align-items: flex-start;
  }
}
