/* ══════════════════════════════
   VARIABLES
══════════════════════════════ */
:root {
  --bg:       	#FFFFFF;
  --dark:     	#2A3535;      /* тёмный сине-зелёный — вместо #333 */
  --darker:   	#1D2929;
  --black:    	#111A1A;
  --tiffany:  	#81D8D0;      /* Tiffany — основной акцент */
  --tiffany-d:	#4FBFB6;      /* тёмный Tiffany — hover, активные состояния */
  --tiffany-l:	#B2EAE7;      /* светлый Tiffany — фоны, паль */
  --tiffany-p:	#EEF8F7;      /* бледный Tiffany — фоновые секции */
  --tiffany-dd:	#2E9B93;     /* очень тёмный Tiffany — заголовки, CTA-кнопка */
  --gainsboro: 	#e4f7f7;     /* светло-серый фон для facts/promo/footer */
  --text:     	#1A2424;
  --muted:    	#5A6868;
  --light:    	#e4f7f7;      /* почти белый с лёгким Tiffany-оттенком */
  --promo:	  	#4FBFB6;
  --border:   	rgba(0,80,75,0.10);
}
/* Алиасы для обратной совместимости кода v4 */
.v4 {}
:root {
  --red:      var(--tiffany);
  --gold:     var(--tiffany-d);
  --gold-lt:  var(--tiffany);
  --ochre:    var(--tiffany-d);
}

/* ══════════════════════════════
   RESET & BASE
══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}
.nav.solid {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo svg circle { stroke: white; transition: stroke 0.35s; }
.nav.solid .nav-logo svg circle { stroke: var(--black); }
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  transition: color 0.35s;
}
.nav.solid .nav-logo-text { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  transition: color 0.25s;
}
.nav.solid .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--tiffany-d) !important; }
/* Кнопка "Забронировать" в nav — скрыта пока hero виден */
.nav-links .nav-cta { display: none; }
.nav.scrolled .nav-links .nav-cta {
  display: inline-block;
  background: var(--tiffany-d);
  color: #fff !important;
  padding: 9px 20px;
  font-size: 12px;
  letter-spacing: 0.18em;
  transition: background 0.25s !important;
}
.nav.scrolled .nav-links .nav-cta:hover { background: #3AADA4 !important; }

/* burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff;
  transition: all 0.3s;
}
.nav.solid .burger span { background: var(--black); }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════
   MOBILE MENU
══════════════════════════════ */
.mmenu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 901;
  flex-direction: column;
  overflow: hidden;
}
.mmenu.open { display: flex; }
.mmenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.mmenu-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mmenu-close {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 20px; cursor: pointer;
  padding: 8px; margin-right: -8px;
  transition: color 0.2s;
}
.mmenu-close:hover { color: #fff; }
.mmenu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 16px 28px;
}
.mmenu-links a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding-bottom: 12px;
  transition: color 0.2s;
}
.mmenu-links a:hover { color: var(--tiffany-d); }
.mmenu-links a.mmcta {
  background: var(--tiffany-dd);
  color: #fff !important;
  text-align: center;
  padding: 14px 24px;
  border: none;
  letter-spacing: 0.2em;
}
.mmenu-links a.mmcta:hover { background: #2E9B93 !important; }

/* ══════════════════════════════
   HERO — full-screen with image
══════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
/* Видео — фон hero */
.hero-bg video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
/* Градиент поверх видео */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,.30) 0%,
      rgba(0,0,0,.08) 35%,
      rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  padding: 0 24px;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(28px);} to{opacity:1;transform:none;} }

.hero-label {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 4px;
  column-gap: 14px;
}
.hero-label::before, .hero-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-logo {
  margin-bottom: 16px;
}
.hero-logo svg { width: 90px; height: auto; margin: 0 auto; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 9vw, 110px);
  font-weight: 300;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(16px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 44px;
  line-height: 1.5;
}
.hero-btn {
  display: inline-block;
  padding: 15px 52px;
  background: var(--tiffany-d);
  border: 1px solid var(--tiffany-d);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.3s, border-color 0.3s;
}
.hero-btn:hover { background: #3AADA4; border-color: #3AADA4; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 1.5s both;
}
.hero-scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

