@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* БАЙ ГРУПП — визуальный язык в духе Loft Hall: тёмный фон, крем, воздух */

:root {
  --white: #ffffff;
  --bg: #000000;
  --bg-soft: #0d0d0d;
  --bg-elevated: #141414;
  --text: #d9d9d9;
  --text-dark: #efd6c4;
  --muted: #9a9a9a;
  --line: #2a2a2a;
  --line-soft: #1c1c1c;
  --cream: #efd6c4;
  --accent: #efd6c4;
  --accent-dark: #e0c4ac;
  --accent-ink: #0a0a0a;
  --dark: #000000;
  --dark-bar: #0a0a0a;
  --header-bg: rgba(0, 0, 0, 0.72);
  --sand: #1a1714;
  --radius: 20px;
  --radius-sm: 12px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --container: 1280px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-top: 72px;
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

/* Header — тёмный полупрозрачный, как Loft Hall */
#header {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 3000;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
  border-bottom: 1px solid rgba(239, 214, 196, 0.12);
}
.header-top {
  height: var(--header-top);
  display: flex;
  align-items: center;
  background: transparent;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 30px, var(--container));
  margin-inline: auto;
}
.logo {
  display: inline-flex;
  align-items: center;
  z-index: 2;
  line-height: 0;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
}
.logo-mark {
  height: 58px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}
.nav {
  display: flex;
  position: fixed;
  right: -280px;
  top: 0;
  width: min(280px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: #0a0a0a;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  margin: 0;
  padding: calc(var(--header-h) + 12px) 22px 28px;
  box-shadow: -8px 0 30px rgba(0,0,0,.45);
  overflow: auto;
  flex: none;
  flex-wrap: nowrap;
  transition: right .3s ease;
  z-index: 3001;
}
.site-header.menu-open .nav { right: 0; }
.nav a {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 48px;
  border-bottom: 0;
  padding: 0;
  white-space: nowrap;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color .2s, opacity .2s;
  opacity: 0.92;
}
.nav a:hover,
.nav a.active {
  color: var(--cream);
  font-weight: 500;
  opacity: 1;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 3002;
}
.header-book {
  height: 40px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: 4px;
}
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3002;
  flex-shrink: 0;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  position: relative;
  margin: 0 auto;
  transition: .2s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  background: var(--cream);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.site-header.menu-open .nav-toggle span { background: transparent; }
.site-header.menu-open .nav-toggle span::before {
  top: 0; transform: rotate(45deg); background: #fff;
}
.site-header.menu-open .nav-toggle span::after {
  top: 0; transform: rotate(-45deg); background: #fff;
}
.header-halls { display: none !important; }
.site-header.scrolled,
.site-header.on-light {
  background: rgba(0, 0, 0, 0.92);
}
body.nav-open { overflow: hidden; }
.site-header.menu-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3000;
}

/* Buttons — pill / outline в духе Loft Hall, красный акцент для CTA */
.btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-width: 0;
  height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary,
.btn-glow,
.btn-book {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
  animation: none;
  box-shadow: none;
  border-radius: 999px;
}
.btn-primary:hover,
.btn-glow:hover,
.btn-book:hover {
  background: #fff;
  border-color: #fff;
  color: #000;
  box-shadow: none;
}
.btn-secondary {
  background: transparent;
  border: 1px solid rgba(239, 214, 196, 0.55);
  color: var(--cream);
}
.btn-secondary:hover {
  background: rgba(239, 214, 196, 0.08);
  color: var(--cream);
}
.btn-secondary.dark,
.btn-glow-outline,
.btn-more {
  background: transparent;
  border: 1px solid rgba(239, 214, 196, 0.55);
  color: var(--cream);
  animation: none;
  box-shadow: none;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-secondary.dark:hover,
.btn-glow-outline:hover,
.btn-more:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: #000;
}
.hero .btn-secondary,
.hero .btn-glow-outline {
  border-color: #fff;
  color: #fff;
  background: transparent;
}
.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-gold {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.btn-whatsapp {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.btn-sm { height: 40px; padding: 0 16px; font-size: 13px; }
.btn-block { width: 100%; }
.cta-glow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 480px;
  height: clamp(420px, 48vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(0, 0, 0, 0.78);
  padding: 28px 0 32px;
}
.hero-inner {
  max-width: var(--container);
}
.brand-mark, .hero-logo { display: none; }
.hero h1 {
  display: block;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 700;
  text-transform: uppercase;
  max-width: 16ch;
  margin: 0 0 12px;
  color: #fff;
  line-height: 1.2;
  opacity: 1;
  animation: none;
}
.hero-lead {
  display: block;
  font-size: 15px;
  font-weight: 400;
  max-width: 62ch;
  color: rgba(255,255,255,0.92);
  margin: 0 0 18px;
  line-height: 1.5;
  opacity: 1;
  animation: none;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 1;
  animation: none;
}
.page-hero {
  min-height: 300px;
  height: 360px;
}
body.inner { padding-top: 0; }

/* Sections */
.section {
  padding: 60px 0;
}
.section-tight { padding: 48px 0; }
.section-alt { background: var(--bg-soft); }
.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
  opacity: 0.9;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--cream);
  flex-shrink: 0;
}

.section-head-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-head-split > div { max-width: 720px; }
.accent-count {
  color: var(--accent);
  font-size: 1.35em;
  font-weight: 700;
  margin-right: 4px;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 14px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Advantages */
.advantages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.advantage {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}
.advantage-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 0 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.advantage h3 {
  font-size: 16px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.advantage p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  margin: 0;
}


.halls-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.halls-section-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  margin: 0 0 8px;
  font-weight: 700;
  text-transform: none;
  color: var(--text-dark);
}
.halls-section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 48ch;
}

/* Hall cards — Loft Hall style: portrait photo cards */
.halls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.hall-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #111;
  text-decoration: none;
  color: #fff;
  box-shadow: none;
  min-height: 0;
  transition: transform .35s var(--ease);
}
.hall-card:hover { transform: translateY(-4px); }
.hall-card-media,
.hall-card > .hall-card-media {
  display: block !important;
  position: absolute;
  inset: 0;
}
.hall-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.hall-card:hover .hall-card-media img { transform: scale(1.04); }
.hall-card-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 72px 18px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.78) 100%);
}
.hall-card-name {
  margin: 0 0 6px;
  font-family: var(--font-body);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}
