:root {
  --color-bg: #fff3df;
  --color-bg-soft: #fff8ec;
  --color-surface: #ffffff;

  --color-text: #261811;
  --color-muted: #765f51;

  --color-primary: #d83445;
  --color-primary-dark: #a92231;
  --color-secondary: #ffc73c;
  --color-pink: #f45ca5;
  --color-success: #1fa866;
  --color-brown: #56301e;

  --color-border: rgba(38, 24, 17, 0.12);

  --shadow-sm: 0 10px 30px rgba(38, 24, 17, 0.08);
  --shadow-md: 0 20px 55px rgba(38, 24, 17, 0.13);
  --shadow-lg: 0 28px 80px rgba(38, 24, 17, 0.16);

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;

  --container-width: 1120px;
}

.preorder-payment-note,
.terms-consent {
  margin-top: 1rem;
  border: 1px solid rgba(91, 49, 31, 0.16);
  border-radius: 16px;
  padding: 1rem;
  background: #fffaf2;
}

.preorder-payment-note p { margin: .4rem 0 0; }
.terms-consent { display: flex; gap: .75rem; align-items: flex-start; }
.terms-consent input { width: 1.2rem; height: 1.2rem; margin-top: .15rem; flex: 0 0 auto; }
.terms-consent a, .site-footer a { color: inherit; text-decoration: underline; }
.site-footer__inner--legal { align-items: flex-start; gap: 2rem; }
.site-footer__inner--legal p { margin: .25rem 0; }
.footer-legal-links { display: grid; gap: .5rem; text-align: right; }
.legal-shell { background: #fff4df; color: #2f1c14; }
.legal-page { padding: 3rem 0; }
.legal-card { max-width: 900px; background: #fff; border-radius: 24px; padding: clamp(1.5rem, 4vw, 3.5rem); box-shadow: 0 18px 50px rgba(73, 42, 28, .1); }
.legal-card h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
.legal-card h2 { margin-top: 2rem; }
.legal-card p { line-height: 1.7; }
.legal-footer { display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; align-items: center; }

@media (max-width: 720px) {
  .site-footer__inner--legal { flex-direction: column; }
  .footer-legal-links { text-align: left; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Arial,
    sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(255, 199, 60, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(244, 92, 165, 0.18), transparent 30rem),
    var(--color-bg);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 88px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.container {
  width: min(var(--container-width), calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 243, 223, 0.86);
  border-bottom: 1px solid var(--color-border);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  color: var(--color-primary);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
}
.site-header__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.header-status {
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-success);
  background: rgba(31, 168, 102, 0.1);
  border: 1px solid rgba(31, 168, 102, 0.18);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

.header-status__dot {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 168, 102, 0.12);
}

.header-status strong {
  font-weight: 950;
}

.header-status--closed {
  color: var(--color-primary);
  background: rgba(216, 52, 69, 0.1);
  border-color: rgba(216, 52, 69, 0.18);
}

.header-status--closed .header-status__dot {
  background: var(--color-primary);
  box-shadow: 0 0 0 5px rgba(216, 52, 69, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--color-muted);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--color-primary);
}

/* Hero */

.hero {
  padding: 78px 0 92px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 56px;
  align-items: center;
}

.hero__text {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--color-muted);
  font-size: 19px;
}

.hero__actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Buttons */

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 30px rgba(216, 52, 69, 0.25);
}

.button--primary:hover {
  background: var(--color-primary-dark);
}

.button--secondary {
  color: var(--color-brown);
  background: var(--color-secondary);
  box-shadow: 0 14px 30px rgba(255, 199, 60, 0.3);
}

.button--ghost {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--color-border);
}

/* Status */

.status-card {
  max-width: 520px;
  margin-bottom: 30px;
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.96));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.status-card__main {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.status-indicator {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--color-success);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(31, 168, 102, 0.14);
}