/* ══════════════════════════════
   FACTS STRIP
══════════════════════════════ */

.facts-head { width: 100%; padding: 12px 16px 16px 16px; text-align: center; border-bottom: 1px solid var(--border); }

.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--gainsboro);
}
.fact {
  padding: 40px 40px;
  border-right: 1px solid rgba(0,0,0,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
}
.fact:last-child { border-right: none; }
.fact-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: var(--dark);
  flex-shrink: 0;
}
.fact-num span { color: var(--tiffany-dd); }
.fact-star { color: var(--tiffany-dd); font-size: 32px; }
.fact-label {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-weight: 300;
}

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-img {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.about-img:hover img { transform: scale(1.04); }

.about-text {
  padding: 88px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}
.sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--tiffany-dd);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sec-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--tiffany-dd);
  flex-shrink: 0;
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1;
  color: var(--black);
  margin-bottom: 2px;
}
.sec-title em { font-style: italic; color: var(--tiffany-dd); }
.about-text p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 16px;
}
.about-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text);
  font-weight: 400;
}
.about-list-item::before {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--tiffany-d);
  flex-shrink: 0;
}

/* ══════════════════════════════
   PROMO
══════════════════════════════ */
.promo {
  background: var(--gainsboro);
  padding: 96px 60px;
}
.promo-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 20px;
  flex-wrap: wrap;
}
.promo-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.1;
}
.promo-head h2 em { color: var(--tiffany-dd); }
.btn-gold {
  display: inline-block;
  padding: 13px 36px;
  background: var(--tiffany-d);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--tiffany-d);
  transition: background 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-gold:hover { background: #3AADA4; border-color: #3AADA4; }
.btn-red-solid {
  display: inline-block;
  padding: 13px 36px;
  background: var(--tiffany-d);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--tiffany-d);
  transition: background 0.3s;
  cursor: pointer;
}
.btn-red-solid:hover { background: #3AADA4; border-color: #3AADA4; }

.promo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.promo-card {
  background: var(--promo);
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: background 0.3s;
}
.promo-card:hover { background: var(--tiffany-dd); }
.promo-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.promo-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.8) saturate(0.8);
  transition: transform 0.5s, filter 0.4s;
}
.promo-card:hover .promo-card-img img { transform: scale(1.06); filter: brightness(0.92); }
.promo-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--tiffany-d);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.promo-card-body { padding: 24px 24px 28px; }
.promo-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.25;
}
.promo-card-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}
.promo-card-link {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tiffany);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.promo-card-link:hover { gap: 14px; }



/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  padding: 96px 60px;
  background: #fff;
}
.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 20px;
  flex-wrap: wrap;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.svc {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9/14;
  display: block;
  text-decoration: none;
  min-height: 320px;
}
.svc-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.44) saturate(0.8);
  transition: filter 0.5s, transform 0.6s;
}
.svc:hover .svc-bg { filter: brightness(0.77); transform: scale(1.07); }
.svc-body {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  word-break: break-word;
  overflow-wrap: break-word;
}
.svc-num {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--tiffany);
  margin-bottom: 10px;
}
.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.svc-desc {
  font-size: 14.5px;
  color: rgba(255,255,255,0.77);
  line-height: 1.65;
  font-weight: 300;
  max-height: none;
  overflow: visible;
  opacity: 1;
  margin-bottom: 14px;
}
.svc-arr {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tiffany);
}
.svc-arr-line {
  display: block; width: 20px; height: 1px;
  background: var(--tiffany);
  transition: width 0.3s;
}
.svc:hover .svc-arr-line { width: 40px; }

