:root {
  --bg: #fff7f8;
  --surface: #ffffff;
  --surface-2: #fff0f3;
  --text: #24191c;
  --muted: #745e65;
  --primary: #b8325d;
  --primary-dark: #8d2145;
  --border: #f0cfd8;
  --shadow: 0 22px 60px rgba(184, 50, 93, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 247, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), #f6a6bd);
  color: white;
  font-weight: 800;
  box-shadow: var(--shadow);
}
.brand strong { display: block; font-size: 15px; }
.brand small { color: var(--muted); font-size: 12px; }
nav { display: flex; align-items: center; gap: 28px; font-weight: 600; color: var(--muted); }
nav a:hover { color: var(--primary); }
.menu-btn { display: none; border: 0; background: var(--surface); font-size: 24px; border-radius: 10px; padding: 8px 12px; }

.hero { padding: 86px 0 70px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 76px 0 auto auto;
  width: 46vw;
  height: 460px;
  background: radial-gradient(circle, rgba(246,166,189,.35), transparent 68%);
  pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .8fr; gap: 44px; align-items: center; }
.badge {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 22px;
}
h1 { margin: 0 0 22px; font-size: clamp(38px, 6vw, 66px); line-height: 1.02; letter-spacing: -0.055em; }
.hero-copy p { max-width: 670px; color: var(--muted); font-size: 18px; margin: 0 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
}
.btn.primary { background: var(--primary); color: white; box-shadow: var(--shadow); }
.btn.primary:hover { background: var(--primary-dark); }
.btn.secondary { background: var(--surface); border-color: var(--border); color: var(--primary-dark); }
.btn.full { width: 100%; margin-top: 12px; }
.hero-card, .data-card, .contact-card, .card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.hero-card { padding: 34px; }
.hero-card span, .section-title span { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.hero-card h2 { font-size: 30px; margin: 10px 0 6px; letter-spacing: -0.04em; }
.hero-card p { color: var(--muted); margin: 0 0 28px; }
.mini-info { display: grid; gap: 14px; }
.mini-info div { padding-top: 14px; border-top: 1px solid var(--border); }
.mini-info small { display: block; color: var(--muted); }

.section { padding: 76px 0; }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title.left { text-align: left; margin-bottom: 18px; }
.section-title h2 { margin: 6px 0 0; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; letter-spacing: -0.045em; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { padding: 28px; transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 70px rgba(184, 50, 93, 0.18); }
.icon { width: 46px; height: 46px; border-radius: 16px; background: var(--surface-2); color: var(--primary); display: grid; place-items: center; font-weight: 900; margin-bottom: 18px; }
.card h3 { margin: 0 0 10px; font-size: 20px; }
.card p, .about p, .contact p { color: var(--muted); margin-top: 0; }
.about { background: linear-gradient(180deg, transparent, #fff1f4); }
.about-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 36px; align-items: start; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.stats div { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 18px; }
.stats strong { display: block; font-size: 22px; color: var(--primary-dark); }
.stats span { color: var(--muted); font-size: 14px; }
.data-card { padding: 28px; }
.data-card h3, .contact-card h3 { margin-top: 0; font-size: 22px; }
dl { margin: 0; }
dl div { display: grid; grid-template-columns: 150px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
dl div:last-child { border-bottom: 0; }
dt { color: var(--muted); font-weight: 600; }
dd { margin: 0; font-weight: 800; }
.contact-grid { display: grid; grid-template-columns: 1fr .9fr .9fr; gap: 20px; align-items: stretch; }
.contact-card { padding: 26px; background: var(--surface); }
.contact-card a:not(.btn) { color: var(--primary-dark); font-weight: 700; }
footer { background: #26171d; color: white; padding: 34px 0; }
footer p { margin: 6px 0 0; color: rgba(255,255,255,.66); }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; color: rgba(255,255,255,.75); font-weight: 600; }
.footer-links a:hover { color: white; }

@media (max-width: 860px) {
  .menu-btn { display: block; }
  nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  nav.open { display: flex; }
  .hero-grid, .about-grid, .contact-grid, .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  dl div { grid-template-columns: 1fr; gap: 2px; }
}
