:root {
  --ink: #f5ecd8;
  --muted: #b9ad92;
  --paper: #071f1f;
  --rice: #f3e8d2;
  --line: rgba(211, 165, 91, 0.22);
  --charcoal: #061514;
  --salmon: #d85f45;
  --wasabi: #7f9174;
  --soy: #0c2726;
  --gold: #c7954c;
  --gold-light: #e6c27e;
  --cream: #f8efe0;
  --panel: rgba(9, 35, 34, 0.86);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(199, 149, 76, 0.16), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(126, 145, 116, 0.12), transparent 26%),
    linear-gradient(180deg, #061514 0%, #092523 46%, #061514 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(5, 18, 18, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(230, 194, 126, 0.42);
  box-shadow: 0 0 24px rgba(199, 149, 76, 0.28);
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--salmon);
  box-shadow: 0 8px 20px rgba(232, 103, 88, 0.35);
}

.nav {
  justify-self: center;
  display: flex;
  gap: 24px;
  color: rgba(248, 239, 224, 0.72);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a:hover {
  color: var(--gold-light);
}

.lang-switch {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(248, 239, 224, 0.08);
}

button,
.primary-action,
.secondary-action {
  font: inherit;
}

.lang-btn,
.filter-btn {
  border: 0;
  cursor: pointer;
}

.lang-btn {
  min-width: 42px;
  min-height: 34px;
  border-radius: 999px;
  background: transparent;
  color: rgba(248, 239, 224, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.lang-btn.active {
  background: var(--gold);
  color: #071514;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  align-items: center;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 64px);
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 16, 16, 0.94) 0%, rgba(4, 20, 19, 0.78) 42%, rgba(4, 20, 19, 0.28) 78%),
    linear-gradient(0deg, rgba(6, 21, 20, 0.48), rgba(6, 21, 20, 0.12));
}

.hero-content {
  position: relative;
  max-width: 650px;
  color: var(--cream);
}

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

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 6vw, 5.45rem);
  line-height: 1;
  letter-spacing: 0;
  max-width: 700px;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.hero-copy {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(248, 239, 224, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
}

.primary-action {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #071514;
  box-shadow: 0 12px 30px rgba(199, 149, 76, 0.24);
}

.secondary-action {
  border: 1px solid rgba(230, 194, 126, 0.42);
  color: var(--cream);
  background: rgba(248, 239, 224, 0.06);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-info div {
  min-height: 118px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: rgba(7, 31, 31, 0.86);
}

.quick-info strong,
.quick-info span {
  display: block;
}

.quick-info strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--cream);
}

.quick-info span {
  color: var(--muted);
  line-height: 1.45;
}

.menu-section,
.link-section,
.seo-section,
.order-section,
.hours-section,
.delivery-section,
.contact-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-head,
.order-layout,
.hours-section,
.delivery-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: end;
}

.section-head {
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.seo-grid p,
.seo-grid a,
.hours-list p,
.delivery-copy p:not(.eyebrow),
.contact-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.02rem;
}

.seo-section {
  background: rgba(6, 21, 20, 0.54);
  border-bottom: 1px solid var(--line);
}

.link-section {
  background:
    linear-gradient(180deg, rgba(248, 239, 224, 0.04), rgba(248, 239, 224, 0.02)),
    rgba(6, 21, 20, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  align-content: space-between;
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.08);
  color: var(--cream);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 194, 126, 0.58);
  background: rgba(248, 239, 224, 0.12);
}

.link-card-primary {
  background: linear-gradient(135deg, rgba(199, 149, 76, 0.2), rgba(126, 145, 116, 0.12)), rgba(8, 31, 30, 0.9);
  border-color: rgba(230, 194, 126, 0.38);
}

.link-card span {
  color: var(--gold-light);
  font-weight: 900;
}