/* ══════════════════════════════
   MENU
══════════════════════════════ */
.menu-sec {
  background: var(--light);
  padding: 96px 60px;
}
.menu-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  margin-top: 52px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.menu-img { position: relative; }
.menu-img img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
}
.menu-img-tag {
  position: absolute;
  bottom: 0; left: 0;
  background: var(--tiffany-d);
  color: #fff;
  padding: 20px 28px;
}
.menu-img-tag-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}
.menu-img-tag-txt {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 4px;
}
.menu-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s;
}
.menu-tab.on { color: var(--black); border-bottom-color: var(--tiffany-dd); }
.menu-panel { display: none; }
.menu-panel.on { display: block; }
.mi {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.mi-l { flex: 1; }
.mi-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 2px;
}
.mi-name em { 
  text-decoration: underline;
  text-decoration-thickness: 2px; 
  text-decoration-color: var(--tiffany-l);
}
.mi-sub { font-size: 15px; color: var(--muted); font-weight: 300; }
.mi-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--black);
  white-space: nowrap;
}
.mi-price small { font-size: 13px; color: var(--muted); font-family: 'Inter', sans-serif; }
.menu-note {
  margin-top: 20px;
  font-size: 24px;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  font-family: 'Cormorant Garamond', serif;
  border-left: 2px solid var(--tiffany-d);
  padding-left: 16px;
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews {
  background: #fff;
  padding: 96px 60px;
}
.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}
/* 4-я карточка скрыта на десктопе */
.rev-card.rev-card-4th { display: none; }
.rev-card {
  background: var(--light);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rev-stars { color: var(--tiffany-d); font-size: 17px; letter-spacing: 2px; }
.rev-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20.5px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}
.rev-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.rev-av {
  width: 60px; height: 60px;
  background: var(--tiffany-d);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; color: #fff;
  flex-shrink: 0;
}
.rev-name { font-size: 17.5px; font-weight: 600; color: var(--black); letter-spacing: 0.05em; }
.rev-event { font-size: 16px; color: var(--muted); font-weight: 300; margin-top: 2px; }

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
.gallery {
  background: var(--light);
  padding: 96px 60px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  margin-top: 52px;
}
.gi {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #ccc;
}
.gi:first-child { grid-row: span 2; }
.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s, filter 0.4s;
  filter: brightness(0.88);
}
.gi:hover img { transform: scale(1.06); filter: brightness(1); }
.gi-ov {
  position: absolute; inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gi:hover .gi-ov { background: rgba(79,191,182,0.18); }
.gi-ov span {
  color: #fff; font-size: 26px;
  opacity: 0; transition: opacity 0.3s;
}
.gi:hover .gi-ov span { opacity: 1; }

/* ══════════════════════════════
   FOOTER — inspired by panoramika
══════════════════════════════ */
.footer {
  background: var(--dark);
  color: #fff;
}

/* Top call-to-action bar */
.footer-cta {
  background: var(--tiffany-d);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  gap: 16px 20px;
  flex-wrap: wrap;
}
.cta-line1 { white-space: nowrap; }
.cta-line2 { white-space: nowrap; }
.footer-cta-text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
}
.footer-cta-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.03em;
}
.footer-cta-text strong { font-weight: 600; }
.footer-cta-btn {
  display: inline-block;
  padding: clamp(8px, 1.2vw, 13px) clamp(16px, 2.5vw, 36px);
  background: var(--tiffany-dd);
  border: 1px solid rgba(255,255,255,0.7);
  color: #fff;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}
.footer-cta-btn:hover { background: #1F7A73; }

/* Main footer body */
.footer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Left: contacts block */
.footer-contacts {
  padding: 64px 60px;
  border-right: 1px solid rgba(0,0,0,0.10);
  display: flex;
  flex-direction: column;
  gap: 36px;
  background: var(--gainsboro);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -20px;
  margin-bottom: 20px;
}
.footer-brand svg { height: 32px; width: auto; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--dark);
}
.footer-tagline {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tiffany-dd);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 15.5px;
  color: var(--dark);
  line-height: 1.85;
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 4px;
}

/* Big phone number — panoramika style */
.footer-phone {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--dark);
  letter-spacing: 0.04em;
  line-height: 1;
  transition: color 0.2s;
}
.footer-phone:hover { color: var(--tiffany-d); }