.hall-card-name a { color: inherit; }
.hall-card-meta {
  margin: 0;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.hall-card-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.hall-card:hover .hall-card-arrow {
  background: var(--cream);
  border-color: var(--cream);
  color: #000;
}
.hall-card-main,
.hall-specs,
.hall-card-desc,
.hall-badges,
.hall-price,
.hall-actions,
.hall-slider { display: none !important; }

.hall-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(239,214,196,0.35);
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  color: var(--cream);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0 0 2px;
  box-shadow: none;
}
.hall-slider-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.hall-slider-prev { left: 14px; }
.hall-slider-next { right: 14px; }
.hall-slider-dots {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 7px;
}
.hall-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.hall-dot.is-active { background: var(--cream); }
.btn-book, .btn-more {
  height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 0;
}
.i-area, .i-clock, .i-ac, .i-tv, .i-pin, .i-guests, .i-parking, .i-music {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
  background: #9a9a9a;
  mask: no-repeat center / contain;
  -webkit-mask: no-repeat center / contain;
}
.i-pin, .i-guests {
  background: var(--accent);
  width: 18px;
  height: 18px;
}
.i-area {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M4 9V4h5M20 9V4h-5M4 15v5h5M20 15v5h-5'/%3E%3C/svg%3E");
}
.i-clock {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3C/svg%3E");
}
.i-ac {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v18M5 8l7 4 7-4M5 16l7-4 7 4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M12 3v18M5 8l7 4 7-4M5 16l7-4 7 4'/%3E%3C/svg%3E");
}
.i-tv {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='12' rx='1'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='3' y='5' width='18' height='12' rx='1'/%3E%3Cpath d='M8 21h8M12 17v4'/%3E%3C/svg%3E");
}
.i-pin {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}
.i-guests {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 19c0-3 2.5-5 6-5s6 2 6 5'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M15 19c.5-2 2-3.5 4.5-3.5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 19c0-3 2.5-5 6-5s6 2 6 5'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M15 19c.5-2 2-3.5 4.5-3.5'/%3E%3C/svg%3E");
}
.i-parking {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='3' width='12' height='18' rx='1'/%3E%3Cpath d='M8 7h4a3 3 0 0 1 0 6H8z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Crect x='4' y='3' width='12' height='18' rx='1'/%3E%3Cpath d='M8 7h4a3 3 0 0 1 0 6H8z'/%3E%3C/svg%3E");
}
.i-music {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2'%3E%3Cpath d='M9 18V5l12-2v13'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Ccircle cx='18' cy='16' r='3'/%3E%3C/svg%3E");
}
.hall-card-title,
.hall-card-info,
.hall-card-body,
.hall-card-tag,
.hall-card > .btn { display: none; }

/* Menu sets — exact reference style */
.menu-sets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.menu-set {
  background: var(--bg-elevated);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 0;
  border-top: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  overflow: hidden;
}
.menu-set-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #111;
  overflow: hidden;
}
.menu-set-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.menu-set-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.menu-set-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  text-transform: none;
  line-height: 1.25;
}
.menu-set-price {
  display: inline;
  font-weight: 400;
  white-space: nowrap;
}
.menu-section { width: 100%; }
.menu-catalog {
  margin-top: 40px;
}
.menu-catalog-head {
  margin-bottom: 22px;
  max-width: 54ch;
}
.menu-catalog-head h3 {
  margin: 0 0 10px;
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--cream);
}
.menu-catalog-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}
.menu-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 991px) {
  .menu-catalog-grid { grid-template-columns: 1fr; }
}
.menu-catalog-block {
  padding: 22px 20px;
  border: 1px solid rgba(239,214,196,0.18);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}
.menu-catalog-block h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.menu-catalog-block ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
}
.menu-catalog-block li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 300;
}
.menu-extras {
  margin-top: 20px;
  padding: 22px 20px;
  border: 1px solid rgba(239,214,196,0.28);
  border-radius: var(--radius-sm);
  background: rgba(239,214,196,0.05);
}
.menu-extras h3 {
  margin: 0 0 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.menu-extras ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
}
.menu-extras li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 300;
}
.menu-set-line {
  height: 1px;
  background: #ddd;
  width: 100%;
  margin: 2px 0 6px;
}
.menu-set-note {
  margin: 0;
  font-size: 13px;
  color: #888;
}
.menu-set-block strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #222;
  text-transform: none;
  margin: 8px 0 6px;
}
.menu-set-block ul {
  margin: 0 0 4px;
  padding: 0 0 0 1.15rem;
  list-style: disc;
}
.menu-set-block li {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 3px;
}
.menu-set-gift {
  margin: 8px 0 0;
  padding: 12px;
  background: rgba(227, 52, 47, 0.08);
  border-left: 3px solid var(--accent);
  font-size: 13px;
  color: #333;
  line-height: 1.4;
}
.menu-set .btn-more {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
  margin-top: 14px;
}
.menu-sets-extra { margin-top: 24px; }
.menu-promo-plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.menu-promo-plate {
  background: #fff;
  border: 0;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.section-alt { background: var(--bg-soft); }

/* About / stats */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  padding: 0;
  border: 0;
  background: transparent;
}
.about-stat-btn {
  display: block;
  padding: 18px 16px;
  border: 1px solid rgba(239,214,196,0.22);
  background: var(--bg-elevated);
  text-decoration: none;
  color: inherit;
  transition: background .15s, box-shadow .15s, transform .15s;
  border-radius: 4px;
}
.about-stat-btn:hover {
  background: rgba(229, 45, 45, 0.04);
  box-shadow: 0 6px 18px rgba(229, 45, 45, 0.12);
  transform: translateY(-1px);
}
.about-stat .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 0;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-stat .num span { line-height: 1; }
.about-stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.about-stat p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
}

.quiz-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 28px 24px;
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.quiz-band h2 {
  margin-bottom: 0.4rem;
  font-size: clamp(18px, 2.5vw, 24px);
}

