:root {
  color-scheme: dark;
  --bg: #080706;
  --bg-soft: #11100e;
  --stone: #1b1a17;
  --stone-2: #25231f;
  --wood: #2b1d14;
  --gold: #c8a45d;
  --gold-soft: #ead395;
  --copper: #a66a3f;
  --ink: #050403;
  --text: #f4efe4;
  --muted: #b8ad99;
  --line: rgba(232, 204, 139, 0.2);
  --glass: rgba(11, 10, 9, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 73% 8%, rgba(234, 211, 149, 0.14), transparent 25rem),
    radial-gradient(circle at 30% 18%, rgba(166, 106, 63, 0.1), transparent 28rem),
    linear-gradient(115deg, rgba(39, 23, 15, 0.36), transparent 46%),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px) 0 0 / 44px 44px,
    repeating-linear-gradient(35deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 9px);
  opacity: 0.3;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(9, 8, 7, 0.96), rgba(9, 8, 7, 0.34), rgba(9, 8, 7, 0.96)),
    url("data:image/svg+xml,%3Csvg width='260' height='260' viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
  opacity: 0.16;
}

body.book-open {
  overflow: hidden;
}

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

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

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #050403;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader__smoke {
  position: absolute;
  width: min(84vw, 720px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 42% 48%, rgba(255, 255, 255, 0.14), transparent 8rem),
    radial-gradient(circle at 56% 44%, rgba(200, 164, 93, 0.12), transparent 10rem);
  filter: blur(32px);
  animation: smokeDrift 5s linear infinite;
}

.loader__logo {
  width: 168px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 90px rgba(200, 164, 93, 0.24), inset 0 0 20px rgba(234, 211, 149, 0.1);
  animation: logoReveal 1.6s ease both;
}

.loader__line {
  position: absolute;
  width: min(360px, 64vw);
  height: 1px;
  transform: translateY(116px);
  overflow: hidden;
  background: rgba(200, 164, 93, 0.18);
}

.loader__line::before {
  display: block;
  width: 42%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  animation: lightSweep 1.2s ease-in-out infinite;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 50;
  display: flex;
  width: min(1180px, calc(100% - 24px));
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 28%),
    rgba(8, 7, 6, 0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Cinzel, Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 6px;
  object-fit: cover;
  background: #080706;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(200, 164, 93, 0.28);
  color: var(--text);
  background: rgba(200, 164, 93, 0.09);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--gold-soft);
  transition: transform 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section {
  position: relative;
  min-height: 100svh;
  padding: 118px max(20px, calc((100vw - 1180px) / 2)) 82px;
}

.hero {
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding-bottom: 96px;
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 44%, rgba(234, 211, 149, 0.2), transparent 18rem),
    radial-gradient(circle at 82% 52%, rgba(255, 255, 255, 0.09), transparent 20rem);
}

.hero__media canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__media--fallback {
  display: grid;
  place-items: center end;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
}

.hookah-fallback-model {
  width: min(58vw, 680px);
  max-height: 88svh;
  object-fit: contain;
  filter: drop-shadow(0 44px 70px rgba(0, 0, 0, 0.72)) drop-shadow(0 0 38px rgba(200, 164, 93, 0.16));
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(34, 20, 13, 0.58) 0 1px, transparent 1px 12%),
    linear-gradient(180deg, transparent 0 64%, rgba(8, 7, 6, 0.78) 100%),
    radial-gradient(circle at 78% 45%, rgba(200, 164, 93, 0.15), transparent 20rem);
  mask-image: linear-gradient(90deg, transparent, #000 43%, #000);
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.94) 0%, rgba(8, 7, 6, 0.62) 38%, rgba(8, 7, 6, 0.05) 100%),
    linear-gradient(0deg, var(--bg) 0%, rgba(8, 7, 6, 0.84) 14%, transparent 42%),
    radial-gradient(circle at 20% 75%, rgba(166, 106, 63, 0.16), transparent 22rem);
}

.rune-field {
  position: absolute;
  inset: 18% 7% auto auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  color: rgba(234, 211, 149, 0.12);
  font-family: Cinzel, serif;
  font-size: clamp(3.5rem, 9vw, 9rem);
  pointer-events: none;
}

.rune-field span {
  animation: runePulse 5s ease-in-out infinite;
}

.rune-field span:nth-child(2),
.rune-field span:nth-child(3) {
  animation-delay: 1.4s;
}