.link-card strong {
  align-self: end;
  margin-top: 54px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.link-card small {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.reviews-section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 82% 24%, rgba(199, 149, 76, 0.16), transparent 30%),
    rgba(6, 21, 20, 0.84);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border: 1px solid rgba(230, 194, 126, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(199, 149, 76, 0.16), rgba(126, 145, 116, 0.08)), rgba(8, 31, 30, 0.92);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.review-panel div {
  display: grid;
  gap: 8px;
}

.review-panel strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.review-panel span {
  color: var(--muted);
  line-height: 1.55;
}

.review-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #071514;
  font-weight: 900;
  white-space: nowrap;
}

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

.seo-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.06);
}

.seo-grid h3 {
  margin: 0 0 16px;
  color: var(--cream);
  font-size: 1.2rem;
  line-height: 1.2;
}

.location-link {
  display: block;
  text-decoration: underline;
  text-decoration-color: rgba(230, 194, 126, 0.48);
  text-underline-offset: 4px;
}

.location-link:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold-light);
}

.menu-groups {
  display: grid;
  gap: 14px;
}

.menu-group {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 31, 30, 0.78);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.menu-group summary {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.menu-group summary::-webkit-details-marker {
  display: none;
}

.menu-group summary::after {
  content: "+";
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #071514;
  font-size: 1.2rem;
  font-weight: 800;
}

.menu-group[open] summary::after {
  content: "-";
}

.menu-group summary span {
  display: grid;
  gap: 5px;
}

.menu-group summary strong {
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  color: var(--cream);
}

.menu-group summary small,
.menu-group summary em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.4;
}

.menu-group summary em {
  justify-self: end;
  white-space: nowrap;
  font-weight: 800;
}

.featured-group {
  background: linear-gradient(135deg, rgba(199, 149, 76, 0.18), rgba(126, 145, 116, 0.12)), rgba(8, 31, 30, 0.9);
  border-color: rgba(230, 194, 126, 0.36);
}

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

.menu-card {
  display: grid;
  gap: 18px;
  min-height: 298px;
  padding: 22px;
  background: rgba(248, 239, 224, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(28, 18, 12, 0.06);
}

.menu-card.is-top {
  border-color: rgba(199, 149, 76, 0.56);
}

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.menu-card h3 {
  margin: 0;
  color: #0d2322;
  font-size: 1.22rem;
  line-height: 1.18;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(13, 35, 34, 0.08);
  color: #284542;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.tag-top {
  background: rgba(199, 149, 76, 0.2);
  color: #8a5d1d;
}

.ingredients {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.menu-card-foot {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.weight {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.price {
  color: #4b2f14;
  font-size: 1.45rem;
  font-weight: 950;
  white-space: nowrap;
}

.price-soon {
  color: #73521f;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-action {
  display: grid;
  justify-items: end;
  gap: 10px;
}

.add-order-btn,
.submit-order,
.clear-cart,
.qty-control button {
  border: 0;
  cursor: pointer;
  font-weight: 850;
}

.add-order-btn,
.submit-order {
  min-height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9af68, #b77d35);
  color: #071514;
}

.add-order-btn {
  padding: 0 16px;
  font-size: 0.9rem;
}

.add-order-btn:disabled {
  cursor: not-allowed;
  opacity: 0.52;
  background: rgba(214, 170, 98, 0.36);
}

.order-section {
  background:
    linear-gradient(180deg, rgba(248, 239, 224, 0.04), rgba(248, 239, 224, 0.02)),
    rgba(6, 21, 20, 0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hours-section {
  align-items: center;
  background: rgba(8, 31, 30, 0.82);
  border-top: 1px solid var(--line);
}

.hours-list {
  display: grid;
  gap: 14px;
}

.hours-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.08);
}

.hours-list span {
  color: var(--muted);
  font-weight: 850;
}

.hours-list strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.order-layout {
  align-items: start;
}

.cart-panel,
.order-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.95);
  color: #0d2322;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.2);
}

.cart-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.cart-head,
.cart-total,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-head h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #0d2322;
}

.clear-cart {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(7, 31, 31, 0.08);
  color: var(--muted);
  border: 1px solid var(--line);
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 88px;
  margin: 22px 0;
}

.cart-empty {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.cart-line {
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

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

.cart-line span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.qty-control {
  display: grid;
  grid-template-columns: 32px 28px 32px;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.qty-control button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fffaf0;
  color: #0d2322;
  border: 1px solid var(--line);
}

.cart-total {
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  color: #4b2f14;
  font-size: 1.5rem;
}

.order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.order-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.order-form label:nth-of-type(4),
.channel-choice,
.cash-only,
.order-form label:nth-of-type(5),
.submit-order,
.form-status {
  grid-column: 1 / -1;
}

.channel-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.channel-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.channel-choice label {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: #0d2322;
  cursor: pointer;
}

.channel-choice input {
  width: auto;
  margin: 0 8px 0 0;
  accent-color: var(--gold);
}

.cash-only {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(199, 149, 76, 0.34);
  border-radius: 8px;
  background: rgba(199, 149, 76, 0.12);
}

.cash-only span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.cash-only strong {
  color: #4b2f14;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  color: #0d2322;
  font: inherit;
}

.order-form input,
.order-form select {
  min-height: 48px;
  padding: 0 14px;
}

.order-form textarea {
  resize: vertical;
  padding: 12px 14px;
}

.channel-choice input[type="radio"] {
  width: auto;
  min-height: 0;
  padding: 0;
}

.submit-order {
  margin-top: 2px;
  font-size: 1rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-status[data-tone="success"] {
  color: #41683b;
}

.form-status[data-tone="error"] {
  color: #bc483d;
}

.delivery-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(199, 149, 76, 0.14), transparent 28%),
    var(--charcoal);
  color: var(--cream);
  align-items: start;
}

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

.delivery-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.steps article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(230, 194, 126, 0.2);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.045);
}

