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

:root {
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --yellow: #FFD700;
  --yellow-dark: #FFC107;
  --yellow-light: #FFEB3B;
  --yellow-glow: rgba(255, 215, 0, 0.15);
  --text: #f5f5f5;
  --text-muted: #aaa;
  --border: #2a2a2a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--yellow-light);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 600;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo strong {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--yellow);
}

.nav-phone {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700 !important;
}

.nav-phone:hover {
  background: var(--yellow-light) !important;
  color: var(--black) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--yellow-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
    linear-gradient(135deg, var(--black) 0%, var(--black-light) 50%, #0d0d0d 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
}

.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero h1 span {
  color: var(--yellow);
  display: inline;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.btn-primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border-color: var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.hero-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.hero-info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.hero-info-value {
  font-weight: 700;
  color: var(--yellow);
  font-size: 1rem;
}

/* Features */
.features {
  padding: 60px 0;
  background: var(--black-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Menu */
.menu {
  padding: 80px 0;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.menu-tab {
  background: var(--black-card);
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.menu-item {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: border-color 0.2s;
}

.menu-item:hover {
  border-color: var(--yellow);
}

.menu-item.hidden {
  display: none;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.menu-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.menu-price {
  background: var(--yellow);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.menu-tag {
  display: inline-block;
  margin-top: 12px;
  background: rgba(255, 215, 0, 0.15);
  color: var(--yellow);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: var(--black-card);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
}

.menu-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

/* About */
.about {
  padding: 80px 0;
  background: var(--black-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  margin: 24px 0;
}

.about-list li {
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-list strong {
  color: var(--yellow);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--black-card);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reviews */
.reviews {
  padding: 80px 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--black-card);
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
}

.review-stars {
  color: var(--yellow);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.review-card p {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.6;
}

.review-card cite {
  color: var(--text);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
}

/* Contacts */
.contacts {
  padding: 80px 0;
  background: var(--black-light);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.contact-item strong {
  display: block;
  color: var(--yellow);
  margin-bottom: 6px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.phone-link {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow) !important;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--yellow);
  min-height: 400px;
  background: var(--black-card);
}

.contact-map iframe {
  display: block;
  min-height: 400px;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 2px solid var(--yellow);
  background: var(--black);
}

.footer-content {
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-brand strong {
  color: var(--yellow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Floating phone */
.floating-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.floating-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
  color: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid var(--yellow);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-info {
    flex-direction: column;
    gap: 16px;
  }
}
