:root {
  --bg: #160d0a;
  --bg-soft: #21110d;
  --surface: rgba(255, 247, 239, 0.88);
  --surface-strong: #fff6eb;
  --line: rgba(255, 255, 255, 0.12);
  --text: #f8efe8;
  --muted: #dbc6b9;
  --ink: #241410;
  --accent-red: #c82d1d;
  --accent-red-deep: #8b1e16;
  --accent-gold: #eca925;
  --accent-green: #1d8a4a;
  --accent-blue: #2367bb;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body {
  margin: 0;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(236, 169, 37, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(29, 138, 74, 0.14), transparent 28%),
    linear-gradient(180deg, #2d1712 0%, #160d0a 55%, #0c0705 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  padding-bottom: 40px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 148px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
}

.main-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.07);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  display: block;
  align-items: stretch;
  padding: 32px 0 20px;
}

.hero-copy,
.section,
.delivery-banner,
.footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(200, 45, 29, 0.14), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(236, 169, 37, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(23, 11, 8, 0.72);
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-headline,
.section-heading h2,
.delivery-banner h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-headline {
  text-transform: uppercase;
}

.hero-subline {
  margin: 14px 0 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: #f4d7c2;
}

.hero-text,
.section-heading > p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 58ch;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), #ec513f);
  color: white;
  box-shadow: 0 16px 32px rgba(200, 45, 29, 0.35);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points li,
.column-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: #fff3ea;
}

.social-proof {
  margin: 10px 0 26px;
}

.proof-card,
.section,
.footer {
  background: var(--surface-strong);
  border-radius: var(--radius-lg);
}

.proof-card {
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(36, 20, 16, 0.09);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.proof-card strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}

.proof-card span {
  display: block;
  color: rgba(36, 20, 16, 0.72);
  line-height: 1.6;
  font-size: 1.02rem;
}

.section {
  padding: 28px;
  margin-bottom: 26px;
  color: var(--ink);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading > p {
  max-width: 43ch;
  margin: 0;
  line-height: 1.7;
  color: rgba(36, 20, 16, 0.7);
}

.column-pill {
  background: rgba(200, 45, 29, 0.09);
  border-color: rgba(200, 45, 29, 0.14);
  color: var(--accent-red-deep);
}

.menu-intro-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.menu-intro-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 247, 239, 0.92);
  color: var(--accent-red-deep);
  border: 1px solid rgba(200, 45, 29, 0.14);
  font-size: 0.92rem;
  font-weight: 800;
}

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.menu-tab {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(36, 20, 16, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(36, 20, 16, 0.75);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.menu-tab:hover,
.menu-tab.is-active {
  color: white;
  background: linear-gradient(135deg, var(--accent-red), #ec513f);
  box-shadow: 0 14px 28px rgba(200, 45, 29, 0.24);
}

.menu-board {
  padding: 22px;
  border-radius: 26px;
  background: #fff8ee;
  color: var(--ink);
  border: 1px solid rgba(36, 20, 16, 0.09);
}

.menu-board-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(36, 20, 16, 0.14);
}

.menu-board-head h3 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.menu-board-sizes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(36, 20, 16, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-list {
  display: grid;
}

.menu-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px dashed rgba(36, 20, 16, 0.14);
}

.menu-entry:first-child {
  border-top: none;
}

.menu-entry-copy {
  min-width: 0;
}

.menu-entry-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  font-size: 1.14rem;
}

.menu-entry-title strong {
  font-size: 1.18rem;
}

.menu-entry-premium {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(236, 169, 37, 0.18);
  color: #8b4c0f;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-entry-copy p {
  margin: 8px 0 0;
  color: rgba(36, 20, 16, 0.72);
  line-height: 1.55;
  font-size: 0.94rem;
}

.menu-entry-prices {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.menu-entry-price {
  min-width: 100px;
  text-align: right;
}

.menu-entry-price span {
  display: block;
  color: rgba(36, 20, 16, 0.56);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-entry-price strong {
  display: block;
  margin-top: 3px;
  font-size: 1.1rem;
}

.menu-entry-price.is-highlight strong {
  color: var(--accent-red-deep);
}

.menu-entry-single {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(200, 45, 29, 0.08);
  color: var(--accent-red-deep);
  font-size: 1.08rem;
  font-weight: 900;
}

.menu-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(36, 20, 16, 0.12);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  padding: 22px;
  border-radius: 22px;
  background: #fff8ee;
  color: var(--ink);
  border: 2px solid transparent;
  box-shadow: 0 18px 42px rgba(36, 20, 16, 0.08);
}

.location-card h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}

.location-card p {
  margin: 0;
  color: rgba(36, 20, 16, 0.8);
}

.location-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.location-card dl div {
  display: grid;
  gap: 4px;
}

.location-card dt {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(36, 20, 16, 0.54);
}

.location-card dd {
  margin: 0;
  font-weight: 700;
  font-size: 1.08rem;
}

.location-card a {
  color: inherit;
}

.card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-red), #ec513f);
  color: #fff;
  border: 1px solid rgba(200, 45, 29, 0.2);
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(200, 45, 29, 0.18);
}

.accent-red { border-color: rgba(200, 45, 29, 0.45); }
.accent-gold { border-color: rgba(236, 169, 37, 0.5); }
.accent-green { border-color: rgba(29, 138, 74, 0.48); }
.accent-blue { border-color: rgba(35, 103, 187, 0.48); }

.delivery-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(255, 246, 235, 0.98), rgba(247, 232, 215, 0.98)),
    #fff7ee;
}

.delivery-banner h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.delivery-banner p {
  color: rgba(36, 20, 16, 0.72);
}

.locations-seo {
  margin: 24px 0 0;
  color: rgba(36, 20, 16, 0.72);
  line-height: 1.7;
  font-size: 1rem;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 20px;
  padding: 26px;
}

.footer img {
  width: 148px;
  margin-bottom: 14px;
}

.footer-copy,
.footer-address {
  color: rgba(36, 20, 16, 0.72);
}

.footer-address {
  margin-top: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links a {
  color: rgba(36, 20, 16, 0.86);
}

.footer-legal {
  align-self: end;
  justify-self: end;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 42px rgba(37, 211, 102, 0.34);
}

@media (max-width: 1100px) {
  .footer {
    grid-template-columns: 1fr;
  }

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

  .footer-legal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
  }

  .main-nav.open {
    display: flex;
  }

  .hero-copy,
  .section,
  .delivery-banner,
  .footer {
    padding: 22px;
  }

  .hero h1,
  .section-heading h2,
  .delivery-banner h2 {
    font-size: clamp(2.2rem, 12vw, 4rem);
  }

  .section-heading,
  .delivery-banner {
    align-items: start;
    flex-direction: column;
  }

  .locations-grid,
  .social-proof {
    grid-template-columns: 1fr;
  }

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

  .menu-board-head,
  .menu-entry {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .menu-board-sizes,
  .menu-entry-prices {
    justify-content: flex-start;
  }

  .menu-entry-price {
    min-width: 0;
    text-align: left;
  }
}
