:root {
  --green-950: #0e2816;
  --green-900: #14381f;
  --green-800: #1d4f2a;
  --green-700: #2f8f40;
  --green-500: #58c46b;
  --green-soft: rgba(88, 196, 107, 0.16);
  --yellow-500: #efd73c;
  --yellow-soft: rgba(239, 215, 60, 0.22);
  --cream: #fffef7;
  --ink: #17311d;
  --muted: #56705c;
  --line: rgba(23, 49, 29, 0.12);
  --shadow: 0 22px 56px rgba(20, 56, 31, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Candara, "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 215, 60, 0.18), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(88, 196, 107, 0.14), transparent 24%),
    linear-gradient(180deg, #fffef8 0%, #f6f9f1 100%);
}

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

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

button {
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.page-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 16px 16px 92px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  margin-top: 4px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(23, 49, 29, 0.08);
  box-shadow: 0 12px 30px rgba(20, 56, 31, 0.08);
}

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

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--yellow-500), var(--green-500));
  padding: 6px;
}

.brand-logo {
  width: min(100%, 182px);
  object-fit: contain;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 49, 29, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.95);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-900);
  border-radius: 999px;
  display: block;
  margin: 2px 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.quick-drawer[hidden] {
  display: none;
}

.quick-drawer {
  position: sticky;
  top: 84px;
  z-index: 25;
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 14px;
  border-radius: 22px;
  background: var(--green-900);
  color: white;
  box-shadow: var(--shadow);
}

.drawer-action {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  text-align: left;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.drawer-action strong {
  font-size: 1rem;
}

.drawer-action span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
}

.drawer-action.is-active {
  background: rgba(239, 215, 60, 0.16);
  outline: 1px solid rgba(239, 215, 60, 0.54);
}

.hero {
  position: relative;
  margin-top: 16px;
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 26px 18px 18px;
  border-radius: 34px;
  background: linear-gradient(155deg, #184423 0%, #245e31 58%, #102d19 100%);
  color: white;
  box-shadow: 0 26px 58px rgba(20, 56, 31, 0.22);
}

.hero-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 215, 60, 0.38), transparent 68%);
  pointer-events: none;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(12px);
}

.orb-yellow {
  top: -8px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: rgba(239, 215, 60, 0.22);
}

.orb-green {
  left: -16px;
  bottom: 10px;
  width: 90px;
  height: 90px;
  background: rgba(88, 196, 107, 0.16);
}

.hero-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero-kicker {
  color: #fff3ab;
}

.hero h1,
.section-banner h2 {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2rem, 8vw, 3.2rem);
}

.hero-primary-nav {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero-action {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 118px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(9, 24, 14, 0.8), rgba(9, 24, 14, 0.48)),
    linear-gradient(135deg, rgba(239, 215, 60, 0.15), rgba(88, 196, 107, 0.12));
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(239, 215, 60, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-action::after {
  content: "";
  position: absolute;
  inset: auto -10% -55% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 215, 60, 0.28), transparent 70%);
}

.hero-action strong,
.hero-action span {
  position: relative;
  z-index: 1;
  display: block;
}

.hero-action strong {
  font-size: 1.18rem;
}

.hero-action span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.38;
}

.hero-action.is-active {
  transform: translateY(-2px);
  border-color: rgba(239, 215, 60, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 14px 28px rgba(9, 24, 14, 0.24);
}

.menu-sections {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.menu-placeholder,
.menu-section {
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(20, 56, 31, 0.08);
}

.menu-placeholder {
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
}

.menu-placeholder h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  color: var(--green-900);
}

.menu-placeholder p {
  margin: 8px 0 0;
  color: var(--muted);
}

.menu-section {
  padding: 14px;
}

.tone-green {
  background: linear-gradient(180deg, rgba(88, 196, 107, 0.08), rgba(255, 255, 255, 0.96));
}

.tone-yellow {
  background: linear-gradient(180deg, rgba(239, 215, 60, 0.14), rgba(255, 255, 255, 0.98));
}

.tone-white {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 239, 0.98));
}

.section-banner {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-950), var(--green-900));
  color: white;
}