.hero__content {
  width: min(690px, 100%);
  position: relative;
}

.hero__content::before {
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 24px;
  content: "";
  background: linear-gradient(90deg, var(--gold-soft), transparent);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 700;
  line-height: 0.94;
}

h1 {
  max-width: 7ch;
  font-size: clamp(4.6rem, 18vw, 13rem);
  letter-spacing: 0.02em;
  text-shadow: 0 0 48px rgba(200, 164, 93, 0.2), 0 14px 44px rgba(0, 0, 0, 0.72);
}

h2 {
  font-size: clamp(2.3rem, 8vw, 5.8rem);
}

h3 {
  font-size: 1.25rem;
  line-height: 1.12;
}

.hero__copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.28rem);
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__meta span {
  padding: 9px 12px;
  border: 1px solid rgba(234, 211, 149, 0.18);
  border-radius: 999px;
  color: rgba(244, 239, 228, 0.84);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button--primary {
  border-color: rgba(234, 211, 149, 0.44);
  color: #120f09;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.button--ghost {
  color: var(--gold-soft);
  background: rgba(255, 255, 255, 0.03);
}

.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  display: grid;
  width: 28px;
  height: 52px;
  place-items: start center;
  border: 1px solid rgba(234, 211, 149, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 4px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--gold-soft);
  animation: scrollCue 1.4s ease-in-out infinite;
}

.intro-strip {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 72px);
  padding: 18px 20px;
  border-block: 1px solid var(--line);
  color: var(--muted);
  background:
    linear-gradient(90deg, rgba(35, 26, 20, 0.6), rgba(9, 8, 7, 0.92), rgba(35, 26, 20, 0.6)),
    repeating-linear-gradient(90deg, rgba(234, 211, 149, 0.05) 0 1px, transparent 1px 48px);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-strip p {
  margin: 0;
  color: rgba(234, 211, 149, 0.5);
  font-family: Cinzel, Georgia, serif;
}

.menu-tabs-section {
  padding: 78px max(20px, calc((100vw - 1180px) / 2)) 28px;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(13, 12, 10, 0.94)),
    radial-gradient(circle at 12% 10%, rgba(200, 164, 93, 0.08), transparent 22rem);
}

.menu-tabs-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.42fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.menu-tabs-head h2 {
  margin-top: 0;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
}

