@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

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

:root {
  --burgundy: #4a0e1c;
  --burgundy-dark: #2d0812;
  --black-block: #0d0d0d;
  --gold: #d4af37;
  --gold-light: #e8c547;
  --white: #ffffff;
  --text-muted: #e8dcd0;
  --gradient-border: linear-gradient(135deg, #d4af37, #f5e6a3, #b8962e, #d4af37);
  --shadow: 0 8px 32px rgba(0,0,0,0.45);
  --font-heading: 'Cinzel', Georgia, serif;
  --font-body: 'Lora', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--burgundy);
  color: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--gold-light);
}

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Drop cap */
.drop-cap::first-letter {
  float: left;
  font-family: var(--font-heading);
  font-size: 3.5em;
  line-height: 0.8;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--gold);
  font-weight: 700;
}

/* Header */
.site-header {
  background: var(--burgundy-dark);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.header-logo img { width: 56px; height: 56px; object-fit: cover; border-radius: 4px; }

.main-nav { display: flex; gap: 24px; align-items: center; flex-shrink: 0; }
.main-nav a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 0.82rem;
}
.header-contacts p { margin: 0; white-space: nowrap; }
.header-contacts a { white-space: nowrap; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--gold);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  background: var(--black-block);
  border-top: 1px solid var(--gold);
  padding: 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.mobile-menu nav a { color: var(--white); font-family: var(--font-heading); font-size: 1rem; }
.mobile-menu .mobile-contacts { border-top: 1px solid rgba(212,175,55,0.3); padding-top: 16px; }
.mobile-menu .mobile-contacts p, .mobile-menu .mobile-contacts a { display: block; margin-bottom: 8px; font-size: 0.9rem; }

/* Banner */
.page-banner {
  width: 100%;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(45, 8, 18, 0.55);
}
.page-banner h1 {
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
  padding: 0 20px;
}

/* Sections */
section { padding: 70px 0; }
section:nth-child(even) { background: var(--black-block); }

.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--gold-light);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
.section-subtitle {
  text-align: center;
  color: #f0e8dc;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Strengths - staggered horizontal cards */
.strengths-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 28px;
  padding: 24px 0;
}
.strength-card {
  flex: 0 1 240px;
  background: var(--black-block);
  padding: 30px 24px;
  border-radius: 12px;
  position: relative;
  z-index: 0;
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s, box-shadow 0.3s;
}
.strength-card::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 14px;
  background: var(--gradient-border);
  z-index: -1;
}
.strength-card:nth-child(1) { transform: translateY(-20px); }
.strength-card:nth-child(2) { transform: translateY(10px); }
.strength-card:nth-child(3) { transform: translateY(-35px); }
.strength-card:nth-child(4) { transform: translateY(5px); }
.strength-card:nth-child(5) { transform: translateY(-15px); }
.strength-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.15);
}
.strength-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.03em;
}
.strength-card p {
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.65;
}

/* Service / Room cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--burgundy-dark);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.card-img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.card-body p { color: var(--text-muted); font-size: 0.93rem; flex: 1; margin-bottom: 16px; }
.card-price { font-family: var(--font-heading); color: var(--gold); font-size: 1.3rem; margin-bottom: 12px; }

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  text-align: center;
}
.btn:hover { background: var(--gold); color: var(--burgundy-dark); }
.btn-gold { background: var(--gold); color: var(--burgundy-dark); }
.btn-gold:hover { background: var(--gold-light); }

/* Advantages block */
.advantages-block {
  background: var(--black-block);
  padding: 50px 40px;
  border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); display: block; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* Forms */
