:root {
  color-scheme: light;
  --espresso: #241611;
  --espresso-2: #3a2118;
  --ink: #211915;
  --muted: #71675f;
  --paper: #fffdf8;
  --paper-2: #fff8ed;
  --rice: #f6f1e5;
  --mist: #edf3ed;
  --chilli: #d71920;
  --chilli-deep: #a81117;
  --herb: #1f6f4a;
  --herb-deep: #164d37;
  --brass: #b9892f;
  --brass-soft: #f1dfb3;
  --blue: #275f7f;
  --plum: #8b466f;
  --line: rgba(36, 22, 17, 0.14);
  --line-strong: rgba(36, 22, 17, 0.24);
  --shadow: 0 14px 34px rgba(36, 22, 17, 0.1);
  --shadow-soft: 0 8px 22px rgba(36, 22, 17, 0.075);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--rice);
  background-image:
    linear-gradient(90deg, rgba(31, 111, 74, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0 0%, #edf4ef 48%, #fff8ec 100%);
  background-size: 34px 34px, 100% 100%;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: relative;
  color: #fff;
  background:
    linear-gradient(135deg, var(--espresso) 0%, var(--espresso-2) 64%, #651d20 100%);
  box-shadow: 0 12px 32px rgba(36, 22, 17, 0.12);
}

.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--chilli), var(--brass), var(--herb));
}

.brand-shell {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  display: block;
  width: 100%;
  aspect-ratio: 12 / 5;
  object-fit: contain;
}

.brand-copy {
  min-width: 0;
}

.eyebrow,
.section-heading p {
  margin: 0 0 3px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--brass-soft);
}

h1 {
  margin: 0;
  max-width: 100%;
  color: #fff;
  font-size: 1.42rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.tagline {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.brand-points {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.brand-points span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
}

.contact-strip {
  background:
    linear-gradient(180deg, #fffaf0 0%, #f7efe2 100%);
  border-bottom: 1px solid var(--line);
}

.contact-inner {
  display: grid;
  gap: 9px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 16px;
}

.contact-card {
  display: grid;
  gap: 1px;
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(36, 22, 17, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 237, 0.92));
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(36, 22, 17, 0.075);
}

.contact-card strong {
  font-size: 0.98rem;
  line-height: 1.2;
}

.contact-card span:last-child {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.25;
}

.contact-label {
  color: var(--chilli-deep);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-address {
  border-left: 4px solid var(--chilli);
}

.contact-phone {
  border-left: 4px solid var(--herb);
}

.contact-phone .contact-label {
  color: var(--herb-deep);
}

.menu-dock {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.97);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(36, 22, 17, 0.11);
  backdrop-filter: blur(14px);
}

.menu-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 16px 8px;
}

.search-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.search-box span {
  display: inline-flex;
  align-items: center;
  align-self: stretch;
  padding: 0 13px;
  background: var(--espresso);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
  background: transparent;
}

.search-box:focus-within {
  border-color: var(--chilli);
  box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.14), var(--shadow-soft);
}

.top-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 15px;
  border: 1px solid rgba(22, 77, 55, 0.24);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--herb), var(--herb-deep));
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
}

.category-nav {
  display: flex;
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.category-nav a {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #3d342f;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 5px 14px rgba(36, 22, 17, 0.05);
}

.category-nav a.active {
  border-color: var(--chilli);
  background: var(--chilli);
  color: #fff;
  box-shadow: 0 8px 18px rgba(168, 17, 23, 0.22);
}

.menu-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 16px 10px;
}

.intro-strip {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.intro-strip a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 12px;
  min-height: 94px;
  padding: 15px 15px 14px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--chilli);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 241, 229, 0.88)),
    linear-gradient(90deg, rgba(31, 111, 74, 0.06) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.intro-strip a:nth-child(2) {
  border-top-color: var(--brass);
}

.intro-strip a:nth-child(3) {
  border-top-color: var(--herb);
}

.feature-kicker {
  grid-column: 1 / -1;
  color: var(--chilli-deep);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-strip a:nth-child(2) .feature-kicker {
  color: #8a6420;
}

.intro-strip a:nth-child(3) .feature-kicker {
  color: var(--herb-deep);
}

.intro-strip strong {
  min-width: 0;
  font-size: 1.05rem;
  line-height: 1.2;
}

.intro-strip span:not(.feature-kicker) {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.9rem;
}

.intro-strip em {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: center;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff;
  color: var(--chilli-deep);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.14);
}

.intro-strip a:nth-child(2) em {
  color: #7d5919;
  box-shadow: inset 0 0 0 1px rgba(185, 137, 47, 0.22);
}

.intro-strip a:nth-child(3) em {
  color: var(--herb-deep);
  box-shadow: inset 0 0 0 1px rgba(31, 111, 74, 0.18);
}

.menu-group {
  --accent: var(--chilli);
  --accent-deep: var(--chilli-deep);
  --accent-soft: #fff0ec;
  scroll-margin-top: 142px;
  margin: 0 0 26px;
}

#hot-coffee,
#vietnamese-coffee {
  --accent: #8b4b2a;
  --accent-deep: #5e301d;
  --accent-soft: #f5e7dd;
}

