/* =========================================================
   Lounge № 1 — «Золото на угле»
   Premium dark hookah-lounge theme. Pure CSS, no framework.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --coal-0: #0a0a0c;
  --coal-1: #0d0d10;
  --coal-2: #141418;
  --coal-3: #1b1b21;
  --coal-4: #24242c;

  --gold: #d4af37;
  --gold-1: #e6c866;
  --gold-2: #b8941f;
  --amber: #e8a24a;
  --ember: #c0642b;

  --cream: #f3ecdb;
  --text: #c7c1b4;
  --muted: #8b8578;
  --faint: #5f5b53;

  --line: rgba(212, 175, 55, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.75);
  --shadow-gold: 0 18px 50px -18px rgba(212, 175, 55, 0.35);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--coal-1);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: #1a1206; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--coal-0); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold-2), var(--coal-4));
  border-radius: 20px;
  border: 2px solid var(--coal-0);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Overflow guard: let grid/flex children shrink below their content size
   so wide items (inputs, iframes, images) never force horizontal scroll. */
.about__grid > *,
.contacts__grid > *,
.promo__card > *,
.reviews__top > *,
.footer__grid > *,
.info,
.dish,
.review,
.hero__content { min-width: 0; }
img, iframe, video, svg { max-width: 100%; }

.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.section--tight { padding-block: clamp(56px, 7vw, 90px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 20px;
}
.section-title em { color: var(--gold); font-style: italic; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.lead { color: var(--muted); font-size: 1.06rem; margin: 0; }

/* Gradient/gold text util */
.gold-text {
  background: linear-gradient(135deg, var(--gold-1), var(--gold), var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  --btn-fg: #1a1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), color 0.35s var(--ease);
  will-change: transform;
}
.btn:active { transform: translateY(1px) scale(0.99); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold) 55%, var(--gold-2));
  color: var(--btn-fg);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -18px rgba(212, 175, 55, 0.55); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line);
  color: var(--cream);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  background: rgba(212, 175, 55, 0.06);
}

