:root {
  --background: #f4f0e8;
  --surface: #fffdf8;
  --surface-strong: #ffffff;
  --surface-muted: #ece6db;
  --text: #1d1d1b;
  --muted: #716e66;
  --line: #ded9cf;
  --accent: #e85d35;
  --accent-dark: #c44422;
  --green: #477257;
  --shadow: 0 18px 50px rgba(48, 39, 28, 0.12);
  --radius-large: 32px;
  --radius-medium: 22px;
  --page-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 100px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 93, 53, 0.1), transparent 27rem),
    var(--background);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: color 180ms ease, background-color 180ms ease;
}

body.theme-dark {
  --background: #171816;
  --surface: #20221f;
  --surface-strong: #292b27;
  --surface-muted: #30332e;
  --text: #f6f1e8;
  --muted: #aaa69e;
  --line: #3b3e39;
  --green: #7da68a;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 93, 53, 0.12), transparent 27rem),
    var(--background);
}

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

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

button {
  color: inherit;
}

:where(a, button, input, textarea, select, summary):focus-visible {
  outline: 3px solid rgba(232, 93, 53, 0.38);
  outline-offset: 3px;
}

.service-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 max(24px, calc((100% - var(--page-width)) / 2 + 32px));
  color: #f7f2e8;
  background: #20211d;
  font-size: 11px;
}

.service-strip p {
  margin: 0;
}

.service-strip p span {
  margin-right: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #20211d;
  background: #f7f2e8;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-strip a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.service-strip a span {
  margin-left: 8px;
  color: #f08a69;
}

.topbar {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 18px 32px;
  background: rgba(244, 240, 232, 0.86);
  backdrop-filter: blur(18px);
}

.desktop-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.desktop-nav a {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: 150ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
  background: var(--surface-strong);
}

.order-status {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-right: 4px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.order-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #62a979;
  box-shadow: 0 0 0 4px rgba(98, 169, 121, 0.12);
}

.topbar__actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-icon-button {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition: 150ms ease;
}

.header-icon-button > span {
  font-size: 20px;
  line-height: 1;
}

.header-icon-button small {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 9px;
  font-weight: 800;
}

.header-icon-button.is-active,
.header-icon-button:hover {
  border-color: var(--text);
  color: #fff;
  background: var(--text);
}

body.theme-dark .topbar {
  background: rgba(23, 24, 22, 0.86);
}

body.theme-dark .desktop-nav {
  background: rgba(255, 255, 255, 0.03);
}