.menu-tabs-head p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.menu-tab {
  position: relative;
  display: grid;
  min-height: 92px;
  align-content: space-between;
  padding: 14px;
  border: 1px solid rgba(200, 164, 93, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(8, 7, 6, 0.62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: translateY(14px);
  animation: tabReveal 0.58s ease forwards;
  animation-delay: var(--delay);
  overflow: hidden;
}

.menu-tab::after {
  position: absolute;
  inset: auto 12px 12px auto;
  content: "ᛟ";
  color: rgba(234, 211, 149, 0.14);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
}

.menu-tab span {
  color: rgba(234, 211, 149, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-tab strong {
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.1;
}

.menu-tab:hover {
  border-color: rgba(234, 211, 149, 0.36);
  background:
    radial-gradient(circle at 70% 0%, rgba(200, 164, 93, 0.12), transparent 8rem),
    rgba(12, 10, 8, 0.78);
  transform: translateY(-2px);
}

.menu-section {
  position: relative;
  padding-top: 104px;
  border-bottom: 1px solid rgba(232, 204, 139, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 18rem),
    radial-gradient(circle at 9% 10%, rgba(90, 61, 36, 0.2), transparent 24rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018), transparent 42%);
}

.menu-section::before {
  position: absolute;
  inset: 54px max(14px, calc((100vw - 1230px) / 2)) 36px;
  z-index: -1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(200, 164, 93, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.06), transparent 22%),
    linear-gradient(315deg, rgba(200, 164, 93, 0.035), transparent 22%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 18px 80px rgba(0, 0, 0, 0.22);
}

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

.section-head p:last-child {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.menu-grid,
.menu-compact,
.menu-featured,
.menu-shots,
.menu-editorial,
.menu-showcase {
  display: grid;
  gap: 16px;
}

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

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

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

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

.menu-editorial,
.menu-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 30px;
  padding: 20px;
  border: 1px solid rgba(200, 164, 93, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
    rgba(8, 7, 6, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.menu-editorial .menu-card,
.menu-showcase .menu-card {
  min-height: auto;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid rgba(200, 164, 93, 0.18);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.menu-editorial .menu-card::before,
.menu-editorial .menu-card::after,
.menu-showcase .menu-card::before,
.menu-showcase .menu-card::after,
.menu-editorial .menu-card__image,
.menu-showcase .menu-card__image {
  display: none;
}

.menu-editorial .menu-card:hover,
.menu-showcase .menu-card:hover {
  box-shadow: none;
}

.menu-editorial .menu-card__body,
.menu-showcase .menu-card__body {
  min-height: auto;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 8px 18px;
}

.menu-editorial .menu-card__body h3,
.menu-showcase .menu-card__body h3 {
  color: var(--gold-soft);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
}

.menu-editorial .menu-card__body p,
.menu-showcase .menu-card__body p {
  grid-column: 1 / -1;
  max-width: 560px;
}

.menu-editorial .price,
.menu-showcase .price {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.menu-card {
  position: relative;
  min-height: 218px;
  padding: 20px;
  border: 1px solid rgba(232, 204, 139, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.014) 42%),
    linear-gradient(145deg, rgba(35, 33, 29, 0.96), rgba(8, 7, 6, 0.97));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.menu-card h3 {
  overflow-wrap: anywhere;
}

.menu-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(234, 211, 149, 0.2), transparent 12rem),
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 28%, transparent), transparent 44%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.menu-card::after {
  position: absolute;
  inset: auto 16px 16px auto;
  width: 32px;
  height: 32px;
  content: "ᛟ";
  color: rgba(234, 211, 149, 0.16);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.menu-book .menu-card::after {
  display: none;
}

.menu-card__visual {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 0;
  width: 104px;
  height: 104px;
  opacity: 0.34;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.42)) saturate(0.92);
  pointer-events: none;
}

.menu-card__body {
  padding-right: 78px;
}

.menu-editorial .menu-card,
.menu-showcase .menu-card {
  min-height: 132px;
  padding-right: 104px;
}

.menu-editorial .menu-card__body,
.menu-showcase .menu-card__body {
  padding-right: 0;
}

.menu-editorial .menu-card__visual,
.menu-showcase .menu-card__visual {
  right: 0;
  bottom: 12px;
  width: 92px;
  height: 92px;
  opacity: 0.32;
}

.menu-card:hover {
  border-color: rgba(234, 211, 149, 0.36);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44), 0 0 38px color-mix(in srgb, var(--accent) 18%, transparent);
}

.menu-card:hover::before {
  opacity: 1;
}

.menu-card__image {
  display: none;
}

.menu-card__photo {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 0;
  width: clamp(136px, 34%, 220px);
  height: calc(100% - 24px);
  border: 1px solid rgba(234, 211, 149, 0.32);
  border-radius: 22px;
  object-fit: cover;
  opacity: 0.96;
  filter: saturate(1.08) contrast(1.04) brightness(1.13);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36), 0 0 30px rgba(234, 211, 149, 0.1);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.72) 16%, #000 36%);
  pointer-events: none;
}

.menu-card:has(.menu-card__photo) .menu-card__body {
  padding-right: clamp(138px, 36%, 238px);
}

.menu-card:has(.menu-card__photo)::before {
  z-index: 1;
}

.menu-card:has(.menu-card__photo) .menu-card__body {
  z-index: 2;
}

.menu-card:has(.menu-card__photo) {
  background:
    radial-gradient(circle at 88% 50%, rgba(234, 211, 149, 0.13), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.018) 42%),
    linear-gradient(145deg, rgba(35, 33, 29, 0.95), rgba(8, 7, 6, 0.97));
}

.menu-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 128px;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.item-meta {
  display: block;
  margin-top: 7px;
  color: rgba(234, 211, 149, 0.66);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(232, 204, 139, 0.18);
  border-radius: 999px;
  color: var(--gold-soft);
  background:
    linear-gradient(135deg, rgba(234, 211, 149, 0.1), rgba(255, 255, 255, 0.018)),
    rgba(8, 7, 6, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.menu-featured .menu-card {
  min-height: 240px;
}

.menu-compact .menu-card {
  min-height: 176px;
}

.menu-shots .menu-card {
  min-height: 156px;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 58px 20px 68px;
  color: var(--muted);
  text-align: center;
  background: #060504;
}

.site-footer img {
  width: 54px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.site-footer span {
  max-width: 460px;
  font-size: 0.88rem;
  line-height: 1.6;
}

.site-nav button {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav button:hover,
.site-nav button.is-active {
  border-color: rgba(200, 164, 93, 0.28);
  color: var(--text);
  background: rgba(200, 164, 93, 0.09);
}

.hero {
  min-height: 96svh;
  align-items: center;
  padding-top: 116px;
  padding-bottom: 42px;
}

.hero__media--ambient {
  background:
    radial-gradient(circle at 50% 38%, rgba(234, 211, 149, 0.13), transparent 20rem),
    radial-gradient(circle at 78% 18%, rgba(166, 106, 63, 0.11), transparent 19rem),
    radial-gradient(circle at 20% 80%, rgba(143, 110, 53, 0.12), transparent 18rem);
}

.hero__shade {
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.44), rgba(8, 7, 6, 0.72) 54%, var(--bg) 100%),
    radial-gradient(circle at 50% 43%, rgba(8, 7, 6, 0.04), rgba(8, 7, 6, 0.7) 66%);
}

.hero__texture {
  mask-image: none;
  opacity: 0.7;
}

.hero__content {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero__content::before {
  margin-right: auto;
  margin-left: auto;
}

.hero__copy {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.hero-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin: 28px auto 0;
}

.hero-menu__button,
.menu-tab {
  cursor: pointer;
  text-align: left;
}

.hero-menu__button {
  position: relative;
  display: grid;
  min-height: 82px;
  align-content: space-between;
  padding: 15px;
  border: 1px solid rgba(234, 211, 149, 0.22);
  border-radius: 8px;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(9, 8, 7, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px);
  animation: tabReveal 0.58s ease forwards;
  animation-delay: var(--delay);
}

.hero-menu__button::after {
  position: absolute;
  inset: auto 12px 10px auto;
  content: "ᛟ";
  color: rgba(234, 211, 149, 0.13);
  font-family: Cinzel, Georgia, serif;
  font-size: 1.5rem;
}

.hero-menu__button span,
.menu-tab span {
  color: rgba(234, 211, 149, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-menu__button strong,
.menu-tab strong {
  align-self: end;
  font-family: Cinzel, Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.08;
}

.hero-menu__button:hover,
.hero-menu__button.is-active,
.menu-tab:hover,
.menu-tab.is-active {
  border-color: rgba(234, 211, 149, 0.44);
  background:
    radial-gradient(circle at 72% 0%, rgba(200, 164, 93, 0.15), transparent 8rem),
    rgba(12, 10, 8, 0.86);
  transform: translateY(-2px);
}

.scroll-cue {
  bottom: 18px;
}

.menu-tabs-section {
  padding-top: 54px;
}

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

.menu-tab {
  border-color: rgba(200, 164, 93, 0.14);
}

.view-stage {
  min-height: 72svh;
  padding: 28px max(20px, calc((100vw - 1180px) / 2)) 88px;
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.96), var(--bg)),
    radial-gradient(circle at 12% 12%, rgba(200, 164, 93, 0.08), transparent 22rem);
}

#menu-root {
  position: relative;
}

.view-panel {
  display: none;
  min-height: 620px;
  border: 1px solid rgba(200, 164, 93, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 32%),
    linear-gradient(180deg, rgba(15, 14, 12, 0.96), rgba(7, 6, 5, 0.98));
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.view-panel.is-active {
  display: block;
  animation: pageReveal 0.42s ease both;
}

.view-panel__inner {
  position: relative;
  min-height: 620px;
  padding: 42px;
}

.view-panel__inner::before {
  position: absolute;
  inset: 18px;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 211, 149, 0.08);
  border-radius: 8px;
}

.view-panel--snacks {
  background:
    radial-gradient(circle at 85% 20%, rgba(138, 90, 53, 0.2), transparent 18rem),
    linear-gradient(180deg, rgba(16, 13, 10, 0.98), rgba(7, 6, 5, 0.98));
}

.view-panel--boards {
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 164, 93, 0.17), transparent 22rem),
    linear-gradient(135deg, rgba(43, 29, 20, 0.42), rgba(7, 6, 5, 0.98));
}

.view-panel--cocktails {
  background:
    radial-gradient(circle at 86% 18%, rgba(182, 93, 47, 0.18), transparent 20rem),
    linear-gradient(140deg, rgba(21, 19, 17, 0.98), rgba(5, 4, 3, 0.98));
}

.view-panel--beer {
  background:
    radial-gradient(circle at 80% 18%, rgba(200, 164, 93, 0.2), transparent 16rem),
    linear-gradient(150deg, rgba(33, 22, 12, 0.64), rgba(7, 6, 5, 0.98));
}

.view-panel--lemonades {
  background:
    radial-gradient(circle at 82% 20%, rgba(143, 184, 189, 0.14), transparent 20rem),
    linear-gradient(150deg, rgba(14, 18, 17, 0.98), rgba(7, 6, 5, 0.98));
}

.view-panel--soft,
.view-panel--coffee {
  background:
    radial-gradient(circle at 82% 20%, rgba(216, 198, 161, 0.12), transparent 18rem),
    linear-gradient(150deg, rgba(16, 15, 13, 0.98), rgba(7, 6, 5, 0.98));
}

.view-panel--shots {
  background:
    radial-gradient(circle at 84% 20%, rgba(155, 66, 83, 0.18), transparent 19rem),
    linear-gradient(150deg, rgba(17, 12, 12, 0.98), rgba(7, 6, 5, 0.98));
}

.view-panel--hookah {
  background:
    radial-gradient(circle at 72% 48%, rgba(234, 211, 149, 0.18), transparent 24rem),
    linear-gradient(120deg, rgba(9, 8, 7, 0.98), rgba(25, 17, 12, 0.94));
}

.view-panel .section-head {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
}

.view-note {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(184, 173, 153, 0.78);
  font-size: 0.88rem;
  line-height: 1.7;
}

.hookah-page-visual {
  position: relative;
  min-height: 520px;
  margin: 4px 0 28px;
  border: 1px solid rgba(234, 211, 149, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 68% 40%, rgba(234, 211, 149, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 32%);
  overflow: hidden;
}

.hookah-scene {
  position: absolute;
  inset: 0;
}

.hookah-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hookah-copy-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

@keyframes pageReveal {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

[data-animate],
.menu-card {
  opacity: 0;
  transform: translateY(22px);
}

[data-animate].is-visible,
.menu-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@keyframes smokeDrift {
  0% { transform: translate3d(-2%, 2%, 0) scale(0.96) rotate(0deg); }
  50% { transform: translate3d(3%, -2%, 0) scale(1.04) rotate(7deg); }
  100% { transform: translate3d(-2%, 2%, 0) scale(0.96) rotate(0deg); }
}

@keyframes logoReveal {
  from { opacity: 0; transform: scale(0.92); filter: blur(12px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}

@keyframes lightSweep {
  from { transform: translateX(-120%); }
  to { transform: translateX(260%); }
}

@keyframes runePulse {
  0%, 100% { opacity: 0.08; transform: translateY(0); }
  50% { opacity: 0.2; transform: translateY(-10px); }
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translateY(20px); }
}

@keyframes tabReveal {
  to { opacity: 1; transform: translateY(0); }
}

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

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + 26px);
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 7, 6, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav button {
    text-align: left;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-head,
  .menu-tabs-head,
  .menu-grid,
  .menu-featured,
  .menu-compact,
  .menu-shots,
  .menu-editorial,
  .menu-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .menu-editorial,
  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .rune-field {
    inset: 18% 6% auto auto;
    opacity: 0.68;
  }

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

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

  .view-panel__inner {
    padding: 32px;
  }

  .hookah-copy-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: var(--header-height);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .section {
    min-height: auto;
    padding: 92px 16px 56px;
  }

  .hero {
    min-height: 94svh;
    padding-bottom: 64px;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(8, 7, 6, 0.26), rgba(8, 7, 6, 0.9) 58%, var(--bg) 100%),
      linear-gradient(90deg, rgba(8, 7, 6, 0.86), rgba(8, 7, 6, 0.22));
  }

  .hero__media {
    background-position: center top;
  }

  .hero__media--fallback {
    place-items: start center;
    padding: 78px 0 0;
  }

  .hookah-fallback-model {
    width: min(94vw, 520px);
    max-height: 56svh;
  }

  .hero__content {
    padding-top: 0;
  }

  h1 {
    font-size: clamp(4.2rem, 24vw, 7.6rem);
  }

  .hero-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 22px;
  }

  .hero-menu__button {
    min-height: 72px;
    padding: 12px;
  }

  .hero-menu__button strong {
    font-size: 0.95rem;
  }

  .intro-strip {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 22px;
  }

  .section-head,
  .menu-tabs-head,
  .menu-grid,
  .menu-featured,
  .menu-compact,
  .menu-shots,
  .menu-editorial,
  .menu-showcase {
    grid-template-columns: 1fr;
  }

  .menu-tabs-section {
    padding: 52px 16px 24px;
  }

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

  .menu-tab {
    min-height: 78px;
    padding: 12px;
  }

  .view-stage {
    padding: 20px 12px 56px;
  }

  .view-panel {
    min-height: auto;
  }

  .view-panel__inner {
    min-height: auto;
    padding: 24px 16px;
  }

  .hookah-page-visual {
    min-height: 430px;
  }

  .menu-editorial .menu-card__body,
  .menu-showcase .menu-card__body {
    grid-template-columns: 1fr;
  }

  .menu-editorial .price,
  .menu-showcase .price {
    grid-column: 1;
    grid-row: auto;
  }

  .menu-card,
  .menu-featured .menu-card,
  .menu-compact .menu-card,
  .menu-shots .menu-card,
  .menu-editorial .menu-card,
  .menu-showcase .menu-card {
    min-height: auto;
  }
}

/* Menu-book redesign */
.hero__crest {
  width: 86px;
  height: 86px;
  margin: 0 auto 16px;
  border: 1px solid rgba(234, 211, 149, 0.26);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 42px rgba(200, 164, 93, 0.18), inset 0 0 20px rgba(0, 0, 0, 0.46);
}

.hero__content::before {
  width: min(320px, 72vw);
  height: 1px;
  margin-bottom: 14px;
  background:
    linear-gradient(90deg, transparent, rgba(234, 211, 149, 0.72) 36%, rgba(234, 211, 149, 0.72) 64%, transparent);
}

.hero {
  min-height: 100svh;
  padding-top: 100px;
  padding-bottom: 26px;
}

.hero__content {
  width: min(1040px, 100%);
  text-align: center;
}

.hero__copy {
  max-width: 680px;
  margin: 18px auto 0;
}

.hero-menu {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  margin-top: 24px;
}

.hero-menu__button {
  min-height: 118px;
  padding: 18px;
  border-color: rgba(234, 211, 149, 0.24);
  background:
    radial-gradient(circle at 82% 12%, rgba(200, 164, 93, 0.12), transparent 6rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.018)),
    rgba(8, 7, 6, 0.78);
}

