* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --cream: #F7F2EA;
  --beige: #E8DDCB;
  --taupe: #B9A588;
  --clay: #8C6A4F;
  --espresso: #3E2F24;
}
body {
  font-family: 'Manrope', sans-serif;
  background-color: var(--cream);
  color: var(--espresso);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}
/* Навигация */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--espresso);
  text-decoration: none;
  font-size: 15px;
}

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

/* Hero — первый экран */
.hero {
  min-height: 64vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  gap: 20px;
  background: radial-gradient(circle at 50% 35%, var(--beige) 0%, var(--cream) 65%);
}

.hero h1 {
  font-size: 48px;
  max-width: 700px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--clay);
}

.hero-divider {
  width: 64px;
  height: 1px;
  background-color: var(--taupe);
  margin-top: 12px;
  position: relative;
}

.hero-divider::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background-color: var(--clay);
}

/* Про меня */
.about {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.about-photo img {
  width: 340px;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(62, 47, 36, 0.16);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  opacity: 0.85;
  max-width: 480px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--clay);
}

.stat-label {
  font-size: 13px;
  opacity: 0.75;
}

.services {
  padding: 100px 48px;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.services h2::after,
.portfolio h2::after,
.reviews h2::after,
.contacts h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--taupe);
  margin: 16px auto 0;
}

.price-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.price-category {
  background-color: #fff;
  padding: 32px;
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(62, 47, 36, 0.06);
}

.price-category h3 {
  font-size: 20px;
  color: var(--clay);
  margin-bottom: 16px;
}

.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--beige);
  font-size: 15px;
}

.price-list li small {
  display: block;
  opacity: 0.65;
  font-size: 12px;
  margin-top: 4px;
}

.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--clay);
  white-space: nowrap;
}

/* Работы */
.portfolio {
  padding: 100px 48px;
  text-align: center;
}

.portfolio h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.portfolio-item {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(62, 47, 36, 0.1);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.portfolio-item img:hover {
  transform: scale(1.04);
}

/* Отзывы */
.reviews {
  padding: 100px 48px;
  text-align: center;
}

.reviews h2 {
  font-size: 36px;
  margin-bottom: 48px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.review-card {
  background-color: var(--beige);
  padding: 32px 24px;
  text-align: left;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(62, 47, 36, 0.06);
}

.review-card::before {
  content: '\201C';
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  line-height: 1;
  color: var(--taupe);
  margin-bottom: 4px;
}

.review-card p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
}

/* Контакты */
.contacts {
  padding: 100px 48px;
  text-align: center;
}

.contacts h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.contacts-subtitle {
  color: var(--clay);
  margin-bottom: 40px;
}

.booking-cta {
  display: inline-block;
  margin-bottom: 40px;
  padding: 14px 36px;
  border: 1px solid var(--espresso);
  color: var(--espresso);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.3s;
}

.booking-cta:hover {
  background-color: var(--espresso);
  color: var(--cream);
}

.contacts-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--espresso);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  border-bottom: 1px solid transparent;
  transition: 0.3s;
}

.contact-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-link:hover {
  color: var(--clay);
  border-bottom-color: var(--clay);
}

.contact-static {
  cursor: default;
}

.contact-static:hover {
  color: var(--espresso);
  border-bottom-color: transparent;
}

.contacts-note {
  margin-top: 24px;
  font-size: 13px;
  opacity: 0.7;
}

.contacts-address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 15px;
}

footer {
  text-align: center;
  padding: 32px 24px;
  font-size: 13px;
  opacity: 0.7;
}

/* Мобильная адаптация */
@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .about,
  .services,
  .portfolio,
  .reviews,
  .contacts {
    padding: 64px 24px;
  }

  .about {
    flex-direction: column;
    gap: 32px;
  }

  .about-photo img {
    width: 100%;
    max-width: 340px;
    height: auto;
    aspect-ratio: 340 / 420;
  }

  .about-text p {
    max-width: none;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .price-categories {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}