.btn--block { width: 100%; }
.btn--lg { padding: 17px 38px; font-size: 1rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease),
    padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
  padding-block: 20px;
}
.header.is-stuck {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-soft);
  padding-block: 12px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(212,175,55,.35), transparent 60%), var(--coal-3);
  border: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  box-shadow: inset 0 0 20px rgba(212,175,55,.12);
}
.brand__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  line-height: 1;
}
.brand__name b { color: var(--gold); font-weight: 600; }
.brand__sub {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav__link:hover::after { width: 100%; }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone {
  font-weight: 700;
  color: var(--cream);
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}
.header__phone:hover { color: var(--gold); }

/* Burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.02);
  position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: 0.35s var(--ease);
}
.burger span::before { transform: translate(-50%, -8px); }
.burger span::after { transform: translate(-50%, 6px); }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { transform: translate(-50%, -50%) rotate(45deg); top: 0; }
.burger.is-open span::after { transform: translate(-50%, -50%) rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--coal-0);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/gallery/01.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0.9;
  transform: scale(1.05);
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.16); } }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--coal-0) 6%, rgba(10,10,12,.72) 42%, rgba(10,10,12,.25) 100%),
    linear-gradient(0deg, var(--coal-1) 2%, transparent 32%),
    radial-gradient(1200px 600px at 78% 18%, rgba(232,162,74,.16), transparent 60%);
}

/* Drifting smoke */
.smoke { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.smoke span {
  position: absolute;
  bottom: -30%;
  width: 60vmax; height: 60vmax;
  background: radial-gradient(circle, rgba(212,175,55,.10), rgba(212,175,55,0) 62%);
  border-radius: 50%;
  filter: blur(24px);
  opacity: 0;
  animation: drift 18s linear infinite;
}
.smoke span:nth-child(1) { left: 8%;  animation-delay: 0s;  }
.smoke span:nth-child(2) { left: 42%; animation-delay: 6s;  background: radial-gradient(circle, rgba(232,162,74,.09), transparent 62%); }
.smoke span:nth-child(3) { left: 70%; animation-delay: 11s; width: 46vmax; height: 46vmax; }
@keyframes drift {
  0%   { transform: translateY(0) scale(0.7) rotate(0deg); opacity: 0; }
  15%  { opacity: 0.9; }
  85%  { opacity: 0.5; }
  100% { transform: translateY(-130vh) scale(1.4) rotate(40deg); opacity: 0; }
}

.hero__inner { position: relative; z-index: 3; padding-top: 90px; }
.hero__content { max-width: 680px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(20,20,24,.5);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}
.hero__badge .stars { color: var(--gold); letter-spacing: 2px; }
.hero__badge b { color: var(--cream); }
.hero__badge .pill {
  background: var(--gold);
  color: #1a1206;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3rem, 8.5vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  color: var(--cream);
  margin: 0 0 22px;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__no {
  font-size: 0.5em;
  vertical-align: 0.35em;
  color: var(--gold);
  font-style: italic;
}

.hero__text {
  font-size: clamp(1.05rem, 2vw, 1.24rem);
  color: var(--text);
  max-width: 540px;
  margin: 0 0 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 44px;
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.hero__meta .num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__meta .lbl {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  position: relative;
}
.hero__scroll .mouse::before {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 3px; height: 7px; border-radius: 2px; background: var(--gold);
  transform: translateX(-50%);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0%,100%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 70%{opacity:0;transform:translate(-50%,10px)} }

/* ---------- Features strip ---------- */
.features {
  border-block: 1px solid var(--line-soft);
  background: linear-gradient(var(--coal-2), var(--coal-1));
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 30px 18px;
  border-right: 1px solid var(--line-soft);
  transition: background 0.35s var(--ease);
}
.feature:last-child { border-right: none; }
.feature:hover { background: rgba(212,175,55,.04); }
.feature__icon {
  width: 46px; height: 46px; color: var(--gold);
}
.feature__icon svg { width: 100%; height: 100%; }
.feature__label { font-size: 0.9rem; font-weight: 600; color: var(--cream); }

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.about__text p { color: var(--text); margin: 0 0 18px; }
.about__text p:last-of-type { margin-bottom: 30px; }

.about__stats {
  display: flex; flex-wrap: wrap; gap: 26px 40px;
  margin-top: 34px; padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.stat .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; }
.stat .lbl { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

.about__media { position: relative; }
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.frame:hover img { transform: scale(1.05); }
.about__media .frame--main { aspect-ratio: 4/5; }
.about__media .frame--float {
  position: absolute;
  right: -28px; bottom: -34px;
  width: 46%;
  aspect-ratio: 1/1;
  border: 3px solid var(--coal-1);
  box-shadow: 0 24px 50px -18px rgba(0,0,0,.8);
}
.about__glow {
  position: absolute; inset: -12% -8% -8% 10%;
  background: radial-gradient(circle at 60% 40%, rgba(212,175,55,.22), transparent 60%);
  filter: blur(30px); z-index: -1;
}

/* ---------- Menu ---------- */
.menu { background: linear-gradient(180deg, var(--coal-1), var(--coal-2)); }
.menu__tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px;
  margin-bottom: 48px;
}
.tab {
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  font-weight: 600; font-size: 0.9rem;
  transition: 0.3s var(--ease);
}
.tab:hover { color: var(--cream); border-color: var(--gold); }
.tab.is-active {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #1a1206; border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.dish {
  display: flex; flex-direction: column;
  background: var(--coal-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.dish:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}
.dish__media { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--coal-4); }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.07); }
.dish__cat {
  position: absolute; left: 12px; top: 12px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: rgba(10,10,12,.7); backdrop-filter: blur(6px);
  padding: 5px 12px; border-radius: 999px; border: 1px solid var(--line);
}
.dish__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.dish__row { display: flex; align-items: baseline; gap: 14px; }
.dish__name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; color: var(--cream); margin: 0; line-height: 1.2; }
.dish__dots { flex: 1; border-bottom: 1px dotted var(--faint); transform: translateY(-4px); }
.dish__price { font-weight: 800; color: var(--gold); white-space: nowrap; font-size: 1.05rem; }
.dish__desc { color: var(--muted); font-size: 0.92rem; margin: 10px 0 0; }

.menu__note {
  margin-top: 34px; text-align: center;
  color: var(--muted); font-size: 0.92rem;
}
.menu__note a { color: var(--gold); border-bottom: 1px solid var(--line); }

/* ---------- Promo ---------- */
.promo__card {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--coal-2);
  box-shadow: var(--shadow);
}
.promo__media { position: relative; min-height: 340px; }
.promo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.promo__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, var(--coal-2));
}
.promo__body { padding: clamp(34px, 5vw, 64px); position: relative; z-index: 2; }
.promo__tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(212,175,55,.12); border: 1px solid var(--line);
  color: var(--gold); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 22px;
}
.promo__title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--cream); margin: 0 0 16px; font-weight: 600; }
.promo__desc { color: var(--text); max-width: 440px; margin: 0 0 28px; }
.promo__price {
  display: flex; align-items: baseline; gap: 14px; margin-bottom: 30px;
}
.promo__price .now { font-family: var(--serif); font-size: 3.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.promo__price .cur { font-size: 1.6rem; color: var(--gold); }
.promo__price .cond { color: var(--muted); font-size: 0.9rem; }
.promo__meta { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,.03); border: 1px solid var(--line-soft);
  font-size: 0.84rem; color: var(--text); font-weight: 600;
}
.chip svg { width: 15px; height: 15px; color: var(--gold); }

