@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/prata-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/prata-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #261323;
  --muted: #6f5a68;
  --paper: #fff8fc;
  --white: #ffffff;
  --pink: #e4006d;
  --pink-dark: #ad004f;
  --pink-soft: #ffd8e9;
  --coral: #ff5a72;
  --violet: #7226a8;
  --line: #efdae5;
  --shadow: 0 24px 70px rgba(86, 14, 56, 0.14);
  --radius: 30px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Onest", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

:focus-visible {
  outline: 3px solid #151515;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(239, 218, 229, 0.86);
  background: rgba(255, 248, 252, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 44% 56%;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: 0 8px 20px rgba(228, 0, 109, 0.25);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.925rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--pink); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 28px rgba(228, 0, 109, 0.23);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--pink-dark);
  box-shadow: 0 16px 36px rgba(173, 0, 79, 0.28);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.button-secondary:hover { color: var(--pink-dark); background: var(--pink-soft); }
.button-dark { background: var(--ink); box-shadow: 0 12px 28px rgba(38, 19, 35, 0.2); }
.button-dark:hover { background: #000; }
.button-small { min-height: 44px; padding: 10px 18px; font-size: 0.9rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--pink-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: var(--pink);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

h3 {
  line-height: 1.14;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.2vw, 4.7rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 72px 0 86px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(4px);
}

.hero::before {
  top: -240px;
  right: -170px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at 35% 45%, #ff85b9, var(--pink) 62%, var(--violet));
  opacity: 0.22;
}

.hero::after {
  bottom: -210px;
  left: -120px;
  width: 430px;
  height: 430px;
  background: var(--pink-soft);
  opacity: 0.62;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.78fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
}

.hero-copy strong { color: var(--pink); font-weight: 400; }
.hero-title-line { display: block; }

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 32px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.hero-meta li { display: flex; align-items: center; gap: 9px; }
.hero-meta li::before { width: 9px; height: 9px; content: ""; border-radius: 50%; background: var(--coral); }

.hero-media { position: relative; min-height: 570px; }

.hero-photo {
  position: absolute;
  inset: 0 0 38px 46px;
  overflow: hidden;
  border: 9px solid var(--white);
  border-radius: 44% 44% 28% 28% / 30% 35% 18% 23%;
  background: var(--pink-soft);
  box-shadow: var(--shadow);
  transform: rotate(2.5deg);
}

.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-note {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  max-width: 245px;
  padding: 21px 24px;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(135deg, var(--violet), var(--pink));
  box-shadow: 0 18px 40px rgba(86, 14, 56, 0.28);
  font-weight: 800;
  line-height: 1.3;
  transform: rotate(-4deg);
}

.section { padding: 92px 0; }
.section-white { background: var(--white); }
.section-pink { background: var(--pink-soft); }
.section-dark { color: var(--white); background: var(--ink); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-head > div { max-width: 720px; }
.section-head p { margin-bottom: 0; color: var(--muted); }
.section-dark .section-head p { color: #d9c4d2; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:nth-child(2) { color: var(--white); border-color: var(--pink); background: var(--pink); }
.service-card:nth-child(4) { color: var(--white); border-color: var(--violet); background: var(--violet); }

.service-number { color: var(--pink); font-size: 0.82rem; font-weight: 850; letter-spacing: 0.1em; }
.service-card:nth-child(2) .service-number,
.service-card:nth-child(4) .service-number { color: var(--white); }
.service-card h3 { margin: auto 0 14px; }
.service-card p { margin-bottom: 22px; color: var(--muted); }
.service-card:nth-child(2) p,
.service-card:nth-child(4) p { color: var(--white); }
.service-link { font-weight: 850; }

.combo {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(32px, 7vw, 90px);
}

.combo-badge {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 50% 42% 46% 45%;
  color: var(--white);
  background: linear-gradient(145deg, var(--coral), var(--pink) 55%, var(--violet));
  box-shadow: var(--shadow);
  text-align: center;
  transform: rotate(-5deg);
}

.combo-badge span { display: block; font-family: "Prata", Georgia, serif; font-size: clamp(2rem, 6vw, 5rem); font-weight: 400; line-height: 0.95; }
.combo-badge small { display: block; margin-top: 16px; font-size: 1rem; font-weight: 750; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.72);
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--white);
}

.price-row strong { display: block; }
.price-row small { display: block; color: var(--muted); font-size: 0.82rem; }
.price-value { color: var(--pink-dark); font-weight: 900; white-space: nowrap; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 245px;
  gap: 14px;
}

.gallery-item {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--pink-soft);
  cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6),
.gallery-item:nth-child(11) { grid-row: span 2; }
.gallery-item:nth-child(4),
.gallery-item:nth-child(9),
.gallery-item:nth-child(14) { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 350ms ease; }
.gallery-item:hover img { transform: scale(1.035); }

.gallery-dialog {
  width: min(92vw, 820px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.gallery-dialog::backdrop { background: rgba(22, 7, 18, 0.86); backdrop-filter: blur(8px); }
.gallery-dialog img { max-height: 88vh; margin: auto; border-radius: 24px; box-shadow: var(--shadow); }
.dialog-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.5rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 7vw, 94px);
  align-items: center;
}

.about-card {
  padding: 36px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(145deg, var(--violet), var(--pink));
  box-shadow: var(--shadow);
}

.about-card strong { display: block; margin-bottom: 10px; font-family: "Prata", Georgia, serif; font-size: 2rem; font-weight: 400; line-height: 1.12; }
.about-card p { margin-bottom: 0; color: rgba(255,255,255,0.82); }

.contact-card {
  padding: clamp(28px, 5vw, 52px);
  border-radius: 36px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--violet));
  box-shadow: var(--shadow);
}

