/* ============================================================
   Lounge № 1 — стили
   Тёмная атмосферная тема · золото · дым
   ============================================================ */

:root {
  --bg:        #0c0a0f;
  --bg-2:      #131018;
  --bg-3:      #1a1620;
  --card:      rgba(255, 255, 255, 0.035);
  --card-brd:  rgba(205, 164, 94, 0.14);
  --gold:      #cda45e;
  --gold-2:    #e6c483;
  --gold-soft: rgba(205, 164, 94, 0.16);
  --text:      #efe9df;
  --muted:     #a89f92;
  --muted-2:   #756d63;
  --white:     #fff;
  --radius:    18px;
  --radius-lg: 26px;
  --ease:      cubic-bezier(.19, 1, .22, 1);
  --container: 1180px;
  --sp:        clamp(70px, 11vw, 140px);
  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Manrope', system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle grain / vignette over whole page */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(205,164,94,.08), transparent 60%),
    radial-gradient(90% 60% at 100% 100%, rgba(120,80,180,.06), transparent 55%);
  pointer-events: none; z-index: 0;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 44px);
  position: relative;
  z-index: 1;
}

.section { padding: var(--sp) 0; position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--ff-serif); font-weight: 500; line-height: 1.06; letter-spacing: .3px; }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); color: var(--white); }
h3 { font-size: 1.4rem; }

.eyebrow {
  font-family: var(--ff-sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section-sub { color: var(--muted); margin-top: 18px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-sans);
  font-weight: 600; font-size: .92rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .5s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .5s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #241a09;
  box-shadow: 0 12px 34px -12px rgba(205,164,94,.7);
}
.btn-primary:hover { box-shadow: 0 20px 44px -12px rgba(205,164,94,.8); }
.btn-outline { border-color: var(--card-brd); color: var(--text); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-ghost { color: var(--text); padding: 11px 20px; font-size: .86rem; border: 1px solid var(--card-brd); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* ============================================================
   Header
   ============================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  z-index: 200; transition: width .1s linear;
  box-shadow: 0 0 12px rgba(205,164,94,.6);
}

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, backdrop-filter .4s, border-color .4s, padding .4s;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}
.site-header.scrolled {
  background: rgba(12, 10, 15, .72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: rgba(255,255,255,.06);
}
.header-inner { display: flex; align-items: center; gap: 24px; padding-top: 12px; padding-bottom: 12px; }

.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 12px;
  font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; line-height: 1;
  color: var(--gold-2); text-align: center;
  background: radial-gradient(circle at 30% 20%, rgba(205,164,94,.22), transparent 70%);
}
.brand-text { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 600; color: var(--white); line-height: 1; letter-spacing: .5px; }
.brand-text em { display: block; font-size: .62rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold); font-style: normal; font-family: var(--ff-sans); margin-top: 3px; }

.nav { display: flex; gap: 34px; }
.nav a {
  font-size: .92rem; font-weight: 500; color: var(--muted);
  position: relative; padding: 4px 0; transition: color .3s;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a:hover::after { width: 100%; }

.header-cta { margin-left: 4px; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 26px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, rgba(12,10,15,.55) 0%, rgba(11,9,14,.72) 55%, rgba(10,8,16,.95) 100%),
    radial-gradient(70% 55% at 78% 30%, rgba(205,164,94,.22), transparent 60%),
    radial-gradient(60% 60% at 15% 80%, rgba(126,70,180,.20), transparent 62%),
    url("../img/hero.jpg") center/cover no-repeat,
    #0c0a0f;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(10,8,16,.9), transparent 55%);
}

/* animated smoke blobs */
.hero-smoke { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-smoke span {
  position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: .5;
  animation: drift 18s ease-in-out infinite;
}
.hero-smoke span:nth-child(1) { width: 380px; height: 380px; top: 8%; right: 12%; background: rgba(205,164,94,.28); }
.hero-smoke span:nth-child(2) { width: 300px; height: 300px; bottom: 6%; left: 8%; background: rgba(126,70,180,.26); animation-delay: -6s; }
.hero-smoke span:nth-child(3) { width: 260px; height: 260px; top: 42%; left: 46%; background: rgba(205,164,94,.14); animation-delay: -11s; }

@keyframes drift {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.12); }
  66%      { transform: translate(-30px,25px) scale(.94); }
}

