* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink: #e94e77;
  --pink-dark: #c73e63;
  --pink-light: #fce4ec;
  --text: #2b2b2b;
  --muted: #888;
  --bg: #ffffff;
  --bg-alt: #fdf7f9;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(233, 78, 119, 0.08);
}

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }

/* КНОПКИ */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  text-align: center;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--pink); color: #fff; }
.btn--primary:hover { background: var(--pink-dark); }
.btn--sm { padding: 8px 18px; font-size: 14px; }
.btn--block { width: 100%; }

/* ШАПКА */
.header {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid #f0f0f0;
}
.header__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 64px;
}
.logo { font-weight: 700; font-size: 18px; color: var(--pink); }
.nav { display: flex; gap: 24px; align-items: center; }
.nav a { color: var(--text); font-size: 15px; }
.nav a:hover { color: var(--pink); text-decoration: none; }
@media (max-width: 768px) {
  .nav a:not(.btn) { display: none; }
}

/* HERO */
.hero { padding: 60px 0; background: linear-gradient(135deg, var(--pink-light), #fff); }
.hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}
.hero h1 { font-size: 42px; line-height: 1.15; margin-bottom: 16px; }
.hero p { font-size: 18px; color: var(--muted); margin-bottom: 28px; }
.hero__photo img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 768px) {
  .hero { padding: 30px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 16px; }
}

/* СЕКЦИИ */
.section { padding: 70px 0; }
.section--alt { background: var(--bg-alt); }
.section h2 { font-size: 32px; margin-bottom: 28px; }
.subtitle { font-size: 18px; color: var(--pink); margin: 28px 0 14px; }
@media (max-width: 768px) {
  .section { padding: 45px 0; }
  .section h2 { font-size: 24px; }
}

/* ОБО МНЕ */
.about__discount {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--pink);
}
.about__cta { margin-top: 20px; font-style: italic; }
.about__subtitle { margin-top: 32px; font-size: 20px; }
.values { display: grid; gap: 16px; margin-top: 20px; }
.value { padding: 16px 20px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.value__title { font-weight: 700; margin-bottom: 6px; }
.value__text { color: var(--muted); font-size: 15px; }

.education { margin-top: 12px; padding: 16px 20px; background: #fff; border-radius: 12px; box-shadow: var(--shadow); }
.education__title { font-weight: 700; }
.education__meta { color: var(--muted); font-size: 14px; margin-top: 4px; }

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag { background: var(--pink-light); color: var(--pink-dark); padding: 6px 14px; border-radius: 50px; font-size: 13px; }

/* УСЛУГИ */
.services { display: grid; gap: 10px; }
.service {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
}
.service__name { font-weight: 600; }
.service__meta { font-size: 14px; color: var(--muted); }
.service__price { font-weight: 700; color: var(--pink); font-size: 18px; white-space: nowrap; }

/* ГАЛЕРЕЯ */
.filters { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 16px; margin-bottom: 20px; }
.filters::-webkit-scrollbar { display: none; }
.filter {
  padding: 8px 18px; border-radius: 50px; background: #fff;
  border: 1px solid #eee; font-size: 14px; cursor: pointer; white-space: nowrap;
}
.filter.active { background: var(--pink); color: #fff; border-color: var(--pink); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery__item {
  position: relative; aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; background: #f5f5f5;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ЛАЙТБОКС */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  display: none; align-items: center; justify-content: center;
  z-index: 1000; padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; color: #fff; font-size: 32px; cursor: pointer;
}

/* ЗАПИСЬ */
.booking { max-width: 600px; background: #fff; border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.booking__step { margin-bottom: 22px; }
.booking__step > label { display: block; font-weight: 600; margin-bottom: 10px; font-size: 15px; }

select, input[type="date"], input[type="text"], input[type="tel"], textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #e5e5e5;
  border-radius: 12px; font-size: 16px; font-family: inherit;
  background: #fafafa; transition: border-color 0.2s;
}
select:focus, input:focus, textarea:focus {
  outline: none; border-color: var(--pink); background: #fff;
}

.addons { display: grid; gap: 8px; }
.addon {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border: 1px solid #eee; border-radius: 12px;
  cursor: pointer; background: #fafafa; transition: all 0.15s;
}
.addon:hover { border-color: var(--pink-light); }
.addon input { width: auto; margin: 0; }
.addon__name { flex: 1; font-weight: 500; }
.addon__meta { font-size: 13px; color: var(--muted); white-space: nowrap; }

.total-info {
  margin-top: 12px; padding: 10px 16px;
  background: var(--pink-light); border-radius: 12px;
  font-size: 15px; color: var(--pink-dark);
}

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 8px; }
.slot {
  padding: 14px 8px; border: 1px solid #e5e5e5; border-radius: 12px;
  background: #fff; font-size: 15px; font-weight: 500; cursor: pointer;
  transition: all 0.15s; text-align: center;
}
.slot:hover { border-color: var(--pink); }
.slot.active { background: var(--pink); color: #fff; border-color: var(--pink); }

.booking__form .form-row { margin-bottom: 16px; }
.booking__form label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }

.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; margin-bottom: 20px; font-weight: normal;
}
.checkbox input { width: auto; margin-top: 4px; }

.success { text-align: center; padding: 20px 0; }
.success h3 { color: var(--pink); margin-bottom: 12px; font-size: 22px; }
.success p { margin-bottom: 8px; color: var(--muted); }

/* КОНТАКТЫ */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contacts p { margin-bottom: 12px; font-size: 16px; }
.map { width: 100%; height: 320px; border: none; border-radius: var(--radius); }
@media (max-width: 768px) {
  .contacts { grid-template-columns: 1fr; gap: 24px; }
  .map { height: 240px; }
}

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq__item {
  padding: 20px 24px; background: #fff;
  border-radius: var(--radius); box-shadow: var(--shadow); cursor: pointer;
}
.faq__q { font-weight: 600; }
.faq__a { color: var(--muted); margin-top: 8px; display: none; }
.faq__item.open .faq__a { display: block; }

/* ПОДВАЛ */
.footer {
  padding: 30px 0; text-align: center;
  background: #2b2b2b; color: #fff; font-size: 14px;
}
.footer a { color: var(--pink-light); }
.footer p { margin: 4px 0; }
/* ДОПОЛНЕНИЯ СО СЧЁТЧИКОМ */
.addon--counter {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px; border: 1px solid #eee; border-radius: 12px;
  background: #fafafa;
}
.addon__info { display: flex; flex-direction: column; gap: 2px; }
.addon__info .addon__name { font-weight: 500; font-size: 15px; }
.addon__info .addon__meta { font-size: 13px; color: var(--muted); }

.counter { display: flex; align-items: center; gap: 10px; }
.counter__btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--pink); background: #fff;
  color: var(--pink); font-size: 20px; font-weight: 700;
  cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s;
}
.counter__btn:hover { background: var(--pink); color: #fff; }
.counter__value { min-width: 20px; text-align: center; font-weight: 700; font-size: 16px; }