/* ============================================
   ASAKI HALL — Premium Banquet Hall CSS
   ============================================ */

:root {
  --gold: #c9a84c;
  --gold-light: #e0c97a;
  --gold-dark: #a07830;
  --dark: #0f0f1a;
  --dark-2: #1a1a2e;
  --dark-3: #16213e;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-light: #f9f8f5;
  --bg-dark: #0f0f1a;
  --border: #e5e7eb;
  --border-light: #f3f4f6;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.gold { color: var(--gold); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold); color: #fff;
  box-shadow: 0 4px 16px rgba(201,168,76,.35);
}
.btn-gold:hover { background: var(--gold-dark); box-shadow: 0 6px 24px rgba(201,168,76,.5); transform: translateY(-2px); }
.btn-outline-dark { border: 2px solid var(--dark); color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: #fff; }
.btn-outline-light { border: 2px solid rgba(255,255,255,.7); color: #fff; }
.btn-outline-light:hover { background: rgba(255,255,255,.15); }
.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============ SECTION ============ */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-badge {
  display: inline-block; padding: 6px 16px;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; border-radius: 2px;
}
.section-title { color: var(--dark-2); margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-action { text-align: center; margin-top: 48px; }

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,.2);
  transition: var(--transition);
}
.site-header.scrolled {
  background: rgba(15,15,26,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-text { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--gold); letter-spacing: 0.15em; }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,.5); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 2px; }
.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 32px; }
.main-nav a {
  color: rgba(255,255,255,.8); font-size: 0.85rem; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); border-bottom-color: var(--gold); }
.header-contacts { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.header-phone { color: #fff; font-size: 0.9rem; font-weight: 500; }
.header-phone:hover { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: #fff; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,10,20,.75) 0%, rgba(10,10,20,.5) 50%, rgba(10,10,20,.7) 100%);
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-content {
  position: relative; z-index: 2;
  color: #fff; padding-top: 72px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block; padding: 8px 20px;
  border: 1px solid rgba(201,168,76,.6);
  color: var(--gold); font-size: 0.75rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 24px; border-radius: 2px;
  backdrop-filter: blur(4px);
}
.hero-title { color: #fff; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.85); margin-bottom: 36px; line-height: 1.7; }
.hero-subtitle strong { color: var(--gold); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; text-align: center; cursor: pointer;
  color: rgba(255,255,255,.6); font-size: 0.75rem; letter-spacing: 0.1em;
}
.scroll-arrow {
  width: 24px; height: 24px; margin: 8px auto 0;
  border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(45deg); animation: scrollBounce 1.5s ease infinite;
}
@keyframes scrollBounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(6px)} }

/* ============ CONTACTS STRIP ============ */
.contacts-strip {
  background: var(--dark-2);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.contacts-strip-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.strip-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: 0.85rem; }
.strip-item svg { color: var(--gold); flex-shrink: 0; }
.strip-item a:hover { color: var(--gold); }
.strip-actions { display: flex; gap: 12px; margin-left: auto; }
.strip-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 500; transition: var(--transition);
}
.strip-wa { background: #25d366; color: #fff; }
.strip-wa:hover { background: #1da851; }
.strip-tg { background: #2aabee; color: #fff; }
.strip-tg:hover { background: #1a95d8; }

/* ============ HALLS SECTION ============ */
.halls-section { background: var(--bg-light); }
.halls-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(480px, 1fr)); gap: 32px; }
.hall-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.hall-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.hall-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.hall-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.hall-card:hover .hall-card-image img { transform: scale(1.05); }
.hall-card-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--gold); color: #fff;
  padding: 6px 14px; border-radius: var(--radius);
  font-size: 0.8rem; font-weight: 600;
}
.hall-card-body { padding: 28px; }
.hall-card-title { font-size: 1.6rem; color: var(--dark-2); margin-bottom: 10px; }
.hall-card-desc { color: var(--text-muted); margin-bottom: 18px; line-height: 1.6; }
.hall-features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 24px; }
.hall-features li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text); }
.hall-features svg { color: var(--gold); flex-shrink: 0; }
.hall-card-footer { display: flex; align-items: center; justify-content: space-between; }
.price-from { font-size: 0.8rem; color: var(--text-muted); }
.price-val { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--dark-2); margin-left: 4px; }

/* ============ WHY SECTION ============ */
.why-section { background: var(--dark-2); }
.why-section .section-badge { border-color: rgba(201,168,76,.5); }
.why-section .section-title { color: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.why-card {
  padding: 32px; border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg); transition: var(--transition);
}
.why-card:hover { border-color: rgba(201,168,76,.4); background: rgba(201,168,76,.05); transform: translateY(-4px); }
.why-icon { color: var(--gold); margin-bottom: 20px; }
.why-card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,.6); font-size: 0.9rem; line-height: 1.7; }