.quiz-steps { display: grid; gap: 1.25rem; max-width: 720px; }
.quiz-step {
  padding: 1.25rem 0;
  border-top: 1px solid var(--line-soft);
}
.quiz-step h3 {
  font-size: 18px;
  margin-bottom: 0.9rem;
}
.quiz-results { margin-top: 1.5rem; }
.footer-brand {
  display: inline-block;
  margin-bottom: 1rem;
  background: transparent;
  padding: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-decoration: none;
  line-height: 1.2;
}
.footer-brand:hover { color: #fff; opacity: 0.92; }
.logo-mark-footer {
  height: 48px;
  width: auto;
}

/* Formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.format-link {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 1.2rem;
  border-radius: var(--radius);
}
.format-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.format-link:hover img { transform: scale(1.05); }
.format-link::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.75));
}
.format-link span {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Media band */
.media-band {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}
.media-band-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}
.media-band-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-band-copy h2 {
  font-size: clamp(22px, 3vw, 30px);
}
.media-band-copy p { color: var(--muted); font-weight: 300; }

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-item { display: grid; gap: 1rem; }
.case-item-media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}
.case-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.case-item:hover .case-item-media img { transform: scale(1.04); }
.case-item h3 { font-size: 16px; margin-bottom: 0.3rem; }
.case-item p { color: var(--muted); font-size: 14px; margin: 0; font-weight: 300; }

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.gallery-strip a,
.gallery-shot {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239,214,196,0.12);
}
.gallery-strip img,
.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-strip a:hover img,
.gallery-shot:hover img { transform: scale(1.04); }
.gallery-strip-food {
  grid-template-columns: repeat(3, 1fr);
}

.similar-halls {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.similar-hall {
  display: grid;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.similar-hall-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(239,214,196,0.15);
}
.similar-hall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.similar-hall:hover .similar-hall-photo img { transform: scale(1.05); }
.similar-hall-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  color: var(--cream);
}
.similar-hall-meta span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.case-item-wide {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.case-item-wide .case-item-media {
  aspect-ratio: 16 / 10;
  max-height: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.case-item-wide .case-item-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}
.halls-grid-home {
  margin-top: 8px;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
}
a.review-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, padding 0.25s ease;
  border-radius: var(--radius-sm);
}
a.review-link:hover {
  background: rgba(239,214,196,0.06);
  padding-left: 10px;
  padding-right: 10px;
}
.review-cta {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
}
.review-stars {
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.review blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 300;
  text-transform: none;
  color: var(--text-dark);
}
.review-meta {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}
.review-author {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-dark);
}
.review-meta-rest {
  font-weight: 300;
}
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line-soft);
}
.stat strong {
  display: block;
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}
.stat span {
  font-size: 14px;
  color: var(--muted);
}

/* FAQ */
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line-soft); }
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 1.25rem 2rem 1.25rem 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  position: relative;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 400;
}
.faq-item.open .faq-q::after { content: '−'; }
.faq-a {
  display: none;
  padding: 0 0 1.35rem;
  color: var(--muted);
  max-width: 62ch;
  font-weight: 300;
}
.faq-item.open .faq-a { display: block; }

/* Contacts preview */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-map {
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  border: 1px solid var(--line-soft);
}
.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.contact-list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}
.contact-list span { color: var(--muted); font-size: 14px; }

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 45px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-note {
  font-size: 13px;
  color: var(--muted);
  margin: 0.5rem 0 0;
}
.form-success {
  display: none;
  padding: 1.25rem;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #167c3c;
}
.form-success.show { display: block; }

/* Hall page specifics */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.feature {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line-soft);
}
.feature strong {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--text-dark);
}
.feature span { font-size: 13px; color: var(--muted); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.filter-btn {
  min-height: 40px;
  min-width: 120px;
  padding: 0.4rem 1rem;
  border: 1px solid var(--dark-bar);
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-bar);
  transition: 0.15s;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #fff;
}

.booking-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
  padding: 2.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
}

/* Tools */
.wizard {
  display: grid;
  gap: 1.5rem;
  max-width: 760px;
}
.wizard-step {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-soft);
}
.wizard-step h3 {
  font-size: 18px;
  margin-bottom: 1rem;
}
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.chip {
  min-height: 40px;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--dark-bar);
  border-radius: 22px;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.chip.active {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}
.results-list { display: grid; gap: 1rem; margin-top: 1rem; }
.result-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.result-item img {
  width: 140px;
  height: 100px;
  object-fit: cover;
}
.calc-box {
  max-width: 640px;
  padding: 2rem;
  border: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.calc-total {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-soft);
}
.calc-total strong {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  display: block;
  color: var(--text-dark);
}
.calc-total span { color: var(--muted); font-size: 14px; }

/* Footer */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.site-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer a {
  display: block;
  padding: 0.28rem 0;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.site-footer a:hover { opacity: 1; color: #fff; }
.site-footer .footer-brand {
  display: inline-block;
  padding: 0;
  font-size: 1.45rem;
  font-weight: 700;
  opacity: 1;
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  opacity: 0.7;
}

/* WhatsApp float */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(227, 52, 47, 0.4);
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 85;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--line-soft);
  gap: 0.6rem;
}
.mobile-cta .btn { flex: 1; min-width: 0; }

/* Utility */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.muted { color: var(--muted); font-weight: 300; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.ornament {
  width: 48px;
  height: 16px;
  background: url('../assets/ornament.svg') left center / contain no-repeat;
  margin: 1rem 0 1.25rem;
}

/* Calendar */
.calendar-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
.calendar {
  border: 1px solid var(--line-soft);
  background: #fff;
  padding: 1.25rem;
}
.calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-head h3 {
  font-size: 18px;
  margin: 0;
}
.calendar-nav { display: flex; gap: 0.4rem; }
.calendar-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}
.calendar-week {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.day {
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.9rem;
  border-radius: 0;
  position: relative;
}
.day:disabled { opacity: 0.25; cursor: default; }
.day.free { background: rgba(37, 211, 102, 0.12); color: #167c3c; }
.day.busy { background: rgba(37, 37, 37, 0.08); color: var(--muted); }
.day.ask { background: rgba(229, 45, 45, 0.12); color: var(--accent-dark); }
.day.selected { outline: 2px solid var(--accent); }
.legend { display: grid; gap: 0.75rem; }
.legend-item {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  font-size: 14px;
}
.legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  flex-shrink: 0;
}
.legend-dot.free { background: rgba(37, 211, 102, 0.45); }
.legend-dot.busy { background: rgba(37, 37, 37, 0.25); }
.legend-dot.ask { background: rgba(229, 45, 45, 0.55); }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.video-card { display: grid; gap: 0.75rem; }
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--sand);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-thumb::after {
  content: '▶';
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  border-radius: 50%;
}
.video-card h3 { font-size: 16px; margin: 0; }

/* Menu dishes */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.menu-item { display: grid; gap: 0.75rem; }
.menu-item img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  background: var(--sand);
}
.menu-item h3 { font-size: 16px; margin: 0; }
.menu-item p { margin: 0; font-size: 14px; color: var(--muted); font-weight: 300; }