.footer-phone-sub {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

.footer-contacts-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-ci { }
.footer-ci-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 500;
}
.footer-ci-val {
  font-size: 17px;
  color: var(--dark);
  font-weight: 300;
  line-height: 1.4;
  transition: color 0.2s;
}
a.footer-ci-val:hover { color: var(--tiffany-d); }

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-soc {
  width: 38px; height: 38px;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 11px; font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-soc:hover { border-color: var(--tiffany-d); color: var(--tiffany-d); }

/* Right: nav + map */
.footer-right {
  display: grid;
  grid-template-rows: 1fr auto;
}
.footer-nav-block {
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
  align-content: start;
  background: var(--gainsboro);
}
.footer-nav-col-title {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tiffany-dd);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.footer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav-links a {
  font-size: 12.5px;
  color: var(--dark);
  font-weight: 300;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: var(--tiffany-dd); }

/* Map block */
.footer-map {
  height: 220px;
  position: relative;
  overflow: hidden;
  background: var(--gainsboro);
}
.footer-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.95) contrast(1.05);
  transition: filter 0.4s;
}
.footer-map:hover iframe { filter: grayscale(0.3) brightness(1); }
.footer-map-pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--tiffany-dd);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  pointer-events: none;
  white-space: nowrap;
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-top: 1px solid rgba(0,0,0,0.10);
  background: var(--gainsboro);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13.5px;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.footer-bottom a {
  font-size: 11px;
  color: var(--tiffany-dd);
  letter-spacing: 0.05em;
  transition: color 0.2s;
  text-decoration: underline;
}
.footer-bottom a:hover { color: var(--gainsboro); }

