:root {
  --ink: #2a1848;
  --ink-soft: #5a4a72;
  --pink: #ee5a7a;
  --blue: #3d8bfd;
  --violet: #7a5af8;
  --gold: #f5b942;
  --teal: #2ec4b6;
  --cream: #fff7f1;
  --card: #ffffff;
  --line: #efe4d8;
  --shadow: 0 18px 40px rgba(42, 24, 72, 0.08);
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body,
body.sha-layout {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Nunito", "Segoe UI", sans-serif !important;
  color: var(--ink);
  background: var(--cream) !important;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.topbar a { color: #fff; }
.topbar a:hover { color: var(--gold); }
.phones { display: flex; flex-wrap: wrap; gap: 8px 18px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 241, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
}
.logo img { width: 58px; height: 58px; object-fit: contain; }
.menu {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
}
.menu a { color: var(--ink-soft); }
.menu a:hover,
.menu a.is-active { color: var(--pink); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 20px rgba(238, 90, 122, 0.25);
}
.btn:hover { transform: translateY(-1px); }
.btn.gold { background: var(--gold); color: var(--ink); box-shadow: none; }
.btn.ghost { background: #fff; color: var(--ink); border: 2px solid var(--line); box-shadow: none; }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at 12% 20%, rgba(245, 185, 66, 0.35), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(238, 90, 122, 0.2), transparent 26%),
    radial-gradient(circle at 80% 80%, rgba(62, 196, 182, 0.2), transparent 30%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--violet);
  margin-bottom: 14px;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 14px; }
h1 { font-size: clamp(36px, 5vw, 62px); }
h1 span { color: var(--pink); }
h2 { font-size: clamp(28px, 3.5vw, 42px); }
.lead { font-size: 18px; color: var(--ink-soft); max-width: 38em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-photo {
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.hero-photo img { width: 100%; height: 460px; object-fit: cover; }

.section { padding: 72px 0; }
.section.alt { background: #fff; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.kicker { color: var(--pink); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; }

.cards-4, .cards-3, .cards-2 {
  display: grid;
  gap: 22px;
}
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card .media { height: 190px; overflow: hidden; }
.card .media img { width: 100%; height: 100%; object-fit: cover; }
.card .body { padding: 22px; }
.card h3 { font-size: 24px; }
.meta { color: var(--ink-soft); font-size: 14px; font-weight: 700; }
.price-pill {
  display: inline-block;
  margin: 10px 0;
  background: var(--violet);
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 800;
}
.card.blue .price-pill { background: var(--blue); }
.card.pink .price-pill { background: var(--pink); }
.card.gold .price-pill { background: var(--gold); color: var(--ink); }
.card.teal .price-pill { background: var(--teal); }

.principles { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 0; margin: 24px 0 0; }
.principles li {
  list-style: none;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.why strong { display: block; font-size: 22px; margin-bottom: 8px; }

.city-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.city {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.city h3 { color: var(--violet); }

.page-hero {
  padding: 48px 0 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(122, 90, 248, 0.16), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(46, 196, 182, 0.16), transparent 28%);
}
.crumbs { color: var(--ink-soft); font-weight: 700; margin-bottom: 10px; }
.crumbs a:hover { color: var(--pink); }

.doc-list { display: grid; gap: 14px; }
.doc-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  font-weight: 800;
}
.doc-list a:hover { color: var(--pink); }
.note {
  background: #fff4d6;
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 22px;
}

.prose { max-width: 820px; }
.prose p { margin: 0 0 14px; }
.prose ul { padding-left: 20px; }

.cta {
  background: var(--ink);
  color: #fff;
  border-radius: 36px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.cta p { color: #ddd2ea; }

.site-footer {
  background: var(--ink);
  color: #efe7f7;
  padding: 48px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--gold); }
.copy { margin-top: 28px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; }

@media (max-width: 980px) {
  .hero-grid, .cards-4, .cards-3, .why-grid, .city-grid, .footer-grid, .principles, .cards-2 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .menu {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 130px;
    background: #fff;
    border-radius: 20px;
    padding: 16px;
    flex-direction: column;
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero-grid, .cards-4, .cards-3, .why-grid, .city-grid, .footer-grid, .principles, .cards-2, .cta {
    grid-template-columns: 1fr;
  }
  .topbar .wrap { flex-direction: column; padding: 8px 0; }
  .hero-photo img { height: 280px; }
  .cta { display: block; }
}