.status-card__label {
  margin-bottom: 2px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.status-card__state {
  margin: 0;
  color: var(--color-success);
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.status-card__today {
  margin-bottom: 20px;
  color: var(--color-muted);
  font-size: 16px;
  font-weight: 800;
}

.status-card__details {
  display: grid;
  gap: 12px;
}

.status-note {
  padding: 16px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.status-note__label {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 900;
}

.status-note strong {
  display: block;
  font-size: 17px;
  line-height: 1.35;
}

.status-note p {
  margin: 0;
  font-weight: 850;
  line-height: 1.45;
}

.status-note--important {
  background:
    radial-gradient(circle at top right, rgba(255, 199, 60, 0.36), transparent 80%),
    #fff8ec;
}

.status-card--closed .status-indicator {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(216, 52, 69, 0.14);
}

.status-card--closed .status-card__state {
  color: var(--color-primary);
}

/* Hero media */

.hero__media {
  position: relative;
}

.hero-photo {
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
}

.hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.hero-badge span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.hero-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

/* Sections */

.section {
  padding: 82px 0;
}

.section--soft {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(255, 248, 236, 0.96));
  border-top: 1px solid rgba(38, 24, 17, 0.06);
  border-bottom: 1px solid rgba(38, 24, 17, 0.06);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.contact-intro p {
  color: var(--color-muted);
  font-size: 18px;
}

/* Menu */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.menu-card {
  min-height: 230px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 52, 69, 0.25);
  box-shadow: var(--shadow-md);
}

.menu-card__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 24px;
}

.menu-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.menu-card__image-link {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

.menu-card__image-link img {
  transition: transform 0.25s ease;
}

.menu-card__image-link:hover img,
.menu-card__image-link:focus-visible img {
  transform: scale(1.04);
}

.menu-card__image-link:focus-visible {
  outline: 3px solid rgba(216, 52, 69, 0.28);
  outline-offset: 4px;
  border-radius: 24px;
}

.menu-card__placeholder {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, rgba(216, 52, 69, 0.18), rgba(255, 199, 60, 0.48));
}

.menu-card__placeholder--fries {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffe28a, #d83445);
}

.menu-card__placeholder--chebureki {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #f6b15d, #8f4a25);
}

.menu-card__placeholder--pancakes {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffd89c, #f45ca5);
}

.menu-card__placeholder--waffles {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffc73c, #b8323a);
}

.menu-card__placeholder--hotdogs {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffd66b, #a92231);
}

.menu-card__placeholder--icecream {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #f9c7df, #f45ca5);
}

.menu-card__placeholder--coffee {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #b77a4d, #56301e);
}

.menu-card__placeholder--drinks {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(135deg, #ffc73c, #f45ca5);
}

.menu-card h3 {
  margin-bottom: 8px;
}

.menu-card p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.45;
}

.menu-card__price {
  display: block;
  margin-top: 12px;
  color: var(--color-text);
  font-size: 16px;
  font-weight: 950;
  line-height: 1.2;
}

.menu-card__allergens {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-preview {
  margin-top: 28px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.menu-preview__content p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--color-muted);
}

.menu-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.menu-preview__link {
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(216, 52, 69, 0.2);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(38, 24, 17, 0.05);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.menu-preview__link:hover {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: rgba(216, 52, 69, 0.3);
  box-shadow: 0 6px 14px rgba(38, 24, 17, 0.07);
}

.menu-preview__link:focus-visible {
  outline: 3px solid rgba(216, 52, 69, 0.18);
  outline-offset: 4px;
}

/* Info */

.info-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.info-card,
.contact-card {
  padding: 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.info-card--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 199, 60, 0.4), transparent 38%),
    radial-gradient(circle at bottom left, rgba(244, 92, 165, 0.12), transparent 34%),
    var(--color-surface);
}

.hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.hours-list li:last-child {
  border-bottom: 0;
}

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

.hours-list strong {
  text-align: right;
}

.compact-status {
  width: fit-content;
  margin-top: 24px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(31, 168, 102, 0.1);
  border-radius: var(--radius-pill);
  color: var(--color-success);
}

.compact-status--closed {
  background: rgba(216, 52, 69, 0.1);
  color: var(--color-primary);
}

.compact-status--closed .status-indicator {
  background: var(--color-primary);
  box-shadow: 0 0 0 8px rgba(216, 52, 69, 0.14);
}

/* Contacts */

.contact-intro {
  max-width: 520px;
}

.contact-item {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.contact-item span {
  display: block;
  margin-bottom: 4px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 850;
}

.contact-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.3;
}