/* Map */
.map-embed {
  width: 100%;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line-soft);
  background: var(--sand);
  overflow: hidden;
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .advantages { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .media-band,
  .contacts-grid,
  .booking-panel,
  .two-col,
  .about-grid,
  .calendar-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 991px) {
  :root { --header-top: 76px; }
  .logo-mark { height: 52px; }
  .header-book { display: none; }
  .menu-sets,
  .menu-promo-plates,
  .menu-catalog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .reviews-grid,
  .gallery-strip,
  .form-row,
  .cases-grid,
  .video-grid,
  .menu-grid { grid-template-columns: 1fr; }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .about-stat-btn {
    aspect-ratio: 1;
    min-height: 0;
    height: auto;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    box-sizing: border-box;
  }
  .about-stat .num {
    width: 32px;
    height: 32px;
    margin-bottom: 8px;
    font-size: 12px;
  }
  .about-stat strong {
    font-size: 13px;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .about-stat p {
    font-size: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .result-item { grid-template-columns: 100px 1fr; }
  .result-item .btn { grid-column: 1 / -1; }
  .mobile-cta { display: flex; }
  .wa-float { bottom: 5.2rem; }
  body { padding-bottom: 4.5rem; }
  .hero {
    height: auto;
    min-height: 360px;
  }
  .hero-content {
    padding: 20px 0 24px;
    text-align: left;
  }
  .hero h1 {
    font-size: 20px;
    max-width: none;
  }
  .hero-lead { font-size: 14px; max-width: none; }
  .hero-cta { justify-content: flex-start; }
  .page-hero { height: 280px; min-height: 280px; }
  .hall-badges { grid-template-columns: 1fr; }
  .hall-actions .btn { flex: 1; }
  .logo-mark { height: 56px; }
  .section { padding: 40px 0; }
}

@media (max-width: 520px) {
  .advantages { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr 1fr; }
}

/* Hall facts — единое оформление характеристик */
.hall-facts,
.hall-facts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 4px 0 8px;
}
.hall-fact {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}
.hall-fact strong {
  font-weight: 700;
  color: var(--text-dark);
  margin-right: 4px;
}
.hall-fact span { font-weight: 400; }

/* Promo hero slider — white card over photo */
.promo-hero {
  position: relative;
  width: 100%;
  height: clamp(440px, 52vw, 580px);
  min-height: 440px;
  overflow: hidden;
  background: #222;
}
.promo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility .4s ease;
  pointer-events: none;
  z-index: 0;
}
.promo-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.promo-slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.promo-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.16) 50%, rgba(0,0,0,0.06) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.1) 0%, transparent 45%, rgba(0,0,0,0.28) 100%);
}
.promo-slide-copy {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-top: 48px;
  padding-bottom: 72px;
}
.promo-banner {
  width: min(100%, 520px);
  background: rgba(0,0,0,0.72);
  padding: 28px 28px 24px;
  box-shadow: none;
  border-top: 1px solid var(--cream);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}
.promo-banner .eyebrow { margin-bottom: 10px; }
.promo-banner-title {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  max-width: none;
}
.promo-banner-text {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}
.promo-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.promo-hero .promo-prev { left: 16px; z-index: 6; }
.promo-hero .promo-next { right: 16px; z-index: 6; }
.promo-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  pointer-events: none;
}
.promo-controls .hall-slider-btn,
.promo-controls .promo-dots {
  pointer-events: auto;
  position: static;
  transform: none;
}
.promo-controls .hall-slider-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  top: auto;
  left: auto;
  right: auto;
  transform: none;
  margin: 0;
}
.promo-hero .promo-dots {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  display: flex;
  gap: 8px;
}
.promo-hero .promo-dot { background: rgba(255,255,255,0.75); }
.promo-hero .promo-dot.is-active { background: var(--accent); }

/* Menu intro */
.menu-intro-list {
  margin: 0;
  padding: 0 0 0 1.2rem;
  color: var(--muted);
  list-style: disc;
}
.menu-intro-list li {
  margin-bottom: 4px;
  font-size: 15px;
}

