/* ── Главная страница — Салон премиальной красоты ───── */

/* ── Герой-секция ───────────────────────────────────── */
.hero {
  background: linear-gradient(rgba(26,26,26,0.55), rgba(26,26,26,0.65)),
              url('https://picsum.photos/seed/salon-luxury/1400/800') center/cover no-repeat;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 40px 20px;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.hero .hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero .btn {
  font-size: 1rem;
  padding: 16px 40px;
}

/* ── Услуги ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 12px;
}

.service-card .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold-dark);
  font-weight: 600;
}

/* ── О нас ──────────────────────────────────────────── */
.about {
  background: var(--white);
}

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

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-text h2 { margin-bottom: 16px; }
.about-text p {
  color: var(--gray-600);
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  margin-top: 20px;
}

.about-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.about-features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Преимущества ───────────────────────────────────── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.advantage-item {
  text-align: center;
  padding: 24px;
}

.advantage-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
}

.advantage-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.advantage-item p { color: var(--gray-600); font-size: 0.9rem; }

/* ── Отзывы ─────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-card .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.review-card .text {
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.6;
}

.review-card .author {
  font-weight: 600;
  color: var(--black);
  font-size: 0.9rem;
}

/* ── Контакты ───────────────────────────────────────── */
.contacts-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 { margin-bottom: 16px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.contact-item .icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* ── CTA ────────────────────────────────────────────── */
.cta {
  background: linear-gradient(rgba(26,26,26,0.82), rgba(26,26,26,0.82)),
              url('https://picsum.photos/seed/salon-cta/1400/600') center/cover no-repeat;
  text-align: center;
  padding: 80px 20px;
  color: var(--white);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* ── Адаптив ────────────────────────────────────────── */
@media (max-width: 768px) {
  .about-inner,
  .contacts-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 60vh;
  }

  .nav {
    gap: 12px;
    font-size: 0.85rem;
  }
}