.section-banner h2 {
  font-size: clamp(1.9rem, 7vw, 2.8rem);
  color: white;
}

.section-summary {
  margin: 10px 0 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.subcategory-panel {
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(23, 49, 29, 0.08);
}

.subcategory-heading {
  display: grid;
  gap: 0;
  margin-bottom: 14px;
}

.subcategory-heading strong {
  font-size: 1.06rem;
  color: var(--green-950);
}

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

.subcategory-tile {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 6px;
  min-height: 118px;
  padding: 14px;
  border-radius: 20px;
  text-align: left;
  color: white;
  background:
    linear-gradient(135deg, rgba(14, 40, 22, 0.82), rgba(14, 40, 22, 0.44)),
    linear-gradient(135deg, rgba(47, 143, 64, 0.24), rgba(239, 215, 60, 0.18));
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 20px rgba(20, 56, 31, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, outline-color 180ms ease;
}

.subcategory-badge,
.category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.subcategory-tile strong,
.subcategory-tile span {
  position: relative;
  z-index: 1;
}

.subcategory-tile strong {
  font-size: 1rem;
}

.subcategory-tile span:last-child {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  line-height: 1.35;
}

.subcategory-tile.is-active {
  transform: translateY(-2px);
  outline: 2px solid rgba(239, 215, 60, 0.84);
  box-shadow: 0 14px 28px rgba(20, 56, 31, 0.18);
}

.category-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.category-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 49, 29, 0.08);
  box-shadow: 0 12px 24px rgba(20, 56, 31, 0.06);
}

.category-cover {
  position: relative;
  min-height: 148px;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(14, 40, 22, 0.84), rgba(14, 40, 22, 0.48)),
    linear-gradient(135deg, rgba(47, 143, 64, 0.18), rgba(239, 215, 60, 0.1));
  background-position: center;
  background-size: cover;
}

.category-cover::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 215, 60, 0.36), transparent 72%);
}

.category-cover-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  color: white;
}

.category-cover-content h3 {
  margin: 0;
  font-size: 1.34rem;
  color: white;
}

.category-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.category-description--light {
  color: rgba(255, 255, 255, 0.82);
}

.category-body {
  padding: 14px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 66px;
  padding: 10px 12px;
  border-radius: 14px;
  background: #f5f8ef;
  border: 1px solid rgba(47, 143, 64, 0.1);
}

.menu-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.menu-thumb {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(47, 143, 64, 0.14);
}

.menu-thumb--placeholder {
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-soft), var(--yellow-soft));
  color: var(--green-900);
  font-weight: 700;
}

.menu-thumb--text {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

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

.menu-item-name {
  display: block;
  color: var(--ink);
  font-size: 0.97rem;
  line-height: 1.35;
}

.menu-item-description {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.4;
}

.menu-price {
  color: var(--green-900);
  white-space: nowrap;
  font-size: 0.95rem;
}

.footer {
  padding: 22px 8px 8px;
  text-align: center;
  color: var(--muted);
}

.footer-socials {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.social-link {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 49, 29, 0.08);
  box-shadow: 0 10px 24px rgba(20, 56, 31, 0.06);
}

.social-link strong {
  color: var(--green-900);
  font-size: 0.98rem;
}

.social-link span {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer p,
.footer-note {
  margin: 0;
}

.footer-note {
  display: block;
  margin-top: 6px;
}

.mobile-dock {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 40;
  width: min(calc(100% - 24px), 430px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(20, 56, 31, 0.94);
  box-shadow: 0 18px 40px rgba(20, 56, 31, 0.24);
}

.mobile-dock button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.mobile-dock button.is-active {
  background: rgba(239, 215, 60, 0.18);
  outline: 1px solid rgba(239, 215, 60, 0.64);
  transform: translateY(-1px);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 420ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 761px) {
  .page-shell {
    width: min(100%, 1180px);
    padding: 22px 22px 120px;
  }

  .brand-logo {
    width: 260px;
  }

  .hero-card {
    padding: 36px 30px 26px;
  }

  .hero-primary-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .subcategory-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-socials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