/* Promo cards / акции */
.promo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.promo-card {
  background: var(--bg-elevated);
  border-left: 4px solid var(--accent);
  padding: 22px 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.promo-card h3 {
  color: var(--accent);
  font-size: 18px;
  margin: 0 0 10px;
  text-transform: none;
}
.promo-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

/* Review hall filters */
.review-hall-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.filter-btn {
  appearance: none;
  border: 1px solid rgba(239,214,196,0.28);
  background: transparent;
  color: var(--cream);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Booking modal */
body.modal-open { overflow: hidden; }
.booking-modal[hidden] { display: none !important; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(12px, env(safe-area-inset-top)) 12px max(12px, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.booking-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  margin: auto 0;
  background: #111;
  padding: 24px 20px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  max-height: none;
}
.booking-modal-close {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #888;
  z-index: 2;
}
.booking-modal-panel h3 {
  margin: 0 0 8px;
  font-size: 22px;
  color: var(--text-dark);
  text-transform: none;
  padding-right: 28px;
}
.booking-modal-lead { margin-bottom: 14px; font-size: 14px; }
.booking-form {
  display: grid;
  gap: 10px;
}
.booking-form label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.booking-form input,
.booking-form select {
  height: 44px;
  padding: 0 12px;
  border: 1px solid #333;
  border-radius: 10px;
  font-weight: 400;
  background: #0a0a0a;
  color: #fff;
}
.booking-form textarea {
  min-height: 72px;
}
.booking-form-status {
  margin: 0;
  font-size: 13px;
  color: var(--accent-dark);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .booking-modal {
    padding: 0;
    align-items: stretch;
  }
  .booking-modal-panel {
    width: 100%;
    min-height: 100%;
    border-radius: 0;
    padding: 18px 16px calc(18px + env(safe-area-inset-bottom));
  }
  .booking-form {
    gap: 8px;
  }
  .booking-form input,
  .booking-form select {
    height: 42px;
  }
  .booking-modal-lead { margin-bottom: 10px; font-size: 13px; }
  .booking-form textarea { min-height: 56px; }
}

@media (max-width: 991px) {
  .promo-cards { grid-template-columns: 1fr; }
  .hall-facts,
  .hall-facts-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .promo-hero { height: auto; min-height: 0; }
  .promo-slide {
    position: relative;
    inset: auto;
    display: none;
    min-height: 480px;
  }
  .promo-slide.is-active { display: block; opacity: 1; visibility: visible; }
  .promo-slide-copy {
    min-height: 480px;
    padding: 24px 0 78px;
  }
  .promo-banner {
    width: 100%;
    padding: 20px 16px 18px;
  }
  .promo-controls {
    bottom: 14px;
  }
}


/* === LOFT HALL POLISH ===================================== */
.logo-mark {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.about-stat-btn {
  background: var(--bg-elevated);
  border: 1px solid rgba(239,214,196,0.22);
  border-radius: var(--radius-sm);
  color: var(--text);
}
.about-stat-btn:hover {
  background: #1a1a1a;
  box-shadow: none;
  border-color: var(--cream);
}
.about-stat .num {
  background: transparent;
  border: 1px solid rgba(239,214,196,0.35);
  color: var(--cream);
  border-radius: 50%;
}
.about-stat strong {
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.about-stat p { color: var(--muted); }

.menu-set {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: none;
  border: 1px solid var(--line);
}
.menu-set-title { color: var(--cream); font-weight: 400; }
.menu-set-price { color: var(--cream); }
.menu-set-note,
.menu-set-block li,
.menu-set-block strong { color: var(--text); }
.menu-set-line { background: rgba(239,214,196,0.35); }
.menu-promo-plate {
  background: var(--bg-elevated);
  border: 1px solid rgba(239,214,196,0.22);
  color: var(--cream);
  border-radius: 999px;
}

.promo-banner {
  background: rgba(0,0,0,0.72);
  border-top: 1px solid var(--cream);
  box-shadow: none;
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
}
.promo-banner-title { color: var(--cream); font-weight: 300; letter-spacing: 0.06em; }
.promo-banner-text { color: rgba(255,255,255,0.78); }
.promo-hero .promo-dot.is-active { background: var(--cream); }
.promo-controls .hall-slider-btn {
  background: rgba(0,0,0,0.45);
  color: var(--cream);
  border: 1px solid rgba(239,214,196,0.35);
}

.promo-card {
  background: var(--bg-elevated);
  border-left: 1px solid var(--cream);
  box-shadow: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.promo-card h3 { color: var(--cream); font-weight: 400; }
.promo-card p { color: var(--muted); }
.promo-card-photo {
  margin: -22px -20px 16px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.promo-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: stretch;
}
.promo-offer {
  padding: 28px 22px;
  border: 1px solid rgba(239,214,196,0.22);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  min-height: 180px;
}
.promo-offer-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(239,214,196,0.55);
  margin-bottom: 14px;
}
.promo-offer h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--cream);
  text-transform: none;
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.promo-offer p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.55;
}
.promo-offer-featured {
  padding-top: 0;
  overflow: hidden;
}
.promo-offer-photo {
  margin: 0 -22px 18px;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #111;
}
.promo-offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
@media (max-width: 991px) {
  .promo-offers { grid-template-columns: 1fr; }
  .promo-offer-photo { aspect-ratio: 16 / 9; max-height: 220px; }
}

.review { border-top-color: var(--line); }
.review blockquote { color: var(--text); }
.review-author { color: var(--cream); }
.review-stars { color: var(--cream); }
a.review-link:hover { background: rgba(239,214,196,0.08); }

.filter-btn {
  background: transparent;
  border-color: rgba(239,214,196,0.28);
  color: var(--cream);
  border-radius: 999px;
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--cream);
  color: #000;
  background: var(--cream);
}

.faq-q { color: var(--cream); }
.faq-a { color: var(--muted); }
.faq-item { border-color: var(--line); }

.case-item {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.case-item h3 { color: var(--cream); }
.case-item p { color: var(--muted); }

.advantage {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.advantage h3 { color: var(--cream); }
.advantage-num {
  background: transparent;
  border: 1px solid rgba(239,214,196,0.35);
  color: var(--cream);
}

.booking-modal-panel {
  background: #111;
  border: 1px solid rgba(239,214,196,0.2);
  border-radius: var(--radius-sm);
  color: var(--text);
}
.booking-modal-panel h3 { color: var(--cream); }
.booking-modal-close { color: var(--cream); }
.booking-form input,
.booking-form select {
  background: #0a0a0a;
  border-color: #333;
  color: #fff;
  border-radius: 10px;
}

.contact-map {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--muted);
}
.contact-map strong { color: var(--cream) !important; }

.site-footer {
  background: #000;
  border-top: 1px solid rgba(239,214,196,0.12);
}
.footer-brand { color: var(--cream) !important; }
.site-footer h4 { color: var(--cream); letter-spacing: 0.1em; }
.site-footer a { color: rgba(255,255,255,0.72); }
.footer-bottom { border-top: 1px solid rgba(239,214,196,0.1); color: var(--muted); }

.ornament {
  width: 48px;
  height: 1px;
  background: rgba(239,214,196,0.45);
  border: 0;
  margin: 12px 0 18px;
}

.chip {
  background: transparent;
  border: 1px solid rgba(239,214,196,0.3);
  color: var(--cream);
  border-radius: 999px;
}
.chip.active,
.chip:hover {
  background: var(--cream);
  color: #000;
  border-color: var(--cream);
}
.wizard,
.wizard-step {
  border-color: var(--line);
}
.result-item { border-bottom-color: var(--line); }
.mobile-cta {
  background: rgba(0,0,0,0.92);
  border-top: 1px solid rgba(239,214,196,0.15);
}

@media (max-width: 1100px) {
  .halls-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
  .halls-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .halls-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hall-card { aspect-ratio: 3 / 4; min-height: 0; }
  .hall-card-caption { padding: 48px 12px 12px; }
  .hall-card-name { font-size: 14px; letter-spacing: 0.08em; }
  .hall-card-meta { font-size: 10px; }
  .hall-card-arrow { width: 28px; height: 28px; font-size: 13px; }
  .hall-slider { display: none !important; }
}
@media (max-width: 420px) {
  .halls-grid { grid-template-columns: 1fr; }
}

/* === TZ 2026 layout blocks ================================= */
.hero-main {
  position: relative;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #000;
}
.hero-main-media {
  position: absolute;
  inset: 0;
}
.hero-main-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-main-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.2) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
}
.hero-main-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 0 56px;
}
.hero-main-card {
  max-width: 640px;
}
.hero-main-promo {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
}
.hero-main h1 {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--cream);
  text-transform: none;
}
.hero-main-lead {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  max-width: 46ch;
}
.hero-main-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.why-points {
  display: grid;
  gap: 16px;
}
.why-point {
  padding: 22px 20px;
  border: 1px solid rgba(239,214,196,0.2);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
}
.why-point strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 14px;
}
.why-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.promo-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}
.promo-feature-visual {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: #111;
}
.promo-feature-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center 60%;
}
.promo-feature-copy h2 {
  text-transform: none;
  letter-spacing: 0.03em;
}

