/* Theme and page typography */
:root {
  --ink: #16110d;
  --muted: #6f6259;
  --cream: #fff8ef;
  --paper: #fffdf8;
  --red: #a51f18;
  --green: #145a32;
  --gold: #c59b4d;
  --line: rgba(22,17,13,.12);
  --shadow: 0 20px 55px rgba(30,18,8,.10);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.catalog-page {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
  radial-gradient(circle at top left, rgba(197,155,77,.22), transparent 28rem),
  linear-gradient(180deg, #fff7ea 0%, #fffdf8 45%, #fff7ea 100%);
  line-height: 1.55;
}
  body:is(.home-page, .gallery-page, .accessibility-page, .menu-page, .half-tray-page) {
    font-family: Georgia, "Times New Roman", serif;
  }
  :is(.home-page, .gallery-page, .menu-page, .half-tray-page) * {
    font-family: Arial, sans-serif;
  }
.accessibility-page :is(p, a, span, button) {
  font-family: Arial, sans-serif;
}
  :is(.home-page, .gallery-page, .accessibility-page, .menu-page, .half-tray-page)
    :is(h1, h2, h3, h4, h5, h6) {
    font-family: Georgia, "Times New Roman", serif;
  }
  :is(.home-page, .gallery-page, .accessibility-page, .menu-page, .half-tray-page)
    :is(h1, h2, h3, h4, h5, h6) * {
    font-family: inherit;
  }
  :is(
    .gallery-page .gallery-hero,
    .accessibility-page .accessibility-hero,
    .half-tray-page .half-tray-hero
  ) {
  margin-top: -6rem;
  background-size: cover;
  background-image: url('img/abstract-img.jpg');
}
:where(.catalog-page) a { color: inherit; }
/* Shared navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,253,248,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  line-height: 1.1;
  white-space: nowrap;
}
.brand > img {
  display: block;
  height: 80px;
  width: auto;
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 13px;
  border: 1px solid rgba(165,31,24,.22);
  border-radius: 999px;
  background: #fff;
  color: #2f251d;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(30,18,8,.08);
}
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: var(--red);
  color: var(--red);
  outline: none;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-icon {
  position: relative;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-icon::before { transform: translateY(-6px); }
.nav-toggle-icon::after { transform: translateY(6px); }
.nav-toggle.is-open .nav-toggle-icon { background: transparent; }
.nav-toggle.is-open .nav-toggle-icon::before { transform: rotate(45deg); }
.nav-toggle.is-open .nav-toggle-icon::after { transform: rotate(-45deg); }
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  flex-wrap: wrap;
  font-family: Arial, sans-serif;
}
.nav a {
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: 800;
  font-size: .92rem;
  padding: 9px 12px;
  border-radius: 999px;
  color: #2f251d;
}
.nav a:hover,
.nav a.active {
  background: rgba(165,31,24,.08);
  color: var(--red);
}
.nav .order-btn {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 20px rgba(165,31,24,.18);
}
.nav .order-btn:hover {
  background: #851812;
  color: #fff;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Shared menu, specials, and catering layout */
:where(.catalog-page) .hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 58px 20px 28px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
:where(.catalog-page) .eyebrow {
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
:where(.catalog-page) h1 {
  margin: 0;
  font-size: clamp(2.45rem, 6vw, 4.85rem);
  line-height: .94;
  letter-spacing: -.05em;
}
:where(.catalog-page) .hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  margin: 18px 0 0;
  font-family: Arial, sans-serif;
}
:where(.catalog-page) .info-card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  font-family: Arial, sans-serif;
}
:where(.catalog-page) .info-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
}
:where(.catalog-page) .info-line { margin: 9px 0; color: #3d342c; }
:where(.catalog-page) .info-card .primary-action {
  display: inline-flex;
  margin-top: 12px;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}
:where(.catalog-page) .menu-nav-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 28px;
}
:where(.catalog-page) .menu-nav {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 14px;
  background: rgba(20,90,50,.08);
  border: 1px solid rgba(20,90,50,.16);
  border-radius: 20px;
  scrollbar-width: thin;
}
:where(.catalog-page) .menu-nav a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
  font-size: .92rem;
  font-family: Arial, sans-serif;
  font-weight: 700;
}
:where(.catalog-page) main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
:where(.catalog-page) .menu-section {
  margin: 24px 0;
  padding: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
:where(.catalog-page) .section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 3px double rgba(165,31,24,.22);
  padding-bottom: 13px;
  margin-bottom: 16px;
}
:where(.catalog-page) .section-heading h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--red);
}
:where(.catalog-page) .top-link {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .85rem;
  text-decoration: none;
  white-space: nowrap;
}
:where(.catalog-page) .items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
:where(.catalog-page) .menu-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  min-height: 82px;
}
:where(.catalog-page) .menu-item h3 {
  margin: 0;
  font-size: 1.04rem;
  line-height: 1.22;
}
:where(.catalog-page) .desc {
  margin: 6px 0 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .92rem;
}
:where(.catalog-page) .price {
  color: var(--green);
  font-weight: 900;
  font-family: Arial, sans-serif;
  white-space: nowrap;
}
:where(.catalog-page) .related {
  max-width: 1180px;
  margin: 0 auto 54px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  font-family: Arial, sans-serif;
}
:where(.catalog-page) .related-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(30,18,8,.06);
}
:where(.catalog-page) .related-card strong {
  display: block;
  color: var(--red);
  margin-bottom: 4px;
  font-size: 1.05rem;
}
:where(.catalog-page) .related-card span {
  color: var(--muted);
}
/* Shared accessibility notice and footer */
.accessibility-notice {
  padding: 46px 20px 30px;
  border-top: 1px solid var(--line);
  background: #fffdf8;
  color: #2f251d;
}
.footer-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
}
.accessibility-content {
  max-width: 860px;
  text-align: center;
}
.accessibility-title {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.1;
}
.accessibility-notice p,
.accessibility-notice a {
  font-family: Arial, sans-serif;
}
.accessibility-notice p {
  margin: 0;
  line-height: 1.7;
}
.accessibility-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-footer {
  padding: 34px 20px;
  background: #16110d;
  color: #fff8ef;
  text-align: center;
}
.site-footer,
.site-footer a,
.site-footer p {
  font-family: Arial, sans-serif;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 18px;
  margin-bottom: 22px;
}
.site-footer .footer-link {
  color: #fff8ef;
  font-weight: 800;
  text-decoration: none;
}
.site-footer .footer-link:hover,
.site-footer .footer-link:focus-visible {
  color: #f0c56d;
}
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-credit,
.footer-copyright {
  margin: 10px 0 0;
}
.footer-credit a {
  color: #fff8ef;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.footer-copyright {
  color: #d9d0c7;
  font-size: .92rem;
}