.form-section { background: var(--burgundy-dark); }
.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: var(--black-block);
  padding: 40px;
  border: 2px solid var(--gold);
  border-radius: 10px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-size: 0.9rem; color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--burgundy);
  border: 1px solid rgba(212,175,55,0.5);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-message {
  padding: 14px;
  border-radius: 4px;
  margin-top: 16px;
  display: none;
  font-size: 0.92rem;
}
.form-message.success { display: block; background: rgba(46,125,50,0.3); border: 1px solid #4caf50; color: #a5d6a7; }
.form-message.error { display: block; background: rgba(198,40,40,0.3); border: 1px solid #ef5350; color: #ef9a9a; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(212,175,55,0.3); margin-bottom: 8px; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after { content: '+'; font-size: 1.4rem; transition: 0.3s; }
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  color: var(--text-muted);
  font-size: 0.93rem;
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: 18px; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 50px; }
.about-grid img { border-radius: 8px; border: 2px solid var(--gold); aspect-ratio: 1/1; object-fit: cover; }

.mission-stickers {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}
.mission-sticker {
  background: var(--gradient-border);
  padding: 3px;
  border-radius: 8px;
  flex: 1 1 200px;
  max-width: 280px;
}
.mission-sticker-inner {
  background: var(--black-block);
  padding: 24px 20px;
  border-radius: 6px;
  text-align: center;
}
.mission-sticker-inner h3 { font-size: 1rem; margin-bottom: 8px; }
.mission-sticker-inner p { font-size: 0.88rem; color: var(--text-muted); }

/* Timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--burgundy);
}
.timeline-year { font-family: var(--font-heading); color: var(--gold); font-size: 1.2rem; margin-bottom: 6px; }

/* Bonus program icons */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin: 30px 0;
}
.bonus-item { text-align: center; padding: 24px 16px; background: var(--burgundy-dark); border-radius: 8px; border: 1px solid rgba(212,175,55,0.3); }
.bonus-icon { font-size: 2.5rem; margin-bottom: 12px; }
.bonus-item h4 { font-size: 0.95rem; margin-bottom: 8px; }
.bonus-item p { font-size: 0.85rem; color: var(--text-muted); }

/* Rooms advantages list */
.advantages-list { columns: 2; gap: 30px; max-width: 900px; margin: 0 auto; }
.advantages-list li { margin-bottom: 14px; list-style: none; padding-left: 24px; position: relative; color: var(--text-muted); }
.advantages-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 4px; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-block { background: var(--black-block); padding: 36px; border-radius: 8px; border: 1px solid rgba(212,175,55,0.4); }
.contact-info-block h3 { margin-bottom: 20px; }
.contact-info-block p, .contact-info-block a { margin-bottom: 12px; display: block; }

/* Legal pages */
.legal-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.legal-content h1 { margin-bottom: 24px; font-size: 2rem; }
.legal-content h2 { margin: 28px 0 12px; font-size: 1.3rem; }
.legal-content p { margin-bottom: 16px; color: var(--text-muted); text-align: justify; }

/* Casino page */
.casino-section .container.casino-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
section.casino-section:nth-of-type(even) { background: var(--black-block); }
section.casino-section:nth-of-type(even) .container.casino-section img { order: -1; }
.casino-section img { aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; border: 2px solid var(--gold); width: 100%; }

/* Footer */
.site-footer {
  background: var(--burgundy-dark);
  border-top: 2px solid var(--gold);
  padding: 50px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-logo img { width: 80px; height: 80px; object-fit: cover; border-radius: 4px; }
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: var(--white); font-size: 0.9rem; }
.footer-contacts { font-size: 0.88rem; }
.footer-contacts p, .footer-contacts a { display: block; margin-bottom: 8px; white-space: nowrap; }
.footer-social { display: flex; gap: 16px; margin-top: 12px; }
.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(212,175,55,0.3);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom a { margin: 0 8px; }
.footer-legal { margin-top: 8px; }

.guarantee-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.guarantee-tag { background: rgba(212,175,55,0.15); border: 1px solid var(--gold); padding: 4px 12px; border-radius: 20px; font-size: 0.78rem; color: var(--gold); }

.text-block { max-width: 900px; margin: 0 auto; }
.text-block p { margin-bottom: 18px; color: #f0e8dc; }

/* Responsive */
@media (max-width: 1024px) {
  .header-contacts { display: none; }
  .main-nav { display: none; }
  .burger { display: flex; }
  .strength-card { transform: none !important; }
  .strengths-grid { flex-direction: column; align-items: center; }
  .about-grid, .contact-grid, .casino-section .container.casino-section { grid-template-columns: 1fr; }
  section.casino-section:nth-of-type(even) .container.casino-section img { order: 0; }
  .advantages-list { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo { margin: 0 auto; }
  .footer-social { justify-content: center; }
}

@media (max-width: 768px) {
  .page-banner { height: 280px; }
  section { padding: 50px 0; }
  .form-wrapper { padding: 24px; }
}