.history-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.history-stat {
  padding: 28px 18px;
  border: 1px solid rgba(239,214,196,0.18);
  border-radius: var(--radius-sm);
  text-align: center;
  background: var(--bg-elevated);
}
.history-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}
.history-stat span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.35;
}
.history-note {
  max-width: 720px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card {
  padding: 24px 20px;
  border: 1px solid rgba(239,214,196,0.18);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  min-height: 160px;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--cream);
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.lead-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.lead-form {
  display: grid;
  gap: 14px;
}
.lead-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-form label,
.booking-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}
.lead-form input,
.lead-form select,
.lead-form textarea,
.booking-form textarea {
  height: auto;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.lead-form textarea,
.booking-form textarea { resize: vertical; }
.lead-full { grid-column: 1 / -1; }

.management-block {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(239,214,196,0.18);
  border-radius: var(--radius);
  background: var(--bg-elevated);
}
.management-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #1a1a1a;
}
.management-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.management-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 20px;
  line-height: 1.4;
}
.management-placeholder span { color: var(--cream); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.management-photo.is-placeholder .management-placeholder { display: grid; }
.management-name {
  margin: 18px 0 6px;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.management-phone {
  display: inline-block;
  margin-bottom: 4px;
  font-size: 22px;
  color: #fff;
  font-weight: 300;
}
.messenger-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 16px;
}
.messenger-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(239,214,196,0.4);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.messenger-link:hover {
  background: var(--cream);
  color: #000;
  border-color: var(--cream);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.video-card a {
  display: block;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.video-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.halls-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.hall-card {
  aspect-ratio: 16 / 11;
}

@media (max-width: 991px) {
  .why-grid,
  .promo-feature,
  .lead-wrap,
  .management-block {
    grid-template-columns: 1fr;
  }
  .history-stats { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .halls-grid { grid-template-columns: 1fr 1fr; }
  .hero-main { min-height: 100svh; }
  .hero-main-copy { padding: 88px 0 40px; }
  .hero-main h1 { font-size: clamp(26px, 7vw, 36px); }
  .promo-feature-visual,
  .promo-feature-visual img { min-height: 280px; }
}
@media (max-width: 640px) {
  .services-grid,
  .video-grid,
  .lead-form-grid { grid-template-columns: 1fr; }
  .halls-grid { grid-template-columns: 1fr; }
  .hall-card { aspect-ratio: 4 / 5; }
  .history-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
}

/* Hall circles on hero */
.hero-brand {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}
.hall-circles {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  margin-top: 36px;
  max-width: 720px;
}
.hall-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 72px;
  text-decoration: none;
  color: #fff;
  transition: transform .2s var(--ease);
}
.hall-circle:hover { transform: translateY(-3px); }
.hall-circle-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(239,214,196,0.55);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.35);
  background: #222;
}
.hall-circle-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hall-circle-name {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  color: rgba(255,255,255,0.88);
  max-width: 72px;
}
.hall-circle:hover .hall-circle-photo {
  border-color: var(--cream);
}

.why-points-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.owner-block {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: center;
}
.owner-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(239,214,196,0.18);
}
.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.owner-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  padding: 20px;
  line-height: 1.4;
}
.owner-placeholder span {
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.owner-photo.is-placeholder .owner-placeholder { display: grid; }
.owner-copy h2 {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: clamp(26px, 3.2vw, 38px);
}

@media (max-width: 991px) {
  .why-points-row { grid-template-columns: 1fr 1fr; }
  .owner-block { grid-template-columns: 1fr; }
  .owner-photo { max-width: 280px; }
  .hall-circles {
    margin-top: 28px;
    gap: 12px;
    max-width: 100%;
  }
  .hall-circle { width: 64px; }
  .hall-circle-photo { width: 56px; height: 56px; }
  .hall-circle-name { font-size: 9px; max-width: 64px; }
}
@media (max-width: 520px) {
  .why-points-row { grid-template-columns: 1fr; }
  .hero-main-copy { padding-bottom: 32px; }
  .hall-circles { justify-content: flex-start; }
}

/* Full-screen hall orbs (Loft Hall style) */
.halls-stage {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: #000;
  padding-bottom: 28px;
}
.halls-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.halls-stage-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: brightness(0.35) saturate(0.85);
  transition: opacity .5s ease;
}
.halls-stage-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.72) 70%),
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 35%, rgba(0,0,0,0.75) 100%);
}
.halls-stage-top {
  position: relative;
  z-index: 3;
  padding-top: calc(var(--header-h) + 18px);
  margin-bottom: auto;
}
.halls-stage-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.halls-stage-offer {
  margin: 0 0 8px;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-transform: none;
}
.halls-stage-promo {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}
.halls-stage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.halls-stage-track {
  position: relative;
  z-index: 3;
  display: flex;
  gap: clamp(16px, 2.5vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(20px, calc((100vw - var(--container)) / 2));
  padding: 12px max(20px, calc((100vw - var(--container)) / 2)) 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.halls-stage-track::-webkit-scrollbar { display: none; }
.hall-orb {
  position: relative;
  flex: 0 0 auto;
  width: min(72vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  scroll-snap-align: center;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
  border: 1px solid rgba(239,214,196,0.22);
  transition: transform .35s var(--ease), border-color .25s;
}
.hall-orb:hover {
  transform: scale(1.02);
  border-color: var(--cream);
}
.hall-orb-media,
.hall-orb-shade {
  position: absolute;
  inset: 0;
}
.hall-orb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hall-orb-shade {
  background:
    radial-gradient(circle at 50% 40%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.75) 100%);
}
.hall-orb-badge { display: none !important; }
.hall-orb-body {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 16%;
  z-index: 2;
  text-align: center;
}
.hall-orb-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #fff;
}
.hall-orb-meta {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.35;
  white-space: nowrap;
}
.hall-orb-price { display: none; }
.halls-stage-hint {
  position: relative;
  z-index: 3;
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.page-hero-mini {
  padding: calc(var(--header-h) + 3rem) 0 2rem;
  border-bottom: 1px solid rgba(239,214,196,0.12);
}
.page-hero-mini h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  margin: 0 0 12px;
  text-transform: none;
  letter-spacing: 0.04em;
}
.content-narrow { max-width: 760px; }
.content-narrow h2 { text-transform: none; letter-spacing: 0.03em; }
.owner-role {
  margin: -4px 0 12px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(239,214,196,0.75);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pillar-card {
  padding: 24px 20px;
  border: 1px solid rgba(239,214,196,0.18);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  min-height: 150px;
}
.pillar-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--cream);
}
.pillar-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.inner-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.inner-tab {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border: 1px solid rgba(239,214,196,0.35);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.inner-tab.is-active,
.inner-tab:hover {
  background: var(--cream);
  color: #000;
  border-color: var(--cream);
}

@media (max-width: 991px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .hall-orb { width: min(78vw, 340px); }
  .halls-stage-offer { max-width: 100%; }
}
@media (max-width: 640px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .halls-stage { min-height: 100svh; padding-bottom: 18px; }
  .hall-orb { width: min(85vw, 320px); }
  .halls-stage-actions { width: 100%; }
  .halls-stage-actions .btn { flex: 1; }
}

/* === Mobile UX polish + owner compact ===================== */
.review-hall-filters { margin-top: 1.25rem; margin-bottom: 1.25rem; }

@media (max-width: 768px) {
  .section { padding: 36px 0; }
  .section-tight { padding: 28px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: clamp(22px, 6vw, 30px); }

  /* Owner: small avatar first, text readable — not full-page portrait */
  .owner-block {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .owner-photo {
    width: 88px;
    height: 88px;
    aspect-ratio: 1;
    border-radius: 50%;
    order: 0;
    flex-shrink: 0;
    border: 1px solid rgba(239,214,196,0.35);
  }
  .owner-copy { order: 1; }
  .owner-copy h2 { font-size: 22px; margin-bottom: 4px; }
  .owner-copy .btn { width: 100%; }

  /* Management: same compact mobile pattern */
  .management-block {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px;
  }
  .management-photo {
    width: 88px;
    height: 88px;
    aspect-ratio: 1;
    border-radius: 50%;
  }
  .management-phone { font-size: 18px; }

  /* Promo / media: no giant 16:9 slabs */
  .promo-feature {
    gap: 18px;
  }
  .promo-feature-visual,
  .promo-feature-visual img {
    min-height: 0 !important;
    max-height: 200px;
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-sm);
  }
  .media-band { gap: 18px; }
  .media-band-visual {
    aspect-ratio: auto;
    max-height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
  }
  .media-band-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* Hall cards compact on mobile */
  .halls-grid { gap: 12px; }
  .hall-card {
    aspect-ratio: 5 / 4 !important;
    max-height: 220px;
  }

  /* Cases / stories */
  .case-item-media {
    max-height: 160px;
    overflow: hidden;
  }
  .case-item-media img {
    width: 100%;
    height: 160px;
    object-fit: cover;
  }
  .video-card a {
    aspect-ratio: 16 / 9;
    max-height: 180px;
  }

  /* Hero stage: fit offer + one big orb without endless empty photo */
  .halls-stage {
    min-height: auto;
    padding-bottom: 16px;
  }
  .halls-stage-top { padding-top: calc(var(--header-h) + 12px); }
  .halls-stage-offer {
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 6px;
  }
  .hall-orb {
    width: min(78vw, 280px);
  }
  .hall-orb-name { font-size: 20px; }
  .page-hero {
    height: min(52vw, 280px) !important;
    min-height: 220px !important;
  }
  .page-hero-mini { padding: calc(var(--header-h) + 1.5rem) 0 1.25rem; }
  .promo-slide,
  .promo-slide-copy {
    min-height: 0 !important;
  }
  .lead-wrap { gap: 20px; }
  .why-points-row { gap: 10px; }
  .history-stats { gap: 10px; }
  .history-stat { padding: 18px 12px; }
  .service-card { min-height: 0; padding: 18px 16px; }
  .menu-set-photo {
    width: 100%;
    aspect-ratio: 16 / 10;
    max-height: 220px;
  }
  .menu-set-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .menu-catalog-grid { grid-template-columns: 1fr; }
  .menu-set-title { font-size: 22px; }
  .gallery-strip,
  .gallery-strip-food {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gallery-strip a,
  .gallery-shot {
    aspect-ratio: 16 / 10;
    max-height: none;
    width: 100%;
  }
  .gallery-strip img,
  .gallery-shot img {
    max-height: none;
    width: 100%;
    height: 100%;
  }
  .similar-halls {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .case-item-wide {
    grid-template-columns: 1fr;
  }
  .case-item-wide .case-item-media {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .case-item-wide .case-item-media img {
    height: 100%;
    max-height: none;
  }
  .halls-grid-home {
    grid-template-columns: 1fr;
  }
  .halls-grid-home .hall-card {
    aspect-ratio: 16 / 10 !important;
    max-height: none;
  }
}

@media (max-width: 480px) {
  .hall-orb { width: min(82vw, 260px); }
  .promo-feature-visual,
  .promo-feature-visual img,
  .media-band-visual img {
    max-height: 170px;
    height: 170px;
  }
}

/* === Loft-style inner pages: ovals, circles, motion ========= */
.loft-page {
  overflow-x: clip;
}
.loft-layout {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  align-items: start;
}
.loft-side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: calc(var(--header-h) + 40px) 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 5;
}
.loft-side a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239,214,196,0.45);
  transition: color 0.3s ease;
}
.loft-side a:hover,
.loft-side a.is-active {
  color: var(--cream);
}
.loft-main {
  min-width: 0;
  padding-bottom: 80px;
}
.loft-hero {
  padding: calc(var(--header-h) + 48px) 4vw 32px 0;
}
.loft-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 12vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--cream);
  margin: 0 0 28px;
  text-transform: none;
}
.loft-hero-lead {
  max-width: 62ch;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 18px;
  font-weight: 300;
}
.loft-hero-lead + .loft-hero-lead { margin-top: 0; }
.loft-section {
  padding: 56px 4vw 56px 0;
  position: relative;
}
.loft-section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 20px;
  text-transform: none;
  letter-spacing: 0.02em;
  max-width: 18ch;
}
.loft-accent {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 18px;
  max-width: 22ch;
}
.loft-text {
  max-width: 58ch;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
  font-weight: 300;
}
.loft-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}
.loft-split.reverse { direction: rtl; }
.loft-split.reverse > * { direction: ltr; }