:where(.catalog-page) .seo-block {
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: 0 20px;
}
:where(.catalog-page) .seo-card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(30,18,8,.07);
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
}
:where(.catalog-page) .seo-card h2 {
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}
:where(.catalog-page) .seo-card p {
  margin: 8px 0;
  color: var(--muted);
  font-family: Arial, sans-serif;
}
:where(.catalog-page) .local-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-content: center;
  justify-content: flex-start;
  font-family: Arial, sans-serif;
}
:where(.catalog-page) .local-tags span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fff8ef;
  border: 1px solid rgba(165,31,24,.16);
  color: #51372d;
  font-weight: 800;
  font-size: .92rem;
}
:where(.catalog-page) .faq {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 0 20px;
}
:where(.catalog-page) .faq-card {
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(30,18,8,.07);
}
:where(.catalog-page) .faq h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.08;
}
:where(.catalog-page) details {
  border-top: 1px solid var(--line);
  padding: 13px 0;
  font-family: Arial, sans-serif;
}
:where(.catalog-page) details:first-of-type { border-top: 0; }
:where(.catalog-page) summary {
  cursor: pointer;
  font-weight: 900;
  color: #2f251d;
}
:where(.catalog-page) details p {
  color: var(--muted);
  margin: 9px 0 0;
}

@media (max-width: 900px) {
  :where(.catalog-page) .seo-card { grid-template-columns: 1fr; }
  .header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    padding: 8px 16px;
  }
  .site-header .brand > img { height: 64px; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav {
    display: none;
    width: 100%;
    flex: 0 0 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 10px 0 6px;
    border-top: 1px solid var(--line);
  }
  .nav.is-open {
    display: flex;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    animation: mobile-nav-in .18s ease-out;
  }
  .nav > a {
    width: 100%;
    padding: 11px 14px;
    border-radius: 12px;
    text-align: left;
  }
  .nav > a.active {
    box-shadow: inset 3px 0 0 var(--red);
  }
  .nav > .order-btn {
    padding: 12px 16px;
    text-align: center;
  }
  .nav-socials {
    justify-content: center;
    gap: 10px;
    margin-top: 3px;
    padding-top: 9px;
    border-top: 1px solid var(--line);
  }
  .nav-socials a {
    padding: 9px 14px;
    border: 1px solid var(--line);
    background: #fff;
  }
  :where(.catalog-page) .hero { grid-template-columns: 1fr; padding-top: 34px; }
  :where(.catalog-page) .items { grid-template-columns: 1fr; }
  :where(.catalog-page) .related { grid-template-columns: 1fr; }
  :where(.catalog-page) .menu-section { padding: 18px; border-radius: 20px; }
}
@media (max-width: 520px) {
  .brand { white-space: normal; }
  .site-header .brand > img { height: 56px; }
  .nav-toggle-label { display: none; }
  .nav-toggle { padding: 11px; }
  .nav a { font-size: .92rem; }
  :where(.catalog-page) .menu-item { grid-template-columns: 1fr; gap: 8px; }
}
@keyframes mobile-nav-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .nav.is-open { animation: none; }
  .nav-toggle-icon,
  .nav-toggle-icon::before,
  .nav-toggle-icon::after { transition: none; }
}

