:root {
  --bg: #f5efe6;
  --surface: #fffaf3;
  --surface-strong: #ffffff;
  --text: #211914;
  --muted: #71645a;
  --line: rgba(74, 53, 36, 0.14);
  --gold: #bd8424;
  --gold-dark: #8d5d10;
  --wine: #702936;
  --blue: #125f78;
  --green: #187a4c;
  --shadow: 0 20px 55px rgba(48, 31, 18, 0.12);
  --shadow-soft: 0 10px 28px rgba(48, 31, 18, 0.08);
  --radius-lg: 1.6rem;
  --radius-md: 1rem;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 0 0, rgba(189, 132, 36, 0.12), transparent 27rem),
    linear-gradient(180deg, #fbf7f1 0%, var(--bg) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

[hidden] {
  display: none !important;
}

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

.hero {
  position: relative;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 0 0 2rem 2rem;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.17), transparent 28rem),
    linear-gradient(110deg, rgba(15, 10, 7, 0.91) 5%, rgba(35, 21, 11, 0.73) 54%, rgba(25, 15, 10, 0.5));
}

.hero--home,
.hero--food {
  background-image: url("images/grils.jpg");
}

.hero--drinks {
  background-image: url("images/energy drinks.jpg");
}

.hero--drinks::before {
  background: linear-gradient(110deg, rgba(7, 19, 27, 0.94), rgba(15, 58, 76, 0.74), rgba(8, 25, 34, 0.54));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 6.5rem 0 5rem;
}

.hero h1 {
  max-width: 820px;
  margin: 1.2rem 0;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.045em;
}

.hero p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.75;
}

.eyebrow {
  display: inline-block;
  color: #f3cf8c;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--gold-dark);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.8rem 1.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--gold {
  background: #d99c32;
  color: #1d1409;
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  backdrop-filter: blur(10px);
}

.button--whatsapp {
  width: 100%;
  background: var(--green);
  color: #fff;
}

.site-nav {
  position: sticky;
  z-index: 30;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 8px 26px rgba(48, 31, 18, 0.08);
  backdrop-filter: blur(14px);
}

.site-nav__inner {
  display: grid;
  width: min(calc(100% - 2rem), var(--container));
  min-height: 5rem;
  align-items: center;
  margin: 0 auto;
  gap: 1.25rem;
  grid-template-columns: minmax(210px, 1fr) auto minmax(180px, 0.75fr) auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand__crest {
  width: 2.8rem;
  height: 2.8rem;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.brand__crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.brand small {
  margin-top: 0.1rem;
  color: var(--muted);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav__links {
  display: flex;
  gap: 0.25rem;
}

.site-nav__links a {
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  background: #f1e5d1;
  color: var(--gold-dark);
}

.menu-search input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  padding: 0.72rem 1rem;
  background: #fff;
}

.menu-search input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(189, 132, 36, 0.14);
}

.cart-trigger {
  position: relative;
  min-height: 2.7rem;
  border: 0;
  border-radius: 999px;
  padding: 0.6rem 1rem;
  background: var(--wine);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-count {
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  display: grid;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem;
}

.page-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  padding: 5rem 0;
}

.page-shell--menu {
  padding-top: 2.4rem;
}

.intro {
  max-width: 720px;
  margin-bottom: 2.3rem;
}

.intro h2,
.menu-toolbar h2 {
  margin: 0.45rem 0 0.8rem;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  letter-spacing: -0.035em;
}

.intro p {
  color: var(--muted);
  font-size: 1.05rem;
}

.special-grid {
  display: grid;
  gap: 1.2rem;
}

.collection-links {
  display: grid;
  margin-top: 4rem;
  gap: 1.2rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.collection-card {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  color: #fff;
}

.collection-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, rgba(22, 13, 8, 0.94), rgba(92, 49, 13, 0.72));
}

.collection-card--drinks::before {
  background: linear-gradient(145deg, #0d2732, #16627a);
}

.collection-card span {
  color: #e7c887;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-card h2 {
  max-width: 440px;
  margin: 4.2rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.collection-card p {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.78);
}

.collection-card b {
  display: block;
  margin-top: 1.4rem;
}

.menu-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 2.2rem;
  gap: 2rem;
}