.hero-menu__button strong {
  font-size: clamp(1rem, 1.6vw, 1.28rem);
}

.intro-strip,
.menu-tabs-section,
.view-stage {
  display: none;
}

.site-nav button {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.site-nav button:hover,
.site-nav button.is-active {
  border-color: rgba(200, 164, 93, 0.28);
  color: var(--text);
  background: rgba(200, 164, 93, 0.09);
}

.menu-book {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(200, 164, 93, 0.1), transparent 28rem),
    rgba(4, 3, 2, 0.72);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.34s ease, transform 0.34s ease;
}

.menu-book.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-book__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  width: 100%;
  height: 100svh;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.98), rgba(9, 8, 7, 0.98)),
    repeating-linear-gradient(90deg, rgba(234, 211, 149, 0.04) 0 1px, transparent 1px 42px);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.62), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.menu-book__shell::before {
  position: absolute;
  inset: 18px;
  z-index: 5;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(234, 211, 149, 0.1);
  border-radius: 8px;
}

.menu-book__close {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 20;
  width: auto;
  min-width: 98px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(234, 211, 149, 0.24);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(8, 7, 6, 0.76);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.menu-book__art {
  position: relative;
  min-height: 100%;
  background:
    radial-gradient(circle at 50% 35%, rgba(234, 211, 149, 0.16), transparent 15rem),
    linear-gradient(180deg, rgba(8, 7, 6, 0.22), rgba(8, 7, 6, 0.86));
  overflow: hidden;
}

.menu-book__art::before,
.menu-book__art::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

body[data-active-group="food"] .menu-book__art::before {
  width: 430px;
  height: 260px;
  left: 8%;
  top: 25%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 48%, #6f311f 0 11%, transparent 12%),
    radial-gradient(circle at 48% 38%, #d8c6a1 0 9%, transparent 10%),
    radial-gradient(circle at 62% 54%, #8a5a35 0 12%, transparent 13%),
    radial-gradient(circle at 70% 34%, #c8a45d 0 7%, transparent 8%),
    linear-gradient(135deg, #2b1d14, #090807);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.58), inset 0 0 0 10px rgba(200, 164, 93, 0.09);
  transform: rotate(-10deg);
  opacity: 0.56;
}

body[data-active-group="alcohol"] .menu-book__art::before {
  width: 190px;
  height: 480px;
  left: 34%;
  top: 14%;
  border: 1px solid rgba(234, 211, 149, 0.24);
  border-radius: 44% 44% 20% 20%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13), transparent 28%, rgba(182, 93, 47, 0.58) 46%, rgba(91, 23, 18, 0.76) 100%);
  box-shadow: 0 48px 110px rgba(0, 0, 0, 0.58), 0 0 70px rgba(182, 93, 47, 0.2);
  transform: rotate(8deg);
  opacity: 0.58;
}

body[data-active-group="nonalcohol"] .menu-book__art::before {
  width: 260px;
  height: 460px;
  left: 28%;
  top: 14%;
  border-radius: 32px;
  background:
    radial-gradient(circle at 40% 28%, rgba(255, 255, 255, 0.38), transparent 5rem),
    linear-gradient(90deg, rgba(143, 184, 189, 0.12), rgba(255, 255, 255, 0.24), rgba(143, 184, 189, 0.16));
  border: 1px solid rgba(180, 218, 222, 0.24);
  box-shadow: 0 44px 100px rgba(0, 0, 0, 0.56), 0 0 70px rgba(143, 184, 189, 0.12);
  opacity: 0.5;
}

body[data-active-group="hookah"] .menu-book__art::before {
  inset: 0;
  background:
    radial-gradient(circle at 52% 40%, rgba(234, 211, 149, 0.16), transparent 17rem),
    linear-gradient(180deg, transparent, rgba(8, 7, 6, 0.62));
}

.menu-book__art::after {
  inset: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(255, 255, 255, 0.11), transparent 8rem),
    linear-gradient(90deg, rgba(8, 7, 6, 0.72), transparent 50%, rgba(8, 7, 6, 0.68));
}

.menu-book__content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 18px;
  padding: 92px 54px 42px;
  min-width: 0;
}

.menu-book__head h2 {
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

.menu-book__head p:last-child {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.menu-book__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-book__tabs button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(234, 211, 149, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-book__tabs button.is-active {
  border-color: rgba(234, 211, 149, 0.42);
  color: #120f09;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}

.menu-book__pages {
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
  max-height: calc(100svh - 300px);
  scrollbar-color: rgba(234, 211, 149, 0.36) rgba(255, 255, 255, 0.04);
}

.book-page {
  position: relative;
  min-height: 100%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.book-page.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.book-page__background {
  position: absolute;
  inset: -80px -40px auto auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 211, 149, 0.13), transparent 68%);
  pointer-events: none;
}

.book-page .section-head {
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}

.book-page .section-head h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
}

.book-page .section-head p:last-child {
  max-width: 620px;
}

.menu-book .menu-card {
  opacity: 1;
  transform: none;
}

.hookah-page-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: auto;
  margin: 0;
  border: 0;
  opacity: 0.54;
  pointer-events: none;
}

.hookah-scene {
  position: absolute;
  inset: 0;
}

.hookah-copy-grid,
.book-page--hookah .section-head {
  position: relative;
  z-index: 2;
}

.hookah-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(460px, 100%);
}

@media (max-width: 980px) {
  .hero-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-book__shell {
    grid-template-columns: 1fr;
    height: 100svh;
  }

  .menu-book__art {
    position: absolute;
    inset: 0;
    opacity: 0.44;
  }

  .menu-book__content {
    padding: 86px 24px 28px;
  }

  .menu-book__pages {
    max-height: calc(100svh - 292px);
  }
}

@media (max-width: 680px) {
  .hero__crest {
    width: 68px;
    height: 68px;
  }

  .hero-menu {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hero-menu__button {
    min-height: 68px;
  }

  .menu-book {
    padding: 0;
  }

  .menu-book__shell {
    height: 100svh;
  }

  .menu-book__content {
    padding: 82px 14px 18px;
  }

  .menu-book__close {
    top: 16px;
    left: 14px;
    min-width: 88px;
    height: 38px;
    padding: 0 13px;
  }

  .menu-book__pages {
    max-height: calc(100svh - 284px);
  }

  .menu-book__head h2 {
    font-size: 2.4rem;
  }

  .menu-editorial,
  .menu-showcase,
  .menu-grid,
  .menu-compact,
  .menu-shots {
    grid-template-columns: 1fr;
  }

  .menu-book__tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .menu-book__tabs button {
    flex: 0 0 auto;
  }
}

/* Stability and icon polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.odin-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--gold-soft);
}

.hero-menu__button {
  grid-template-rows: auto 1fr;
  align-content: stretch;
  min-width: 0;
}

.hero-menu__button::after {
  display: none;
}

.hero-menu__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(234, 211, 149, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(234, 211, 149, 0.14), transparent 2rem),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-menu__icon .odin-icon {
  width: 26px;
  height: 26px;
}

.hero-menu__button strong {
  overflow-wrap: anywhere;
}

.hero__address {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(234, 211, 149, 0.24);
  border-radius: 999px;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 24%, rgba(234, 211, 149, 0.18), transparent 4rem),
    rgba(8, 7, 6, 0.62);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  text-decoration: none;
  backdrop-filter: blur(14px);
}

.hero__address span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(234, 211, 149, 0.1);
  font-family: Cinzel, Georgia, serif;
}

.hero__address strong,
.hero__address em {
  font-size: 0.84rem;
  font-style: normal;
  line-height: 1.15;
}

.hero__address strong {
  font-weight: 900;
}

.hero__address em {
  color: var(--gold-soft);
  font-weight: 800;
}

.menu-book__shell,
.menu-book__content,
.menu-book__pages,
.book-page,
.menu-card,
.menu-card__body,
.menu-card__title {
  min-width: 0;
}

.menu-card__title,
.menu-card p,
.price {
  position: relative;
  z-index: 2;
}

.menu-book__shell {
  max-width: 100vw;
}

.menu-book__content {
  overflow: hidden;
}

.menu-book__pages {
  overflow-x: hidden;
  scrollbar-color: rgba(234, 211, 149, 0.36) rgba(255, 255, 255, 0.04);
}

.menu-book__tabs button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.menu-book__tabs .odin-icon {
  width: 18px;
  height: 18px;
}

.menu-card__title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.menu-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(234, 211, 149, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(234, 211, 149, 0.14), transparent 2rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.menu-card__icon .odin-icon {
  width: 23px;
  height: 23px;
}

.menu-card h3,
.menu-card p,
.price {
  max-width: 100%;
}

.menu-editorial .menu-card__body,
.menu-showcase .menu-card__body {
  grid-template-columns: minmax(0, 1fr) auto;
}

@media (max-width: 680px) {
  .hero {
    align-items: center;
    padding-bottom: 34px;
  }

  .hero__address {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr) auto;
    width: 100%;
    margin-top: 14px;
    padding: 11px 12px;
  }

  .hero__address strong,
  .hero__address em {
    font-size: 0.76rem;
  }

  .menu-book__shell::before {
    inset: 10px;
    border-color: rgba(234, 211, 149, 0.14);
  }

  .menu-book__content {
    padding-right: 24px;
    padding-left: 24px;
  }

  .book-page .section-head {
    margin-bottom: 14px;
  }

  .book-page .section-head h2 {
    font-size: clamp(1.85rem, 10vw, 2.65rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .hero-menu__icon {
    width: 40px;
    height: 40px;
  }

  .hero-menu__icon .odin-icon {
    width: 22px;
    height: 22px;
  }

  .menu-card__title {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
  }

  .menu-card__icon {
    width: 38px;
    height: 38px;
  }

  .menu-card__icon .odin-icon {
    width: 21px;
    height: 21px;
  }

  .menu-card__photo {
    position: relative;
    inset: auto;
    display: block;
    width: 100%;
    height: 166px;
    margin-bottom: 14px;
    border-radius: 20px;
    opacity: 0.96;
    filter: saturate(1.08) contrast(1.03) brightness(1.18);
    mask-image: none;
  }

  .menu-card:has(.menu-card__photo) .menu-card__body {
    padding-right: 0;
  }

  .menu-card:has(.menu-card__photo) {
    padding: 14px;
  }

  .menu-card__visual {
    width: 78px;
    height: 78px;
    right: 6px;
    bottom: 8px;
    opacity: 0.28;
  }

  .menu-editorial .menu-card,
  .menu-showcase .menu-card {
    padding-right: 14px;
  }

  .menu-editorial .menu-card__visual,
  .menu-showcase .menu-card__visual {
    width: 70px;
    height: 70px;
  }

  .menu-editorial .menu-card__body,
  .menu-showcase .menu-card__body {
    grid-template-columns: 1fr;
  }
}