/* ══════════════════════════════
   MODAL
══════════════════════════════ */
.modal-ov {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.82);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5px;
  backdrop-filter: blur(5px);
}
.modal-ov.open { display: flex; }
.modal {
  background: #fff;
  max-width: 500px; width: 100%;
  padding: 24px 24px;
  position: relative;
  animation: mIn 0.3s ease;
}
@keyframes mIn { from{opacity:0;transform:scale(0.95);} to{opacity:1;transform:none;} }
.modal-x {
  position: absolute; top: 18px; right: 20px;
  background: none; border: none; cursor: pointer;
  font-size: 18px; color: var(--muted);
  padding: 6px; transition: color 0.2s;
}
.modal-x:hover { color: var(--black); }
.modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 300;
  margin-bottom: 18px; margin-top: -2px; color: var(--black);
}
.modal-s { font-size: 9px; color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px;  margin-top: 12px; }
.fg { margin-bottom: 13px; }
.fl { display: block; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 7px; }
.fi, .fsel, .fta {
  width: 100%; border: 1px solid var(--border);
  background: var(--light); padding: 6px 8px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--text); outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.fi:focus, .fsel:focus, .fta:focus { border-color: var(--tiffany-d); background: #fff; }
.fta { min-height: 90px; resize: vertical; }
.fsub {
  width: 100%; padding: 15px;
  background: var(--dark); color: #fff;
  border: none; font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s; margin-top: 4px;
}
.fsub:hover { background: var(--tiffany); }
.fnote { font-size: 11px; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; font-weight: 300; }
.fnote a { color: var(--tiffany-dd); text-decoration: underline; }

/* ══════════════════════════════
   LIGHTBOX
══════════════════════════════ */
.lb {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lb-x {
  position: fixed; top: 20px; right: 24px;
  color: rgba(255,255,255,0.7); font-size: 28px;
  cursor: pointer; background: none; border: none;
  transition: color 0.2s;
}
.lb-x:hover { color: #fff; }

/* ══════════════════════════════
   SCROLL REVEAL
══════════════════════════════ */
.rv { opacity:0; transform:translateY(24px); transition:opacity 0.65s ease, transform 0.65s ease; }
.rv.in { opacity:1; transform:none; }
.d1{transition-delay:.08s} .d2{transition-delay:.16s} .d3{transition-delay:.24s} .d4{transition-delay:.32s}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1200px) {
  .footer-body { grid-template-columns: 1fr; }
  .footer-contacts { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.10); padding: 56px 40px; }
  .footer-nav-block { padding: 48px 40px; }
  .footer-cta { padding: 28px 40px; }
  .footer-bottom { padding: 20px 40px; }
  .footer-map { height: 240px; }
}

@media (max-width: 1000px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .burger { display: flex; }

  .hero-title { font-size: clamp(44px, 12vw, 80px); }  

  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(2) { border-right: none; }
  .fact { padding: 32px 28px; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 50vw; max-height: 420px; }
  .about-text { padding: 56px 32px; }

  .promo { padding: 72px 32px; }
  .promo-grid { grid-template-columns: repeat(2, 1fr); }

  .services { padding: 72px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .svc { aspect-ratio: 4/3; min-height: 0; }

  .menu-sec { padding: 72px 32px; }
  .menu-img img { aspect-ratio: 16/9; }

  .reviews { padding: 72px 32px; }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-card.rev-card-4th { display: flex; }  /* показываем 4-ю на планшете */

  .gallery { padding: 0 32px 40px; }
  .gallery .sec-head { margin-bottom: 27px; padding: 24px 0 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px;
    margin-top: 0;
  }
  .gi:first-child { grid-row: span 1; }
  .gi:nth-child(5) { display: none; }

  .footer-cta { padding: 24px 32px; }
  .footer-contacts { padding: 48px 32px; }
  .footer-nav-block { padding: 40px 32px; }
  .footer-bottom { padding: 18px 32px; }

  /* +25% шрифты от About до Gallery */
  .sec-label { font-size: 12.5px; }
  .sec-title { font-size: clamp(38px, 5.5vw, 58px); }
  .about-text p { font-size: 17.5px; }
  .about-list-item { font-size: 16.5px; }
  .promo-card-title { font-size: 26px; }
  .promo-card-desc { font-size: 18px; }
  .promo-card-link { font-size: 14.5px; }
  .promo-badge { font-size: 14px; }
  /* svc sizes: handled in specific svc block below */
  .menu-tab { font-size: 15px; }
  .mi-name { font-size: 22.5px; }
  .mi-sub { font-size: 17px; }
  .mi-price { font-size: 24px; }
  .mi-price small { font-size: 16px; }
  .menu-note { font-size: 22.5px; }
  .rev-text { font-size: 23px; }
  .rev-name { font-size: 19px; }
  .rev-event { font-size: 19px; }
  .rev-stars { font-size: 20px; }
}

@media (max-width: 730px) {
  /* Отзывы — 4 карточки вертикально, шрифт -25% */
  .rev-grid { grid-template-columns: 1fr; gap: 12px; }
  .rev-card.rev-card-4th { display: flex; }
  .rev-card { padding: 24px 20px; gap: 12px; }
  .rev-text { font-size: 20px; line-height: 1.5; }
  .rev-stars { font-size: 20px; }
  .rev-name { font-size: 16px; }
  .rev-event { font-size: 15px; }
  .rev-av { width: 60px; height: 60px; font-size: 13px; }

  /* Подвал — шрифты -25% для текстов */
  .footer-tagline { font-size: 9px; }
  .footer-desc { font-size: 13.5px; }
  .footer-ci-val { font-size: 12.5px; }

  /* footer-cta — кнопка и текст компактнее */
  .footer-cta { padding: 20px 24px; }
  .footer-cta-btn { padding: 9px 18px; font-size: 9px; letter-spacing: 0.15em; }

  /* gallery — минимальный отступ */
  .gallery { padding: 18px 24px; }
}

@media (max-width: 400px) {
  .nav { padding: 0 16px; height: 60px; }
  .mmenu-head { height: 60px; }

  .hero { min-height: 100svh; }
  .hero-title { font-size: 42px; }
  .hero-subtitle { font-size: 15px; }
  .hero-btn { padding: 13px 32px; }

  .facts { grid-template-columns: 1fr 1fr; }
  .fact { padding: 24px 16px; }
  .fact-num { font-size: 36px; }
  
  .fact-star { color: var(--tiffany-dd); font-size: 24px; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 60vw; max-height: 300px; }
  .about-text { padding: 44px 20px; }

  .promo { padding: 56px 16px; }
  .promo-grid { grid-template-columns: 1fr; }

  .svc { aspect-ratio: 3/2; }

  .menu-sec { padding: 56px 16px; }
  
  .sec-label { font-size: 10px; }  
}


/* ══════════════════════════════
   RESPONSIVE — мелкие экраны
══════════════════════════════ */

/* 1. hero-label < 715px: убираем линии и точку */
@media (max-width: 715px) {
  .hero-label::before, .hero-label::after { display: none; }
  .hero-label-dot { display: none; }
}

/* 1. hero-label < 400px: шрифт -20% */
@media (max-width: 400px) {
  .hero-label { font-size: 12px; }
}

/* 2. hero-subtitle < 400px: +30% */
@media (max-width: 400px) {
  .hero-subtitle { font-size: clamp(20px, 5.5vw, 26px); }
}

/* 3. facts < 470px: 4 карточки вертикально, компактные */
@media (max-width: 470px) {
  .facts { grid-template-columns: 1fr; }
  .fact {
    padding: 14px 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .fact:last-child { border-bottom: none; }
  .fact-num { font-size: 36px; }
  .fact-label { font-size: 14px; white-space: nowrap; }
  .fact-star { font-size: 24px; }
  
  .facts-head { width: 100%; padding: 10px; text-align: center; border-bottom: 1px solid var(--border); }
}

/* 4. about < 500px: шрифт 15px, заголовок -20% */
@media (max-width: 500px) {
  .about-text p { font-size: 15px; }
  .about-list-item { font-size: 14px; }
  .sec-title { font-size: clamp(33px, 6vw, 36px); }
}
@media (max-width: 320px) {
  .about-text p { font-size: 14px; }
  .about-list-item { font-size: 13px; }
}

/* 5. promo < 730px: шрифт 15px, 4 карточки вертикально */
@media (max-width: 730px) {
  .promo-grid { grid-template-columns: 1fr; }
  .promo-card-title { font-size: 26px; }
  .promo-card-desc { font-size: 18px; }
  .promo-card-link { font-size: 12px; }
}

/* 6. services < 1000px: */
@media (max-width: 1000px) {
  /* services 600-1000px: */
  .svc-title { font-size: 30px; }
  .svc-desc { font-size: 16px; }
  .svc-num { font-size: 8.5px; }
  .svc-arr { font-size: 8.5px; }
}
/* 6. services < 730px: 4 карточки вертикально */
@media (max-width: 730px) {
  .services { padding: 56px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 6px; }
  .svc { aspect-ratio: 4/3; }
  .svc-title { font-size: 36px; }
  .svc-desc { font-size: 17px; }
  .svc-num { font-size: 11px; }
  .svc-arr { font-size: 11px; }
}

/* 6. services < 400px: 4 карточки вертикально */
@media (max-width: 400px) {
  .svc-title { font-size: 26px; margin-bottom: 6px; }
  .svc-desc { font-size: 13px; line-height: 1.4; }
  .svc-num { font-size: 10px; }
  .svc-arr { font-size: 10px; }
  
  .svc-body { padding: 16px 18px 16px 18px; }  
}

/* 7. menu < 600px: sans-serif шрифты -25% */
@media (max-width: 600px) {
  .mi-name { font-size: 20px; }	
  .mi-price { font-size: 20px; }	
  .menu-tab { font-size: 12px; }
  .mi-sub { font-size: 13px; }
  .mi-price small { font-size: 10px; }
  .menu-note { font-size: 19px; }
  .btn-red-solid { font-size: 10px; padding: 10px 20px; }
}

/* 8. footer-cta < 600px: когда кнопка на второй строке — текст +25% */
@media (max-width: 600px) {
  .footer-cta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-cta-text { font-size: clamp(22px, 5.5vw, 28px); }
  .footer-cta-btn { align-self: flex-start; }
}

/* 9. footer-nav < 360px: Информация под Мероприятия */
@media (max-width: 360px) {
  .footer-nav-block { grid-template-columns: 1fr; gap: 24px; }
}

/* hero-subtitle +30% на 400–800px */
@media (min-width: 401px) and (max-width: 800px) {
  .hero-subtitle { font-size: clamp(20px, 4.5vw, 31px); }
}

/* gallery < 500px: одна колонка */
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 200px 200px 200px;
  }
  .gi:first-child { grid-row: span 1; }
  .gi:nth-child(5) { display: block; }
}

.circle-photo {
	width: 60px;
	height: 60px;
	border-radius: 50%;          
	object-fit: cover;            
	object-position: center;     
}

/* ── Галерея ── */
.inner-gallery {
  background: var(--light);
  padding: 12px 60px 72px;
}
.inner-gallery-inner {
  max-width: 1200px;
  margin: 0 auto 40px;
}
.inner-gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.inner-gi {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.inner-gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.5s, filter 0.4s;
}
.inner-gi:hover img { transform: scale(1.05); filter: brightness(1); }
.inner-gi .gi-ov {
  position: absolute; inset: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.inner-gi:hover .gi-ov { background: rgba(0,80,75,0.12); }
.inner-gi .gi-plus { color: #fff; font-size: 22px; opacity: 0; transition: opacity 0.3s; }
.inner-gi:hover .gi-plus { opacity: 1; }



/* ══ PHOTO VIEWER ══ */
.pv-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 4000;
  display: none;
  align-items: center;
  justify-content: center;
  animation: pvFadeIn 0.25s ease;
}
.pv-overlay.open { display: flex; }
@keyframes pvFadeIn { from{opacity:0} to{opacity:1} }

.pv-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pv-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  animation: pvSlide 0.2s ease;
  user-select: none;
}
@keyframes pvSlide { from{opacity:0;transform:scale(0.97)} to{opacity:1;transform:none} }

/* Кнопка закрыть */
.pv-close {
  position: fixed; top: 20px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 4001;
  transition: background 0.2s;
}
.pv-close:hover { background: rgba(255,255,255,0.20); }

/* Стрелки */
.pv-prev, .pv-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.20);
  color: #fff; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 4001;
  transition: background 0.2s;
  user-select: none;
}
.pv-prev { left: 20px; }
.pv-next { right: 20px; }
.pv-prev:hover, .pv-next:hover { background: rgba(255,255,255,0.18); }

