@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600&display=swap');

:root {
  --ink: #383432;
  --muted: #716a67;
  --cream: #fffaf7;
  --white: #ffffff;
  --pink: #ef8190;
  --pink-dark: #e56b7b;
  --peach: #fff0e7;
  --line: #eee4de;
  --shadow: 0 22px 60px rgba(84, 57, 45, .09);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 94px;
  padding: 0 clamp(22px, 5vw, 72px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,250,247,.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
}
.brand-heart {
  color: var(--pink);
  font-family: system-ui, sans-serif;
  font-size: 48px;
  line-height: .7;
}
.nav { display: flex; gap: clamp(22px, 4vw, 62px); }
.nav a {
  position: relative;
  padding: 10px 0;
  font-weight: 500;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  transform: translateX(-50%) scale(0);
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a.active::after { transform: translateX(-50%) scale(1); }
.nav a.active { color: var(--pink-dark); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  place-items: center;
  padding: 56px 20px 90px;
}
.hero-inner {
  width: min(1080px, 100%);
  text-align: center;
}
.illustration-wrap {
  width: min(850px, 100%);
  margin: 0 auto -8px;
}
.illustration-wrap img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  mix-blend-mode: multiply;
}
.copy { max-width: 760px; margin: 0 auto; }
.eyebrow, .section-kicker {
  margin: 0 0 10px;
  color: var(--pink-dark);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 700;
}
.eyebrow span { font-size: 15px; }
h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
}
h1 { font-size: clamp(38px, 5vw, 64px); }
.lead {
  max-width: 620px;
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--pink);
  color: white;
  font-weight: 600;
  box-shadow: 0 12px 28px rgba(239,129,144,.25);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  background: var(--pink-dark);
  box-shadow: 0 16px 34px rgba(239,129,144,.32);
}
.patience { margin: 28px 0 0; color: var(--muted); }
.patience span { color: var(--pink); font-size: 28px; vertical-align: -3px; }

.info-section { padding: 90px 20px; background: var(--white); }
.info-section.alt { background: var(--peach); }
.info-card {
  width: min(900px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
}
.number {
  font-size: 13px;
  font-weight: 700;
  color: var(--pink-dark);
  letter-spacing: .1em;
}
.info-card h2, .contact-section h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin-bottom: 16px;
}
.info-card p:last-child {
  max-width: 680px;
  color: var(--muted);
  margin: 0;
}

.contact-section {
  padding: 110px 20px;
  background: var(--ink);
  color: white;
  text-align: center;
}
.contact-inner { width: min(700px, 100%); margin: auto; }
.contact-section .section-kicker { color: #ffabb6; }
.contact-section p:not(.section-kicker) { color: #d6cfcc; margin: 0 auto 28px; }
.button.light { background: white; color: var(--ink); box-shadow: none; }
.button.light:hover { background: #fff2ef; }

footer {
  padding: 24px clamp(20px, 5vw, 72px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  background: var(--cream);
}

@media (max-width: 760px) {
  .site-header { min-height: 76px; }
  .brand { font-size: 19px; }
  .brand-heart { font-size: 40px; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 16px; border-radius: 10px; }
  .nav a:hover { background: var(--peach); }
  .nav a::after { display: none; }
  .hero { min-height: auto; padding: 28px 16px 70px; }
  .illustration-wrap { margin-bottom: 8px; }
  .illustration-wrap img { border-radius: 12px; }
  .lead { margin-top: 16px; }
  .button { width: 100%; max-width: 330px; }
  .info-section { padding: 70px 20px; }
  .info-card { grid-template-columns: 1fr; gap: 10px; }
  .number { margin-bottom: 4px; }
  .contact-section { padding: 80px 20px; }
  footer { flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