.contact-item:last-of-type {
  border-bottom: 0;
}

/* Preorders */

.section-heading--tight {
  max-width: 760px;
  margin-bottom: 28px;
}

.feedback-banner {
  margin-bottom: 20px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.feedback-banner p:last-child {
  margin-bottom: 0;
}

.feedback-banner--error {
  color: #8f1d2b;
  background: rgba(216, 52, 69, 0.1);
  border-color: rgba(216, 52, 69, 0.2);
}

.feedback-banner--notice {
  color: var(--color-brown);
  background: rgba(255, 199, 60, 0.18);
  border-color: rgba(255, 199, 60, 0.34);
}

.button--small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}

.menu-card__action {
  margin-top: auto;
}

.menu-card__hint {
  margin-top: auto;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.preorder-flow {
  display: grid;
  gap: 18px;
}

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

.preorder-step-indicator {
  padding: 14px 16px;
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 900;
}

.preorder-step-indicator--active {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(216, 52, 69, 0.24);
  box-shadow: var(--shadow-sm);
}

.preorder-card,
.preorder-unavailable__card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.preorder-card__header {
  margin-bottom: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.preorder-card__header h3,
.preorder-unavailable__card h3 {
  margin-bottom: 0;
}

.preorder-step:focus {
  outline: 3px solid rgba(216, 52, 69, 0.18);
  outline-offset: 4px;
}

.preorder-meta {
  padding: 10px 14px;
  color: var(--color-brown);
  background: rgba(255, 199, 60, 0.22);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
}

.cart-empty-state {
  padding: 24px;
  color: var(--color-muted);
  text-align: center;
  background: var(--color-bg-soft);
  border: 1px dashed rgba(38, 24, 17, 0.16);
  border-radius: var(--radius-md);
}

.cart-items {
  display: grid;
  gap: 14px;
}

.cart-item {
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
}

.cart-item__content strong,
.cart-item__summary strong {
  display: block;
}

.cart-item__content span,
.cart-remove,
.field small {
  color: var(--color-muted);
  font-size: 14px;
}

.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-control,
.cart-remove {
  border: 0;
  background: transparent;
  cursor: pointer;
}

.cart-control {
  width: 34px;
  height: 34px;
  color: var(--color-brown);
  background: rgba(255, 199, 60, 0.34);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.cart-item__quantity {
  min-width: 24px;
  text-align: center;
  font-weight: 900;
}

.cart-item__summary {
  text-align: right;
}

.cart-remove {
  padding: 0;
  margin-top: 6px;
  text-decoration: underline;
}

.cart-totals {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.cart-total-row {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-weight: 800;
}

.cart-total-row:last-child {
  margin-bottom: 0;
}

.cart-total-row--muted {
  color: var(--color-muted);
}

.cart-warning {
  margin-top: 18px;
  padding: 16px 18px;
  color: #8f1d2b;
  background: rgba(216, 52, 69, 0.1);
  border-radius: var(--radius-md);
  font-weight: 800;
}

.checkout-summary {
  margin-bottom: 22px;
  padding: 18px 20px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  padding: 15px 16px;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid rgba(38, 24, 17, 0.16);
  border-radius: 18px;
  font: inherit;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(216, 52, 69, 0.18);
  border-color: rgba(216, 52, 69, 0.4);
}

.field--full {
  grid-column: 1 / -1;
}

.pickup-choice-group {
  display: grid;
  gap: 10px;
}

.pickup-choice {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg-soft);
  border: 1px solid rgba(38, 24, 17, 0.12);
  border-radius: 18px;
  cursor: pointer;
}

.pickup-choice input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.pickup-choice span {
  font-size: 15px;
  font-weight: 800;
}

.is-hidden {
  display: none;
}

.preorder-note {
  margin: 22px 0 18px;
  padding: 18px 20px;
  color: var(--color-brown);
  background: rgba(255, 199, 60, 0.18);
  border-radius: var(--radius-md);
}

.preorder-note strong {
  display: block;
  margin-bottom: 4px;
}

.preorder-step__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preorder-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.preorder-unavailable__card {
  max-width: 760px;
}

.preorder-unavailable__message p:last-child {
  margin-bottom: 0;
}

/* Order pages */

.order-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 199, 60, 0.24), transparent 34rem),
    radial-gradient(circle at top right, rgba(244, 92, 165, 0.18), transparent 30rem),
    var(--color-bg);
}

