:root {
  --ink: #17110f;
  --espresso: #241714;
  --cacao: #38241e;
  --walnut: #604133;
  --wine: #7b2027;
  --gold: #c69a4a;
  --gold-soft: #ead8af;
  --paper: #fbf8f1;
  --linen: #f3eadc;
  --sage: #586449;
  --muted: #7c7168;
  --border: rgba(36, 23, 20, 0.16);
  --shadow: 0 24px 70px rgba(23, 17, 15, 0.18);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

video,
iframe {
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px 34px;
  color: #fff;
  background: linear-gradient(180deg, rgba(20, 13, 10, 0.92), rgba(20, 13, 10, 0.62));
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  gap: 2px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}

.brand__text {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 0.86;
}

.brand__sub {
  color: var(--gold-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.brand--premium {
  padding-left: 2px;
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 0;
}

.site-nav a,
.header-phone {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav a:hover,
.header-phone:hover {
  color: var(--gold-soft);
}

.site-nav a {
  position: relative;
  padding-bottom: 6px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity var(--motion-fast) ease,
    transform var(--motion-med) var(--motion-ease);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--gold-soft);
}

.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: #fff;
  background: var(--espresso);
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("assets/images/hero-interior.jpeg");
  background-size: cover;
  background-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(20, 13, 10, 0.88) 0%, rgba(20, 13, 10, 0.56) 45%, rgba(20, 13, 10, 0.26) 100%),
    linear-gradient(180deg, rgba(20, 13, 10, 0.22) 0%, rgba(20, 13, 10, 0.74) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 48px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 150px 28px 80px;
}

.hero__copy {
  align-self: center;
  max-width: 740px;
  min-width: 0;
}

.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.98;
  font-weight: 700;
}

.hero__lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.2;
}

.hero__meta {
  display: grid;
  gap: 10px;
  max-width: 560px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
}

.hero__meta span {
  position: relative;
  padding-left: 22px;
}

.hero__meta span::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button--gold {
  color: var(--espresso);
  background: var(--gold);
}

.button--gold:hover {
  background: #dab66a;
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
}

.button--dark {
  color: #fff;
  background: var(--espresso);
}

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

.button--full {
  width: 100%;
}

.text-link {
  align-self: start;
  color: var(--wine);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.form-card {
  display: grid;
  gap: 18px;
  width: 100%;
  min-width: 0;
  padding: 24px;
  background: rgba(251, 248, 241, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
}

.booking-card {
  align-self: end;
}

.mobile-booking-close,
.mobile-booking-backdrop {
  display: none;
}

.form-card__head h2,
.form-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.15;
}

.form-card__head p,
.form-card p {
  margin: 6px 0 0;
  color: var(--muted);
}

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

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

label {
  display: grid;
  gap: 7px;
  color: var(--cacao);
  font-size: 13px;
  font-weight: 800;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.consent-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.consent-field a {
  color: var(--wine);
  font-weight: 900;
  border-bottom: 1px solid currentColor;
}

.consent-field--dark,
.callback-form .consent-field {
  color: rgba(255, 255, 255, 0.72);
}

.consent-field--dark a,
.callback-form .consent-field a {
  color: var(--gold-soft);
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  min-height: 46px;
  padding: 11px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 154, 74, 0.18);
}

.form-result {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--espresso);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.quick-strip article {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  min-height: 126px;
  padding: 30px;
  color: #fff;
  background: var(--cacao);
  text-align: center;
}

.quick-strip strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-strip span {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
  line-height: 1.32;
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 104px 28px;
  scroll-margin-top: 92px;
}

.section__head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section__head--wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 48px;
  line-height: 1.08;
}

.section__head p,
.split-section__copy p,
.banquets__content p,
.promo-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: center;
}

.about__image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about__image img {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
}

.event-moments {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  padding: 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 154, 74, 0.16), transparent 30rem),
    linear-gradient(135deg, #17110f 0%, #2a1713 100%);
  border: 1px solid rgba(198, 154, 74, 0.24);
  box-shadow: var(--shadow);
}

.event-moments__media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.event-moments__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-moments__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(16, 10, 8, 0.72));
}

.event-moments__plate {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 1;
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(18, 12, 10, 0.68);
  border: 1px solid rgba(234, 216, 175, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.event-moments__plate strong {
  font-family: var(--serif);
  font-size: 26px;
}

.event-moments__plate span {
  color: rgba(255, 255, 255, 0.72);
}

.event-moments__content {
  padding: 58px;
}

.event-moments .section__head {
  align-items: start;
  margin-bottom: 28px;
}

.event-moments .section__head h2,
.event-moments .section__head p {
  color: #fff;
}

.event-moments .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

.event-list {
  display: grid;
  gap: 12px;
}

.event-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(234, 216, 175, 0.16);
}

.event-list span {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}

.event-list h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 28px;
}

.event-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.event-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.hall-quiz {
  display: grid;
  gap: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 10%, rgba(198, 154, 74, 0.18), transparent 24rem),
    linear-gradient(135deg, #1c120f 0%, #2d1a16 58%, #140d0b 100%);
  border: 1px solid rgba(198, 154, 74, 0.24);
  box-shadow: var(--shadow);
}

.hall-quiz__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.hall-quiz__intro h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.96;
}

.hall-quiz__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.hall-quiz__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 24px;
}

.hall-quiz__form {
  display: grid;
  gap: 14px;
}