.contact-card a:not(.button) { text-decoration-thickness: 1px; text-underline-offset: 4px; }
.contact-list { margin: 0; padding: 0; list-style: none; }
.contact-list li { margin-bottom: 18px; }
.contact-list span { display: block; color: rgba(255,255,255,0.74); font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-list strong { font-size: 1.18rem; }
.contact-card .button-secondary { border-color: transparent; }

.page-hero { padding: 76px 0 60px; }
.page-hero h1 { max-width: 980px; font-size: clamp(2.65rem, 5.4vw, 4.7rem); }
.breadcrumbs { margin-bottom: 30px; color: var(--muted); font-size: 0.9rem; }
.breadcrumbs a { color: var(--pink-dark); }

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: start;
}

.detail-aside {
  position: sticky;
  top: 112px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--pink-soft);
}

.detail-aside h2 { font-size: 1.8rem; }
.detail-aside .button { width: 100%; }

.price-list { margin: 0; padding: 0; list-style: none; }
.price-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.price-list li:first-child { padding-top: 0; }
.price-list li:last-child { border-bottom: 0; }
.price-list strong { display: block; }
.price-list small { color: var(--muted); }
.price-list b { color: var(--pink-dark); white-space: nowrap; }

.note {
  margin-top: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--pink);
  border-radius: 0 16px 16px 0;
  color: var(--muted);
  background: var(--white);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  text-decoration: none;
}
.related-card:hover { border-color: var(--pink); }
.related-card strong { display: block; margin-bottom: 6px; }
.related-card span { color: var(--pink-dark); font-weight: 800; }

.site-footer {
  padding: 48px 0 110px;
  color: #d9c4d2;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 36px;
}
.site-footer .brand { color: var(--white); }
.site-footer p { max-width: 470px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { text-underline-offset: 4px; }
.footer-title { color: var(--white); font-weight: 850; }
.copyright { margin: 34px 0 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.85rem; }

.mobile-actions {
  position: fixed;
  z-index: 90;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 7px;
  border: 1px solid rgba(239, 218, 229, 0.85);
  border-radius: 22px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 44px rgba(38,19,35,0.23);
  backdrop-filter: blur(14px);
}

.mobile-actions a {
  min-height: 50px;
  display: grid;
  place-items: center;
  padding: 6px 4px;
  border-radius: 16px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}
.mobile-actions a:first-child { color: var(--white); background: var(--pink); }

@media (max-width: 980px) {
  .menu-button { display: grid; place-items: center; }
  .main-nav {
    position: fixed;
    inset: 79px 0 auto;
    display: none;
    padding: 28px 20px 36px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(38,19,35,0.12);
  }
  .main-nav.open { display: grid; }
  .main-nav a { min-height: 46px; display: flex; align-items: center; font-size: 1.08rem; }
  .main-nav .button { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr 0.75fr; gap: 34px; }
  .hero-media { min-height: 490px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-item:nth-child(4), .gallery-item:nth-child(9), .gallery-item:nth-child(14) { grid-column: auto; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-aside { position: static; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 620px); --radius: 24px; }
  body { padding-bottom: 78px; }
  .header-inner { min-height: 70px; }
  .main-nav { inset-block-start: 71px; }
  .header-inner > .button { display: none; }
  .hero { padding: 45px 0 64px; }
  .hero-grid,
  .combo,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-media { min-height: 390px; order: 2; }
  .hero-photo { inset: 0 18px 28px 35px; border-width: 6px; }
  .hero-note { max-width: 205px; padding: 16px 18px; font-size: 0.9rem; }
  .hero-actions .button { flex: 1 1 190px; }
  .hero-meta { display: grid; gap: 10px; }
  .section { padding: 68px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head .button { margin-top: 18px; }
  .service-grid,
  .price-grid,
  .feature-list,
  .related-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 240px; }
  .combo-badge { width: min(84vw, 380px); justify-self: center; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 200px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(6), .gallery-item:nth-child(11) { grid-row: span 1; }
  .gallery-item:nth-child(3n+1) { grid-row: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-actions { display: grid; }
  .page-hero { padding: 48px 0 38px; }
  .detail-aside { padding: 24px; }
  .gallery-dialog { width: calc(100vw - 28px); }
  .dialog-close { top: -14px; right: -4px; }
}

@media (max-width: 390px) {
  h1 { font-size: 2.05rem; }
  .page-hero h1 { font-size: 2.15rem; }
  .brand-text { max-width: 165px; line-height: 1.05; }
  .hero-media { min-height: 340px; }
  .gallery-grid { grid-auto-rows: 165px; }
  .mobile-actions { right: 5px; bottom: 5px; left: 5px; }
  .mobile-actions a { font-size: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

@media print {
  .site-header, .mobile-actions, .hero-actions, .contact-actions, .gallery-dialog { display: none !important; }
  body { color: #000; background: #fff; }
  .section { padding: 28px 0; }
}