/* Homepage component styles */
.home-page .moved-inline-1 { font-size:1.15rem;font-weight:600;padding:10px 26px; background:linear-gradient(90deg,#7b1a28,#a11f35); border:none;color:#fff;border-radius:6px; box-shadow:0 0 6px rgba(161,31,53,0.4); text-decoration:none;display:inline-block; }
.home-page .moved-inline-2 { background-image:url('img/background.jpg?v=2'); }
.home-page .moved-inline-3 { font-size:1rem;font-weight:500; }
.home-page .moved-inline-4 { background-color: #f7f7f7; border-bottom: 1px solid rgb(235, 235, 235); }
.home-page .moved-inline-5 { background:#FFF; border:0; border-radius:3px; box-shadow:0 0 1px 0 rgba(0,0,0,0.5),0 1px 10px 0 rgba(0,0,0,0.15); margin: 1px; max-width:540px; min-width:326px; padding:0; width:99.375%; width:-webkit-calc(100% - 2px); width:calc(100% - 2px); }
.home-page .moved-inline-6 { padding:16px; }
.home-page .moved-inline-7 { background:#FFFFFF; line-height:0; padding:0 0; text-align:center; text-decoration:none; width:100%; }
.home-page .moved-inline-8 { display: flex; flex-direction: row; align-items: center; }
.home-page .moved-inline-9 { background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 40px; margin-right: 14px; width: 40px; }
.home-page .moved-inline-10 { display: flex; flex-direction: column; flex-grow: 1; justify-content: center; }
.home-page .moved-inline-11 { background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 100px; }
.home-page .moved-inline-12 { background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 60px; }
.home-page .moved-inline-13 { padding: 19% 0; }
.home-page .moved-inline-14 { display:block; height:50px; margin:0 auto 12px; width:50px; }
.home-page .moved-inline-15 { padding-top: 8px; }
.home-page .moved-inline-16 { color:#3897f0; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:550; line-height:18px; }
.home-page .moved-inline-17 { padding: 12.5% 0; }
.home-page .moved-inline-18 { display: flex; flex-direction: row; margin-bottom: 14px; align-items: center; }
.home-page .moved-inline-19 { background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(0px) translateY(7px); }
.home-page .moved-inline-20 { background-color: #F4F4F4; height: 12.5px; transform: rotate(-45deg) translateX(3px) translateY(1px); width: 12.5px; flex-grow: 0; margin-right: 14px; margin-left: 2px; }
.home-page .moved-inline-21 { background-color: #F4F4F4; border-radius: 50%; height: 12.5px; width: 12.5px; transform: translateX(9px) translateY(-18px); }
.home-page .moved-inline-22 { margin-left: 8px; }
.home-page .moved-inline-23 { background-color: #F4F4F4; border-radius: 50%; flex-grow: 0; height: 20px; width: 20px; }
.home-page .moved-inline-24 { width: 0; height: 0; border-top: 2px solid transparent; border-left: 6px solid #f4f4f4; border-bottom: 2px solid transparent; transform: translateX(16px) translateY(-4px) rotate(30deg) }
.home-page .moved-inline-25 { margin-left: auto; }
.home-page .moved-inline-26 { width: 0px; border-top: 8px solid #F4F4F4; border-right: 8px solid transparent; transform: translateY(16px); }
.home-page .moved-inline-27 { background-color: #F4F4F4; flex-grow: 0; height: 12px; width: 16px; transform: translateY(-4px); }
.home-page .moved-inline-28 { width: 0; height: 0; border-top: 8px solid #F4F4F4; border-left: 8px solid transparent; transform: translateY(-4px) translateX(8px); }
.home-page .moved-inline-29 { display: flex; flex-direction: column; flex-grow: 1; justify-content: center; margin-bottom: 24px; }
.home-page .moved-inline-30 { background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; margin-bottom: 6px; width: 224px; }
.home-page .moved-inline-31 { background-color: #F4F4F4; border-radius: 4px; flex-grow: 0; height: 14px; width: 144px; }
.home-page .moved-inline-32 { color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; line-height:17px; margin-bottom:0; margin-top:8px; overflow:hidden; padding:8px 0 7px; text-align:center; text-overflow:ellipsis; white-space:nowrap; }
.home-page .moved-inline-33 { color:#c9c8cd; font-family:Arial,sans-serif; font-size:14px; font-style:normal; font-weight:normal; line-height:17px; text-decoration:none; }
.home-page .moved-inline-34 { background-color: #f7f7f7 ; border-top: 1px solid rgb(235, 235, 235); border-bottom: 1px solid rgb(235, 235, 235); }
.home-page .moved-inline-35 { background-size: cover; background-image: url('img/abstract-img.jpg?v=5; background-position: center;'); }
.home-page .moved-inline-36 { background-color: #1f1e1e }
.home-page .moved-inline-37 { width:40px }