.steps span {
  color: var(--gold);
  font-weight: 900;
}

.steps h3 {
  margin: 42px 0 12px;
  font-size: 1.2rem;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
}

.contact-section {
  align-items: center;
  background: rgba(8, 31, 30, 0.62);
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions a {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(248, 239, 224, 0.95);
  color: #0d2322;
  font-weight: 850;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: 38px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: #041111;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(230, 194, 126, 0.42);
}

.footer-brand div,
.footer-columns div {
  display: grid;
  gap: 8px;
}

.footer-brand strong,
.footer-columns h3 {
  margin: 0;
  color: var(--cream);
}

.footer-brand span,
.footer-columns a,
.footer-columns span {
  color: var(--muted);
  line-height: 1.45;
}

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

.footer-columns a:hover {
  color: var(--gold-light);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .quick-info,
  .section-head,
  .order-layout,
  .hours-section,
  .delivery-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
    gap: 12px;
    padding: 10px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .lang-btn {
    min-width: 36px;
  }

  .hero {
    min-height: 640px;
    padding: 48px 18px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 16, 16, 0.95) 0%, rgba(4, 20, 19, 0.78) 66%, rgba(4, 20, 19, 0.46) 100%),
      linear-gradient(0deg, rgba(6, 21, 20, 0.35), rgba(6, 21, 20, 0.1));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .quick-info,
  .link-grid,
  .menu-grid,
  .seo-grid,
  .steps,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .quick-info div {
    min-height: auto;
    padding: 22px 18px;
  }

  .menu-section,
  .link-section,
  .reviews-section,
  .seo-section,
  .order-section,
  .hours-section,
  .delivery-section,
  .contact-section {
    padding: 54px 18px;
  }

  .menu-card {
    min-height: auto;
  }

  .menu-group summary {
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .menu-group summary em {
    display: none;
  }

  .menu-grid {
    padding: 0 12px 12px;
  }

  .hours-list div {
    display: grid;
    align-content: center;
  }

  .cart-panel {
    position: static;
  }

  .review-panel {
    grid-template-columns: 1fr;
  }

  .review-panel a {
    width: 100%;
  }

  .order-form {
    grid-template-columns: 1fr;
  }

  .price-action {
    align-items: end;
  }
}