.hall-quiz fieldset {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(234, 216, 175, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.hall-quiz legend {
  padding: 0 8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hall-quiz label {
  position: relative;
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(234, 216, 175, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition:
    color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-med) ease;
}

.hall-quiz label:has(input:checked) {
  color: #211814;
  background: var(--gold);
  border-color: rgba(234, 216, 175, 0.62);
  box-shadow: 0 12px 30px rgba(198, 154, 74, 0.22);
}

.hall-quiz input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.hall-quiz__result {
  overflow: hidden;
  display: grid;
  grid-template-rows: 250px 1fr;
  min-height: 100%;
  border: 1px solid rgba(234, 216, 175, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.hall-quiz__result img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hall-quiz__result > div {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.hall-quiz__result span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hall-quiz__result h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
}

.hall-quiz__result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hall-quiz__result strong {
  color: var(--gold-soft);
}

.hall-quiz__result.is-updated img,
.hall-quiz__result.is-updated h3,
.hall-quiz__result.is-updated p,
.hall-quiz__result.is-updated strong {
  animation: quizResultIn 520ms var(--motion-ease) both;
}

.hall-quiz__actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.feature-list h3 {
  margin: 0;
  font-size: 19px;
}

.feature-list p {
  margin: 6px 0 0;
  color: var(--muted);
}

.feature-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--gold);
  background: var(--espresso);
  border-radius: 50%;
}

.feature-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-section {
  max-width: none;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(198, 154, 74, 0.14), transparent 34%),
    linear-gradient(135deg, #111715 0%, #241714 54%, #2f1d20 100%);
}

.menu-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.menu-section .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

.menu-section .text-link {
  color: var(--gold-soft);
}

.delivery-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 24px;
}

.address-button,
.checkout-address {
  display: grid;
  gap: 6px;
  width: 100%;
  min-height: 76px;
  padding: 16px 18px;
  text-align: left;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.address-button span,
.checkout-address span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.address-button strong,
.checkout-address strong {
  font-size: 16px;
}

.discount-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: center;
}

.discount-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: var(--gold-soft);
  background: rgba(234, 216, 175, 0.1);
  border: 1px solid rgba(234, 216, 175, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.delivery-terms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 24px;
}

.delivery-terms article {
  display: grid;
  gap: 8px;
  min-height: 118px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(234, 216, 175, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(234, 216, 175, 0.18);
  border-radius: var(--radius);
}

.delivery-terms span {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.delivery-terms p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.menu-controls {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.menu-search {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.menu-search input {
  min-height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.menu-status {
  margin: 0 0 13px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.menu-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  overflow: visible;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(234, 216, 175, 0.16);
  border-radius: var(--radius);
}

.tab-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.tab-button span {
  min-width: 0;
}

.tab-button small {
  display: inline-grid;
  flex: 0 0 auto;
  min-width: 26px;
  height: 24px;
  place-items: center;
  color: var(--espresso);
  background: rgba(234, 216, 175, 0.78);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.tab-button.is-active {
  color: var(--espresso);
  background: var(--gold);
  border-color: var(--gold);
}

.tab-button.is-active small {
  color: var(--gold);
  background: var(--espresso);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

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

.menu-item {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 420px;
  color: var(--ink);
  background: rgba(251, 248, 241, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.menu-item__media {
  position: relative;
  overflow: hidden;
  background: #211917;
}

.menu-item__photo {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
}

.menu-item__photo::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 34px;
  height: 34px;
  content: "";
  background:
    linear-gradient(#fff, #fff) center / 14px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 14px no-repeat,
    rgba(23, 17, 15, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item__photo:hover::after,
.menu-item__photo:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.menu-item__media img,
.menu-item__photo img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.menu-item__photo:hover img,
.menu-item__photo:focus-visible img {
  transform: scale(1.035);
}

.menu-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.menu-item__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.menu-item__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.menu-item h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

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

.menu-item__composition {
  display: block;
  color: var(--cacao);
  font-size: 12px;
  line-height: 1.45;
}

.menu-item strong {
  color: var(--wine);
  white-space: nowrap;
}

.nutrition-row {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  color: var(--cacao);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
}

.nutrition-row small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.menu-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: end;
}

.menu-item__bottom span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.menu-item__bottom button {
  justify-self: start;
  min-height: 40px;
  padding: 0 14px;
  color: var(--espresso);
  background: var(--gold-soft);
  border: 1px solid rgba(198, 154, 74, 0.48);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.menu-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.bar-section {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(251, 248, 241, 0.96)),
    var(--linen);
}

.bar-section > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.bar-section .section__head p {
  color: var(--muted);
}

.bar-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  max-width: 390px;
  padding: 14px 16px;
  color: #fff;
  background: var(--espresso);
  border: 1px solid rgba(198, 154, 74, 0.38);
  border-radius: var(--radius);
}

.bar-note strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 50%;
  font-size: 16px;
}

.bar-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.bar-controls {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.bar-search {
  display: grid;
  gap: 8px;
  color: var(--walnut);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bar-search input {
  min-height: 50px;
  color: var(--ink);
  background: #fff;
  border-color: rgba(96, 65, 51, 0.24);
}

.bar-search input::placeholder {
  color: rgba(96, 65, 51, 0.48);
}

.bar-status {
  margin: 0 0 13px;
  color: var(--wine);
  font-size: 14px;
  font-weight: 900;
  text-align: right;
}

.bar-tabs .tab-button {
  color: var(--walnut);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(96, 65, 51, 0.18);
}

.bar-tabs {
  flex-wrap: wrap;
  overflow-x: visible;
  padding-bottom: 18px;
}

.bar-tabs .tab-button.is-active {
  color: #fff;
  background: var(--wine);
  border-color: var(--wine);
}

.bar-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

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

.bar-order-card {
  top: 98px;
}

.bar-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  overflow: hidden;
  min-height: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 17, 15, 0.08);
}

.bar-card__photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--espresso);
  border: 0;
  cursor: zoom-in;
}

.bar-card__photo::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 32px;
  height: 32px;
  content: "";
  background:
    linear-gradient(#fff, #fff) center / 13px 2px no-repeat,
    linear-gradient(#fff, #fff) center / 2px 13px no-repeat,
    rgba(23, 17, 15, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.bar-card__photo:hover::after,
.bar-card__photo:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.bar-card__photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.bar-card__photo:hover img,
.bar-card__photo:focus-visible img {
  transform: scale(1.035);
}

.bar-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.bar-card__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.bar-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.bar-card__top span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.bar-card__top strong {
  color: var(--wine);
  white-space: nowrap;
}

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

.bar-card__option {
  display: grid;
  gap: 6px;
  color: var(--walnut);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bar-card__option select {
  min-height: 38px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.bar-card__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
}

.bar-card__bottom small,
.bar-card__bottom em,
.bar-card__bottom button,
.bar-card__unavailable,
.menu-item__unavailable {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  font-style: normal;
}

.bar-card__bottom small {
  color: var(--espresso);
  background: var(--gold-soft);
}

.bar-card__bottom em {
  color: var(--wine);
  background: rgba(123, 32, 39, 0.08);
}

.bar-card__bottom button {
  margin-left: auto;
  color: #fff;
  background: var(--wine);
  border: 1px solid rgba(123, 32, 39, 0.22);
}

.bar-card__bottom button:hover {
  background: var(--espresso);
}

.bar-card__unavailable {
  margin-left: auto;
  color: rgba(36, 23, 20, 0.72);
  background: rgba(36, 23, 20, 0.08);
  border: 1px solid rgba(36, 23, 20, 0.12);
}

.menu-item__unavailable {
  margin-left: auto;
  color: rgba(36, 23, 20, 0.72);
  background: rgba(36, 23, 20, 0.08);
  border: 1px solid rgba(36, 23, 20, 0.12);
}

.bar-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--walnut);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.order-card {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
  padding: 22px;
  color: #fff;
  background: var(--espresso);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.order-card__head,
.order-row,
.order-total,
.delivery-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.order-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 27px;
}

.order-card__head span,
.empty {
  color: rgba(255, 255, 255, 0.7);
}

.order-items {
  display: grid;
  gap: 12px;
  max-height: 310px;
  overflow: auto;
}

.order-row {
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.order-row strong,
.order-row span {
  display: block;
}

.order-row span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.order-row--discount strong:last-child {
  color: var(--gold-soft);
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 30px 30px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.qty-control button,
.qty-control output {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 0;
}

.order-total {
  padding-top: 2px;
  color: var(--gold-soft);
  font-size: 18px;
}

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
  font-size: 14px;
  font-weight: 900;
}

.floating-cart.is-visible {
  display: inline-flex;
}

@media (min-width: 1121px) {
  .floating-cart.is-visible {
    display: none;
  }
}

.floating-cart span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: var(--espresso);
  border-radius: 50%;
}

.cart-toast {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 80;
  display: grid;
  gap: 4px;
  width: min(340px, calc(100vw - 32px));
  padding: 16px 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(198, 154, 74, 0.18), transparent 42%),
    rgba(28, 19, 16, 0.96);
  border: 1px solid rgba(234, 216, 175, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.985);
  transition:
    opacity var(--motion-med) ease,
    transform var(--motion-med) var(--motion-ease);
}

.cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cart-toast strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 20px;
}

.cart-toast span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.cart-pulse {
  animation: cartPulse 720ms var(--motion-ease);
}

.mobile-actions {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  grid-template-columns: 0.9fr 1.4fr 1fr 1fr;
  gap: 6px;
  padding: 8px;
  color: #fff;
  background: rgba(28, 19, 16, 0.9);
  border: 1px solid rgba(234, 216, 175, 0.24);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.mobile-action {
  position: relative;
  display: grid;
  place-items: center;
  gap: 2px;
  min-height: 58px;
  padding: 8px 6px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.mobile-action span {
  display: grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: var(--espresso);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 14px;
}

.mobile-action strong {
  line-height: 1.1;
}

.mobile-action small {
  color: var(--gold-soft);
  font-size: 10px;
  line-height: 1;
}

.mobile-action--cart {
  color: #211814;
  background: var(--gold);
  box-shadow: 0 12px 30px rgba(198, 154, 74, 0.24);
}

.mobile-action--cart span {
  color: #fff;
  background: var(--espresso);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.88fr);
  gap: 42px;
  align-items: center;
}

.delivery-section {
  max-width: none;
  padding-left: max(28px, calc((100vw - 1240px) / 2 + 28px));
  padding-right: max(28px, calc((100vw - 1240px) / 2 + 28px));
  background: linear-gradient(90deg, var(--paper), #fff);
}

.split-section__copy h2,
.banquets__content h2,
.promo-panel h2,
.payment-panel h2,
.contacts h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 46px;
  line-height: 1.08;
}

.delivery-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.delivery-note span {
  color: var(--muted);
}

.split-section__copy img {
  width: 220px;
  margin-top: 26px;
}

.delivery-form {
  background: #fff;
}

.method-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.method-switch button {
  min-height: 42px;
  color: var(--walnut);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  font-weight: 900;
}

.method-switch button.is-active {
  color: #fff;
  background: var(--wine);
}

.checkout-address {
  color: var(--ink);
  background: var(--espresso);
}

.checkout-address span {
  color: rgba(255, 255, 255, 0.62);
}

.checkout-address strong {
  color: #fff;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.checkbox-field input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  accent-color: var(--wine);
}

.delivery-summary {
  padding: 15px;
  background: var(--linen);
  border-radius: var(--radius);
  color: var(--walnut);
}

.delivery-summary strong {
  color: var(--wine);
  white-space: nowrap;
}

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

.messenger-actions button {
  min-height: 40px;
  color: var(--espresso);
  background: var(--gold-soft);
  border: 1px solid rgba(198, 154, 74, 0.42);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
}

.messenger-actions button:hover {
  background: var(--gold);
}

.delivery-modal[hidden] {
  display: none;
}

.photo-modal[hidden] {
  display: none;
}

.delivery-modal,
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(6, 8, 7, 0.72);
  backdrop-filter: blur(10px);
}

.photo-modal {
  z-index: 70;
}

.delivery-modal__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(420px, 720px);
  overflow: hidden;
  width: min(1160px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  color: #fff;
  background: #15110f;
  border: 1px solid rgba(198, 154, 74, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 30px 110px rgba(0, 0, 0, 0.58);
}

.delivery-modal__form {
  display: grid;
  gap: 14px;
  align-content: start;
  max-height: min(780px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(198, 154, 74, 0.08), transparent 34%),
    #2b2723;
}

.delivery-modal__form .method-switch {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(234, 216, 175, 0.14);
}

.delivery-modal__form .method-switch button {
  color: rgba(255, 255, 255, 0.82);
}

.delivery-modal__form .method-switch button.is-active {
  color: #211814;
  background: var(--gold);
}

.modal-kicker {
  margin: 6px 0 -8px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.delivery-modal__form h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 36px;
}

.delivery-modal__form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.delivery-modal__form input {
  color: #fff;
  background: rgba(13, 12, 11, 0.74);
  border-color: rgba(234, 216, 175, 0.16);
}

.delivery-modal__form textarea {
  min-height: 88px;
  color: #fff;
  background: rgba(13, 12, 11, 0.74);
  border-color: rgba(234, 216, 175, 0.16);
}

.delivery-modal__form input:disabled {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.delivery-modal__form [data-confirm-address] {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: 4px;
  box-shadow: 0 -12px 24px rgba(43, 39, 35, 0.76);
}

.modal-address-tools {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(234, 216, 175, 0.16);
  border-radius: var(--radius);
}

.modal-address-tools[hidden] {
  display: none;
}

.modal-address-tools button {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 0;
  font-weight: 800;
}

.modal-address-tools button:hover {
  color: #211814;
  background: var(--gold-soft);
}

.modal-copy,
.modal-hint,
.pickup-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.modal-hint {
  font-size: 13px;
}

.pickup-card {
  display: grid;
  gap: 5px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.pickup-card[hidden] {
  display: none;
}

.checkout-review[hidden] {
  display: none;
}

.checkout-review {
  display: grid;
  gap: 14px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(234, 216, 175, 0.1), transparent 55%),
    rgba(12, 10, 9, 0.56);
  border: 1px solid rgba(234, 216, 175, 0.2);
  border-radius: var(--radius);
}

.checkout-review__head,
.checkout-review__row,
.checkout-review__items li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
}

.checkout-review__head span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.checkout-review__head strong,
.checkout-review__row strong,
.checkout-review__items strong {
  color: #fff7e6;
}

.checkout-review__items {
  display: grid;
  gap: 8px;
  max-height: 132px;
  margin: 0;
  padding: 0;
  overflow: auto;
  list-style: none;
}

.checkout-review__items li,
.checkout-review__row {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.checkout-review__summary {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(234, 216, 175, 0.16);
}

.checkout-review__row--total {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.checkout-review__details {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(234, 216, 175, 0.16);
  font-size: 13px;
}

.checkout-review__details b {
  color: #fff;
}

.checkout-review__note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.4;
}

.delivery-modal__map {
  position: relative;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  min-height: 560px;
  background: #15110f;
}

.delivery-map-search {
  position: relative;
  min-height: 340px;
}

.delivery-map-search iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  filter: saturate(0.92) contrast(1.02) brightness(1.06);
}

.delivery-yandex-map {
  position: relative;
  display: none;
  width: 100%;
  height: 100%;
  min-height: 340px;
  overflow: hidden;
  background: #ebe3d7;
}

.delivery-zone-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(198, 154, 74, 0.1), transparent 45%),
    #17110f;
  border-top: 1px solid rgba(198, 154, 74, 0.32);
}

.delivery-zone-card__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.delivery-zone-card__head span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.delivery-zone-card__head strong {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.delivery-zone-copy {
  display: grid;
  gap: 6px;
}

.delivery-zone-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.delivery-zone-copy b {
  color: #fff4dc;
}

.delivery-zone-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.delivery-zone-legend span {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(234, 216, 175, 0.14);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.delivery-zone-legend i {
  width: 9px;
  height: 9px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(198, 154, 74, 0.18);
}

.delivery-zone-legend span:nth-child(2) i {
  background: #8f6b40;
  box-shadow: 0 0 0 3px rgba(143, 107, 64, 0.18);
}

.delivery-zone-widget {
  height: 260px;
  overflow: hidden;
  background: #221b17;
  border: 1px solid rgba(234, 216, 175, 0.14);
  border-radius: var(--radius);
}

.delivery-zone-widget iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0;
  border: 0;
  filter: saturate(0.96) contrast(1.02) brightness(1.04);
}

.delivery-yandex-map.is-ready {
  display: block;
}

.delivery-yandex-map.is-ready ~ iframe {
  display: none;
}

.delivery-yandex-map:not(.is-ready) ~ .map-center-pin,
.delivery-yandex-map:not(.is-ready) ~ .map-autofill-badge {
  display: none;
}

.map-center-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  pointer-events: none;
  transform: translate(-50%, -100%);
}

.map-center-pin::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--gold);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transform: rotate(-45deg);
}

.map-center-pin::after {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 10px;
  height: 10px;
  content: "";
  background: #2b211b;
  border-radius: 50%;
  transform: translateX(-50%);
}

.map-autofill-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: min(320px, calc(100% - 36px));
  padding: 10px 12px;
  color: #2b211b;
  background: rgba(255, 248, 235, 0.94);
  border: 1px solid rgba(198, 154, 74, 0.45);
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  font-size: 13px;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.modal-close::before,
.modal-close::after {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 16px;
  height: 2px;
  content: "";
  background: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.photo-modal__panel {
  position: relative;
  display: grid;
  gap: 14px;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  padding: 18px;
  color: #fff;
  background: #17110f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
}

.photo-modal__stage {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 280px;
  background: #0f0c0b;
  border-radius: calc(var(--radius) - 2px);
}

.photo-modal__stage img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
}

.photo-modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: rgba(23, 17, 15, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
}

.photo-modal__nav:hover {
  color: var(--gold);
  background: rgba(23, 17, 15, 0.92);
}

.photo-modal__nav svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-modal__nav--prev {
  left: 16px;
}

.photo-modal__nav--next {
  right: 16px;
}

.photo-modal__caption {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  padding-right: 52px;
}

.photo-modal__caption h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
}

.photo-modal__caption span {
  color: var(--gold-soft);
  font-weight: 800;
  white-space: nowrap;
}

.banquets {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.banquets__media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.banquets__media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  object-fit: cover;
}

.banquets__content .form-card {
  margin-top: 26px;
  background: #fff;
}

.banquet-quiz {
  max-width: none;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 154, 74, 0.16), transparent 28%),
    linear-gradient(135deg, #140f0d 0%, #241714 56%, #3a211e 100%);
}

.banquet-quiz > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.banquet-quiz .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

.banquet-quiz .text-link {
  color: var(--gold-soft);
}

.banquet-quiz__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 22px;
  align-items: stretch;
}

.banquet-quiz__form,
.banquet-quiz__result {
  min-width: 0;
  border: 1px solid rgba(234, 216, 175, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.banquet-quiz__form {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

.banquet-quiz__form label {
  color: rgba(255, 255, 255, 0.82);
}

.banquet-quiz__form input,
.banquet-quiz__form select,
.banquet-quiz__form textarea {
  color: #fff;
  background: rgba(12, 10, 9, 0.62);
  border-color: rgba(234, 216, 175, 0.18);
}

.banquet-quiz__form .form-result {
  color: var(--gold-soft);
}

.banquet-quiz__result {
  display: grid;
  overflow: hidden;
  background: #201713;
}

.banquet-quiz__result img {
  width: 100%;
  aspect-ratio: 1.36 / 1;
  object-fit: cover;
}

.banquet-quiz__result > div {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.banquet-quiz__result span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.banquet-quiz__result h3 {
  margin: 0;
  color: #fff7e6;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
}

.banquet-quiz__result strong {
  color: var(--gold-soft);
}

.banquet-quiz__result p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.banquet-quiz__result.is-updated img {
  animation: quizResultIn 0.34s ease both;
}

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

.banquet-formats article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(23, 17, 15, 0.08);
}

.banquet-formats span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.banquet-formats h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
}

.banquet-formats p {
  margin: 0;
  color: var(--muted);
}

.halls {
  max-width: none;
  background: var(--espresso);
  color: #fff;
}

.halls > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.halls .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

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

.hall-card {
  min-width: 0;
  overflow: hidden;
  background: #2d1d19;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.hall-card__photo {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: #17110f;
  border: 0;
  cursor: zoom-in;
}

.hall-card__photo::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, rgba(23, 17, 15, 0), rgba(23, 17, 15, 0.82));
  pointer-events: none;
}

.hall-card__photo img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.hall-card__photo:hover img {
  transform: scale(1.035);
}

.hall-card__photo span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 7px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: rgba(23, 17, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.hall-card__body {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.hall-card h3 {
  margin: 0;
  font-size: 19px;
}

.hall-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.hall-card span {
  color: var(--gold-soft);
  font-weight: 800;
}

.promo-payments {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: 18px;
}

.promo-panel,
.payment-panel {
  padding: 34px;
  border-radius: var(--radius);
}

.promo-panel {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(36, 23, 20, 0.94), rgba(123, 32, 39, 0.76)),
    url("assets/images/dish-main.jpg") center / cover;
}

.promo-panel p {
  color: rgba(255, 255, 255, 0.82);
}

.payment-panel {
  background: var(--linen);
}

.payment-panel ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 19px;
  color: var(--walnut);
}

.cta-strip {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(36, 23, 20, 0.96), rgba(123, 32, 39, 0.84)),
    url("assets/images/banquet-setup.jpg") center / cover;
  border: 1px solid rgba(234, 216, 175, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.menu-section .cta-strip {
  margin-top: 28px;
}

.cta-strip--dark {
  background:
    linear-gradient(120deg, rgba(18, 13, 11, 0.94), rgba(58, 33, 30, 0.88)),
    url("assets/images/dish-main.jpg") center / cover;
}

.cta-strip span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.cta-strip strong {
  display: block;
  max-width: 720px;
  color: #fff7e6;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.12;
}

.cta-strip > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.reviews-trust {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.42fr));
  gap: 14px;
  margin-bottom: 28px;
}

.trust-card {
  display: grid;
  gap: 10px;
  min-height: 180px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(23, 17, 15, 0.08);
}

.trust-card--large {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(36, 23, 20, 0.92), rgba(36, 23, 20, 0.62)),
    url("assets/images/hall-banquet-real.jpg") center / cover;
}

.trust-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.trust-card h3 {
  margin: 0;
  max-width: 640px;
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1.08;
}

.trust-card strong {
  color: var(--wine);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
}

.trust-card--large p {
  color: rgba(255, 255, 255, 0.78);
}

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

.review-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.review-card strong {
  color: var(--wine);
}

.review-card p {
  margin: 0;
  color: var(--muted);
}

.review-card footer {
  margin-top: auto;
  color: var(--cacao);
  font-weight: 800;
}

.review-form {
  background: var(--linen);
  box-shadow: none;
}

.contacts {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
}

.contacts__info {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contacts address {
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
}

.contact-stack,
.social-links,
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-stack {
  display: grid;
}

.contact-stack a {
  color: var(--wine);
  font-size: 18px;
  font-weight: 800;
}

.social-links a,
.map-links a {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--espresso);
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-weight: 800;
}

.map-links a {
  background: #fff;
  border: 1px solid var(--border);
}

.contacts__map {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--linen);
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.legal {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px 88px;
}

.legal details {
  padding: 22px 24px;
  background: var(--linen);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.legal summary {
  cursor: pointer;
  color: var(--espresso);
  font-weight: 900;
}

.legal__content {
  max-width: 820px;
  color: var(--muted);
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 28px 96px;
}

.legal-page h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.legal-page h2 {
  margin: 34px 0 12px;
  font-family: var(--serif);
  font-size: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
}

.legal-page ul {
  display: grid;
  gap: 8px;
  padding-left: 20px;
}

.legal-page__card {
  padding: 28px;
  background: rgba(251, 248, 241, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px;
  color: #fff;
  background: var(--espresso);
}

.footer a {
  color: var(--gold-soft);
  font-weight: 800;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--gold-soft);
  font-size: 13px;
}

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

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 34px;
    background: rgba(23, 17, 15, 0.97);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-phone {
    justify-self: end;
  }

  .hero__inner,
  .split-section,
  .banquets,
  .contacts,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .delivery-form {
    width: 100%;
    max-width: 680px;
  }

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

  .about__grid,
  .event-moments,
  .hall-quiz__intro,
  .hall-quiz__panel,
  .promo-payments {
    grid-template-columns: 1fr;
  }

  .event-moments__media {
    min-height: 460px;
  }

  .event-moments__content {
    padding: 42px;
  }

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

  .hall-quiz__result {
    grid-template-rows: 320px 1fr;
  }

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

  .bar-layout {
    grid-template-columns: 1fr;
  }

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

  .bar-list {
    grid-template-columns: 1fr;
  }

  .order-card {
    position: static;
  }

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

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

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

  .bar-controls {
    grid-template-columns: 1fr;
  }

  .menu-status {
    margin: 0;
    text-align: left;
  }

  .bar-status {
    margin: 0;
    text-align: left;
  }

  .floating-cart {
    display: none;
  }

  .delivery-modal__panel {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .delivery-map-search iframe,
  .delivery-yandex-map {
    min-height: 300px;
  }

  .delivery-modal__map {
    min-height: 540px;
  }

  .delivery-zone-widget {
    height: 240px;
  }

  .banquet-quiz__grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  body {
    padding-bottom: 92px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 18px;
  }

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

  .brand__text {
    font-size: 25px;
  }

  .header-phone {
    display: none;
  }

  .hero {
    min-height: 100svh;
  }

  .hero__inner {
    align-content: end;
    gap: 22px;
    min-height: 100svh;
    padding: 104px 18px 120px;
  }

  .hero__inner > *,
  .hero__copy,
  .booking-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .booking-card {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 94px;
    z-index: 70;
    width: auto;
    max-width: none;
    max-height: min(720px, calc(100svh - 122px));
    overflow: auto;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(18px) scale(0.985);
    transition:
      opacity var(--motion-fast) ease,
      visibility var(--motion-fast) ease,
      transform var(--motion-med) var(--motion-ease);
  }

  body.mobile-booking-open .booking-card {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .mobile-booking-backdrop {
    position: fixed;
    inset: 0;
    z-index: 69;
    display: block;
    background: rgba(23, 17, 15, 0.62);
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
    transition:
      opacity var(--motion-fast) ease,
      visibility var(--motion-fast) ease;
  }

  body.mobile-booking-open .mobile-booking-backdrop {
    opacity: 1;
    visibility: visible;
  }

  body.mobile-booking-open {
    overflow: hidden;
  }

  .mobile-booking-close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(36, 23, 20, 0.08);
  }

  .mobile-booking-close::before,
  .mobile-booking-close::after {
    position: absolute;
    width: 17px;
    height: 2px;
    content: "";
    background: var(--espresso);
    border-radius: 999px;
  }

  .mobile-booking-close::before {
    transform: rotate(45deg);
  }

  .mobile-booking-close::after {
    transform: rotate(-45deg);
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero__lead {
    font-size: 21px;
  }

  .hero__meta {
    gap: 9px;
    margin-top: 18px;
  }

  .hero__actions {
    gap: 10px;
  }

  .hero__actions,
  .section__head--wide,
  .event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .form-card {
    padding: 16px;
  }

  .booking-card h2 {
    font-size: 28px;
  }

  .booking-card p {
    font-size: 15px;
  }

  .field-grid,
  .menu-list,
  .review-list,
  .quick-strip {
    grid-template-columns: 1fr;
  }

  .delivery-toolbar {
    gap: 14px;
  }

  .discount-pills {
    display: grid;
  }

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

  .bar-note {
    max-width: none;
  }

  .bar-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .bar-card__photo img {
    aspect-ratio: 1.35 / 1;
    min-height: 0;
  }

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

  .bar-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .menu-item__media img,
  .menu-item__photo img {
    aspect-ratio: 1.35 / 1;
  }

  .quick-strip article {
    min-height: 104px;
    padding: 24px 18px;
  }

  .quick-strip strong {
    min-height: 34px;
  }

  .section,
  .delivery-section,
  .event-moments__content,
  .hall-quiz {
    padding: 62px 18px;
  }

  .event-moments__media {
    min-height: 360px;
  }

  .event-moments__plate {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .event-list article {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .event-list h3 {
    font-size: 24px;
  }

  .hall-quiz__intro {
    gap: 14px;
  }

  .hall-quiz__intro h2 {
    font-size: 40px;
  }

  .hall-quiz__intro p {
    font-size: 16px;
  }

  .hall-quiz fieldset {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 8px;
  }

  .hall-quiz label {
    min-height: 44px;
  }

  .hall-quiz__result {
    grid-template-rows: 240px 1fr;
  }

  .hall-quiz__result > div {
    padding: 20px;
  }

  .hall-quiz__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .section h2,
  .split-section__copy h2,
  .banquets__content h2,
  .promo-panel h2,
  .payment-panel h2,
  .contacts h2 {
    font-size: 36px;
  }

  .section__head p,
  .split-section__copy p,
  .banquets__content p,
  .promo-panel p {
    font-size: 16px;
  }

  .hall-grid {
    grid-template-columns: repeat(7, 240px);
    overflow-x: auto;
  }

  .photo-modal {
    padding: 12px;
  }

  .photo-modal__panel {
    padding: 12px;
  }

  .photo-modal__stage {
    min-height: 220px;
  }

  .photo-modal__stage img {
    max-height: calc(100vh - 150px);
  }

  .photo-modal__nav {
    width: 40px;
    height: 40px;
  }

  .photo-modal__nav--prev {
    left: 10px;
  }

  .photo-modal__nav--next {
    right: 10px;
  }

  .photo-modal__caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding-right: 48px;
  }

  .photo-modal__caption h2 {
    font-size: 18px;
  }

  .delivery-modal {
    padding: 12px;
  }

  .delivery-modal__form {
    padding: 22px;
  }

  .delivery-modal__form h2 {
    font-size: 30px;
    padding-right: 42px;
  }

  .floating-cart {
    right: 14px;
    bottom: 92px;
    min-height: 50px;
  }

  .mobile-actions {
    display: grid;
  }

  .cart-toast {
    right: 12px;
    bottom: 96px;
  }

  .promo-panel,
  .payment-panel {
    padding: 24px;
  }

  .contacts__map,
  .contacts__map iframe {
    min-height: 420px;
  }

  .legal {
    padding: 0 18px 64px;
  }
}

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

  .brand__text {
    font-size: 23px;
  }

  .brand__sub {
    font-size: 8px;
    letter-spacing: 0.28em;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    inset: 66px 10px auto;
    max-height: calc(100svh - 80px);
    overflow: auto;
    border-radius: var(--radius);
  }

  .hero__inner {
    padding: 96px 14px 118px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .hero__meta {
    font-size: 13px;
  }

  .button {
    min-height: 48px;
    padding-inline: 16px;
  }

  .quick-strip article {
    min-height: 96px;
  }

  .quick-strip strong {
    font-size: 34px;
  }

  .section h2,
  .split-section__copy h2,
  .banquets__content h2,
  .promo-panel h2,
  .payment-panel h2,
  .contacts h2 {
    font-size: 33px;
  }

  .booking-card {
    left: 9px;
    right: 9px;
    bottom: 88px;
    max-height: calc(100svh - 106px);
    padding: 16px;
  }

  .mobile-actions {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

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

  .button {
    transition: none;
  }
}

/* Premium Yauza pass */
:root {
  --ink: #15110f;
  --espresso: #19110f;
  --cacao: #2a1c18;
  --gold: #c89b54;
  --gold-soft: #f0d8a7;
  --paper: #f8f2e7;
  --linen: #efe2cf;
  --border: rgba(42, 28, 24, 0.14);
  --shadow: 0 26px 80px rgba(20, 13, 10, 0.16);
}

body {
  background:
    radial-gradient(circle at 20% 0%, rgba(200, 155, 84, 0.1), transparent 28rem),
    var(--paper);
}

.site-header {
  min-height: 78px;
  background: rgba(18, 12, 10, 0.86);
}

.brand__mark {
  border-radius: 8px;
}

.hero {
  min-height: 820px;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(18, 12, 10, 0.9) 0%, rgba(18, 12, 10, 0.66) 42%, rgba(18, 12, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(18, 12, 10, 0.18) 0%, rgba(18, 12, 10, 0.66) 100%);
}

.hero h1 {
  font-size: clamp(78px, 11vw, 150px);
}

.hero__lead {
  max-width: 720px;
  font-size: clamp(28px, 4vw, 44px);
}

.booking-card,
.form-card,
.order-card,
.promo-panel,
.payment-panel {
  border: 1px solid rgba(198, 154, 74, 0.2);
  box-shadow: 0 22px 70px rgba(20, 13, 10, 0.12);
}

.quick-strip {
  margin-top: -38px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section h2 {
  letter-spacing: -0.01em;
}

.halls {
  background:
    radial-gradient(circle at 16% 12%, rgba(198, 154, 74, 0.16), transparent 34rem),
    linear-gradient(135deg, #150f0d 0%, #241714 58%, #301c18 100%);
}

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

.hall-card {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.hall-card__photo img {
  aspect-ratio: 1 / 1.12;
}

.hall-card__body {
  min-height: 202px;
}

.hall-card h3 {
  font-family: var(--serif);
  font-size: 24px;
}

.halls-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(198, 154, 74, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.halls-cta h3 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 30px;
}

.halls-cta p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-shell {
  padding-top: 78px;
}

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

.home-link-grid a {
  display: grid;
  gap: 10px;
  min-height: 148px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 54px rgba(20, 13, 10, 0.08);
}

.home-link-grid strong {
  font-family: var(--serif);
  font-size: 30px;
}

.home-link-grid span {
  color: var(--muted);
}

.delivery-note {
  border-color: rgba(198, 154, 74, 0.22);
}

@media (max-width: 1180px) {
  .hall-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hall-card__body {
    min-height: 176px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: 780px;
  }

  .quick-strip {
    margin-top: 0;
  }

  .hall-grid {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .hall-card__body {
    min-height: auto;
  }

  .halls-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .home-link-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium motion layer: soft reveals and state changes, no floating loops. */
:root {
  --motion-fast: 160ms;
  --motion-med: 320ms;
  --motion-slow: 620ms;
  --motion-ease: cubic-bezier(0.2, 0.72, 0.18, 1);
}

.motion-ready .reveal {
  opacity: 0.001;
  clip-path: inset(0 0 18px 0);
  transition:
    opacity var(--motion-slow) var(--motion-ease) var(--reveal-delay, 0ms),
    clip-path var(--motion-slow) var(--motion-ease) var(--reveal-delay, 0ms);
  will-change: opacity, clip-path;
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  clip-path: inset(0);
}

.site-header {
  transition:
    background-color var(--motion-med) ease,
    border-color var(--motion-med) ease,
    box-shadow var(--motion-med) ease;
}

.brand__text,
.brand__sub,
.site-nav a,
.header-phone,
.button,
button,
.tab-button,
.address-button,
.checkout-address,
.floating-cart,
.home-link-grid a,
.hall-card,
.menu-item,
.bar-card,
.review-card,
.feature-list article,
.order-card {
  transition:
    color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-med) ease,
    filter var(--motion-med) ease;
}

.brand:hover .brand__text,
.site-nav a:hover,
.header-phone:hover {
  color: var(--gold-soft);
}

.button:hover,
button:hover,
.tab-button:hover,
.address-button:hover,
.checkout-address:hover,
.floating-cart:hover {
  filter: brightness(1.08);
}

.callback-fab {
  position: fixed;
  right: 22px;
  bottom: 142px;
  z-index: 58;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #211814;
  background: var(--gold);
  border: 1px solid rgba(255, 244, 220, 0.72);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.callback-fab svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.callback-modal[hidden] {
  display: none;
}

.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  place-items: center;
  padding: 20px;
  overflow: auto;
  background: rgba(6, 8, 7, 0.68);
  backdrop-filter: blur(10px);
}

.callback-modal__panel {
  position: relative;
  display: grid;
  gap: 7px;
  width: min(440px, 100%);
  max-height: calc(100vh - 40px);
  max-height: min(760px, calc(100dvh - 40px));
  overflow-y: auto;
  overscroll-behavior: contain;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
  padding: 20px 22px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(198, 154, 74, 0.12), transparent 38%),
    #2b2723;
  border: 1px solid rgba(198, 154, 74, 0.34);
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.54);
  scrollbar-color: rgba(234, 216, 175, 0.38) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.callback-modal__panel::-webkit-scrollbar {
  width: 8px;
}

.callback-modal__panel::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.callback-modal__panel::-webkit-scrollbar-thumb {
  background: rgba(234, 216, 175, 0.38);
  border-radius: 999px;
}

.callback-modal__panel h2 {
  margin: 0;
  padding-right: 38px;
  font-family: var(--serif);
  font-size: 26px;
  line-height: 1.08;
}

.callback-form {
  display: grid;
  gap: 7px;
}

.callback-form label {
  display: grid;
  gap: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
}

.callback-form input,
.callback-form select,
.callback-form textarea {
  min-height: 44px;
  color: #fff;
  background: rgba(13, 12, 11, 0.74);
  border-color: rgba(234, 216, 175, 0.16);
}

.callback-form textarea {
  min-height: 60px;
}

.callback-form .form-result:empty {
  display: none;
}

.callback-call {
  display: grid;
  place-items: center;
  min-height: 40px;
  color: #f8ead2;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(234, 216, 175, 0.18);
  border-radius: 10px;
  font-weight: 900;
}

.callback-call:hover {
  color: #211814;
  background: var(--gold);
}

.callback-contact-group {
  display: grid;
  gap: 7px;
}

.callback-contact-group > span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.callback-messengers a {
  display: grid;
  place-items: center;
  min-height: 36px;
  color: #211814;
  background: var(--gold-soft);
  border-radius: 10px;
  font-weight: 900;
}

.home-link-grid a:hover,
.hall-card:hover,
.menu-item:hover,
.bar-card:hover,
.review-card:hover,
.feature-list article:hover,
.order-card:hover {
  border-color: rgba(198, 154, 74, 0.46);
  box-shadow: 0 24px 70px rgba(20, 13, 10, 0.16);
}

.menu-item__photo img,
.bar-card__photo img,
.hall-card__photo img,
.about__image img,
.split-section__copy img {
  transition: filter var(--motion-med) ease;
}

.menu-item:hover .menu-item__photo img,
.bar-card:hover .bar-card__photo img,
.hall-card:hover .hall-card__photo img,
.about__image:hover img,
.split-section__copy img:hover {
  filter: brightness(1.08) saturate(1.04);
}

.delivery-modal,
.photo-modal {
  animation: modalBackdropIn var(--motion-med) ease both;
}

.delivery-modal__panel,
.photo-modal__panel {
  animation: modalPanelIn var(--motion-med) var(--motion-ease) both;
}

.order-row {
  animation: rowFadeIn var(--motion-med) ease both;
}

@keyframes modalBackdropIn {
  from {
    background: rgba(6, 8, 7, 0);
    backdrop-filter: blur(0);
  }
}

@keyframes modalPanelIn {
  from {
    opacity: 0.001;
    clip-path: inset(0 0 24px 0);
  }
}

@keyframes rowFadeIn {
  from {
    opacity: 0.001;
  }
}

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

  .motion-ready .reveal {
    opacity: 1;
    clip-path: inset(0);
  }
}

/* Luxury motion pass: cinematic page entry, route transitions, premium depth. */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  pointer-events: none;
  color: var(--gold-soft);
  background:
    radial-gradient(circle at 50% 38%, rgba(198, 154, 74, 0.16), transparent 32%),
    linear-gradient(120deg, #080604, #1a100d 48%, #090605);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 520ms var(--motion-ease),
    visibility 520ms var(--motion-ease);
}

.page-loader__grain {
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, #000, transparent 78%);
}

.page-loader__signature {
  position: absolute;
  inset: auto 12% 16% 12%;
  height: 180px;
  overflow: hidden;
  opacity: 0.62;
  pointer-events: none;
}

.page-loader__signature::before,
.page-loader__signature::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(58vw, 620px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 175, 0.86), transparent);
  transform-origin: center;
}

.page-loader__signature::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.page-loader--menu .page-loader__signature::before {
  height: 120px;
  border-top: 1px solid rgba(234, 216, 175, 0.45);
  border-bottom: 1px solid rgba(234, 216, 175, 0.18);
  background:
    radial-gradient(circle at 18% 50%, rgba(198, 154, 74, 0.64) 0 3px, transparent 4px),
    radial-gradient(circle at 42% 50%, rgba(234, 216, 175, 0.56) 0 3px, transparent 4px),
    radial-gradient(circle at 68% 50%, rgba(198, 154, 74, 0.64) 0 3px, transparent 4px),
    linear-gradient(90deg, transparent, rgba(234, 216, 175, 0.48), transparent);
  transform: translate(-50%, -50%) scaleX(0);
}

.page-loader--bar .page-loader__signature::before {
  height: 140px;
  width: 140px;
  border: 1px solid rgba(234, 216, 175, 0.42);
  border-radius: 999px 999px 18px 18px;
  background: radial-gradient(circle at 50% 76%, rgba(198, 154, 74, 0.42), transparent 52%);
  transform: translate(-50%, -50%) scaleY(0.18);
}

.page-loader--delivery .page-loader__signature::before {
  width: min(54vw, 620px);
  height: 120px;
  border: 1px solid rgba(234, 216, 175, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 78% 50%, rgba(198, 154, 74, 0.9) 0 6px, transparent 7px),
    linear-gradient(90deg, transparent 0 16%, rgba(234, 216, 175, 0.6) 16% 18%, transparent 18% 35%, rgba(234, 216, 175, 0.6) 35% 37%, transparent 37% 100%);
  transform: translate(-50%, -50%) scaleX(0.08);
}

.page-loader--banquets .page-loader__signature::before {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  border: 1px solid rgba(234, 216, 175, 0.2);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(234, 216, 175, 0.78) 0 3px, transparent 4px),
    repeating-conic-gradient(from 0deg, rgba(234, 216, 175, 0.34) 0deg 4deg, transparent 4deg 18deg);
  transform: translate(-50%, -50%) scale(0.25) rotate(-18deg);
}

.page-loader--halls .page-loader__signature::before,
.page-loader--halls .page-loader__signature::after {
  width: min(30vw, 320px);
  height: 160px;
  border: 1px solid rgba(234, 216, 175, 0.34);
  background: linear-gradient(90deg, rgba(198, 154, 74, 0.18), rgba(234, 216, 175, 0.06));
}

.page-loader--halls .page-loader__signature::before {
  transform: translate(calc(-50% - 110px), -50%) scaleX(0.08);
}

.page-loader--halls .page-loader__signature::after {
  transform: translate(calc(-50% + 110px), -50%) scaleX(0.08);
}

.page-loader--contacts .page-loader__signature::before {
  width: min(40vw, 420px);
  height: min(40vw, 420px);
  border: 1px solid rgba(234, 216, 175, 0.22);
  border-radius: 18px;
  background-image:
    linear-gradient(rgba(234, 216, 175, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 216, 175, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 58% 44%, rgba(198, 154, 74, 0.9) 0 7px, transparent 8px);
  background-size: 42px 42px, 42px 42px, auto;
  transform: translate(-50%, -50%) scale(0.92);
}

.page-loader--about .page-loader__signature::before,
.page-loader--reviews .page-loader__signature::before {
  width: min(44vw, 480px);
  height: 120px;
  border-top: 1px solid rgba(234, 216, 175, 0.44);
  border-bottom: 1px solid rgba(234, 216, 175, 0.18);
  background: linear-gradient(90deg, transparent, rgba(198, 154, 74, 0.18), transparent);
  transform: translate(-50%, -50%) scaleX(0);
}

.page-loader__panel {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 260px;
  padding: 34px 48px 38px;
  border: 1px solid rgba(234, 216, 175, 0.28);
  background: rgba(15, 10, 8, 0.58);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.44);
  overflow: hidden;
}

.page-loader__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, 0.18) 47%, transparent 58% 100%);
  transform: translateX(-120%);
}

.page-loader__line {
  width: 112px;
  height: 1px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: center;
}

.page-loader strong {
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.92;
  text-transform: uppercase;
}

.page-loader small {
  color: rgba(234, 216, 175, 0.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.36em;
  text-transform: uppercase;
}

.page-is-entering .page-loader,
.page-is-leaving .page-loader {
  opacity: 1;
  visibility: visible;
}

.page-is-entering .page-loader__line,
.page-is-leaving .page-loader__line {
  animation: loaderLine 860ms var(--motion-ease) both;
}

.page-is-entering .page-loader__panel::before,
.page-is-leaving .page-loader__panel::before {
  animation: loaderShine 980ms var(--motion-ease) both;
}

.page-is-entering .page-loader__signature::before,
.page-is-leaving .page-loader__signature::before {
  animation: loaderSignature 980ms var(--motion-ease) both;
}

.page-is-entering .page-loader--halls .page-loader__signature::before,
.page-is-entering .page-loader--halls .page-loader__signature::after,
.page-is-leaving .page-loader--halls .page-loader__signature::before,
.page-is-leaving .page-loader--halls .page-loader__signature::after {
  animation: loaderCurtains 980ms var(--motion-ease) both;
}

.page-is-ready main,
.page-is-ready .site-header {
  animation: pageReveal 760ms var(--motion-ease) both;
}

.page-is-leaving main,
.page-is-leaving .site-header {
  animation: pageLeave 430ms var(--motion-ease) both;
}

.luxury-motion .hero__media {
  transform: scale(calc(1.035 + (var(--page-progress, 0) * 0.025)));
  transform-origin: center top;
  transition: transform 900ms var(--motion-ease);
}

.luxury-motion .hero h1 {
  animation: titleUnveil 980ms var(--motion-ease) 260ms both;
}

.luxury-motion .hero__lead,
.luxury-motion .hero__meta,
.luxury-motion .hero__actions {
  animation: softRise 880ms var(--motion-ease) both;
}

.luxury-motion .hero__lead {
  animation-delay: 420ms;
}

.luxury-motion .hero__meta {
  animation-delay: 540ms;
}

.luxury-motion .hero__actions {
  animation-delay: 660ms;
}

.luxury-motion .site-header::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(234, 216, 175, 0.72), transparent);
  transform: scaleX(0);
  transform-origin: center;
  animation: goldRule 1200ms var(--motion-ease) 520ms both;
}

