/* =============================================
   ЖК ГЕНЕРАЛ — Premium Landing Page Styles
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96B;
  --gold-dark: #A07838;
  --gold-alpha: rgba(201, 168, 76, 0.15);
  --gold-alpha-hover: rgba(201, 168, 76, 0.25);

  --dark-900: #0A0A0F;
  --dark-800: #0F0F1A;
  --dark-700: #141424;
  --dark-600: #1A1A30;
  --dark-500: #222240;
  --dark-400: #2A2A50;

  --text-primary: #F0EDE8;
  --text-secondary: rgba(240, 237, 232, 0.7);
  --text-muted: rgba(240, 237, 232, 0.45);

  --border: rgba(201, 168, 76, 0.2);
  --border-subtle: rgba(201, 168, 76, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.15);
  --shadow-dark: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);

  --nav-height: 76px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s 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: 'Inter', system-ui, sans-serif;
  background: var(--dark-900);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-800); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ==================== TYPOGRAPHY ==================== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-tag.light { color: rgba(255,255,255,0.8); }
.section-tag.light::before { background: rgba(255,255,255,0.5); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .section-tag { margin: 0 auto 1rem; }
.section-header .section-tag::before { display: none; }
.section-header .section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}
.section-header .section-subtitle { margin: 0 auto; }

/* ==================== CONTAINER ==================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ==================== BUTTONS ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,168,76,0.4); }
.btn-primary:active { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-primary svg { position: relative; z-index: 1; }
.btn-primary.large { padding: 18px 48px; font-size: 1rem; border-radius: var(--radius-md); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid var(--border);
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-alpha);
  transform: translateY(-2px);
}
.btn-ghost.large { padding: 18px 48px; font-size: 1rem; border-radius: var(--radius-md); }

/* ==================== NAVIGATION ==================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon { flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.1em;
}
.nav-logo-sub {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  display: flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}
.nav-mobile a:hover { color: var(--gold); padding-left: 8px; }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--nav-height) 40px 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 100%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(160deg, var(--dark-900) 0%, #0d0d1e 40%, #080812 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  animation: float linear infinite;
  opacity: 0;
}
@keyframes float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  background: var(--gold-alpha);
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}
.hero-title-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-secondary);
  line-height: 2;
}
.hero-title-big {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}
.hero-title-big::after {
  content: 'ГЕНЕРАЛ';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(30px);
  opacity: 0.3;
  z-index: -1;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==================== ABOUT ==================== */
.about {
  padding: 100px 0;
  background: var(--dark-800);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 30%;
  bottom: 25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
}
.about-img-side {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 40%;
  top: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.about-img-main img,
.about-img-side img {
  transition: transform 0.6s ease;
}
.about-img-main:hover img,
.about-img-side:hover img {
  transform: scale(1.05);
}
.about-img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  border: 1px solid var(--border-subtle);
}
.about-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--gold-alpha);
  transition: var(--transition-fast);
}
.chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-alpha-hover);
}

/* ==================== LOBBY ==================== */
.lobby {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.lobby-bg {
  position: absolute;
  inset: 0;
}
.lobby-bg img { object-position: center 30%; }
.lobby-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,15,0.95) 0%,
    rgba(10,10,15,0.6) 40%,
    rgba(10,10,15,0.2) 100%
  );
}
.lobby-content {
  position: relative;
  z-index: 2;
  padding: 60px 80px;
  max-width: 700px;
}
.lobby-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.lobby-title em { font-style: italic; color: var(--gold); }
.lobby-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 500px;
}

/* ==================== FEATURES ==================== */
.features {
  padding: 100px 0;
  background: var(--dark-900);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
}
.feature-card {
  padding: 2.5rem 2rem;
  background: var(--dark-800);
  border: 1px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover {
  background: var(--dark-700);
  border-color: var(--border);
  transform: translateY(-4px);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--gold-alpha);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition-fast);
}
.feature-card:hover .feature-icon {
  background: var(--gold-alpha-hover);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==================== LAYOUTS ==================== */
.layouts {
  padding: 100px 0;
  background: var(--dark-800);
}
.layout-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
  background: transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}
.tab-btn:hover {
  color: var(--gold);
  border-color: var(--border);
  background: var(--gold-alpha);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  border-color: transparent;
  font-weight: 700;
}

.layouts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.layout-card {
  background: var(--dark-700);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.layout-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.layout-card-large {
  grid-column: span 1;
}
.layout-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(10,10,15,0.85);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
}
.layout-card-badge.gold,
.layout-card-badge.two-room {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  border-color: transparent;
}
.layout-card-badge.two-room {
  background: linear-gradient(135deg, rgba(201,168,76,0.9), rgba(160,120,56,0.9));
}