/* Счётчик */
.pv-counter {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.45);
  z-index: 4001;
}

/* Точки-навигация */
.pv-dots {
  position: fixed; bottom: 50px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 4001;
}
.pv-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.pv-dot.active {
  background: var(--tiffany-d);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .pv-prev { left: 8px; width: 40px; height: 40px; }
  .pv-next { right: 8px; width: 40px; height: 40px; }
}
/* ── Menu: картинка сверху ── */
.menu-content { margin-top: 40px; }
.menu-download { margin-top: 32px; text-align: left; }

@media (max-width: 600px) {
  .menu-download .btn-red-solid { display: block; width: 100%; text-align: center; }
}

/* ── Ссылка "Подробнее о кухне" под заголовком ── */
.menu-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--tiffany-dd);
  transition: gap 0.25s, color 0.2s;
}
.menu-more-link:hover { gap: 14px; color: var(--tiffany-d); }

/* ══ COOKIE BANNER ══ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--dark);
  color: #fff;
  padding: 18px 24px;
  display: none;                 /* скрыт по умолчанию, JS включает flex */
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 1500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  animation: cookieUp 0.4s ease;
}
.cookie-banner.show { display: flex; }   /* класс show добавляет JS */

@keyframes cookieUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.cookie-text a {
  color: var(--tiffany-d);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-text a:hover { color: var(--tiffany-l); }

.cookie-btn {
  flex-shrink: 0;
  background: var(--tiffany-d);
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s;
}
.cookie-btn:hover { background: #3AADA4; }

/* Мобильная адаптация */
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 14px;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 18px 20px;
  }
  .cookie-btn { width: 100%; }
}
