:root {
  --bg-main: #fcf9f8;
  --text-main: #4a4240;
  --text-muted: #827673;
  --accent-peach: #ffd3c6;
  --accent-peach-dark: #e89582;
  --accent-lavender: #e6dcf2;
  --accent-lavender-dark: #9d81ba;
  --card-bg: rgba(255, 255, 255, 0.65);
  --font-heading: 'Lora', serif;
  --font-body: 'Nunito', sans-serif;
  --radius-card: 32px;
  --shadow-soft: 0 20px 40px rgba(130, 110, 105, 0.06);
  --max-w: 1100px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

body::before, body::after {
  content: ""; position: fixed; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: 0.6; pointer-events: none;
}
body::before { top: -15%; left: -10%; width: 70vw; height: 70vw; background: radial-gradient(circle, var(--accent-peach) 0%, transparent 70%); }
body::after { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: radial-gradient(circle, var(--accent-lavender) 0%, transparent 70%); }

h1, h2, h3, .brand .name { font-family: var(--font-heading); color: #2d2827; }
h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1.1; margin: 0; font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.2rem); margin: 0 0 1.5rem; font-weight: 500; display: flex; align-items: center; gap: 12px; }
h2::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, var(--accent-peach-dark), transparent); opacity: 0.3; }
h3 { font-size: 1.25rem; margin: 0 0 0.25rem; font-weight: 600; }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; height: 80px; display: flex; align-items: center;
  background: rgba(252, 249, 248, 0.4); backdrop-filter: blur(16px); transition: all 0.3s ease;
}
body.scrolled .site-header { background: rgba(255, 255, 255, 0.85); border-bottom: 1px solid rgba(130, 110, 105, 0.1); box-shadow: 0 10px 30px rgba(130, 110, 105, 0.05); }
.header-inner { display: flex; justify-content: space-between; width: 100%; align-items: center; padding: 0 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.header-spacer { height: 80px; }

.brand { display: flex; align-items: center; gap: 12px; }
.tag { background: #f1ebf7; color: var(--accent-lavender-dark); padding: 4px 12px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; }

.nav a { padding: 8px 16px; border-radius: 999px; font-weight: 600; color: var(--text-muted); transition: all 0.2s; }
.nav a:hover { color: var(--text-main); }
.nav a.active { color: var(--accent-peach-dark); background: #fff; box-shadow: 0 2px 10px rgba(130,110,105,0.05); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 2rem 1.5rem; }
.grid { display: grid; gap: 2rem; }
.pad { padding: 3rem; }
.card { background: var(--card-bg); backdrop-filter: blur(20px); border-radius: var(--radius-card); border: 1px solid rgba(255, 255, 255, 0.9); box-shadow: var(--shadow-soft); }

.btn {
  display: inline-flex; align-items: center; padding: 12px 24px; border-radius: 999px; font-weight: 700;
  background: #fff; color: var(--text-main); box-shadow: 0 4px 15px rgba(232, 149, 130, 0.15); border: 1px solid rgba(232, 149, 130, 0.1); transition: all 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232, 149, 130, 0.25); color: var(--accent-peach-dark); }

.pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.5rem; }
.pill { background: #fff; color: var(--accent-peach-dark); padding: 6px 18px; border-radius: 999px; font-size: 0.9rem; font-weight: 700; border: 1px solid rgba(255,211,198, 0.5); }

.hero-intro { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: center; }
.portrait { 
  width: 100%; aspect-ratio: 4/5; object-fit: cover; 
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  box-shadow: 0 20px 40px rgba(232, 149, 130, 0.2); border: 8px solid rgba(255, 255, 255, 0.8); transition: 0.4s;
}
.portrait:hover { border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.features .item { background: rgba(255, 255, 255, 0.5); border-radius: 24px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.8); transition: 0.3s; }
.features .item:hover { background: #fff; transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.features .ico { display: inline-grid; place-items: center; width: 54px; height: 54px; margin-bottom: 1rem; border-radius: 40% 60% 50% 40% / 50% 40% 60% 50%; background: #f1ebf7; color: var(--accent-lavender-dark); }

.full-width-content { max-width: 900px; margin: 0 auto; }
.checklist { 
  list-style: none; padding: 0; margin-top: 2.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; 
}
.checklist li { 
  position: relative; padding: 1.25rem 1.25rem 1.25rem 3.5rem; background: rgba(255, 255, 255, 0.4); 
  border-radius: 20px; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.6); 
  display: flex; align-items: center;
}
.checklist li::before { 
  content: "✓"; position: absolute; left: 1rem; width: 30px; height: 30px; 
  background: var(--accent-peach); color: var(--accent-peach-dark); 
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
}

.text-center { text-align: center; }
.foot { color: var(--text-muted); }

@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(20px); transition: 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
  .reveal.is-visible { opacity: 1; transform: none; }
  .stagger > * { opacity: 0; transform: translateY(16px); transition: 0.6s ease; }
  .stagger.is-visible > * { opacity: 1; transform: none; }
  .stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
  .stagger.is-visible > *:nth-child(3) { transition-delay: 0.2s; }
}

@media (max-width: 980px) {
  .hero-intro { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
  .portrait { max-width: 280px; margin: 0 auto; }
  .contacts, .pills, h2 { justify-content: center; }
  h2::after { display: none; }
}

@media (max-width: 640px) {
  .pad { padding: 2rem; }
  .nav, .tag { display: none; }
  .checklist { grid-template-columns: 1fr; }
}