#house-chilled,
#fresh-juices,
#frappes,
#smoothies-yoghurt {
  --accent: var(--herb);
  --accent-deep: var(--herb-deep);
  --accent-soft: #e5f1e8;
}

#tea,
#soft-drink {
  --accent: var(--blue);
  --accent-deep: #173f56;
  --accent-soft: #e3f0f5;
}

#all-day-breakfast,
#sandwiches,
#toast,
#burgers,
#pasta,
#combo-meal,
#kid-meal {
  --accent: var(--brass);
  --accent-deep: #7d5919;
  --accent-soft: #f6eacb;
}

#entrees-sides,
#vietnamese-food {
  --accent: var(--chilli);
  --accent-deep: var(--chilli-deep);
  --accent-soft: #fff0ec;
}

#desserts {
  --accent: var(--plum);
  --accent-deep: #5f2c4b;
  --accent-soft: #f4e5ee;
}

#extras {
  --accent: #4b6d34;
  --accent-deep: #314a22;
  --accent-soft: #e9f0de;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 8px 12px;
  margin: 0 0 10px;
  padding: 0 2px 0 0;
}

.section-heading p,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  color: var(--accent-deep);
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  font-size: 1.36rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.section-heading h2::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.section-heading span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(36, 22, 17, 0.06);
}

.item-list {
  display: grid;
  gap: 9px;
}

.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 14px;
  align-items: start;
  min-height: 58px;
  padding: 14px 14px 13px 15px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--paper), var(--paper-2));
  box-shadow: var(--shadow-soft);
}

.menu-item h3 {
  min-width: 0;
  margin: 0;
  color: #15100e;
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.menu-item p {
  grid-column: 1;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.menu-item .price {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: start;
  margin: 0;
  padding: 3px 8px 4px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(36, 22, 17, 0.06);
}

.feature-group .section-heading h2::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brass);
  box-shadow: 0 0 0 4px rgba(185, 137, 47, 0.16);
}

.extras .menu-item {
  border-left-color: var(--accent);
}

.no-results {
  margin: 8px 0 18px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 30px 16px 38px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--espresso);
}

.site-footer img {
  width: 132px;
  max-width: 42vw;
  padding: 5px;
  border-radius: var(--radius);
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: #fff;
  font-weight: 900;
}

.site-footer a {
  color: var(--brass-soft);
  font-weight: 900;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

@media (min-width: 720px) {
  .brand-shell {
    grid-template-columns: 184px minmax(0, 1fr);
    padding-top: 16px;
    padding-bottom: 14px;
  }

  h1 {
    font-size: 2.05rem;
  }

  .contact-inner {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  }

  .contact-card {
    min-height: 78px;
  }

  .tagline {
    font-size: 0.98rem;
  }

  .menu-tools {
    grid-template-columns: minmax(320px, 520px) auto;
  }

  .intro-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .item-list.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-group {
    scroll-margin-top: 132px;
    margin-bottom: 34px;
  }

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

@media (min-width: 1040px) {
  .menu-page {
    padding: 26px 16px 12px;
  }

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

@media (max-width: 620px) {
  .brand-shell {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }

  .brand-mark {
    padding: 4px;
  }

  h1 {
    font-size: 1.34rem;
  }

  .tagline {
    font-size: 0.83rem;
  }

  .brand-points {
    gap: 5px;
    margin-top: 7px;
  }

  .brand-points span {
    min-height: 23px;
    padding: 0 7px;
    font-size: 0.68rem;
  }

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

  .top-action {
    min-height: 42px;
  }

  .menu-group {
    scroll-margin-top: 184px;
  }

  .intro-strip a {
    min-height: 88px;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) max-content;
    padding: 13px 12px 12px;
  }
}

@media (max-width: 430px) {
  .brand-points span:nth-child(2) {
    display: none;
  }

  .intro-strip a {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-strip em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 5px;
  }
}

@media (max-width: 520px) {
  .intro-strip a {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-strip em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    margin-top: 5px;
  }
}

@media (max-width: 380px) {
  .brand-shell {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  h1 {
    font-size: 1.18rem;
  }

  .brand-points span:nth-child(3) {
    display: none;
  }
}