.category-nav {
  display: flex;
  max-width: 720px;
  padding-bottom: 0.25rem;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-chip {
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.category-chip:hover,
.category-chip.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.menu-section {
  margin: 0 0 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: rgba(255, 250, 243, 0.72);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.5rem;
  padding: 0 0.4rem 1rem;
}

.section-heading span {
  color: var(--gold-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0.25rem 0 0;
  font-size: 2rem;
}

.section-heading b {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
}

.menu-item {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0.4rem;
  gap: 1rem;
  grid-template-columns: 5.5rem minmax(0, 1fr) auto;
}

.menu-item:last-child {
  border-bottom: 0;
}

.special-grid .menu-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 11rem minmax(0, 1fr) auto;
}

.menu-item__image {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 0.9rem;
  background: #eadfce;
  object-fit: cover;
}

.special-grid .menu-item__image {
  width: 11rem;
  height: 8rem;
}

.menu-item__heading {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-item h3 {
  margin: 0;
  font-size: 1.2rem;
}

.menu-item p {
  max-width: 700px;
  margin: 0.42rem 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.menu-item small {
  color: var(--gold-dark);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill {
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  background: #f0dfbd;
  color: var(--gold-dark);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-button {
  min-width: 7rem;
  border: 1px solid rgba(189, 132, 36, 0.3);
  border-radius: 999px;
  padding: 0.72rem 0.9rem;
  background: #fff6e5;
  color: var(--gold-dark);
  font-weight: 900;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.price-button:hover {
  transform: translateY(-1px);
  background: var(--gold);
  color: #fff;
}

.empty-state,
.empty-panel {
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 4rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 3rem;
  background: var(--surface);
  text-align: center;
}

.site-footer {
  padding: 3rem 1rem;
  background: #17120f;
  color: #e8ddd1;
  text-align: center;
}

.site-footer strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer p,
.site-footer small {
  color: #96897f;
}

.site-footer p {
  margin: 0.5rem 0;
}

.cart-overlay {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(15, 10, 7, 0.56);
  backdrop-filter: blur(5px);
}

.cart-drawer {
  display: flex;
  width: min(100%, 430px);
  height: 100%;
  flex-direction: column;
  background: var(--surface-strong);
  box-shadow: -18px 0 55px rgba(20, 12, 8, 0.2);
}

.cart-drawer > header,
.cart-drawer > footer {
  padding: 1.4rem;
}

.cart-drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.cart-drawer h2 {
  margin: 0.3rem 0 0;
}

.cart-drawer > footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
}

.icon-button {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
}

.cart-items {
  overflow-y: auto;
  padding: 0 1.4rem;
}

.cart-item {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  gap: 0.8rem;
  grid-template-columns: 4rem minmax(0, 1fr) auto;
}

.cart-item img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.cart-item__content strong,
.cart-item__content span {
  display: block;
}

.cart-item__content span {
  margin-top: 0.25rem;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.quantity-controls {
  display: flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.2rem;
  gap: 0.25rem;
  background: #f3ece3;
}

.quantity-button {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
}

.cart-empty {
  padding: 4rem 1.5rem;
  color: var(--muted);
  text-align: center;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cart-total strong {
  font-size: 1.35rem;
}

.text-button {
  width: 100%;
  border: 0;
  padding: 0.8rem;
  background: transparent;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.toast {
  position: fixed;
  z-index: 120;
  right: 1rem;
  bottom: 1rem;
  max-width: min(360px, calc(100% - 2rem));
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
  background: #211914;
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(22, 95, 120, 0.45);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .site-nav__inner {
    padding: 0.7rem 0;
    grid-template-columns: 1fr auto;
  }

  .site-nav__links {
    grid-row: 2;
  }

  .menu-search {
    grid-row: 2;
  }

  .menu-toolbar {
    display: block;
  }

  .category-nav {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 27rem;
    border-radius: 0 0 1.4rem 1.4rem;
  }

  .hero__inner {
    padding: 4.8rem 0 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }

  .site-nav__inner {
    grid-template-columns: 1fr auto;
  }

  .brand small,
  .cart-trigger > span:first-child {
    display: none;
  }

  .cart-trigger {
    width: 2.8rem;
    padding: 0;
  }

  .cart-trigger::before {
    content: "＋";
    font-size: 1.15rem;
  }

  .site-nav__links {
    justify-content: space-between;
  }

  .site-nav__links a {
    padding: 0.55rem 0.65rem;
    font-size: 0.7rem;
  }

  .menu-search {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .page-shell {
    padding: 3.5rem 0;
  }

  .collection-links {
    grid-template-columns: 1fr;
  }

  .collection-card {
    min-height: 18rem;
    padding: 1.5rem;
  }

  .menu-section {
    border-radius: 1.2rem;
    padding: 1rem;
  }

  .menu-item,
  .special-grid .menu-item {
    align-items: start;
    grid-template-columns: 4.4rem minmax(0, 1fr);
  }

  .menu-item__image,
  .special-grid .menu-item__image {
    width: 4.4rem;
    height: 4.4rem;
  }

  .price-button {
    min-width: 0;
    grid-column: 2;
    justify-self: start;
  }

  .section-heading {
    align-items: start;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
