:root {
  --green-950: #0e1f19;
  --green-900: #13291f;
  --green-800: #1b3a2f;
  --green-700: #264c3e;
  --sage: #9db5a5;
  --sage-soft: rgba(157, 181, 165, .18);
  --paper: #f4f1ea;
  --paper-2: #ebe6da;
  --card: #fbfaf6;
  --ink: #1b1d1b;
  --muted: #7a7f79;
  --line: #d9d4c7;
  --gold: #c9a36a;

  --serif: 'Prata', 'Times New Roman', Georgia, serif;
  --sans: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --script: 'Marck Script', 'Segoe Script', cursive;

  --radius: 18px;
  --gutter: clamp(16px, 4vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- type ---------- */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
}
.kicker--light { color: var(--sage); }
.script { font-family: var(--script); font-weight: 400; }
.spaced {
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 2;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 20px; font-size: 11px; }
.btn--light { background: var(--paper); color: var(--green-900); }
.btn--light:hover { background: #fff; }
.btn--ghost-light { border-color: rgba(244, 241, 234, .45); color: var(--paper); background: transparent; }
.btn--ghost-light:hover { border-color: var(--paper); background: rgba(244, 241, 234, .08); }

/* ---------- age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 16px;
  background: rgba(14, 31, 25, .92);
  backdrop-filter: blur(8px);
}
.age-gate__card {
  max-width: 440px; width: 100%;
  padding: 44px 32px;
  text-align: center;
  color: var(--paper);
  border: 1px solid rgba(157, 181, 165, .3);
  border-radius: 200px 200px var(--radius) var(--radius);
  background: var(--green-900);
}
.age-gate__card .kicker { color: var(--sage); }
.age-gate__title { font-family: var(--serif); font-weight: 400; font-size: 34px; margin: 18px 0 10px; }
.age-gate__text { color: var(--sage); margin: 0 0 28px; }
.age-gate__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.age-gate__deny { margin: 20px 0 0; font-family: var(--script); font-size: 22px; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  color: var(--paper);
  transition: background .3s, box-shadow .3s, padding .3s;
  padding-block: 20px;
}
.header.is-scrolled, .header.is-open {
  background: rgba(14, 31, 25, .94);
  backdrop-filter: blur(10px);
  padding-block: 12px;
  box-shadow: 0 1px 0 rgba(157, 181, 165, .15);
}
.header__inner { display: flex; align-items: center; gap: 32px; }

.logo { display: inline-flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.logo__main { font-family: var(--serif); font-size: 22px; letter-spacing: .04em; text-transform: uppercase; }
.logo__sub { font-size: 9px; font-weight: 600; letter-spacing: .72em; text-transform: uppercase; color: var(--sage); margin-top: 6px; padding-left: 2px; }
.logo--dark .logo__sub { color: var(--muted); }

.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a {
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  opacity: .85; position: relative; padding-block: 6px; white-space: nowrap;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: currentColor; transition: right .3s;
}
.nav a:hover { opacity: 1; }
.nav a:hover::after { right: 0; }

.burger { display: none; width: 44px; height: 44px; margin-left: auto; background: none; border: 0; position: relative; }
.burger span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--paper); transition: transform .3s, top .3s; }
.burger span:first-child { top: 17px; }
.burger span:last-child { top: 26px; }
.header.is-open .burger span:first-child { top: 21px; transform: rotate(45deg); }
.header.is-open .burger span:last-child { top: 21px; transform: rotate(-45deg); }

/* ---------- leaves ---------- */
.leaf { position: absolute; color: var(--sage); opacity: .12; pointer-events: none; }
.leaf--hero-l { width: 260px; left: -70px; bottom: -40px; transform: rotate(-24deg); }
.leaf--hero-r { width: 180px; right: 36%; top: 60px; transform: rotate(160deg); opacity: .07; }
.leaf--unusual { width: 320px; right: -80px; top: -40px; transform: rotate(200deg); opacity: .08; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: 100vh; min-height: 100svh;
  padding-block: 130px 80px;
  display: flex; align-items: center;
  color: var(--paper);
  background:
    radial-gradient(900px 600px at 80% 30%, rgba(38, 76, 62, .9), transparent 70%),
    radial-gradient(600px 500px at 0% 100%, rgba(38, 76, 62, .5), transparent 70%),
    var(--green-950);
}
.hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 64px; align-items: center; position: relative; }
.hero__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02; letter-spacing: -.01em;
  margin: 22px 0 8px;
}
.hero__script { font-size: clamp(28px, 3.4vw, 42px); color: var(--sage); margin: 0 0 22px; transform: rotate(-3deg); transform-origin: left; }
.hero__lead { max-width: 460px; color: rgba(244, 241, 234, .75); font-size: 16px; margin: 0 0 34px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__facts { display: flex; gap: 40px; margin: 52px 0 0; padding-top: 28px; border-top: 1px solid rgba(157, 181, 165, .2); flex-wrap: wrap; }
.hero__facts div { margin: 0; }
.hero__facts dt { font-family: var(--serif); font-size: 30px; line-height: 1; }
.hero__facts dd { margin: 8px 0 0; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); }