/* Overlapping character ovals */
.loft-character {
  position: relative;
  min-height: clamp(320px, 52vw, 560px);
  margin: 24px 0 48px;
}
.loft-character-circles {
  position: relative;
  width: 100%;
  height: clamp(320px, 52vw, 560px);
}
.loft-oval {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(239,214,196,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
  will-change: transform;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}
.loft-oval:hover {
  border-color: rgba(239,214,196,0.65);
  z-index: 5;
}
.loft-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.loft-oval:hover img { transform: scale(1.1); }
.loft-oval-label {
  position: absolute;
  inset: auto 8% 12%;
  text-align: center;
  font-size: clamp(11px, 2.2vw, 15px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.85);
  pointer-events: none;
  z-index: 2;
  font-weight: 500;
  line-height: 1.2;
}
.loft-oval::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 70%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.loft-oval-1 {
  width: clamp(160px, 28vw, 300px);
  height: clamp(160px, 28vw, 300px);
  left: 2%;
  top: 8%;
  z-index: 2;
  animation: loftFloatA 7s ease-in-out infinite;
}
.loft-oval-2 {
  width: clamp(200px, 34vw, 380px);
  height: clamp(200px, 34vw, 380px);
  left: 28%;
  top: 0;
  z-index: 3;
  animation: loftFloatB 8.5s ease-in-out infinite;
}
.loft-oval-3 {
  width: clamp(150px, 26vw, 280px);
  height: clamp(150px, 26vw, 280px);
  right: 18%;
  bottom: 4%;
  z-index: 2;
  animation: loftFloatA 9s ease-in-out infinite reverse;
}
.loft-oval-4 {
  width: clamp(130px, 22vw, 240px);
  height: clamp(130px, 22vw, 240px);
  right: 2%;
  top: 18%;
  z-index: 1;
  animation: loftFloatB 6.5s ease-in-out infinite;
}
@keyframes loftFloatA {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes loftFloatB {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(1deg); }
}

/* Statement ovals */
.loft-statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 36px);
  margin-top: 36px;
}
.loft-statement {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(239,214,196,0.28);
  background:
    radial-gradient(circle at 35% 30%, rgba(239,214,196,0.12), transparent 55%),
    rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18%;
  transition: border-color 0.4s ease, transform 0.5s ease;
}
.loft-statement:hover {
  border-color: rgba(239,214,196,0.55);
  transform: translateY(-6px);
}
.loft-statement h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--cream);
  margin: 0 0 10px;
  text-transform: none;
  letter-spacing: 0.02em;
}
.loft-statement p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255,255,255,0.68);
  font-weight: 300;
}