body.theme-dark .header-icon-button,
body.theme-dark .table-button {
  background: rgba(255, 255, 255, 0.04);
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

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

.brand strong {
  font-size: 13px;
  letter-spacing: 0.13em;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.table-button {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.table-button span {
  color: var(--muted);
  font-size: 12px;
}

.table-button strong {
  font-size: 13px;
}

.member-button,
.booking-button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.member-button {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 0 13px;
  color: var(--text);
  background: var(--surface-muted);
}

.member-button span {
  font-size: 17px;
}

.member-button em {
  max-width: 85px;
  overflow: hidden;
  font-size: 11px;
  font-style: normal;
  font-weight: 850;
  text-overflow: ellipsis;
}

.member-button.is-member {
  color: #fff;
  background: var(--green);
}

.booking-button {
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, #f26b43, #d94b2d);
  box-shadow: 0 9px 22px rgba(232, 93, 53, 0.22);
  font-size: 11px;
  font-weight: 850;
  transition: 150ms ease;
}

.booking-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

main {
  width: min(100%, var(--page-width));
  margin: 0 auto;
  padding: 16px 32px 150px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.4fr);
  min-height: clamp(420px, 45vw, 560px);
  padding: clamp(34px, 6vw, 74px);
  border-radius: var(--radius-large);
  color: #fff8e9;
  background:
    linear-gradient(90deg, rgba(20, 20, 17, 0.98) 0%, rgba(28, 27, 22, 0.92) 48%, rgba(24, 23, 18, 0.48) 100%),
    url("assets/menu/cappuccino.jpg") center 56% / cover,
    #24231e;
  isolation: isolate;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  content: "";
}

.hero::before {
  top: -140px;
  right: -60px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::after {
  right: 130px;
  bottom: -170px;
  width: 330px;
  height: 330px;
  background: rgba(232, 93, 53, 0.18);
  filter: blur(4px);
}

.hero__content {
  z-index: 1;
  align-self: center;
  max-width: 670px;
}

.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 20px;
  color: #c9c3b4;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #79b58a;
  box-shadow: 0 0 0 5px rgba(121, 181, 138, 0.13);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6.4vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero__lead {
  margin: 24px 0 0;
  color: #c9c3b4;
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 28px;
}

.primary-link,
.secondary-link,
.primary-button,
.text-link {
  border: 0;
  text-decoration: none;
  cursor: pointer;
}

.primary-link,
.secondary-link {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
}

.primary-link {
  color: var(--text);
  background: #fff8e9;
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff8e9;
  background: rgba(255, 255, 255, 0.07);
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.hero__highlights span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: #d7d1c4;
  background: rgba(255, 255, 255, 0.04);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero__feature {
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(100%, 220px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 22px;
  background: rgba(23, 22, 18, 0.56);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px);
}

.hero__feature-label {
  display: block;
  margin-bottom: 10px;
  color: #e9a88f;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

.hero__feature strong {
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.04;
}

.hero__feature small {
  margin-top: 13px;
  color: #c9c3b4;
}

.hero__art {
  position: absolute;
  right: clamp(20px, 8vw, 100px);
  bottom: 30px;
  width: 190px;
  height: 190px;
  color: #fff;
  opacity: 0.94;
}

.hero__cup {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 130px;
  filter: saturate(0) brightness(4);
  transform: rotate(-7deg);
}

.hero__steam {
  position: absolute;
  top: -12px;
  right: 77px;
  font-family: Georgia, serif;
  font-size: 82px;
  opacity: 0.4;
  transform: rotate(90deg);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.service-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.service-action {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 11px;
  align-items: center;
  min-height: 76px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  text-align: left;
  background: linear-gradient(145deg, var(--surface-strong), rgba(255, 255, 255, 0.4));
  box-shadow: 0 8px 24px rgba(48, 39, 28, 0.045);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-action:hover {
  border-color: rgba(232, 93, 53, 0.35);
  box-shadow: 0 14px 30px rgba(48, 39, 28, 0.09);
  transform: translateY(-2px);
}

.service-action > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--green);
  background: rgba(71, 114, 87, 0.1);
  font-size: 18px;
  font-weight: 800;
}

.service-action strong,
.service-action small {
  display: block;
}

.service-action strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.service-action small {
  color: var(--muted);
  font-size: 8px;
}

.service-action--accent {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #ef6a42, #d94b2d);
  box-shadow: 0 12px 28px rgba(232, 93, 53, 0.2);
}

.service-action--accent > span {
  color: #fff;
  background: rgba(255, 255, 255, 0.17);
}

.service-action--accent small {
  color: rgba(255, 255, 255, 0.72);
}

body.theme-dark .service-action {
  background: linear-gradient(145deg, var(--surface-strong), rgba(255, 255, 255, 0.025));
}

body.theme-dark .service-action--accent {
  background: linear-gradient(135deg, #ef6a42, #d94b2d);
}

.promo-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-height: 170px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 25px;
}

.promo-card--accent {
  color: #fff8e9;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.17), transparent 10rem),
    var(--accent);
}

.promo-card--accent::after {
  position: absolute;
  right: 20%;
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.promo-card--light {
  justify-content: flex-start;
  background: rgba(255, 253, 248, 0.62);
}

.promo-card__icon {
  display: grid;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: var(--surface-muted);
  font-size: 27px;
}

.promo-card p {
  margin: 0 0 8px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.promo-card h2 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.promo-card > div > span {
  font-size: 12px;
  opacity: 0.72;
}

.promo-button {
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 0;
  border-radius: 13px;
  color: var(--accent);
  background: #fff8e9;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

body.theme-dark .promo-card--light,
body.theme-dark .feature-card {
  background: rgba(255, 255, 255, 0.04);
}

.delivery-showcase {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.68);
}

.delivery-showcase__content {
  align-self: center;
  padding: clamp(32px, 5vw, 64px);
}

.delivery-showcase__content h2 {
  max-width: 700px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.delivery-showcase__content > p:not(.section-kicker) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.delivery-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0;
}

.delivery-benefits span,
.delivery-benefits strong,
.delivery-benefits small {
  display: block;
}

.delivery-benefits strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

.delivery-benefits small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.delivery-steps {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px);
  color: #f8f2e6;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 93, 53, 0.3), transparent 17rem),
    #23241f;
}

.delivery-steps::after {
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.delivery-steps > p {
  margin: 0 0 20px;
  color: #ee8a69;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.delivery-steps ol {
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 14px;
  align-items: center;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.delivery-steps li > span {
  color: #ee8a69;
  font-family: Georgia, serif;
  font-size: 19px;
}

.delivery-steps li strong,
.delivery-steps li small {
  display: block;
}

.delivery-steps li strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.delivery-steps li small {
  color: #9e9e96;
  font-size: 10px;
}

.delivery-steps__note {
  z-index: 1;
  margin-top: 24px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.delivery-steps__note span {
  margin-right: 7px;
  color: #ee8a69;
}

body.theme-dark .delivery-showcase {
  background: rgba(255, 255, 255, 0.03);
}

.menu-section {
  padding-top: clamp(48px, 7vw, 84px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
}

.section-kicker {
  margin: 0 0 7px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.dish-count {
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}

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

.search {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.75);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.search:focus-within {
  border-color: rgba(232, 93, 53, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 93, 53, 0.08);
}

.search > span {
  color: var(--muted);
  font-size: 27px;
  transform: rotate(-20deg);
}

.search input {
  width: 100%;
  padding: 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.search input::placeholder {
  color: #9b978f;
}

.sort-control {
  position: relative;
}

.sort-control::after {
  position: absolute;
  top: 50%;
  right: 16px;
  content: "⌄";
  pointer-events: none;
  transform: translateY(-56%);
}

.sort-control select {
  height: 100%;
  min-width: 185px;
  padding: 0 42px 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  outline: 0;
  color: var(--text);
  background: rgba(255, 253, 248, 0.75);
  font-size: 13px;
  font-weight: 700;
  appearance: none;
  cursor: pointer;
}

body.theme-dark .search,
body.theme-dark .sort-control select {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.categories {
  overflow-x: auto;
  display: flex;
  gap: 9px;
  padding: 18px 0 24px;
  scrollbar-width: none;
}

.categories::-webkit-scrollbar {
  display: none;
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin: -7px 0 24px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.52);
}

.quick-filters > span {
  margin-right: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.quick-filters button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.quick-filters button.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #386a4b, #274d38);
  box-shadow: 0 8px 20px rgba(39, 77, 56, 0.18);
}

.category-button {
  flex: 0 0 auto;
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: 150ms ease;
}

.category-button span {
  margin-right: 7px;
  font-size: 12px;
  opacity: 0.75;
}

.category-button:hover {
  border-color: #b8b1a4;
  background: rgba(255, 255, 255, 0.48);
}

.category-button.is-active {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #315f45, #203f2e);
  box-shadow: 0 9px 22px rgba(32, 63, 46, 0.17);
}

.active-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px 15px;
  border: 1px solid rgba(232, 93, 53, 0.24);
  border-radius: 14px;
  color: var(--accent-dark);
  background: rgba(232, 93, 53, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.active-filter button,
.empty-state button {
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

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

.menu-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(222, 217, 207, 0.82);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.83);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.menu-card__visual {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 0;
  aspect-ratio: 4 / 3;
  place-items: center;
  background: #e8e1d5;
}

.menu-card__image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  cursor: pointer;
  transition: transform 500ms ease;
}

.menu-card__product {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: grid;
  padding: 0;
  border: 0;
  place-items: center;
  color: var(--product-accent);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.24), transparent 7rem),
    linear-gradient(145deg, color-mix(in srgb, var(--product-color), white 12%), var(--product-color));
  cursor: pointer;
}

.menu-card__product::before,
.menu-card__product::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.menu-card__product::before {
  top: -24%;
  right: -8%;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--product-accent), transparent 78%);
}

.menu-card__product::after {
  bottom: -44%;
  left: -15%;
  width: 80%;
  aspect-ratio: 1;
  background: color-mix(in srgb, var(--product-accent), transparent 88%);
}

.menu-card__product i {
  position: absolute;
  z-index: 1;
  width: 106px;
  height: 205px;
  border: 5px solid color-mix(in srgb, var(--product-accent), transparent 45%);
  border-radius: 25px 25px 31px 31px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.15), transparent 28% 72%, rgba(0, 0, 0, 0.1)),
    var(--product-color);
  box-shadow: 0 25px 35px rgba(20, 20, 18, 0.25);
  transform: rotate(5deg);
}

.menu-card__product i::before,
.menu-card__product i::after {
  position: absolute;
  left: 50%;
  width: 84px;
  height: 9px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--product-accent), white 15%);
  content: "";
  transform: translateX(-50%);
}

.menu-card__product i::before {
  top: -3px;
}

.menu-card__product i::after {
  bottom: -3px;
}

.menu-card__product strong,
.menu-card__product small {
  position: relative;
  z-index: 2;
  display: block;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.menu-card__product strong {
  margin-top: -8px;
  font-size: 24px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -0.04em;
  transform: rotate(-7deg);
}

.menu-card__product small {
  margin-top: -86px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.menu-card:hover .menu-card__image {
  transform: scale(1.035);
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: #1d1d1b;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(30, 25, 20, 0.13);
  font-size: 21px;
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.favorite-button.is-favorite {
  color: #fff;
  background: var(--accent);
}

.menu-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 19px;
}

.menu-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-card__category {
  margin: 0 0 7px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.menu-card__time {
  color: var(--muted);
  font-size: 10px;
}

.menu-card__time::before {
  margin-right: 4px;
  content: "◷";
}

.menu-card__open {
  padding: 0;
  border: 0;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.menu-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.menu-card__open:hover .menu-card__title {
  color: var(--accent);
}

.menu-card__description {
  min-height: 38px;
  margin: 9px 0 17px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.menu-card__facts {
  margin: -7px 0 17px;
  color: #98938a;
  font-size: 10px;
}

.menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.menu-card__price {
  font-size: 16px;
}

.add-button,
.icon-button,
.quantity-button {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.add-button {
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #315f45, #203f2e);
  box-shadow: 0 8px 18px rgba(32, 63, 46, 0.2);
  font-size: 25px;
  transition: 150ms ease;
}

.add-button:hover {
  background: var(--accent);
  transform: rotate(4deg) scale(1.05);
}

.add-button:active {
  transform: scale(0.94);
}

.empty-state {
  padding: 56px 20px;
  border: 1px dashed #cfc7ba;
  border-radius: var(--radius-medium);
  text-align: center;
}

.empty-state span {
  font-size: 48px;
}

.empty-state h3 {
  margin: 12px 0 5px;
  font-family: Georgia, serif;
  font-size: 25px;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.empty-state button {
  margin-top: 16px;
  color: var(--accent);
}

.menu-card.has-image-error .menu-card__visual::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  background: var(--surface-muted);
  content: "Фото скоро появится";
  font-size: 12px;
}

.story-section {
  padding-top: clamp(74px, 9vw, 120px);
  scroll-margin-top: 96px;
}

.story-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.72);
}

.story-card__image {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.story-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 24, 19, 0.32));
  content: "";
}

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

.story-card__image > span {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(24, 22, 19, 0.4);
  font-size: 10px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.story-card__content {
  align-self: center;
  padding: clamp(38px, 6vw, 78px);
}

.story-card__content h2,
.faq-intro h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.story-card__content > p:not(.section-kicker) {
  max-width: 640px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.story-card blockquote {
  margin: 0;
  padding: 17px 0 17px 19px;
  border-left: 2px solid var(--accent);
  color: var(--text);
  font-family: Georgia, serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.story-stats span,
.story-stats strong,
.story-stats small {
  display: block;
}

.story-stats span {
  padding: 14px;
  border-radius: 15px;
  background: var(--surface-muted);
}

.story-stats strong {
  font-family: Georgia, serif;
  font-size: 20px;
}

.story-stats small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 8px;
}

body.theme-dark .story-card,
body.theme-dark .review-card {
  background: rgba(255, 255, 255, 0.035);
}

.experience {
  padding-top: clamp(70px, 9vw, 115px);
}

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

.feature-card {
  min-height: 215px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.62);
}

.feature-card > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: var(--surface-muted);
  font-size: 23px;
}

.feature-card h3 {
  margin: 27px 0 8px;
  font-family: Georgia, serif;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.visit-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 360px;
  margin-top: 16px;
  border-radius: 28px;
  color: #f9f4e9;
  background: #20211d;
}

.visit-card__content {
  align-self: center;
  padding: clamp(28px, 5vw, 58px);
}

.visit-card__content h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.visit-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 29px;
}

.visit-card__details span,
.visit-card__details small,
.visit-card__details strong {
  display: block;
}

.visit-card__details small {
  margin-bottom: 5px;
  color: #94948d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.visit-card__details strong {
  font-size: 13px;
}

.visit-card__actions {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
}

.primary-button {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #3d7252, #28523b);
  box-shadow: 0 10px 24px rgba(40, 82, 59, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.text-link {
  color: #c7c3b9;
  font-size: 12px;
  font-weight: 700;
}

.visit-card__map {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 47%, rgba(255, 255, 255, 0.08) 48% 52%, transparent 53%),
    linear-gradient(35deg, #39473c, #26332a);
}

.visit-card__map::before,
.visit-card__map::after {
  position: absolute;
  width: 65%;
  height: 43%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.visit-card__map::after {
  width: 100%;
  height: 72%;
}

.map-pin {
  z-index: 2;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 8px solid rgba(255, 255, 255, 0.22);
  border-radius: 50% 50% 50% 8px;
  color: #fff;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 25px;
  transform: rotate(-45deg);
}

.map-pin::first-letter {
  transform: rotate(45deg);
}

.visit-card__map small {
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reviews-section,
.faq-section {
  padding-top: clamp(74px, 9vw, 120px);
  scroll-margin-top: 96px;
}

.reviews-heading {
  align-items: center;
}

.reviews-score {
  display: grid;
  grid-template-columns: auto auto;
  gap: 1px 9px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-strong);
}

.reviews-score strong {
  grid-row: span 2;
  font-family: Georgia, serif;
  font-size: 31px;
}

.reviews-score span,
.review-card__footer span {
  color: #dc8e25;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.reviews-score small {
  color: var(--muted);
  font-size: 8px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 15px;
}

.review-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: rgba(255, 253, 248, 0.68);
}

.review-card--featured {
  color: #f8f3e8;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 93, 53, 0.28), transparent 13rem),
    #252620;
}

.review-card__top {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 11px;
  align-items: center;
}

.review-card__top > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 10px;
  font-weight: 900;
}

.review-card__top strong,
.review-card__top small {
  display: block;
}

.review-card__top strong {
  margin-bottom: 3px;
  font-size: 12px;
}

.review-card__top small,
.review-card__top time,
.review-card__footer small {
  color: var(--muted);
  font-size: 8px;
}

.review-card--featured .review-card__top small,
.review-card--featured .review-card__top time,
.review-card--featured .review-card__footer small {
  color: #999a92;
}

.review-card > p {
  margin: 29px 0;
  font-family: Georgia, serif;
  font-size: 19px;
  line-height: 1.5;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 7vw, 90px);
  padding-bottom: 40px;
}

.faq-intro {
  align-self: start;
  position: sticky;
  top: 112px;
}

.faq-intro > p:not(.section-kicker) {
  max-width: 400px;
  margin: 20px 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.secondary-button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--text);
  background: var(--surface-strong);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  margin-left: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--surface-muted);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  color: #fff;
  background: var(--accent);
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: -6px 50px 23px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.mobile-nav {
  display: none;
}

.cart-bar {
  position: fixed;
  z-index: 30;
  right: 50%;
  bottom: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  width: min(calc(100% - 32px), 560px);
  padding: 13px 16px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: var(--text);
  box-shadow: 0 18px 50px rgba(20, 18, 15, 0.28);
  cursor: pointer;
  transform: translateX(50%);
}

.cart-bar__count {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  color: var(--text);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

.cart-bar__label {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
}

.cart-bar strong {
  font-size: 15px;
}

.drawer-backdrop {
  position: fixed;
  z-index: 40;
  inset: 0;
  background: rgba(23, 22, 19, 0.44);
  backdrop-filter: blur(4px);
}

.cart-drawer {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  width: min(100%, 600px);
  overflow-y: auto;
  max-height: min(92dvh, 920px);
  margin: 0 auto;
  padding: 10px 24px 24px;
  border-radius: 28px 28px 0 0;
  background: var(--surface-strong);
  box-shadow: 0 -20px 70px rgba(28, 24, 19, 0.22);
  transform: translateY(105%);
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cart-drawer.is-open {
  transform: translateY(0);
}

.drawer-handle {
  width: 46px;
  height: 5px;
  margin: 0 auto 19px;
  border-radius: 999px;
  background: #dbd7d0;
}

.cart-drawer__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.cart-drawer__header p {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cart-drawer__header h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 32px;
}

.order-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 18px;
  padding: 5px;
  border-radius: 14px;
  background: var(--surface-muted);
}

.order-types button {
  padding: 10px;
  border: 0;
  border-radius: 10px;
  color: var(--muted);
  background: transparent;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.order-types button.is-active {
  color: var(--text);
  background: var(--surface-strong);
  box-shadow: 0 5px 16px rgba(42, 35, 28, 0.08);
}

.icon-button {
  width: 38px;
  height: 38px;
  background: #f1eee8;
  font-size: 25px;
}

.cart-items {
  overflow-y: auto;
  max-height: 28vh;
  margin: 19px 0;
  border-top: 1px solid var(--line);
}

.cart-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item__emoji {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--background);
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.quantity {
  display: flex;
  gap: 9px;
  align-items: center;
}

.quantity-button {
  width: 29px;
  height: 29px;
  background: #f1eee8;
  font-size: 17px;
}

.quantity strong {
  min-width: 14px;
  text-align: center;
  font-size: 13px;
}

.comment-field {
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.comment-field span {
  font-size: 12px;
  font-weight: 700;
}

.comment-field textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  resize: none;
  color: var(--text);
  background: var(--surface-strong);
}

.comment-field textarea:focus {
  border-color: var(--accent);
}

.delivery-fields {
  display: grid;
  gap: 12px;
  margin: 4px 0 19px;
  padding: 16px;
  border: 1px solid rgba(232, 93, 53, 0.2);
  border-radius: 17px;
  background: rgba(232, 93, 53, 0.055);
}

.checkout-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.checkout-heading span {
  font-size: 12px;
  font-weight: 800;
}

.checkout-heading small {
  color: var(--muted);
  font-size: 9px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkout-field {
  display: grid;
  gap: 6px;
}

.checkout-field span,
.promo-control > label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.checkout-field input,
.promo-control input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  background: var(--surface-strong);
}

.checkout-field input:focus,
.promo-control input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 53, 0.08);
}

.checkout-options {
  min-width: 0;
  margin: 0 0 17px;
  padding: 0;
  border: 0;
}

.checkout-options legend,
.promo-control > label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.option-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.option-buttons--tips {
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
}

.option-buttons button {
  min-height: 42px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  background: transparent;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.option-buttons button.is-active {
  border-color: var(--text);
  color: #fff;
  background: var(--text);
}

.promo-control {
  margin-bottom: 17px;
}

.promo-control > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 7px;
}

.promo-control button {
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #3d7252, #28523b);
  box-shadow: 0 8px 18px rgba(40, 82, 59, 0.15);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.promo-control small {
  display: block;
  min-height: 13px;
  margin-top: 6px;
  color: var(--green);
  font-size: 9px;
}

.promo-control small.is-error {
  color: var(--accent);
}

.price-breakdown {
  margin-top: 18px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.price-breakdown > div:not(.cart-summary) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--muted);
  font-size: 11px;
}

.price-breakdown > div:not(.cart-summary) strong {
  color: var(--text);
  font-size: 11px;
}

#discount-row strong {
  color: var(--green);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 16px 0 14px;
  border-top: 1px dashed var(--line);
}

.cart-summary > div span,
.cart-summary > div small {
  display: block;
}

.cart-summary > div small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.cart-summary span {
  color: var(--muted);
  font-size: 14px;
}

.cart-summary strong {
  font-family: Georgia, serif;
  font-size: 26px;
}

.order-button {
  width: 100%;
  padding: 16px;
  border: 0;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #3d7252, #28523b);
  box-shadow: 0 12px 28px rgba(40, 82, 59, 0.22);
  font-weight: 800;
  cursor: pointer;
}

.order-button:hover {
  background: #355e45;
}

.order-note {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.order-success {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 11px;
  align-items: center;
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(71, 114, 87, 0.2);
  border-radius: 14px;
  background: rgba(71, 114, 87, 0.08);
}

.order-success > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.order-success strong,
.order-success small {
  display: block;
}

.order-success strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.order-success small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.details-backdrop {
  position: fixed;
  z-index: 55;
  inset: 0;
  background: rgba(23, 22, 19, 0.56);
  backdrop-filter: blur(6px);
}

.dish-modal {
  position: fixed;
  z-index: 60;
  top: 50%;
  left: 50%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  width: min(calc(100% - 32px), 860px);
  max-height: min(88vh, 680px);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: 0 28px 90px rgba(16, 14, 11, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(0.97);
  transition: opacity 200ms ease, transform 220ms ease;
}

.dish-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.dish-modal__close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  color: #1d1d1b;
  background: rgba(255, 255, 255, 0.9);
}

.dish-modal__image-wrap {
  position: relative;
  min-height: 520px;
  background: var(--surface-muted);
}

.dish-modal__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-modal__image-wrap > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dish-modal__content {
  overflow-y: auto;
  align-self: center;
  padding: clamp(28px, 5vw, 52px);
}

.dish-modal__content h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(35px, 5vw, 51px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.dish-modal__description {
  margin: 14px 0 19px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.dish-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.dish-meta span {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-muted);
  font-size: 10px;
  font-weight: 700;
}

.dish-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 26px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}

.dish-info-grid h3 {
  margin: 0 0 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dish-info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.dish-modal__footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-top: 27px;
}

.dish-modal__footer > strong {
  font-family: Georgia, serif;
  font-size: 27px;
}

.utility-backdrop {
  position: fixed;
  z-index: 70;
  inset: 0;
  background: rgba(23, 22, 19, 0.58);
  backdrop-filter: blur(7px);
}

.site-modal {
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 50%;
  overflow-y: auto;
  width: min(calc(100% - 32px), 560px);
  max-height: min(90dvh, 760px);
  padding: clamp(29px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
  box-shadow: 0 28px 90px rgba(16, 14, 11, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(0.97);
  transition: opacity 180ms ease, transform 200ms ease;
}

.site-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.site-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
}

.modal-emblem {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 19px;
  color: #fff;
  background: var(--accent);
  font-family: Georgia, serif;
  font-size: 30px;
  font-style: italic;
  transform: rotate(-4deg);
}

.site-modal h2 {
  max-width: 470px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(35px, 6vw, 48px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.site-modal__lead {
  margin: 15px 0 23px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.member-benefits {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.member-benefits li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border-radius: 14px;
  background: var(--surface-muted);
}

.member-benefits li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  color: var(--accent);
  background: var(--surface-strong);
  font-size: 11px;
  font-weight: 900;
}

.member-benefits strong,
.member-benefits small {
  display: block;
}

.member-benefits strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.member-benefits small {
  color: var(--muted);
  font-size: 8px;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.modal-form label {
  display: grid;
  gap: 6px;
}

.modal-form label > span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.modal-form input,
.modal-form select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--text);
  background: var(--surface-strong);
}

.modal-form input:focus,
.modal-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 93, 53, 0.08);
}

.modal-form .primary-button {
  width: 100%;
  margin-top: 3px;
}

.profile-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #f19a57);
  font-family: Georgia, serif;
  font-size: 29px;
}

.bonus-card {
  margin: 24px 0 12px;
  padding: 20px;
  border-radius: 19px;
  color: #f8f3e8;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 93, 53, 0.38), transparent 13rem),
    #252620;
}

.bonus-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bonus-card span,
.bonus-card strong,
.bonus-card small {
  display: block;
}

.bonus-card span,
.bonus-card small {
  color: #a7a79f;
  font-size: 9px;
}

.bonus-card strong {
  font-family: Georgia, serif;
  font-size: 22px;
}

.bonus-card > small {
  margin-top: 18px;
}

.bonus-card > i {
  overflow: hidden;
  display: block;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.bonus-card > i span {
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.profile-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.profile-perks > span {
  padding: 15px;
  border-radius: 14px;
  background: var(--surface-muted);
  font-size: 16px;
  font-weight: 900;
}

.profile-perks small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 500;
}

.member-profile > .secondary-button {
  width: 100%;
}

.booking-success {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  padding: 15px;
  border: 1px solid rgba(71, 114, 87, 0.22);
  border-radius: 16px;
  background: rgba(71, 114, 87, 0.08);
}

.booking-success > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-weight: 900;
}

.booking-success strong,
.booking-success small {
  display: block;
}

.booking-success strong {
  margin-bottom: 4px;
  font-size: 11px;
}

.booking-success small {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
}

body.theme-dark .site-modal,
body.theme-dark .modal-form input,
body.theme-dark .modal-form select {
  color: var(--text);
  background: var(--surface);
}

.toast {
  position: fixed;
  z-index: 90;
  top: 88px;
  left: 50%;
  max-width: min(calc(100% - 32px), 440px);
  padding: 12px 17px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  color: #fff;
  background: rgba(29, 29, 27, 0.94);
  box-shadow: 0 15px 38px rgba(18, 15, 12, 0.25);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.theme-dark .menu-card,
body.theme-dark .cart-drawer,
body.theme-dark .dish-modal {
  border-color: var(--line);
  background: var(--surface);
}

body.theme-dark .icon-button,
body.theme-dark .quantity-button {
  color: var(--text);
  background: var(--surface-muted);
}

body.theme-dark .category-button.is-active,
body.theme-dark .header-icon-button.is-active,
body.theme-dark .add-button,
body.theme-dark .cart-bar,
body.theme-dark .option-buttons button.is-active {
  border-color: #f6f1e8;
  color: #171816;
  background: #f6f1e8;
}

body.theme-dark .checkout-field input,
body.theme-dark .promo-control input,
body.theme-dark .comment-field textarea {
  color: var(--text);
  background: var(--surface-muted);
}

body.theme-dark .primary-link {
  color: #171816;
}

body.theme-dark .cart-bar__count {
  color: #f6f1e8;
  background: #171816;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, var(--page-width));
  margin: -90px auto 0;
  padding: 0 24px 34px;
  color: var(--muted);
  font-size: 11px;
}

.site-footer a {
  color: inherit;
  text-underline-offset: 3px;
}

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

[hidden] {
  display: none !important;
}

@media (max-width: 1450px) {
  .order-status {
    display: none;
  }

  .desktop-nav a {
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media (max-width: 1280px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 1050px) {
  .desktop-nav {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 180px;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

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

  .delivery-showcase {
    grid-template-columns: 1fr;
  }

  .delivery-steps {
    min-height: 390px;
  }

  .story-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .story-card__image {
    min-height: 420px;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-card--featured {
    grid-column: 1 / -1;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

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

  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .visit-card {
    grid-template-columns: 1fr;
  }

  .visit-card__map {
    min-height: 240px;
  }

  .dish-modal {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

@media (max-width: 560px) {
  .service-strip {
    min-height: 34px;
    padding: 0 16px;
    font-size: 9px;
  }

  .service-strip p span,
  .service-strip a {
    display: none;
  }

  .topbar {
    padding: 13px 16px;
  }

  .topbar__actions {
    gap: 5px;
  }

  .table-button,
  .booking-button {
    display: none;
  }

  .member-button {
    width: 38px;
    padding: 0;
    justify-content: center;
  }

  .member-button em {
    display: none;
  }

  .header-icon-button {
    width: 38px;
    height: 38px;
  }

  .brand__mark {
    width: 39px;
    height: 39px;
  }

  .brand small {
    display: none;
  }

  main {
    padding: 5px 16px 175px;
  }

  .table-button span {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 470px;
    padding: 33px 25px;
    border-radius: 25px;
    background:
      linear-gradient(180deg, rgba(20, 20, 17, 0.96) 0%, rgba(22, 21, 18, 0.79) 67%, rgba(22, 21, 18, 0.55) 100%),
      url("assets/menu/cappuccino.jpg") 62% center / cover;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(39px, 13vw, 57px);
  }

  .hero__lead {
    max-width: 260px;
  }

  .hero__feature {
    display: none;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 260px;
  }

  .hero__highlights {
    margin-top: 20px;
  }

  .promo-grid {
    gap: 11px;
    margin-top: 11px;
  }

  .service-actions {
    overflow-x: auto;
    display: flex;
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .service-actions::-webkit-scrollbar {
    display: none;
  }

  .service-action {
    flex: 0 0 178px;
  }

  .promo-card {
    min-height: 150px;
    padding: 21px;
    border-radius: 21px;
  }

  .promo-card--accent {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-card__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .delivery-showcase {
    margin-top: 11px;
    border-radius: 23px;
  }

  .delivery-showcase__content {
    padding: 32px 22px;
  }

  .delivery-showcase__content h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .delivery-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
  }

  .delivery-benefits strong {
    font-size: 17px;
  }

  .delivery-benefits small {
    font-size: 8px;
  }

  .delivery-steps {
    min-height: 0;
    padding: 30px 22px;
  }

  .story-section,
  .reviews-section,
  .faq-section {
    padding-top: 70px;
  }

  .story-card {
    border-radius: 23px;
  }

  .story-card__image {
    min-height: 320px;
  }

  .story-card__content {
    padding: 31px 22px 36px;
  }

  .story-card__content h2,
  .faq-intro h2 {
    font-size: clamp(36px, 11vw, 49px);
  }

  .story-stats {
    gap: 7px;
  }

  .story-stats span {
    padding: 11px 8px;
  }

  .story-stats strong {
    font-size: 16px;
  }

  .reviews-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-card--featured {
    grid-column: auto;
  }

  .review-card {
    min-height: 230px;
    padding: 21px;
  }

  .faq-list summary {
    padding: 20px 0;
    font-size: 17px;
  }

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

  .quick-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    margin-right: -16px;
    padding-right: 16px;
    scrollbar-width: none;
  }

  .quick-filters::-webkit-scrollbar {
    display: none;
  }

  .quick-filters > span,
  .quick-filters button {
    flex: 0 0 auto;
  }

  .sort-control select {
    width: 100%;
    height: 50px;
  }

  .menu-section {
    padding-top: 47px;
  }

  .dish-count {
    display: none;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .menu-card {
    display: grid;
    grid-template-columns: 128px 1fr;
  }

  .menu-card__visual {
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
  }

  .menu-card__image {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .menu-card__product i {
    width: 67px;
    height: 136px;
    border-width: 3px;
    border-radius: 17px 17px 21px 21px;
  }

  .menu-card__product i::before,
  .menu-card__product i::after {
    width: 52px;
    height: 6px;
  }

  .menu-card__product strong {
    font-size: 16px;
  }

  .menu-card__product small {
    margin-top: -59px;
    font-size: 6px;
  }

  .menu-card__badge {
    top: 8px;
    left: 8px;
    padding: 5px 7px;
    font-size: 8px;
  }

  .favorite-button {
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .menu-card__body {
    padding: 16px;
  }

  .menu-card__title {
    font-size: 20px;
  }

  .menu-card__description {
    min-height: auto;
    margin: 7px 0 13px;
    font-size: 12px;
  }

  .menu-card__facts {
    margin-bottom: 12px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .visit-card {
    border-radius: 24px;
  }

  .visit-card__details {
    gap: 18px;
  }

  .visit-card__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .visit-card__actions .text-link {
    text-align: center;
  }

  .dish-modal {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    display: block;
    width: 100%;
    max-height: 91vh;
    border-radius: 27px 27px 0 0;
    opacity: 1;
    transform: translateY(105%);
  }

  .site-modal {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 92dvh;
    padding: 34px 20px max(30px, env(safe-area-inset-bottom));
    border-radius: 27px 27px 0 0;
    opacity: 1;
    transform: translateY(105%);
  }

  .site-modal.is-open {
    transform: translateY(0);
  }

  .dish-modal.is-open {
    transform: translateY(0);
  }

  .dish-modal__image-wrap {
    min-height: 225px;
    height: 30vh;
  }

  .dish-modal__content {
    overflow: visible;
    padding: 27px 20px 31px;
  }

  .dish-info-grid {
    grid-template-columns: 1fr;
  }

  .add-button {
    width: 36px;
    height: 36px;
  }

  .cart-drawer {
    max-height: 94dvh;
    padding-right: 16px;
    padding-bottom: 28px;
    padding-left: 16px;
  }

  .cart-drawer__header h2 {
    font-size: 28px;
  }

  .order-types button {
    padding: 10px 6px;
    font-size: 10px;
  }

  .cart-items {
    max-height: 24vh;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .checkout-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .option-buttons--tips {
    grid-template-columns: repeat(4, 1fr);
  }

  .option-buttons button {
    min-height: 44px;
    padding: 7px 4px;
    font-size: 10px;
  }

  .cart-bar {
    bottom: 76px;
    width: calc(100% - 24px);
  }

  .mobile-nav {
    position: fixed;
    z-index: 35;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 8px 9px max(8px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 -12px 35px rgba(45, 37, 29, 0.1);
    backdrop-filter: blur(18px);
  }

  body.theme-dark .mobile-nav {
    background: rgba(32, 34, 31, 0.94);
  }

  .mobile-nav a,
  .mobile-nav button {
    position: relative;
    display: grid;
    gap: 2px;
    place-items: center;
    padding: 5px 2px;
    border: 0;
    color: var(--muted);
    background: transparent;
    font-size: 9px;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav span {
    font-size: 20px;
    line-height: 1;
  }

  .mobile-nav .is-active {
    color: var(--accent);
  }

  .mobile-nav small {
    position: absolute;
    top: 0;
    right: 19%;
    display: grid;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--accent);
    font-size: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: -115px;
    padding: 0 16px 100px;
  }
}

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