.luxury-motion .button,
.luxury-motion .tab-button,
.luxury-motion .method-switch button {
  position: relative;
  overflow: hidden;
}

.luxury-motion .button::after,
.luxury-motion .tab-button::after,
.luxury-motion .method-switch button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.22) 50%, transparent 62% 100%);
  transform: translateX(-140%);
  pointer-events: none;
}

.luxury-motion .button:hover::after,
.luxury-motion .tab-button:hover::after,
.luxury-motion .method-switch button:hover::after {
  animation: controlShine 760ms ease;
}

.luxury-motion .menu-item,
.luxury-motion .bar-card,
.luxury-motion .hall-card,
.luxury-motion .home-link-grid a,
.luxury-motion .feature-list article,
.luxury-motion .review-card {
  transform: translateZ(0);
}

.luxury-motion .menu-item:hover,
.luxury-motion .bar-card:hover,
.luxury-motion .hall-card:hover,
.luxury-motion .home-link-grid a:hover,
.luxury-motion .feature-list article:hover,
.luxury-motion .review-card:hover {
  transform: translateY(-5px);
}

.luxury-motion .photo-modal__stage img,
.luxury-motion .delivery-modal__panel,
.luxury-motion .photo-modal__panel {
  animation: luxuryScaleIn 520ms var(--motion-ease) both;
}