.order-page {
  padding: 56px 0 72px;
}

.order-page__top {
  margin-bottom: 24px;
}

.order-page__card {
  max-width: 860px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.order-page__lead {
  max-width: 640px;
  color: var(--color-muted);
  font-size: 18px;
}

.order-page__auto-note {
  margin-top: -6px;
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.order-page__hint {
  margin-bottom: 0;
  color: var(--color-muted);
}

.order-status-badge {
  margin-bottom: 18px;
  padding: 10px 16px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.order-status-badge--new {
  color: #8c5b00;
  background: rgba(255, 199, 60, 0.2);
}

.order-status-badge--accepted,
.order-status-badge--completed {
  color: var(--color-success);
  background: rgba(31, 168, 102, 0.12);
}

.order-status-badge--ready {
  color: var(--color-primary);
  background: rgba(216, 52, 69, 0.12);
}

.order-status-badge--rejected,
.order-status-badge--cancelled {
  color: var(--color-brown);
  background: rgba(86, 48, 30, 0.12);
}

.order-page__celebration {
  margin-top: 24px;
  padding: 22px 24px;
  background:
    radial-gradient(circle at top right, rgba(255, 199, 60, 0.34), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 236, 0.96));
  border: 1px solid rgba(255, 199, 60, 0.45);
  border-radius: var(--radius-md);
}

.order-page__celebration strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.order-page__celebration p {
  margin-bottom: 0;
  color: var(--color-muted);
  font-weight: 800;
}

.order-page__meta,
.order-page__items {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.order-page__meta li,
.order-page__items li {
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--color-border);
}

.order-page__meta li:first-child,
.order-page__items li:first-child {
  border-top: 1px solid var(--color-border);
}

.order-page__meta span,
.order-page__items span {
  color: var(--color-muted);
}

.order-page__actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-page__copy-feedback {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 800;
}

.order-page__copy-feedback[data-state="success"] {
  color: var(--color-success);
}

.order-page__copy-feedback[data-state="error"] {
  color: var(--color-primary);
}

.order-page__copy-fallback {
  margin-top: 12px;
  padding: 18px;
  background: var(--color-bg-soft);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.order-page__copy-label {
  display: block;
  margin-bottom: 10px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.order-page__copy-field {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.order-page__copy-field input {
  min-height: 50px;
  flex: 1 1 360px;
  width: 100%;
  padding: 0 16px;
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font: inherit;
}

.order-page__section-title {
  margin: 34px 0 0;
  font-size: clamp(28px, 4vw, 36px);
}

.order-page__item-details,
.order-page__item-total {
  display: grid;
  gap: 4px;
}

.order-page__item-total {
  text-align: right;
}

.is-hidden {
  display: none;
}

/* Footer */

.site-footer {
  padding: 30px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--color-brown);
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
}

/* Responsive */

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

  .hero__media {
    max-width: 720px;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 420px;
    height: 420px;
  }

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

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

@media (max-width: 720px) {
  .site-header__inner {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__brand {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav {
    width: 100%;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding: 48px 0 64px;
  }

  .section {
    padding: 62px 0;
  }

  .hero-photo,
  .hero-photo img {
    min-height: 340px;
    height: 340px;
  }

  .hero-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
  }

  .info-card,
  .contact-card,
  .status-card,
  .menu-preview,
  .preorder-card,
  .preorder-unavailable__card,
  .order-page__card {
    padding: 24px;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .menu-preview {
    grid-template-columns: 1fr;
  }

  .menu-preview__actions {
    justify-content: stretch;
  }

  .menu-preview__link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

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

  .cart-item,
  .order-page__meta li,
  .order-page__items li {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .cart-item__summary {
    text-align: left;
  }

  .order-page__item-total {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, var(--container-width));
  }

  .header-status {
    font-size: 13px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 64px);
  }

  .hero__text {
    font-size: 17px;
  }
  .hero__actions,
  .contact-actions {
    display: grid;
  }

  .preorder-steps {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hours-list li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hours-list strong {
    text-align: left;
  }
}