.layout-card-plan {
  height: 320px;
  background: var(--dark-600);
  position: relative;
  overflow: hidden;
}
.layout-card-plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}
.layout-card:hover .layout-card-plan img {
  transform: scale(1.05);
}

.layout-card-info {
  padding: 1.25rem 1.5rem 1.5rem;
}
.layout-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.layout-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.layout-card-area {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
}
.layout-card-area-badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--gold-alpha);
  color: var(--gold);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.layout-card-area-badge.gold-bg {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  border-color: transparent;
}
.layout-card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}
.layout-card-details span {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 3px 8px;
  background: rgba(201,168,76,0.05);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}

.layout-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  transition: var(--transition-fast);
}
.layout-card-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  border-color: transparent;
}
.layout-card.hidden { display: none; }

.layouts-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==================== GALLERY ==================== */
.gallery {
  padding: 100px 0 60px;
  background: var(--dark-900);
  overflow: hidden;
}
.gallery-strip {
  position: relative;
  overflow: hidden;
  margin: 3rem 0 2rem;
}
.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  padding: 0 40px;
}
.gallery-item {
  flex: 0 0 calc(50% - 10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}
.gallery-item:first-child { flex: 0 0 calc(60% - 10px); }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0 40px;
}
.gallery-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: var(--transition-fast);
  background: var(--gold-alpha);
}
.gallery-btn:hover {
  background: var(--gold-alpha-hover);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,168,76,0.2);
}
.gallery-dots {
  display: flex;
  gap: 8px;
}
.gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition-fast);
}
.gallery-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
  position: relative;
  padding: 80px 40px;
  overflow: hidden;
  text-align: center;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0d1e 0%, #141424 30%, #0A0A0F 100%);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 70%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
}
.cta-banner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.cta-banner-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.gold { color: var(--gold); }
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ==================== CONTACT ==================== */
.contact {
  padding: 100px 0;
  background: var(--dark-800);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.contact-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Phone block */
.contact-phone-block {
  margin-bottom: 2rem;
}
.contact-phone-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gold-alpha);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-phone-link:hover {
  background: var(--gold-alpha-hover);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.contact-phone-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-phone-icon svg { stroke: var(--dark-900); }
.contact-phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.contact-phone-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form-wrap {
  position: relative;
}
.contact-form {
  background: var(--dark-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-header {
  margin-bottom: 2rem;
  text-align: center;
}
.form-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.form-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.form-header p {
  font-size: 0.88rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark-800);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark-800); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--dark-700);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-legal {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  line-height: 1.5;
}
.form-legal a { color: var(--gold); text-decoration: underline; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  gap: 1rem;
}
.form-success.visible { display: flex; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold);
}
.form-success p { color: var(--text-secondary); }

/* ==================== FOOTER ==================== */
.footer {
  background: var(--dark-900);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
}
.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact {
  display: flex;
  flex-direction: column;
}
.footer-contact a {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  transition: var(--transition-fast);
}
.footer-contact a:hover { color: var(--gold); }
.footer-phone {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--gold) !important;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
}
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-fast);
}
.social-btn:hover {
  background: var(--gold-alpha);
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==================== FLOATING CTA ==================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-900);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: var(--transition);
  transform: translateY(100px);
  opacity: 0;
}
.floating-cta.visible {
  transform: translateY(0);
  opacity: 1;
}
.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201,168,76,0.5);
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .layouts-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-images { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .lobby-content { padding: 40px; }
  .nav-links { gap: 1.2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .nav-mobile.open { display: flex; }

  .hero { padding: var(--nav-height) 20px 80px; }
  .hero-stats { gap: 1rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-title-big { font-size: clamp(3rem, 15vw, 6rem); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { width: 100%; justify-content: center; }

  .features-grid { grid-template-columns: 1fr; }
  .layouts-grid { grid-template-columns: 1fr; }
  .layout-card-large { grid-column: span 1; }
  .layout-card-actions { flex-direction: column; }
  .gallery-item { flex: 0 0 85%; }
  .gallery-item:first-child { flex: 0 0 85%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .lobby-content { padding: 30px 20px; }
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 20px; }
  .gallery-track { padding: 0 16px; }
  .gallery-controls { padding: 0 16px; }

  .about-grid { gap: 30px; }
  .about-images { height: 300px; }

  .section-title { font-size: clamp(1.7rem, 5vw, 2.5rem); }


  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-stat-divider { height: 30px; }
  .hero-stats { flex-wrap: wrap; gap: 1rem 2rem; }
  .hero-stat-divider:last-of-type { display: none; }
  .layout-tabs { gap: 6px; }
  .tab-btn { padding: 8px 14px; font-size: 0.78rem; }
  .contact-phone-number { font-size: 1.2rem; }
}