.luxury-motion .order-row {
  animation: orderSlideIn 420ms var(--motion-ease) both;
}

.page-menu .menu-tabs {
  animation: menuRibbonIn 820ms var(--motion-ease) 420ms both;
}

.page-menu .order-card {
  animation: orderSlideIn 720ms var(--motion-ease) 520ms both;
}

.page-bar .bar-tabs {
  animation: menuRibbonIn 820ms var(--motion-ease) 420ms both;
}

.page-bar .bar-note {
  animation: amberGlowIn 900ms var(--motion-ease) 520ms both;
}

.page-delivery .checkout-address,
.page-delivery .delivery-note {
  animation: routeIn 760ms var(--motion-ease) both;
}

.page-banquets .banquet-card,
.page-banquets .promo-panel {
  animation: chandelierIn 880ms var(--motion-ease) both;
}

.page-halls .hall-card__photo {
  animation: curtainPhotoIn 760ms var(--motion-ease) both;
}

.page-contacts .map-card,
.page-contacts .contact-card {
  animation: mapPinIn 820ms var(--motion-ease) both;
}

.page-about .about__image {
  animation: framedPhotoIn 900ms var(--motion-ease) 360ms both;
}

.page-reviews .review-card {
  animation: reviewInkIn 760ms var(--motion-ease) both;
}