.hero-inner { text-align: center; max-width: 860px; margin: 0 auto; }
.hero-title {
  font-size: clamp(4rem, 16vw, 11rem);
  line-height: .86; letter-spacing: -1px;
  color: var(--white);
  margin: 6px 0 26px;
  display: flex; flex-direction: column;
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, #a97e3e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
}
.hero-lead { font-size: clamp(1.05rem, 2.4vw, 1.35rem); color: var(--muted); max-width: 620px; margin: 0 auto; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }

.hero-stats {
  display: flex; justify-content: center; gap: clamp(28px, 6vw, 68px);
  margin-top: clamp(46px, 7vw, 74px); flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong { font-family: var(--ff-serif); font-size: clamp(2.4rem, 5vw, 3.2rem); color: var(--white); display: block; line-height: 1; }
.stat strong span { color: var(--gold); font-size: .5em; }
.stat-label { font-size: .82rem; color: var(--muted-2); text-transform: uppercase; letter-spacing: .1em; margin-top: 8px; display: block; }

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(255,255,255,.25); border-radius: 20px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 8px; left: 50%; width: 4px; height: 8px; border-radius: 3px;
  background: var(--gold); transform: translateX(-50%);
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0);} 40% {opacity:1;} 80%,100% { opacity: 0; transform: translate(-50%,14px);} }

/* ============================================================
   About
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 6vw, 84px); align-items: center; }

.about-media { position: relative; aspect-ratio: 4/4.4; }
.about-media-main, .about-media-sub {
  position: absolute; border-radius: var(--radius-lg); overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 30px 60px -24px rgba(0,0,0,.7);
}
.about-media-main {
  inset: 0 30% 22% 0;
  background-image: linear-gradient(200deg, rgba(205,164,94,.08), rgba(0,0,0,.25)), url("../img/about-1.jpg");
  border: 1px solid var(--card-brd);
}
.about-media-sub {
  inset: 45% 0 0 40%;
  background-image: linear-gradient(200deg, rgba(126,70,180,.1), rgba(0,0,0,.2)), url("../img/about-2.jpg");
  border: 1px solid var(--card-brd);
}
.about-badge {
  position: absolute; right: 6%; top: 6%; z-index: 3;
  background: rgba(12,10,15,.82); backdrop-filter: blur(8px);
  border: 1px solid var(--gold-soft); border-radius: 50%;
  width: 118px; height: 118px; display: grid; place-content: center; text-align: center;
  transform: rotate(-8deg);
}
.about-badge strong { font-family: var(--ff-serif); font-style: italic; color: var(--gold-2); font-size: 1.15rem; display: block; }
.about-badge span { font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.about-copy p { color: var(--muted); margin-top: 20px; font-size: 1.06rem; }
.about-copy h2 { margin-top: 6px; }

/* services with real photos */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: clamp(48px, 6vw, 72px);
}
.service-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 5/4; border: 1px solid rgba(255,255,255,.06);
  transition: transform .55s var(--ease), border-color .4s;
}
.service-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.72) saturate(1.05); transition: transform .8s var(--ease), filter .5s;
}
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,8,14,.9)); }
.service-card:hover { transform: translateY(-6px); border-color: var(--card-brd); }
.service-card:hover img { transform: scale(1.06); filter: brightness(.85) saturate(1.1); }
.service-body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 22px 24px; }
.service-body h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.service-body p { color: var(--muted); font-size: .92rem; }

/* ============================================================
   Menu
   ============================================================ */
.menu { background: linear-gradient(180deg, var(--bg), var(--bg-2), var(--bg)); }
/* tabs */
.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(38px, 5vw, 54px); }
.menu-tab {
  padding: 10px 20px; border-radius: 100px; border: 1px solid var(--card-brd);
  background: transparent; color: var(--muted); font-family: var(--ff-sans); font-size: .9rem;
  font-weight: 600; cursor: pointer; transition: color .3s, background .3s, border-color .3s;
}
.menu-tab:hover { color: var(--text); border-color: var(--gold); }
.menu-tab.is-active { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #241a09; border-color: transparent; }

/* list */
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 44px; align-items: start; }
.menu-list.filtered { grid-template-columns: 1fr; max-width: 740px; margin: 0 auto; }
.menu-cat {
  background: var(--card); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 28px 30px;
}
.menu-cat.hidden { display: none; }
.menu-cat-head { display: flex; gap: 16px; align-items: center; margin-bottom: 14px; }
.menu-cat-head img { width: 72px; height: 72px; border-radius: 14px; object-fit: cover; flex: none; border: 1px solid var(--card-brd); }
.menu-cat-head h3 { color: var(--white); font-size: 1.55rem; }
.menu-cat-head p { color: var(--muted); font-size: .86rem; margin-top: 3px; }