.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 400px; }
.arch {
  aspect-ratio: 478 / 800;
  max-width: 100%;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .6);
  outline: 1px solid rgba(157, 181, 165, .35);
  outline-offset: 14px;
}
.arch img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.vertical-text {
  position: absolute; left: -58px; bottom: 30px;
  writing-mode: vertical-rl; transform: rotate(180deg);
  margin: 0; font-size: 10px; letter-spacing: .5em; text-transform: uppercase;
  color: var(--sage); line-height: 2;
}

/* ---------- ticker ---------- */
.ticker { overflow: hidden; background: var(--green-800); color: var(--paper); padding-block: 18px; border-block: 1px solid rgba(157, 181, 165, .18); }
.ticker__track { display: flex; gap: 36px; width: max-content; animation: ticker 36s linear infinite; }
.ticker span { font-family: var(--serif); font-size: 20px; text-transform: uppercase; letter-spacing: .12em; white-space: nowrap; }
.ticker i { font-style: normal; color: var(--gold); font-size: 14px; align-self: center; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { position: relative; overflow: hidden; padding-block: clamp(72px, 10vw, 128px); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--green-900); color: var(--paper); }
/* соседние секции одного цвета разделяем */
#mixes { background: var(--paper-2); }
#contacts { border-top: 1px solid rgba(157, 181, 165, .18); }
.section__head { text-align: center; margin-bottom: 48px; }
.section__title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(36px, 5vw, 64px); line-height: 1.05;
  margin: 14px 0 0;
}
.section__title--xl { font-size: clamp(64px, 12vw, 150px); color: var(--green-800); letter-spacing: -.01em; }
.section__script { font-size: 30px; color: var(--green-700); margin: 6px 0 0; transform: rotate(-2deg); }
.section__head--split { display: flex; justify-content: space-between; align-items: end; gap: 32px; text-align: left; flex-wrap: wrap; }
.section__note { max-width: 380px; margin: 0; color: var(--sage); }

/* ---------- chips ---------- */
.chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: transparent; color: var(--ink);
  font-size: 12px; font-weight: 500; letter-spacing: .08em;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.chip:hover { border-color: var(--green-700); }
.chip.is-active { background: var(--green-800); border-color: var(--green-800); color: var(--paper); }