@keyframes loaderLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes loaderShine {
  to {
    transform: translateX(120%);
  }
}

@keyframes loaderSignature {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}

@keyframes loaderCurtains {
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scaleX(1);
  }
}

@keyframes pageReveal {
  from {
    opacity: 0.001;
    filter: blur(12px);
    transform: translateY(12px);
  }
}

@keyframes pageLeave {
  to {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(-10px);
  }
}

@keyframes titleUnveil {
  from {
    opacity: 0.001;
    clip-path: inset(0 0 100% 0);
    filter: blur(8px);
  }
}

@keyframes softRise {
  from {
    opacity: 0.001;
    transform: translateY(18px);
    filter: blur(8px);
  }
}

@keyframes goldRule {
  to {
    transform: scaleX(1);
  }
}

@keyframes controlShine {
  to {
    transform: translateX(140%);
  }
}

@keyframes luxuryScaleIn {
  from {
    opacity: 0.001;
    transform: scale(0.985);
    filter: blur(10px);
  }
}

@keyframes orderSlideIn {
  from {
    opacity: 0.001;
    transform: translateX(10px);
  }
}

@keyframes cartPulse {
  0%,
  100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.055);
    box-shadow: 0 0 0 8px rgba(198, 154, 74, 0.18), 0 18px 46px rgba(0, 0, 0, 0.32);
  }
}

