/* ========== ОСНОВЫ ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fdf2f8;
  color: #1f2937;
  line-height: 1.6;
}

.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ========== НАВИГАЦИЯ ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #db2777;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: #374151;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #db2777;
}

.btn-primary {
  background: #db2777;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background: #be185d;
  transform: scale(1.03);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.5));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-white {
  background: #fff;
  color: #db2777;
  border: none;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  transform: scale(1.05);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 32px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

/* ========== СЕКЦИИ ========== */
.section {
  padding: 80px 0;
}

.section-white {
  background: #fff;
}

.section-pink {
  background: #fdf2f8;
}

.section-rose {
  background: #fce7f3;
}

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

.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 12px;
  color: #db2777;
  font-style: italic;
}

.section-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 48px;
  font-style: italic;
}

/* ========== СЕТКИ ========== */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.feature-card {
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: #fce7f3;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #db2777;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: #6b7280;
  font-size: 0.95rem;
}

/* ========== ГАЛЕРЕЯ ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-center {
  text-align: center;
  margin-top: 32px;
}

/* ========== ПРАЙС ========== */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.price-table th {
  background: #db2777;
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
}

.price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #fce7f3;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table .price-col {
  font-weight: 700;
  color: #db2777;
  white-space: nowrap;
}

.price-desc {
  font-size: 0.85rem;
  color: #9ca3af;
}

.min-order-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ========== ФОРМА ========== */
.form-card {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 32px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-card p {
  margin-bottom: 24px;
  color: #6b7280;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #db2777;
}

.btn-submit {
  width: 100%;
  background: #db2777;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}

.btn-submit:hover {
  background: #be185d;
}

.form-note {
  font-size: 0.8rem;
  color: #9ca3af;
  text-align: center;
  margin-top: 16px;
}

/* ========== CTA БЛОК ========== */
.cta-block {
  background: linear-gradient(135deg, #db2777, #9d174d);
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.cta-block h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.cta-block p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-telegram {
  background: #fff;
  color: #db2777;
  border: none;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-telegram:hover {
  transform: scale(1.03);
}

.btn-phone-cta {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-phone-cta:hover {
  background: rgba(255,255,255,0.25);
}

/* ========== ФУТЕР ========== */
footer {
  background: #111827;
  color: #fff;
  padding: 48px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  color: #f472b6;
}

.footer-social a {
  color: #f472b6;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-address {
  color: #9ca3af;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-divider {
  border: none;
  border-top: 1px solid #1f2937;
  margin: 24px auto;
  max-width: 600px;
}

.footer-copy {
  color: #4b5563;
  font-size: 0.8rem;
}

/* ========== АДАПТАЦИЯ (МОБИЛЬНЫЕ) ========== */
<span style="color: hsl(var(--primary)); font-weight: 500;">@media</span> (min-width: 768px) {
  .hero-content h1 {
    font-size: 4.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .nav-links {
    display: flex !important;
  }
  
  .mobile-menu-btn {
    display: none;
  }
}

<span style="color: hsl(var(--primary)); font-weight: 500;">@media</span> (max-width: 767px) {
  .nav-links {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section {
    padding: 48px 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
}