.menu-items { list-style: none; }
.menu-items li { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.menu-items li:last-child { border-bottom: 0; padding-bottom: 0; }
.mi-name { color: var(--text); font-weight: 500; font-size: 1.02rem; display: flex; flex-direction: column; }
.mi-name em { font-style: normal; color: var(--muted-2); font-size: .84rem; margin-top: 4px; font-weight: 400; line-height: 1.35; }
.mi-dots { display: none; }
.mi-price { color: var(--gold-2); font-weight: 600; font-size: 1.02rem; white-space: nowrap; }
.menu-note { text-align: center; color: var(--muted-2); font-size: .82rem; margin-top: clamp(34px, 5vw, 48px); max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============================================================
   Promo
   ============================================================ */
.promo-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--card-brd);
  background:
    linear-gradient(120deg, rgba(20,15,10,.9) 0%, rgba(18,14,22,.86) 55%, rgba(18,14,22,.7) 100%),
    url("../img/promo.jpg");
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  padding: clamp(38px, 6vw, 68px);
  flex-wrap: wrap;
}
.promo-glow { position: absolute; width: 400px; height: 400px; border-radius: 50%; background: rgba(205,164,94,.35); filter: blur(90px); right: -80px; top: -120px; }
.promo-content { position: relative; max-width: 560px; }
.promo-content h2 { margin: 10px 0 16px; line-height: 1; }
.promo-desc { color: var(--muted); margin-bottom: 28px; font-size: 1.08rem; }
.promo-price {
  position: relative; flex: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.promo-price-old { font-family: var(--ff-serif); font-style: italic; color: var(--gold); font-size: 1.1rem; line-height: 1; }
.promo-price-num {
  font-family: var(--ff-serif); font-weight: 600;
  font-size: clamp(4.2rem, 11vw, 6.2rem); line-height: 1;
  color: var(--white); display: inline-flex; align-items: flex-start;
}
.promo-price-num span { color: var(--gold); font-size: .42em; margin-top: .25em; margin-left: .05em; }
.promo-price-note { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; line-height: 1.2; }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px; gap: 16px;
}
.g-item {
  padding: 0; border: 1px solid rgba(255,255,255,.05); cursor: pointer;
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: #0f0c14;
}
.g-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease), filter .5s;
  filter: grayscale(.22) brightness(.84);
}
.g-item::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 45%, rgba(12,10,15,.5)); transition: opacity .4s; }
.g-item:hover img { transform: scale(1.05); filter: grayscale(0) brightness(1); }
.g-item:hover::after { opacity: 0; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-item.g-hidden { display: none; }
.gallery-more { text-align: center; margin-top: clamp(28px, 4vw, 40px); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(6,5,9,.94); backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.9); }
.lb-close, .lb-nav {
  position: absolute; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: #fff; cursor: pointer; border-radius: 50%; display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: #241a09; }
.lb-close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-nav:hover { transform: translateY(-50%) scale(1.08); }

/* ============================================================
   Reviews
   ============================================================ */
.reviews { background: linear-gradient(180deg, var(--bg), var(--bg-2), var(--bg)); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.rating-badge {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 22px;
  padding: 12px 22px; border-radius: 100px; border: 1px solid var(--card-brd);
  background: var(--card);
}
.rating-badge span { color: var(--muted); font-size: .95rem; }
.rating-badge strong { color: var(--white); }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.reviews-loading { grid-column: 1 / -1; text-align: center; color: var(--muted); padding: 40px 0; }
.review-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 28px 26px;
  transition: transform .5s var(--ease), border-color .4s;
  animation: cardIn .6s var(--ease) both;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--card-brd); }