@keyframes menuRibbonIn {
  from {
    opacity: 0.001;
    clip-path: inset(0 100% 0 0);
    filter: blur(8px);
  }
}

@keyframes amberGlowIn {
  from {
    opacity: 0.001;
    box-shadow: 0 0 0 rgba(198, 154, 74, 0);
    filter: blur(8px);
  }
  to {
    box-shadow: 0 18px 58px rgba(198, 154, 74, 0.16);
  }
}

@keyframes routeIn {
  from {
    opacity: 0.001;
    clip-path: inset(0 100% 0 0);
  }
}

@keyframes chandelierIn {
  from {
    opacity: 0.001;
    filter: blur(10px) brightness(1.3);
    transform: translateY(-12px);
  }
}

@keyframes curtainPhotoIn {
  from {
    opacity: 0.001;
    clip-path: inset(0 50% 0 50%);
    filter: blur(8px);
  }
}

@keyframes mapPinIn {
  from {
    opacity: 0.001;
    filter: blur(8px);
    transform: scale(0.985);
  }
}

@keyframes framedPhotoIn {
  from {
    opacity: 0.001;
    clip-path: inset(12% 12% 12% 12%);
    filter: blur(8px);
  }
}

@keyframes reviewInkIn {
  from {
    opacity: 0.001;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes quizResultIn {
  from {
    opacity: 0.001;
    filter: blur(8px);
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none;
  }

  .page-is-ready main,
  .page-is-ready .site-header,
  .luxury-motion .hero h1,
  .luxury-motion .hero__lead,
  .luxury-motion .hero__meta,
  .luxury-motion .hero__actions {
    animation: none !important;
  }

  .luxury-motion .hero__media,
  .luxury-motion .menu-item:hover,
  .luxury-motion .bar-card:hover,
  .luxury-motion .hall-card:hover,
  .luxury-motion .home-link-grid a:hover,
  .luxury-motion .feature-list article:hover,
  .luxury-motion .review-card:hover {
    transform: none;
  }
}

/* Final responsive pass: desktop remains rich, phone behaves like a native mobile page. */
@media (min-width: 721px) {
  .booking-card {
    position: relative;
  }
}

@media (max-width: 720px) {
  .page-loader {
    overflow: hidden;
  }

  .page-loader__signature {
    width: min(76vw, 320px);
  }

  .hero {
    min-height: 100svh;
  }

  .hero__media {
    background-position: center top;
  }

  .hero__inner {
    align-content: end;
    grid-template-columns: 1fr;
    min-height: 100svh;
    padding: 104px 18px 118px;
  }

  .hero__copy {
    align-self: end;
  }

  .booking-card {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 94px;
    z-index: 70;
    width: auto;
    max-width: none;
    max-height: min(720px, calc(100svh - 122px));
    overflow: auto;
  }

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

  .mobile-booking-backdrop {
    z-index: 69;
  }
}

@media (max-width: 420px) {
  .hero__inner {
    padding: 94px 14px 112px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero__lead {
    font-size: 19px;
  }

  .booking-card {
    left: 9px;
    right: 9px;
    bottom: 88px;
    max-height: calc(100svh - 106px);
  }

  .mobile-actions {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}

/* Mobile app polish across inner pages. */
@media (max-width: 720px) {
  .page-shell {
    padding-top: 66px;
  }

  .section,
  .delivery-section,
  .event-moments__content,
  .hall-quiz {
    padding: 54px 16px;
  }

  .section__head,
  .section__head--wide {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
  }

  .section h2,
  .split-section__copy h2,
  .banquets__content h2,
  .promo-panel h2,
  .payment-panel h2,
  .contacts h2 {
    font-size: 34px;
    line-height: 1.04;
  }

  .section__head p,
  .split-section__copy p,
  .banquets__content p,
  .promo-panel p,
  .payment-panel li {
    font-size: 15px;
    line-height: 1.62;
  }

  .menu-section > *,
  .halls > * {
    max-width: 100%;
  }

  .delivery-toolbar,
  .delivery-terms,
  .menu-controls,
  .bar-controls,
  .menu-layout,
  .bar-layout,
  .reviews-layout,
  .reviews-trust,
  .promo-payments,
  .contacts,
  .banquets,
  .banquet-quiz__grid,
  .banquet-formats,
  .cta-strip {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cta-strip {
    display: grid;
    padding: 28px 18px;
  }

  .cta-strip strong,
  .trust-card h3 {
    font-size: 28px;
  }

  .cta-strip > div:last-child {
    justify-content: stretch;
  }

  .cta-strip > div:last-child .button {
    width: 100%;
  }

  .delivery-terms article,
  .banquet-formats article,
  .trust-card {
    min-height: auto;
  }

  .banquet-quiz__form,
  .banquet-quiz__result > div {
    padding: 18px;
  }

  .banquet-quiz__result h3 {
    font-size: 31px;
  }

  .discount-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .discount-pills span {
    min-height: 40px;
    border-radius: var(--radius);
  }

  .menu-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-inline: 0;
    padding: 10px;
    background: rgba(18, 12, 10, 0.92);
    backdrop-filter: blur(14px);
    scrollbar-width: none;
  }

  .menu-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    min-height: 40px;
    padding: 6px 8px;
    gap: 6px;
    font-size: 11px;
    line-height: 1.12;
    white-space: normal;
  }

  .tab-button small {
    min-width: 22px;
    height: 20px;
    font-size: 10px;
  }

  .menu-status,
  .bar-status {
    margin: 0;
    text-align: left;
  }

  .menu-list,
  .bar-list,
  .review-list,
  .hall-grid,
  .home-link-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
  }

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

  .menu-item__media img,
  .menu-item__photo img {
    aspect-ratio: 4 / 3;
  }

  .menu-item__body,
  .bar-card__body {
    padding: 16px;
  }

  .bar-card {
    grid-template-columns: 118px minmax(0, 1fr);
    min-height: 0;
  }

  .bar-card__photo img {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .bar-card__top {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

  .bar-card__top strong {
    white-space: normal;
  }

  .bar-card__bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bar-card__bottom button {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .bar-card__unavailable {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .menu-item__unavailable {
    justify-content: center;
    width: 100%;
    margin-left: 0;
    border-radius: var(--radius);
  }

  .order-card {
    position: static;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
  }

  .order-items {
    max-height: 240px;
  }

  .order-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .order-total,
  .delivery-summary {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }

  .floating-cart {
    display: none !important;
  }

  .delivery-section .split-section__copy img,
  .banquets__media img,
  .about__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .delivery-section .split-section__copy img {
    display: none;
  }

  .delivery-note,
  .checkout-address,
  .address-button {
    min-height: auto;
    padding: 14px;
  }

  .messenger-actions,
  .modal-address-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-modal,
  .photo-modal {
    align-items: end;
    padding: 10px;
  }

  .delivery-modal__panel {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 92svh;
    overflow: auto;
    border-radius: 18px 18px 8px 8px;
  }

  .delivery-modal__form {
    padding: 20px;
  }

  .delivery-modal__form h2 {
    padding-right: 44px;
    font-size: 30px;
  }

  .delivery-map-search iframe,
  .delivery-yandex-map {
    min-height: 260px;
  }

  .delivery-modal__map {
    min-height: 470px;
  }

  .delivery-zone-card__head {
    align-items: start;
    flex-direction: column;
  }

  .delivery-zone-card__head strong {
    text-align: left;
  }

  .delivery-zone-widget {
    height: 230px;
  }

  .photo-modal__panel {
    width: 100%;
    max-height: 92svh;
    border-radius: 18px 18px 8px 8px;
  }

  .photo-modal__stage {
    min-height: 280px;
  }

  .photo-modal__stage img {
    max-height: 60svh;
  }

  .hall-card__photo img {
    aspect-ratio: 16 / 11;
  }

  .hall-card__body {
    min-height: auto;
  }

  .halls-cta,
  .promo-panel,
  .payment-panel {
    padding: 20px;
  }

  .contacts__map,
  .contacts__map iframe {
    min-height: 360px;
  }

  .footer {
    padding-bottom: 118px;
  }

  .callback-fab {
    right: 16px;
    bottom: 126px;
    width: 56px;
    height: 56px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    padding-top: 60px;
  }

  .section,
  .delivery-section,
  .event-moments__content,
  .hall-quiz {
    padding: 46px 12px;
  }

  .menu-tabs {
    margin-inline: -12px;
    padding: 10px 12px;
  }

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

  .bar-card__photo img {
    aspect-ratio: 4 / 3;
  }

  .messenger-actions,
  .modal-address-tools {
    grid-template-columns: 1fr;
  }

  .mobile-action {
    min-height: 54px;
    padding-inline: 4px;
  }

  .mobile-action strong {
    font-size: 10px;
  }

  .mobile-action small {
    font-size: 9px;
  }

  .callback-modal {
    align-items: end;
    padding: 10px;
  }

  .callback-modal__panel {
    max-height: 92svh;
    overflow: auto;
    padding: 22px;
    border-radius: 18px 18px 8px 8px;
  }

  .callback-messengers {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .callback-messengers a {
    min-height: 36px;
    padding-inline: 4px;
    font-size: 12px;
  }
}
