:root {
  --navy: #06364a;
  --navy-2: #08293a;
  --teal: #08a7b5;
  --teal-dark: #087b89;
  --sand: #f5efe4;
  --paper: #fffaf1;
  --ink: #17212b;
  --muted: #62707a;
  --gold: #b98946;
  --gold-soft: #e7c184;
  --card: rgba(255, 252, 245, .88);
  --shadow: 0 20px 60px rgba(6, 54, 74, .16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(8, 167, 181, .14), transparent 34rem),
    radial-gradient(circle at bottom right, rgba(185, 137, 70, .12), transparent 30rem),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  background-image: url("assets/cover.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(to top, var(--paper), transparent);
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 21, 32, .58), rgba(3, 21, 32, .26) 44%, rgba(3, 21, 32, .72)),
    radial-gradient(circle at 50% 38%, rgba(8, 167, 181, .17), transparent 28rem);
}

.topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 5vw, 64px);
}

.brand,
.whatsapp,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(5, 30, 42, .42);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

.brand {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .16em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.whatsapp,
.primary-btn {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
}

.whatsapp:hover,
.primary-btn:hover,
.category-nav a:hover {
  transform: translateY(-1px);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  text-align: center;
  padding: 44px 22px;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 15vw, 10.5rem);
  line-height: .78;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 20px 52px rgba(0, 0, 0, .42);
}

.subtitle {
  margin: 20px 0 0;
  font-size: clamp(1.6rem, 5vw, 3rem);
  color: #42d5dd;
  font-weight: 600;
  font-style: italic;
  font-family: "Brush Script MT", "Segoe Script", cursive;
}

.location {
  margin: 18px 0 24px;
  font-weight: 800;
  letter-spacing: .06em;
}

.section-pad {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
  padding: 76px 0 30px;
}

.intro {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 440px);
  gap: 22px;
  align-items: end;
}

.intro h2,
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 5vw, 4.1rem);
  letter-spacing: -.04em;
  line-height: .92;
  font-family: Georgia, "Times New Roman", serif;
}

.intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.search-box {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--navy);
}

.search-box input {
  width: 100%;
  border: 1px solid rgba(6, 54, 74, .14);
  border-radius: 999px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
  font: inherit;
  outline: none;
}

.search-box input:focus {
  border-color: rgba(8, 167, 181, .7);
  box-shadow: 0 0 0 5px rgba(8, 167, 181, .12), var(--shadow);
}

.category-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 12px max(17px, calc((100vw - 1160px) / 2));
  background: rgba(255, 250, 241, .82);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(6, 54, 74, .08);
  border-bottom: 1px solid rgba(6, 54, 74, .08);
}

.category-nav a {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(6, 54, 74, .1);
  color: var(--navy);
  font-size: .9rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(6, 54, 74, .06);
  transition: .18s ease;
}

.sections {
  width: min(1160px, calc(100% - 34px));
  margin: 0 auto;
}

.menu-section {
  position: relative;
  overflow: hidden;
  margin: 28px 0;
  border-radius: var(--radius);
  border: 1px solid rgba(6, 54, 74, .1);
  background: rgba(255, 255, 255, .66);
  box-shadow: var(--shadow);
  scroll-margin-top: 76px;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--section-bg);
  background-position: center;
  background-size: cover;
  opacity: .18;
  pointer-events: none;
}

.menu-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, .92), rgba(255, 250, 241, .78)),
    radial-gradient(circle at top right, rgba(8, 167, 181, .14), transparent 18rem);
  pointer-events: none;
}

.menu-section__inner {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 42px);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(6, 54, 74, .12);
}

.section-title h2 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 3.25rem);
  letter-spacing: -.04em;
}

.section-title span {
  flex: 0 0 auto;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
}

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

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(6, 54, 74, .18);
}

.menu-item__name {
  font-weight: 750;
  font-size: 1.02rem;
}

.menu-item__price {
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 950;
}

.menu-section[data-theme="beer"]::after,
.menu-section[data-theme="drinks"]::after,
.menu-section[data-theme="copeo"]::after {
  background: linear-gradient(90deg, rgba(255, 250, 241, .92), rgba(255, 250, 241, .74));
}

.note {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 167, 181, .1);
  color: var(--navy);
  border: 1px solid rgba(8, 167, 181, .18);
  font-weight: 750;
}

.no-results {
  display: none;
  text-align: center;
  color: var(--muted);
  font-weight: 800;
  padding: 44px 12px;
}

.no-results.show {
  display: block;
}

.branches {
  padding-top: 62px;
}

.section-heading {
  margin-bottom: 22px;
}

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

.branch-card {
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(6, 54, 74, .1);
  box-shadow: var(--shadow);
}

.branch-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(8, 167, 181, .12);
  font-size: 1.5rem;
}

.branch-card h3 {
  margin: 14px 0 12px;
  color: var(--navy);
  font-size: 1.3rem;
}

.branch-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  margin-top: 60px;
  padding: 48px 17px;
  text-align: center;
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(8, 167, 181, .3), transparent 24rem),
    linear-gradient(180deg, var(--navy), #021923);
}

.footer h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  letter-spacing: .08em;
}

.footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, .76);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 24px 0;
}

.footer-links a {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  font-weight: 850;
}

.fineprint {
  max-width: 720px;
  margin: 0 auto !important;
  font-size: .9rem;
}

.hidden-by-search {
  display: none;
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 14px;
  }

  .brand span {
    display: none;
  }

  .whatsapp {
    padding-inline: 14px;
  }

  .intro {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .menu-grid,
  .branch-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-item__name {
    font-size: .98rem;
  }

  .menu-section__inner {
    padding: 22px 18px;
  }

  .footer h2 {
    font-size: 2.3rem;
  }
}
.group-title {
  margin: 26px 0 10px;
  color: var(--teal-dark);
  font-size: 1.02rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.menu-group:first-of-type .group-title {
  margin-top: 0;
}