/* ---------- Gallery ---------- */
.gallery { background: var(--coal-1); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery__item {
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--coal-3);
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), opacity 0.5s ease; }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,12,.5), transparent 55%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery__item .zoom {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gold); color: #1a1206;
  opacity: 0; transform: translateY(8px) scale(.8);
  transition: 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item:hover .zoom { opacity: 1; transform: translateY(0) scale(1); }
.gallery__more { text-align: center; margin-top: 40px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  background: rgba(6,6,8,.92);
  backdrop-filter: blur(10px);
  padding: 30px;
}
.lightbox.is-open { display: flex; animation: fade 0.35s ease; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  border-radius: 12px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.9);
  object-fit: contain;
}
.lightbox__btn {
  position: absolute;
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(20,20,24,.7); border: 1px solid var(--line);
  color: var(--cream); font-size: 1.5rem;
  display: grid; place-items: center;
  transition: 0.3s var(--ease);
}
.lightbox__btn:hover { background: var(--gold); color: #1a1206; border-color: transparent; }
.lightbox__btn--prev { left: 3vw; }
.lightbox__btn--next { right: 3vw; }
.lightbox__btn--close { top: 3vh; right: 3vw; width: 48px; height: 48px; }
.lightbox__count {
  position: absolute; bottom: 3vh; left: 50%; transform: translateX(-50%);
  color: var(--muted); font-size: 0.85rem; letter-spacing: 0.14em;
}
.lightbox__count b { color: var(--gold); }

/* ---------- Reviews ---------- */
.reviews { background: linear-gradient(180deg, var(--coal-2), var(--coal-1)); }
.reviews__top {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 30px; margin-bottom: 50px;
}
.rating-box {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 26px; border-radius: var(--radius);
  border: 1px solid var(--line); background: var(--coal-3);
}
.rating-box .big { font-family: var(--serif); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-box .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.rating-box .cnt { font-size: 0.85rem; color: var(--muted); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: var(--coal-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.review:hover { transform: translateY(-5px); border-color: var(--line); }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 0.95rem; }
.review__text { color: var(--text); font-size: 0.98rem; margin: 0; flex: 1; }
.review__quote { font-family: var(--serif); font-size: 3rem; color: var(--line); line-height: 0; height: 18px; }
.review__author { display: flex; align-items: center; gap: 12px; }
.review__author img { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); }
.review__name { font-weight: 700; color: var(--cream); font-size: 0.95rem; }
.review__date { font-size: 0.78rem; color: var(--muted); }

/* ---------- Contacts ---------- */
.contacts__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.info-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.info {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--line-soft);
}
.info:last-child { border-bottom: none; }
.info__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(212,175,55,.08); border: 1px solid var(--line); color: var(--gold);
}
.info__icon svg { width: 21px; height: 21px; }
.info__label { font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.info__value { color: var(--cream); font-weight: 600; font-size: 1.02rem; }
.info__value a:hover { color: var(--gold); }
.info__value span { display: block; font-weight: 400; color: var(--muted); font-size: 0.9rem; }

.socials { display: flex; flex-wrap: wrap; gap: 12px; }
.social {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,.02);
  color: var(--cream); font-weight: 600; font-size: 0.86rem;
  transition: 0.3s var(--ease);
}
.social svg { width: 18px; height: 18px; }
.social:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* Booking form */
.booking {
  background: var(--coal-3);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(28px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.booking__title { font-family: var(--serif); font-size: 1.7rem; color: var(--cream); margin: 0 0 6px; font-weight: 600; }
.booking__sub { color: var(--muted); font-size: 0.92rem; margin: 0 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  min-width: 0;
  padding: 14px 16px;
  background: var(--coal-1);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: inherit; font-size: 0.98rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.12);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking__hint { font-size: 0.8rem; color: var(--muted); margin: 14px 0 0; text-align: center; }
.booking__hint svg { width: 14px; height: 14px; vertical-align: -2px; color: var(--gold); }

.map {
  margin-top: 30px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 320px;
  filter: grayscale(0.3) contrast(1.05);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--coal-0);
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 34px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-soft);
}
.footer__about { max-width: 340px; color: var(--muted); font-size: 0.92rem; }
.footer__about .brand { margin-bottom: 18px; }
.footer__col h4 { font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
.footer__col a { display: block; color: var(--text); padding: 6px 0; font-size: 0.94rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  padding-top: 28px; color: var(--faint); font-size: 0.82rem;
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--gold); }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--gold); color: #1a1206;
  border: none; display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
  opacity: 0; transform: translateY(20px) scale(.8); pointer-events: none;
  transition: 0.4s var(--ease);
}
.to-top.is-shown { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.to-top:hover { transform: translateY(-3px) scale(1.05); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
.reveal[data-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .smoke span, .hero__scroll .mouse::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile nav panel ---------- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(8,8,10,.97);
  backdrop-filter: blur(14px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px;
  opacity: 0; visibility: hidden; transform: scale(1.04);
  transition: 0.4s var(--ease);
}
.mobile-nav.is-open { opacity: 1; visibility: visible; transform: scale(1); }
.mobile-nav a {
  font-family: var(--serif); font-size: 2rem; color: var(--cream); font-weight: 500;
  padding: 8px 0; transition: color 0.3s var(--ease);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta { margin-top: 24px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  /* Free up header room so nav + booking button never overflow on tablets/small laptops.
     Phone stays reachable in the Contacts section. */
  .nav { gap: 22px; }
  .header__phone { display: none; }
}

@media (max-width: 1080px) {
  .features__grid { grid-template-columns: repeat(3, 1fr); }
  .feature:nth-child(3) { border-right: none; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav, .header__phone, .header__cta .btn--gold { display: none; }
  .burger { display: block; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin-inline: auto; order: -1; }
  .about__media .frame--float { width: 40%; right: -14px; bottom: -20px; }
  .promo__card { grid-template-columns: 1fr; }
  .promo__media { min-height: 240px; }
  .promo__media::after { background: linear-gradient(0deg, var(--coal-2), transparent 60%); }
  .contacts__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__about { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding-inline: 18px; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .feature { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .menu__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .field-row { grid-template-columns: 1fr; }
  .hero__meta { gap: 22px 30px; }
  .hero__meta .num { font-size: 1.8rem; }
  .lightbox__btn--prev { left: 10px; }
  .lightbox__btn--next { right: 10px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1; }
}