@keyframes cardIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.review-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.review-avatar {
  width: 46px; height: 46px; flex: none; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--ff-serif); font-size: 1.35rem; font-weight: 600;
  color: #241a09; background: linear-gradient(135deg, var(--gold-2), var(--gold));
}
.review-name { color: var(--white); font-weight: 600; font-size: 1rem; }
.review-date { color: var(--muted-2); font-size: .82rem; margin-top: 1px; }
.review-top .review-stars { margin-left: auto; align-self: flex-start; }
.review-stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.review-stars .empty { color: rgba(255,255,255,.18); }
.review-text { color: var(--muted); font-size: .96rem; line-height: 1.6; }
.review-text.clamped { display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.review-toggle {
  margin-top: 10px; background: none; border: 0; cursor: pointer; padding: 0;
  color: var(--gold-2); font-family: var(--ff-sans); font-size: .86rem; font-weight: 600;
}
.review-toggle:hover { color: var(--gold); }
.reviews-actions {
  display: flex; align-items: center; justify-content: center; gap: 26px;
  margin-top: 28px; flex-wrap: wrap;
}
.reviews-link { color: var(--gold-2); font-weight: 600; font-size: .95rem; transition: color .3s; }
.reviews-link:hover { color: var(--gold); }

/* ============================================================
   Contacts
   ============================================================ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 40px; align-items: stretch; }
.contacts-info { display: flex; flex-direction: column; gap: 24px; }
.contact-row { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.07); }
.contact-row h3 { font-family: var(--ff-sans); font-size: .74rem; text-transform: uppercase; letter-spacing: .18em; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.contact-row p { color: var(--text); font-size: 1.15rem; }
.contact-row a:hover { color: var(--gold-2); }
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--card-brd);
  font-size: .88rem; font-weight: 600; color: var(--muted); transition: all .3s;
}
.social-link:hover { color: var(--gold-2); border-color: var(--gold); transform: translateY(-2px); }
.contacts-info .btn { margin-top: 6px; align-self: flex-start; }

.contacts-map {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--card-brd); min-height: 380px; background: #0f0c14;
}
.contacts-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.15); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { border-top: 1px solid rgba(255,255,255,.07); padding: 60px 0 40px; background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand strong { font-family: var(--ff-serif); font-size: 1.3rem; color: var(--white); }
.footer-brand p { color: var(--muted); font-size: .85rem; }
.footer-nav { display: flex; gap: 26px; justify-content: center; }
.footer-nav a { color: var(--muted); font-size: .92rem; transition: color .3s; }
.footer-nav a:hover { color: var(--gold-2); }
.footer-legal { color: var(--muted-2); font-size: .8rem; text-align: right; line-height: 1.6; }

/* ============================================================
   Floating WhatsApp button
   ============================================================ */
.fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #34c759, #1faa4d);
  box-shadow: 0 14px 30px -8px rgba(52,199,89,.6);
  transition: transform .4s var(--ease);
}
.fab:hover { transform: scale(1.08) translateY(-2px); }
.fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(52,199,89,.5); animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .8;} 100% { transform: scale(1.6); opacity: 0;} }