/* ---------- top-10 ---------- */
.mix-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 56px; }
.mix {
  display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: start;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
.mix__num { font-family: var(--serif); font-size: 44px; line-height: 1; color: var(--green-800); opacity: .9; }
.mix__name { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.2; margin: 2px 0 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.mix__hit { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; background: var(--gold); color: #fff; padding: 3px 9px; border-radius: 999px; }
.mix__notes { margin: 0 0 12px; color: var(--muted); }
.mix__notes i { font-style: normal; margin-inline: 8px; color: var(--sage); }
.mix__meta { display: flex; align-items: center; gap: 14px; }

.dots { display: inline-flex; gap: 5px; }
.dots i { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--green-700); }
.dots i.on { background: var(--green-700); }
.cold-badge { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: #e3eef0; color: #3a7f93; font-size: 13px; font-weight: 400; }

.legend { display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; margin: 32px 0 0; font-size: 12px; color: var(--muted); }
.legend span { display: inline-flex; align-items: center; gap: 10px; }

/* ---------- unusual ---------- */
.odd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.odd {
  display: flex; flex-direction: column;
  padding: 30px 28px 28px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(38, 76, 62, .55), rgba(19, 41, 31, .2));
  border: 1px solid rgba(157, 181, 165, .18);
  transition: transform .35s, border-color .35s;
}
.odd:hover { transform: translateY(-6px); border-color: rgba(201, 163, 106, .5); }
.odd__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.odd__num { font-family: var(--serif); font-size: 15px; color: var(--sage); }
.odd__badge { font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201, 163, 106, .45); padding: 4px 10px; border-radius: 999px; }
.odd__name { font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.15; margin: 0 0 10px; }
.odd__text { margin: 0 0 26px; color: rgba(244, 241, 234, .7); flex-grow: 1; }
.bar { display: flex; height: 8px; border-radius: 99px; overflow: hidden; gap: 2px; margin-bottom: 16px; }
.odd__parts { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; font-size: 13px; }
.odd__parts li { display: flex; align-items: center; gap: 10px; color: rgba(244, 241, 234, .85); }
.odd__parts i { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.odd__parts b { margin-left: auto; font-weight: 500; color: var(--sage); }

.callout { margin-top: 56px; text-align: center; }
.callout__script { font-size: clamp(34px, 4vw, 48px); margin: 0; color: var(--paper); transform: rotate(-3deg); }
.callout__text { margin: 8px 0 0; color: var(--sage); }

/* ---------- menu ---------- */
.chips--scroll { margin-bottom: 48px; }

.hookah-card {
  display: grid; grid-template-columns: 300px 1fr;
  background: var(--green-900); color: var(--paper);
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 24px;
}
.hookah-card__img img { width: 100%; height: 100%; max-height: 380px; object-fit: cover; object-position: center 70%; }
.hookah-card__body { padding: clamp(28px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; gap: 26px; }
.hookah-card .menu-block__head { border: 0; padding: 0; margin: 0; }
.hookah-card .menu-icon { color: var(--sage); border: 0; width: 52px; height: 52px; }
.hookah-card .spaced { color: var(--sage); text-align: left; margin: 0; }
.menu-title { font-family: var(--serif); font-weight: 400; font-size: clamp(44px, 6vw, 72px); line-height: 1; margin: 0; text-transform: uppercase; }
.price-pills { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; max-width: 560px; }
.price-pills li { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; padding: 18px 22px; border-radius: 14px; background: rgba(244, 241, 234, .07); border: 1px solid rgba(157, 181, 165, .2); }
.price-pills span { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; }
.price-pills b { font-family: var(--serif); font-weight: 400; font-size: 30px; white-space: nowrap; }
.price-pills b::after, .item__price::after, .menu-block__price::after { content: ' ₽'; font-family: var(--sans); font-size: .5em; opacity: .6; }

.menu-grid { columns: 3 320px; column-gap: 24px; }
.menu-block, .menu-photo { break-inside: avoid; margin: 0 0 24px; }
.menu-block { background: var(--card); border-radius: var(--radius); padding: 30px 28px 20px; border: 1px solid #e6e1d4; }
.menu-block__head { display: flex; align-items: center; gap: 16px; padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.menu-block__price { margin-left: auto; font-family: var(--serif); font-weight: 400; font-size: 28px; color: var(--green-800); }
.menu-icon { flex: none; width: 46px; height: 46px; display: grid; place-items: center; color: var(--green-800); }
.menu-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.menu-title--sm { font-size: 24px; text-transform: uppercase; letter-spacing: .01em; }
.menu-sub { margin: 4px 0 0; font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }

.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; gap: 14px; align-items: baseline; padding-block: 11px; border-bottom: 1px dashed #e4dfd2; }
.menu-list li:last-child { border-bottom: 0; }
.menu-list li > div { flex: 1; min-width: 0; }
.menu-list li.has-dot { align-items: flex-start; }
.item__name { display: block; }
.item__note { display: block; font-size: 12.5px; color: var(--muted); line-height: 1.45; margin-top: 2px; }
.item__price { font-weight: 500; white-space: nowrap; color: var(--green-800); }
.dot { flex: none; width: 12px; height: 12px; border-radius: 50%; margin-top: 6px; box-shadow: 0 0 0 3px rgba(0, 0, 0, .04); }

.load-error { text-align: center; color: var(--muted); column-span: all; }

.menu-photo { border-radius: var(--radius); overflow: hidden; }
.menu-photo img { width: 100%; }

/* ---------- contacts ---------- */
.contacts { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.contacts .section__title { font-size: clamp(32px, 4vw, 52px); margin-bottom: 36px; }
.contacts__list { list-style: none; margin: 0 0 36px; padding: 0; display: grid; gap: 22px; }
.contacts__list p { margin: 4px 0 0; font-family: var(--serif); font-size: 22px; }
.todo { border-bottom: 1px dashed rgba(201, 163, 106, .6); width: fit-content; }
.contacts__photo { border-radius: 999px 999px var(--radius) var(--radius); overflow: hidden; max-width: 440px; justify-self: center; }
.contacts__photo img { width: 100%; }

/* ---------- footer ---------- */
.footer { background: var(--paper-2); padding-block: 36px; font-size: 12px; color: var(--muted); }
.footer__inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; justify-content: space-between; }
.footer .logo { color: var(--ink); }
.footer__warn { margin: 0; max-width: 420px; }
.footer__copy { margin: 0; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .odd-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { gap: 40px; }
  .vertical-text { display: none; }
}

@media (max-width: 980px) {
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(14, 31, 25, .97);
    padding: 8px var(--gutter) 24px;
    display: none;
  }
  .header.is-open .nav { display: flex; }
  .nav a { padding-block: 14px; border-bottom: 1px solid rgba(157, 181, 165, .12); font-size: 13px; }
  .header__cta { display: none; }
  .burger { display: block; }
}

@media (max-width: 860px) {
  .hero { padding-block: 110px 64px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 260px; }
  .arch { aspect-ratio: 3 / 4; outline-offset: 8px; }

  .mix-grid { grid-template-columns: 1fr; }
  .contacts { grid-template-columns: 1fr; gap: 48px; }
  .hookah-card { grid-template-columns: 1fr; }
  .hookah-card__img img { max-height: 260px; object-position: center 60%; }

  .chips--scroll { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .chips--scroll::-webkit-scrollbar { display: none; }
}

@media (max-width: 600px) {
  .odd-grid { grid-template-columns: 1fr; }
  .hero__facts { gap: 28px; }
  .hero__facts dt { font-size: 24px; }
  .mix { grid-template-columns: 52px 1fr; gap: 12px; }
  .mix__num { font-size: 34px; }
  .mix__name { font-size: 21px; }
  .price-pills { grid-template-columns: 1fr; }
  .section__head--split { text-align: center; justify-content: center; }
  .menu-grid { columns: 1; }
  .menu-block { padding: 24px 20px 14px; }
  .ticker span { font-size: 16px; }
}