/* Media line of circles */
.loft-media-line {
  display: flex;
  gap: clamp(10px, 2vw, 24px);
  overflow-x: auto;
  padding: 28px 0 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.loft-media-line::-webkit-scrollbar { height: 0; }
.loft-media-dot {
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 240px);
  height: clamp(140px, 22vw, 240px);
  border-radius: 50%;
  overflow: hidden;
  scroll-snap-align: center;
  border: 1px solid rgba(239,214,196,0.2);
  animation: loftFloatA 6s ease-in-out infinite;
}
.loft-media-dot:nth-child(2n) { animation-delay: -2s; animation-name: loftFloatB; }
.loft-media-dot:nth-child(3n) { margin-top: 28px; }
.loft-media-dot:nth-child(4n) { margin-top: 8px; }
.loft-media-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Feature row with oval */
.loft-feature {
  display: grid;
  grid-template-columns: minmax(140px, 280px) 1fr;
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
  margin: 36px 0;
}
.loft-feature.reverse { grid-template-columns: 1fr minmax(140px, 280px); }
.loft-feature.reverse .loft-feature-oval { order: 2; }
.loft-feature-oval {
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(239,214,196,0.25);
  justify-self: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.loft-feature-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.loft-feature h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(22px, 3vw, 32px);
  color: var(--cream);
  margin: 0 0 12px;
  text-transform: none;
}
.loft-owner-oval {
  width: min(100%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(239,214,196,0.35);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  justify-self: center;
}
.loft-owner-oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

/* Halls oval gallery */
.loft-halls-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  padding: 20px 0 40px;
}
.loft-hall-oval {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.loft-hall-oval-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(239,214,196,0.25);
  position: relative;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s ease;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.loft-hall-oval:hover .loft-hall-oval-photo {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(239,214,196,0.65);
}
.loft-hall-oval-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.loft-hall-oval:hover .loft-hall-oval-photo img { transform: scale(1.08); }
.loft-hall-oval-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 75%, transparent 25%, rgba(0,0,0,0.5) 100%);
}
.loft-hall-oval-meta {
  text-align: center;
}
.loft-hall-oval-meta strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--cream);
  letter-spacing: 0.03em;
}
.loft-hall-oval-meta span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.loft-hall-oval:nth-child(even) { margin-top: 36px; }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

.loft-cta-band {
  margin-top: 48px;
  padding: 40px 0 0;
  border-top: 1px solid rgba(239,214,196,0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.loft-cta-band p {
  margin: 0;
  max-width: 42ch;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
}

@media (max-width: 991px) {
  .loft-layout { grid-template-columns: 1fr; }
  .loft-side {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: calc(var(--header-h) + 16px) 4vw 0;
    gap: 14px 18px;
  }
  .loft-side a {
    writing-mode: horizontal-tb;
    transform: none;
  }
  .loft-hero,
  .loft-section { padding-left: 4vw; padding-right: 4vw; }
  .loft-split,
  .loft-split.reverse { grid-template-columns: 1fr; direction: ltr; }
  .loft-feature,
  .loft-feature.reverse { grid-template-columns: 1fr; }
  .loft-feature.reverse .loft-feature-oval { order: 0; }
  .loft-feature-oval,
  .loft-owner-oval { width: min(72vw, 260px); }
  .loft-statements { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; }
  .loft-halls-grid { grid-template-columns: repeat(2, 1fr); }
  .loft-hall-oval:nth-child(even) { margin-top: 0; }
  .loft-hall-oval:nth-child(4n+2),
  .loft-hall-oval:nth-child(4n+3) { margin-top: 24px; }
  .loft-character { min-height: 360px; }
  .loft-character-circles { height: 360px; }
}
@media (max-width: 640px) {
  .loft-hero-title { font-size: clamp(44px, 16vw, 72px); }
  .loft-owner-oval {
    width: 96px;
    justify-self: start;
  }
  .loft-feature-oval { width: 120px; justify-self: start; }
  .loft-oval-1 { width: 120px; height: 120px; }
  .loft-oval-2 { width: 160px; height: 160px; left: 22%; }
  .loft-oval-3 { width: 110px; height: 110px; }
  .loft-oval-4 { width: 96px; height: 96px; }
  .loft-character,
  .loft-character-circles { height: 280px; min-height: 280px; }
  .loft-media-dot { width: 120px; height: 120px; }
  .loft-statements { max-width: 260px; }
  .loft-halls-grid { grid-template-columns: repeat(2, 1fr); gap: 18px 12px; }
}