/* ============================================================
   Booking modal
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 400; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(6,5,9,.72); backdrop-filter: blur(6px); animation: fadeIn .3s ease; }
.modal-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(520px, 92vw); max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, #17131e, #120f18);
  border: 1px solid var(--card-brd); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 44px); box-shadow: 0 40px 90px -30px rgba(0,0,0,.9);
  animation: modalIn .45s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalIn { from { opacity: 0; transform: translate(-50%,-46%) scale(.97); } to { opacity: 1; transform: translate(-50%,-50%) scale(1); } }
.modal-close {
  position: absolute; top: 16px; right: 18px; width: 40px; height: 40px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); color: var(--text);
  border-radius: 50%; font-size: 1.5rem; line-height: 1; cursor: pointer; transition: all .3s;
}
.modal-close:hover { background: var(--gold); color: #241a09; }
.modal-card h3 { color: var(--white); font-size: 2rem; margin-bottom: 8px; }
.modal-sub { color: var(--muted); font-size: .96rem; margin-bottom: 26px; }

.booking-form .field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.booking-form label { display: block; font-size: .82rem; color: var(--muted); margin-bottom: 7px; font-weight: 500; }
.booking-form label .opt { color: var(--muted-2); }
.booking-form input {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  color: var(--text); font-family: var(--ff-sans); font-size: 1rem; transition: border-color .3s, background .3s;
}
.booking-form input::placeholder { color: var(--muted-2); }
.booking-form input:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.06); }
.booking-form input[type="date"], .booking-form input[type="time"] { color-scheme: dark; }

.booking-error { color: #ff8a7a; font-size: .88rem; margin: 4px 0 12px; }
.booking-choose { color: var(--text); font-weight: 600; margin: 22px 0 12px; text-align: center; }
.booking-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-wa, .btn-tg { justify-content: center; color: #fff; padding: 15px; }
.btn-wa { background: linear-gradient(135deg, #34c759, #1faa4d); box-shadow: 0 12px 30px -12px rgba(52,199,89,.6); }
.btn-tg { background: linear-gradient(135deg, #37aee2, #1e96c8); box-shadow: 0 12px 30px -12px rgba(55,174,226,.6); }
.booking-notice {
  margin-top: 20px; padding: 20px; border-radius: 14px;
  background: rgba(52,199,89,.08); border: 1px solid rgba(52,199,89,.3);
  animation: cardIn .4s var(--ease) both;
}
.bn-title { color: #6fe08a; font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.bn-check { display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #34c759; color: #06210e; font-size: .78rem; }
.bn-sub { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 8px 0 14px; }
.bn-preview {
  font-family: var(--ff-sans); font-size: .82rem; color: var(--text); white-space: pre-wrap;
  background: rgba(0,0,0,.28); border: 1px solid rgba(255,255,255,.08); border-radius: 10px;
  padding: 14px 16px; margin-bottom: 16px; max-height: 190px; overflow-y: auto; line-height: 1.5;
}
.booking-notice .btn-tg { width: 100%; justify-content: center; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 940px) {
  .menu-list { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; width: 100%; }
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-map { min-height: 320px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-legal { text-align: center; }
  .footer-brand { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .header-cta { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    flex-direction: column; gap: 8px;
    background: rgba(14,11,18,.97); backdrop-filter: blur(20px);
    padding: 100px 34px 40px; transform: translateX(100%);
    transition: transform .5s var(--ease);
    border-left: 1px solid rgba(255,255,255,.08);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.15rem; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .g-wide { grid-column: span 2; }
  .g-tall { grid-row: span 1; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-body h3 { font-size: 1.25rem; }
  .promo-card { flex-direction: column; text-align: center; }
  .promo-content { max-width: none; }
  .hero-stats { gap: 30px; }
  .lb-nav { width: 44px; height: 44px; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
}

/* ---- Phones ---- */
@media (max-width: 560px) {
  :root { --sp: clamp(56px, 13vw, 92px); }
  .container { padding: 0 18px; }
  .eyebrow { letter-spacing: .16em; font-size: .66rem; }

  .hero { padding-top: 104px; }
  .hero-lead { font-size: 1.02rem; }
  .hero-actions { gap: 12px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }
  .hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 40px; }
  .hero-stats .stat { min-width: 0; }
  .stat strong { font-size: 1.8rem; }
  .stat-label { font-size: .58rem; letter-spacing: .03em; margin-top: 6px; line-height: 1.25; }

  .about-badge { width: 96px; height: 96px; right: 4%; }
  .about-badge strong { font-size: 1rem; }
  .services-grid { gap: 14px; }
  .service-card { aspect-ratio: auto; min-height: 205px; }
  .service-body { padding: 18px 18px; }
  .service-body h3 { font-size: 1.2rem; }
  .service-body p { font-size: .86rem; }

  .menu-tabs { gap: 8px; }
  .menu-tab { padding: 9px 15px; font-size: .83rem; }
  .menu-cat { padding: 22px 20px; }
  .menu-cat-head img { width: 58px; height: 58px; }
  .menu-cat-head h3 { font-size: 1.35rem; }
  .mi-name, .mi-price { font-size: .98rem; }

  .rating-badge { flex-wrap: wrap; justify-content: center; text-align: center; padding: 12px 18px; gap: 8px 12px; }
  .rating-badge span { font-size: .84rem; }
  .review-card { padding: 24px 22px; }

  .contact-row p { font-size: 1.08rem; }

  .modal-card { padding: 26px 20px; }
  .modal-card h3 { font-size: 1.7rem; }
  .booking-actions { grid-template-columns: 1fr; }

  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 12px 20px; }
  .fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* ---- Small phones ---- */
@media (max-width: 400px) {
  .hero-title { font-size: 3.5rem; }
  .brand-text { font-size: 1.3rem; }
  .hero-stats { gap: 7px; }
  .stat strong { font-size: 1.55rem; }
  .stat-label { font-size: .52rem; }
  .field-row { grid-template-columns: 1fr; }
  .gallery-grid { gap: 10px; grid-auto-rows: 130px; }
  .lb-close { top: 14px; right: 14px; width: 42px; height: 42px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
