@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  src: url("/assets/fonts/prata-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  src: url("/assets/fonts/prata-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;
  --ink: #0c0e0d;
  --ink-soft: #151816;
  --paper: #f3efe5;
  --paper-muted: #d4cec0;
  --forest: #173b2a;
  --pistachio: #c2d43c;
  --wood: #9b6544;
  --berry: #ce365a;
  --line: rgba(243, 239, 229, 0.24);
  --line-strong: rgba(243, 239, 229, 0.52);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;
  --page-pad: clamp(16px, 3vw, 52px);
  --header-h: 86px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Manrope", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.drawer-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

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

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--pistachio);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: minmax(144px, 0.9fr) auto minmax(144px, 0.9fr);
  align-items: center;
  min-height: var(--header-h);
  padding: 12px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 14, 13, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  width: 162px;
  height: 50px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 72px);
  color: var(--paper-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.main-nav a,
.site-footer a {
  transition: color 180ms ease;
}

.main-nav a:hover,
.site-footer a:hover {
  color: var(--pistachio);
}

.header-cart {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 8px 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cart:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.cart-count {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--berry);
  color: white;
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.35fr);
  min-height: min(810px, calc(100svh - var(--header-h)));
  padding: var(--page-pad);
  gap: clamp(14px, 2vw, 30px);
}

.hero-copy,
.hero-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(30px, 5vw, 78px);
  background: var(--ink-soft);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--paper-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pistachio);
  box-shadow: 0 0 0 5px rgba(194, 212, 60, 0.08);
}

.hero h1 {
  max-width: 7ch;
  margin: auto 0 26px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(76px, 9vw, 154px);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.065em;
}

.hero-lead {
  max-width: 470px;
  margin: 0 0 34px;
  color: var(--paper-muted);
  font-size: clamp(16px, 1.25vw, 20px);
}

.primary-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 420px);
  min-height: 66px;
  padding: 0 26px;
  border: 1px solid #b6805e;
  border-radius: var(--radius-sm);
  background: var(--wood);
  color: #fffaf1;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 280ms var(--ease), background 220ms ease;
}

.primary-action:hover {
  transform: translateY(-3px);
  background: #aa7350;
}

.hero-addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: 100%;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  background: var(--forest);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 -150px 120px rgba(8, 11, 9, 0.26);
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease);
}

.hero-visual:hover > img {
  transform: scale(1.018);
}

.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 14px;
  background: rgba(12, 14, 13, 0.76);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.menu-section,
.places-section {
  padding: clamp(78px, 9vw, 150px) var(--page-pad);
}

.menu-section {
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  align-items: end;
  gap: 40px;
  margin-bottom: 48px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pistachio);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2,
.places-intro h2,
.drawer-header h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(54px, 7vw, 106px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.section-note {
  margin: 0;
  color: var(--paper-muted);
}

.menu-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--ink-soft);
}