/* ============ GALLERY PREVIEW ============ */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}
.gallery-item {
  position: relative; overflow: hidden;
  border-radius: var(--radius); cursor: pointer;
}
.gallery-item:nth-child(5n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-placeholder { text-align: center; padding: 48px; color: var(--text-muted); }

/* ============ EVENTS ============ */
.events-section { background: var(--bg-light); }
.events-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.event-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.event-card-image img { width: 100%; height: 100%; object-fit: cover; }
.event-date-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: #fff; text-align: center;
  padding: 8px 12px; border-radius: var(--radius); min-width: 52px;
}
.event-day { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; line-height: 1; }
.event-month { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event-card-body { padding: 20px; }
.event-title { font-size: 1.2rem; color: var(--dark-2); margin-bottom: 8px; }
.event-meta { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.event-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 16px; }
.event-card-footer { display: flex; align-items: center; justify-content: space-between; }
.event-price { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--gold); }

/* ============ REVIEWS ============ */
.reviews-section { background: #fff; }
.yandex-rating { display: flex; align-items: center; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 12px; }
.rating-stars { color: #ffbb00; font-size: 1.2rem; letter-spacing: 2px; }
.yandex-rating span { font-size: 0.9rem; color: var(--text-muted); }
.reviews-link { color: var(--gold); font-size: 0.85rem; border-bottom: 1px solid transparent; }
.reviews-link:hover { border-bottom-color: var(--gold); }
.reviews-slider {
  display: flex; gap: 24px;
  overflow: hidden; transition: transform 0.4s ease;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--bg-light);
  padding: 28px; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.review-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-author { font-weight: 600; font-size: 0.95rem; color: var(--dark-2); }
.review-event { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.review-rating { color: #ffbb00; font-size: 1rem; white-space: nowrap; }
.star-filled { color: #ffbb00; }
.star-empty { color: #d1d5db; }
.review-text { color: var(--text); font-size: 0.9rem; line-height: 1.7; margin-bottom: 12px; }
.review-source { display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: var(--text-muted); }
.reviews-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.reviews-prev, .reviews-next {
  width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border); background: #fff;
  font-size: 1.2rem; color: var(--dark-2);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.reviews-prev:hover, .reviews-next:hover { border-color: var(--gold); color: var(--gold); }

/* ============ CTA ============ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-text h2 { color: #fff; font-size: clamp(1.6rem, 2.5vw, 2.4rem); margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,.7); font-size: 1rem; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; flex-wrap: wrap; }

/* ============ MAP ============ */
.map-section { padding: 80px 0 0; }
.map-wrapper { margin-top: 48px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow: hidden; }
.map-wrapper iframe { display: block; }

/* ============ GALLERY PAGE ============ */
.gallery-filter { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 22px; border-radius: 24px;
  border: 2px solid var(--border); color: var(--text-muted);
  font-size: 0.85rem; font-weight: 500; transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.05); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.gallery-grid-item {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-md); cursor: pointer;
  position: relative;
}
.gallery-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-grid-item:hover img { transform: scale(1.06); }

/* ============ HALLS DETAIL ============ */
.hall-hero {
  padding-top: 72px; background: var(--dark-2);
  min-height: 60vh; position: relative;
  display: flex; align-items: flex-end;
}
.hall-hero-bg { position: absolute; inset: 0; }
.hall-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .4; }
.hall-hero-content { position: relative; z-index: 1; padding: 60px 0; color: #fff; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--gold); }
.hall-capacity-badges { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.capacity-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  padding: 10px 20px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 0.9rem;
}
.capacity-badge svg { color: var(--gold); }

/* ============ CONTACTS PAGE ============ */
.contacts-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start; }
.contact-info-card {
  background: var(--bg-light); padding: 40px;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 44px; height: 44px; background: rgba(201,168,76,.1);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contact-info-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contact-info-value { font-size: 1rem; font-weight: 500; color: var(--dark-2); }
.contact-info-value a:hover { color: var(--gold); }
.wa-tg-btns { display: flex; gap: 12px; margin-top: 28px; }
.btn-wa { background: #25d366; color: #fff; }
.btn-wa:hover { background: #1da851; }
.btn-tg { background: #2aabee; color: #fff; }
.btn-tg:hover { background: #1a95d8; }
.contact-form { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.6rem; color: var(--dark-2); margin-bottom: 8px; }
.contact-form p { color: var(--text-muted); margin-bottom: 28px; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; color: var(--text); background: #fff;
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.15); }
select.form-control { cursor: pointer; }
.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }
.form-note a { color: var(--gold); }

/* ============ MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px; max-width: 480px; width: 100%;
  position: relative; transform: translateY(20px); transition: transform .3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px; font-size: 1.4rem;
  color: var(--text-muted); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.modal-close:hover { background: var(--bg-light); color: var(--dark-2); }
.modal-title { font-size: 1.8rem; color: var(--dark-2); margin-bottom: 6px; }
.modal-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }

/* ============ FLOATING BUTTONS ============ */
.float-contacts {
  position: fixed; right: 20px; bottom: 80px; z-index: 500;
  display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25); transition: var(--transition);
  color: #fff;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.float-wa { background: #25d366; }
.float-tg { background: #2aabee; }

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.9);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius-md); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 2rem; color: rgba(255,255,255,.8); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { color: #fff; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); padding: 72px 0 0; color: rgba(255,255,255,.7); }
.footer-logo { display: inline-flex; flex-direction: column; margin-bottom: 16px; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 20px; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-nav a:hover { color: var(--gold); }
.footer-address { font-style: normal; }
.footer-address p { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; margin-bottom: 12px; line-height: 1.5; }
.footer-address svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-address a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,.4); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a:hover { color: var(--gold); }

/* ============ ADMIN ============ */
.admin-body { background: #f3f4f6; font-family: var(--font-body); }
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 260px; background: var(--dark-2);
  padding: 0; z-index: 100; overflow-y: auto;
}
.admin-sidebar-header { padding: 24px 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.admin-main { margin-left: 260px; min-height: 100vh; }
.admin-topbar {
  background: #fff; padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.admin-content { padding: 28px; }
.admin-nav { padding: 16px 0; }
.admin-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; color: rgba(255,255,255,.65);
  font-size: 0.9rem; transition: var(--transition);
}
.admin-nav-item:hover, .admin-nav-item.active {
  color: #fff; background: rgba(255,255,255,.08);
  border-left: 3px solid var(--gold);
}
.admin-nav-item svg { flex-shrink: 0; }
.admin-nav-section {
  padding: 16px 20px 6px;
  font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,.3);
}
.stat-card {
  background: #fff; padding: 24px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
}
.stat-card-num { font-family: var(--font-head); font-size: 2.4rem; font-weight: 700; color: var(--dark-2); line-height: 1; }
.stat-card-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 6px; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 28px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--bg-light); padding: 14px 16px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 14px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.875rem; color: var(--text); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-light); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 12px; font-size: 0.75rem; font-weight: 600; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info { background: #dbeafe; color: #1e40af; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.admin-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 24px; margin-bottom: 24px; }
.admin-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.admin-card-title { font-size: 1.1rem; font-weight: 600; color: var(--dark-2); }

/* ============ PAGE HEADER ============ */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* ============ SEO PAGE ============ */
.seo-content { padding: 60px 0; }
.seo-content h2 { font-size: 1.8rem; color: var(--dark-2); margin: 32px 0 16px; }
.seo-content h3 { font-size: 1.3rem; color: var(--dark-2); margin: 24px 0 12px; }
.seo-content p { color: var(--text); line-height: 1.8; margin-bottom: 16px; }
.seo-content ul { margin: 16px 0 24px 20px; }
.seo-content ul li { color: var(--text); margin-bottom: 8px; list-style: disc; }
.seo-content strong { color: var(--dark-2); }

/* ============ ALERTS ============ */
.alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: 0.9rem; }
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ============ PAGINATION ============ */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.page-link {
  width: 40px; height: 40px; border-radius: var(--radius);
  border: 2px solid var(--border); background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; color: var(--text); transition: var(--transition);
}
.page-link.active, .page-link:hover { border-color: var(--gold); color: var(--gold); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .halls-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .review-card { flex: 0 0 calc(50% - 12px); }
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .main-nav, .header-contacts { display: none; }
  .burger { display: flex; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry .gallery-item:nth-child(5n+1) { grid-column: span 1; grid-row: span 1; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .review-card { flex: 0 0 100%; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .strip-actions { width: 100%; }
  .contacts-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ============ MOBILE NAV ============ */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--dark-2);
  display: flex; flex-direction: column;
  padding: 80px 32px 40px;
  transform: translateX(100%); transition: transform .4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { flex: 1; }
.mobile-nav ul li { border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav ul a {
  display: block; padding: 18px 0;
  font-family: var(--font-head); font-size: 1.4rem; color: rgba(255,255,255,.8);
  transition: var(--transition);
}
.mobile-nav ul a:hover { color: var(--gold); }
.mobile-nav-contacts { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav-contacts a { color: rgba(255,255,255,.7); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; }
.mobile-nav-close {
  position: absolute; top: 20px; right: 20px;
  color: rgba(255,255,255,.7); font-size: 1.6rem; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
