:root {
  --ink: #17211d;
  --muted: #64716a;
  --paper: #f7f1e7;
  --surface: #fffdf8;
  --line: #ded4c4;
  --forest: #123a32;
  --forest-2: #0d2823;
  --berry: #9c2f35;
  --gold: #c99942;
  --gold-soft: #f0d8a5;
  --shadow: 0 18px 50px rgba(22, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(222, 212, 196, 0.85);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 78px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-title {
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 650;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav .active a {
  background: #efe4d2;
  color: var(--berry);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--forest);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--forest);
  color: #fffdf8;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--forest-2);
  transform: translateY(-1px);
}

.btn.secondary {
  background: transparent;
  border-color: rgba(255, 253, 248, 0.7);
  color: #fffdf8;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 253, 248, 0.13);
}

.btn.outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

.btn.outline:hover,
.btn.outline:focus-visible {
  background: var(--forest);
  color: #fffdf8;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 76vh;
  max-height: 760px;
  color: #fffdf8;
  background-color: var(--forest);
  background-image:
    linear-gradient(90deg, rgba(13, 40, 35, 0.86), rgba(13, 40, 35, 0.56) 47%, rgba(13, 40, 35, 0.22)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  content: "";
  background: linear-gradient(0deg, rgba(247, 241, 231, 1), rgba(247, 241, 231, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  padding: 82px 0 118px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 700;
}

.hero-lead,
.page-lead {
  width: min(640px, 100%);
  margin: 22px 0 0;
  color: rgba(255, 253, 248, 0.9);
  font-size: 20px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: #fffdf8;
  font-size: 14px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.section {
  padding: 86px 0;
}

.section.tight {
  padding-top: 58px;
}

.section.deep {
  padding-bottom: 112px;
}

.section.alt {
  background: #fffaf1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--berry);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1.13;
}

.section-text {
  max-width: 730px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

.feature-card,
.offer-card,
.hall-card,
.contact-card,
.menu-item-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-card {
  display: grid;
  min-height: 270px;
  overflow: hidden;
}

.feature-card.image {
  position: relative;
  align-content: end;
  padding: 26px;
  color: #fffdf8;
  background-color: var(--forest);
  background-image:
    linear-gradient(180deg, rgba(15, 43, 37, 0.08), rgba(15, 43, 37, 0.78)),
    var(--image);
  background-position: center;
  background-size: cover;
}

.feature-card.plain {
  padding: 28px;
}

.feature-card h3,
.offer-card h2,
.hall-card h2,
.contact-card h2 {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.2;
}

.feature-card p,
.offer-card p,
.hall-card p,
.contact-card p {
  margin: 12px 0 0;
  color: inherit;
}

.feature-card.plain p,
.offer-card p,
.hall-card p,
.contact-card p {
  color: var(--muted);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.stat {
  padding: 24px;
  background: var(--surface);
}

.stat strong {
  display: block;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.page-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 380px;
  color: #fffdf8;
  background-color: var(--forest);
  background-image:
    linear-gradient(90deg, rgba(13, 40, 35, 0.86), rgba(13, 40, 35, 0.5)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 88px 0 88px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  color: rgba(255, 253, 248, 0.8);
  font-size: 14px;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  color: rgba(255, 253, 248, 0.55);
  content: "/";
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.quote-panel {
  position: sticky;
  top: 112px;
  padding: 34px;
  border-radius: 8px;
  background: var(--forest);
  color: #fffdf8;
}

.quote-panel p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.25;
}

.quote-panel span {
  display: block;
  margin-top: 22px;
  color: var(--gold-soft);
  font-weight: 800;
}

.prose {
  color: var(--ink);
  font-size: 18px;
}

.prose h2 {
  margin: 0 0 16px;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.16;
}

.prose p {
  margin: 0 0 20px;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.benefit-list li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.8fr);
  min-height: 320px;
  overflow: hidden;
}

.offer-card.invert {
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1fr);
}

.offer-card-content {
  display: grid;
  align-content: center;
  padding: 38px;
}

.offer-tag {
  width: max-content;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f2e2c4;
  color: var(--berry);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-visual,
.hall-visual,
.menu-category-visual {
  min-height: 260px;
  background-color: var(--forest);
  background-image:
    linear-gradient(180deg, rgba(15, 43, 37, 0.04), rgba(15, 43, 37, 0.25)),
    var(--image);
  background-position: center;
  background-size: cover;
}

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

.menu-sidebar {
  position: sticky;
  top: 104px;
}

.menu-search {
  width: 100%;
  min-height: 46px;
  margin-bottom: 14px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.menu-nav-list {
  display: grid;
  gap: 7px;
  padding: 10px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  list-style: none;
  box-shadow: var(--shadow);
}

.menu-nav-list a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--forest);
  font-weight: 700;
}

.menu-nav-list a:hover,
.menu-nav-list a:focus-visible {
  background: #efe4d2;
  color: var(--berry);
}

.menu-section {
  scroll-margin-top: 118px;
  margin-bottom: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
  overflow: hidden;
}

.menu-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.menu-section-title {
  padding: 28px;
}

.menu-section-title h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.15;
}

.menu-section-title p {
  margin: 8px 0 0;
  color: var(--muted);
}

.menu-items {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.menu-item-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  gap: 20px;
  padding: 20px 22px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.menu-item-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.menu-item-card p {
  margin: 7px 0 0;
  color: var(--muted);
}

.portion-value {
  justify-self: end;
  min-width: 82px;
  padding-top: 2px;
  color: var(--berry);
  font-weight: 800;
  text-align: right;
}

.menu-empty {
  display: none;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
}

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

.hall-card {
  overflow: hidden;
}

.hall-card-content {
  padding: 26px;
}

.hall-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.hall-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #efe4d2;
  color: var(--forest);
  font-size: 14px;
  font-weight: 800;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  padding: 30px;
}

.contact-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.contact-list strong {
  display: block;
  color: var(--forest);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.map-panel {
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(18, 58, 50, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 58, 50, 0.14) 1px, transparent 1px),
    #efe4d2;
  background-size: 44px 44px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--forest);
  font-weight: 800;
}

.error-page {
  padding: 82px 0 112px;
}

.error-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.error-code {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  font-weight: 700;
  line-height: 0.95;
}

.error-panel h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.16;
}

.error-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.site-footer {
  padding: 46px 0;
  background: var(--forest-2);
  color: rgba(255, 253, 248, 0.76);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

.footer-title {
  margin: 0 0 6px;
  color: #fffdf8;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold-soft);
}

.dialog {
  width: min(520px, calc(100% - 30px));
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.dialog::backdrop {
  background: rgba(13, 40, 35, 0.7);
}

.dialog-content {
  padding: 30px;
}

.dialog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  margin-bottom: 20px;
}

.dialog h2 {
  margin: 0;
  color: var(--forest);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--forest);
  cursor: pointer;
}

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

.field {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--forest);
}

.form-note {
  display: none;
  margin: 12px 0 0;
  color: var(--forest);
  font-weight: 800;
}

.is-hidden {
  display: none !important;
}

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

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 6px;
  }

  .main-nav a {
    width: 100%;
  }

  .header-actions {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 48px;
  }

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

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

  .quote-panel,
  .menu-sidebar {
    position: static;
  }

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

@media (max-width: 720px) {
  .container {
    width: min(1160px, calc(100% - 28px));
  }

  .brand-subtitle {
    display: none;
  }

  .brand-title {
    font-size: 20px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 62px;
    padding-bottom: 88px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-lead,
  .page-lead,
  .section-text,
  .prose {
    font-size: 17px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 33px;
  }

  .grid.two,
  .grid.three,
  .hall-grid,
  .benefit-list,
  .stat-strip {
    grid-template-columns: 1fr;
  }

  .offer-card,
  .offer-card.invert {
    grid-template-columns: 1fr;
  }

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

  .error-code {
    font-size: 82px;
  }

  .offer-card.invert .offer-visual {
    order: 2;
  }

  .offer-card.invert .offer-card-content {
    order: 1;
  }

  .menu-section-head,
  .menu-item-card {
    grid-template-columns: 1fr;
  }

  .menu-category-visual {
    min-height: 190px;
  }

  .portion-value {
    justify-self: start;
    text-align: left;
  }

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

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }
}

@media (max-width: 460px) {
  .header-inner {
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-actions,
  .section-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .quote-panel p {
    font-size: 25px;
  }

  .offer-card-content,
  .contact-card,
  .dialog-content {
    padding: 24px;
  }
}