.category-tabs {
  display: flex;
  flex: 1;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar,
.product-rail::-webkit-scrollbar {
  display: none;
}

.category-tab {
  flex: 0 0 auto;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.category-tab:hover {
  color: var(--paper);
}

.category-tab[aria-selected="true"] {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.menu-search {
  position: relative;
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
}

.menu-search button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-search input {
  width: min(260px, 26vw);
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--paper);
  border-radius: 14px;
  outline: 0;
  background: var(--paper);
  color: var(--ink);
}

.menu-arrows {
  display: flex;
  gap: 6px;
}

.menu-arrows button,
.drawer-header button {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.menu-arrows button:hover,
.drawer-header button:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.menu-status {
  min-height: 26px;
  margin: 18px 2px;
  color: var(--paper-muted);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.product-rail {
  display: grid;
  grid-auto-columns: minmax(310px, 26vw);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-card {
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink);
  scroll-snap-align: start;
}

.product-image-wrap {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: var(--forest);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.product-card:hover .product-image {
  transform: scale(1.035);
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 28px;
  background: var(--forest);
  color: var(--paper);
}

.product-placeholder span {
  align-self: center;
  margin: auto;
  font-family: "Prata", Georgia, serif;
  font-size: 112px;
  line-height: 1;
  opacity: 0.9;
}

.product-placeholder small {
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  padding: 24px;
}

.product-category {
  margin: 0 0 10px;
  color: #716b60;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-name {
  margin: 0;
  font-size: clamp(19px, 1.4vw, 24px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.product-description {
  display: -webkit-box;
  max-width: 32ch;
  margin: 12px 0 0;
  overflow: hidden;
  color: #655f55;
  font-size: 12px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.product-price {
  font-family: "Prata", Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.add-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform 240ms var(--ease), background 180ms ease, color 180ms ease;
}

.add-button:hover {
  background: var(--ink);
  color: var(--paper);
  transform: rotate(90deg);
}

.add-button.is-added {
  border-color: var(--forest);
  background: var(--forest);
  color: white;
}

.places-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(540px, 1.3fr);
  gap: clamp(46px, 8vw, 150px);
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.places-intro {
  position: sticky;
  top: calc(var(--header-h) + 42px);
}

.places-intro .eyebrow {
  color: var(--forest);
}

.places-intro h2 {
  max-width: 9ch;
  font-size: clamp(50px, 5.7vw, 88px);
}

.places-intro > p:last-child {
  max-width: 46ch;
  margin: 28px 0 0;
  color: #5f5b53;
}

.places-panel {
  display: grid;
  gap: 18px;
}

.place-card {
  position: relative;
  display: block;
  min-height: clamp(390px, 48vw, 680px);
  overflow: hidden;
  border: 1px solid rgba(12, 14, 13, 0.74);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: #fffaf1;
  isolation: isolate;
}

.place-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 500ms ease;
}

.place-card-sovetskaya > img {
  object-position: center 64%;
}

.place-card-lenina > img {
  object-position: center 45%;
}

.place-card-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.18) 20%, rgba(5, 7, 6, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 7, 6, 0.28), transparent 56%);
}

.place-card-index,
.place-card-copy,
.place-card-arrow {
  position: absolute;
  z-index: 2;
}

.place-card-index {
  top: 28px;
  left: 30px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.place-card-copy {
  right: 104px;
  bottom: 34px;
  left: 32px;
}

.place-card-copy > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 250, 241, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-card-copy strong {
  display: block;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(40px, 5vw, 74px);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.place-card-arrow {
  right: 30px;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  font-size: 25px;
  transition: color 240ms ease, background 240ms ease, transform 300ms var(--ease);
}

.place-card:hover > img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.025);
}

.place-card:hover .place-card-arrow {
  background: var(--paper);
  color: var(--ink);
  transform: translate(3px, -3px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(180px, 0.85fr) minmax(260px, 1.15fr) auto auto;
  align-items: center;
  gap: clamp(26px, 5vw, 84px);
  min-height: 230px;
  padding: 48px var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper-muted);
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-brand {
  display: inline-flex;
  width: 172px;
}

.footer-brand img {
  width: 100%;
}

.footer-phone {
  justify-self: start;
  color: var(--paper);
  font-family: "Prata", Georgia, serif;
  font-size: clamp(22px, 2.5vw, 34px);
  letter-spacing: -0.025em;
  text-transform: none;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  white-space: nowrap;
}

.footer-instagram {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  color: var(--paper);
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 280ms var(--ease);
}

.footer-instagram svg {
  width: 25px;
  height: 25px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.footer-instagram .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.footer-instagram:hover {
  border-color: var(--pistachio);
  background: var(--pistachio);
  color: var(--ink);
  transform: translateY(-3px);
}

.floating-cart {
  position: fixed;
  z-index: 40;
  right: clamp(14px, 2.5vw, 40px);
  bottom: clamp(14px, 2.5vw, 38px);
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid rgba(12, 14, 13, 0.75);
  border-radius: 999px;
  background: var(--pistachio);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 260ms var(--ease);
}

.floating-cart:hover {
  transform: translateY(-4px);
}

.floating-cart-label {
  padding-right: 18px;
  border-right: 1px solid rgba(12, 14, 13, 0.34);
}

.drawer-backdrop {
  position: fixed;
  z-index: 79;
  inset: 0;
  background: rgba(0, 0, 0, 0.64);
  opacity: 0;
  transition: opacity 300ms ease;
}

.drawer-backdrop.is-open {
  opacity: 1;
}

.cart-drawer {
  position: fixed;
  z-index: 80;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(560px, 100%);
  height: 100dvh;
  overflow-y: auto;
  padding: clamp(22px, 4vw, 44px);
  border-left: 1px solid var(--line);
  background: var(--ink-soft);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.32);
  transform: translateX(105%);
  transition: transform 400ms var(--ease);
}

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

.drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.drawer-header h2 {
  font-size: 54px;
}

.drawer-header button {
  flex: 0 0 auto;
  font-size: 28px;
  font-weight: 300;
}

.cart-items {
  display: grid;
  gap: 10px;
  padding: 22px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.cart-item img,
.cart-item-blank {
  width: 72px;
  height: 72px;
  border-radius: 11px;
  object-fit: cover;
  background: var(--forest);
}

.cart-item-info h3 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.2;
}

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

.quantity-control {
  display: grid;
  grid-template-columns: 30px 32px 30px;
  align-items: center;
  text-align: center;
}

.quantity-control button {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: transparent;
  cursor: pointer;
}

.empty-cart {
  margin: 0 0 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-muted);
}

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-form fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-form legend,
.checkout-form > label > span {
  display: block;
  width: 100%;
  margin-bottom: 8px;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.checkout-form legend {
  grid-column: 1 / -1;
}

.choice-card {
  position: relative;
  cursor: pointer;
}

.choice-card input,
.segmented-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.choice-card input:checked + span {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.choice-card b {
  font-size: 13px;
}

.choice-card small {
  margin-top: 4px;
  font-size: 10px;
  opacity: 0.65;
}

.segmented-control {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.segmented-control label {
  position: relative;
  cursor: pointer;
}

.segmented-control span {
  display: grid;
  place-items: center;
  min-height: 44px;
  border-radius: 10px;
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.segmented-control input:checked + span {
  background: var(--forest);
  color: var(--paper);
}

.fulfillment-control label:last-child {
  grid-column: 1 / -1;
}

.telegram-handoff-note {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--paper-muted);
  font-size: 12px;
  line-height: 1.55;
}

.checkout-form input,
.checkout-form textarea,
.checkout-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: 0;
  background: transparent;
  color: var(--paper);
  transition: border-color 180ms ease;
}

.checkout-form input {
  height: 50px;
  padding: 0 14px;
}

.checkout-form textarea {
  resize: vertical;
  min-height: 84px;
  padding: 13px 14px;
}

.checkout-form select {
  height: 50px;
  padding: 0 38px 0 14px;
  appearance: none;
  background-color: var(--ink-soft);
  background-image: linear-gradient(45deg, transparent 50%, var(--paper-muted) 50%),
    linear-gradient(135deg, var(--paper-muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.checkout-form input:focus,
.checkout-form textarea:focus,
.checkout-form select:focus {
  border-color: var(--pistachio);
}

.time-fieldset {
  grid-template-columns: 1fr !important;
}

.time-fieldset > legend,
.time-fieldset .segmented-control {
  grid-column: 1 !important;
}

.schedule-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.schedule-fields label > span {
  display: block;
  margin-bottom: 8px;
  color: var(--paper-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.reservation-note {
  margin: 0;
  color: var(--pistachio);
  font-size: 11px;
}

.checkout-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.checkout-total span {
  color: var(--paper-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.checkout-total strong {
  font-family: "Prata", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--paper-muted);
  font-size: 12px;
}

.form-message.is-error {
  color: #ff9bae;
}

.form-message.is-success {
  color: var(--pistachio);
}

.checkout-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid var(--pistachio);
  border-radius: 15px;
  background: var(--pistachio);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter 180ms ease, opacity 180ms ease;
}

.checkout-button:hover:not(:disabled) {
  filter: brightness(1.08);
}

.checkout-button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1080px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero-copy {
    padding: 38px;
  }

  .hero h1 {
    font-size: clamp(66px, 10vw, 104px);
  }

  .product-rail {
    grid-auto-columns: minmax(300px, 40vw);
  }

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

  .places-intro {
    position: static;
  }

  .places-intro h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  :root {
    --radius-lg: 24px;
  }

  .site-header {
    min-height: 70px;
    padding-block: 9px;
  }

  .brand {
    width: 128px;
    height: 42px;
  }

  .header-cart {
    min-height: 42px;
    padding-left: 14px;
  }

  .header-cart > span:first-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 12px;
  }

  .hero-copy {
    min-height: 590px;
    padding: 28px;
  }

  .hero h1 {
    margin-top: auto;
    font-size: clamp(72px, 24vw, 116px);
  }

  .hero-visual,
  .hero-visual > img {
    min-height: 480px;
  }

  .hero-visual figcaption {
    font-size: 9px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 34px;
  }

  .menu-toolbar {
    align-items: stretch;
    min-height: 64px;
  }

  .menu-arrows {
    display: none;
  }

  .menu-search input {
    position: absolute;
    z-index: 2;
    top: 56px;
    right: 0;
    width: min(82vw, 330px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.32);
  }

  .category-tab {
    min-height: 44px;
    padding: 0 16px;
  }

  .product-rail {
    grid-auto-columns: minmax(284px, 82vw);
  }

  .product-card {
    min-height: 530px;
  }

  .places-section {
    gap: 44px;
  }

  .place-card {
    min-height: 500px;
    border-radius: var(--radius-lg);
  }

  .place-card-index {
    top: 22px;
    left: 22px;
  }

  .place-card-copy {
    right: 82px;
    bottom: 24px;
    left: 24px;
  }

  .place-card-arrow {
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: start;
    gap: 28px 20px;
    padding-bottom: 112px;
  }

  .footer-brand {
    grid-column: 1;
    width: 154px;
  }

  .footer-phone {
    grid-column: 1 / -1;
  }

  .footer-meta {
    grid-column: 1;
  }

  .footer-instagram {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
  }

  .floating-cart {
    right: 12px;
    bottom: 12px;
  }

  .cart-drawer {
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .hero-copy {
    min-height: 540px;
  }

  .hero-addresses {
    flex-direction: column;
  }

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

  .checkout-form legend,
  .segmented-control {
    grid-column: 1;
  }

  .floating-cart-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
