:root {
  --rose-50: #fff7f9;
  --rose-100: #fdeef3;
  --rose-200: #f8d5e2;
  --rose-300: #f0b0c8;
  --rose-400: #e48aae;
  --rose-500: #d46a95;
  --rose-600: #b84d78;
  --rose-700: #933a5e;
  --ink: #3a2a32;
  --ink-soft: #6b5560;
  --white: #ffffff;
  --cream: #fffbfc;
  --shadow: 0 24px 60px rgba(184, 77, 120, 0.12);
  --radius: 22px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(244, 180, 205, 0.35), transparent 60%),
    radial-gradient(900px 500px at 100% 0%, rgba(255, 230, 238, 0.7), transparent 55%),
    linear-gradient(180deg, var(--rose-50), var(--cream) 40%, #fff);
  line-height: 1.65;
  min-height: 100vh;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
h3 { font-size: 1.35rem; margin-bottom: 0.45em; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--rose-600); }

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}
.container.narrow { max-width: 720px; }

.bg-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(228, 138, 174, 0.08), transparent 35%),
    radial-gradient(circle at 15% 70%, rgba(248, 213, 226, 0.25), transparent 40%);
  z-index: -1;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 251, 252, 0.82);
  border-bottom: 1px solid rgba(228, 138, 174, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(184, 77, 120, 0.2);
}
.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--rose-600); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  border-radius: 2px;
  transition: 0.2s;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-sm { padding: 0.55rem 1rem; font-size: 0.88rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
  color: var(--white);
  box-shadow: 0 10px 28px rgba(184, 77, 120, 0.28);
}
.btn-primary:hover { box-shadow: 0 14px 34px rgba(184, 77, 120, 0.35); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--rose-200);
  color: var(--rose-700);
}
.btn-ghost:hover { background: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--rose-700);
  box-shadow: 0 10px 30px rgba(58, 42, 50, 0.12);
}
.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.12); }

/* Hero */
.hero {
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-600);
  margin-bottom: 0.9rem;
}
.eyebrow.light { color: rgba(255, 255, 255, 0.85); }
.eyebrow.center, .center { text-align: center; }
.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 36rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.6rem 0 1.4rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-400);
  box-shadow: 0 0 0 4px rgba(228, 138, 174, 0.2);
}

.hero-visual { position: relative; }
.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--white);
}
.hero-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 251, 252, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(248, 213, 226, 0.8);
}
.hero-badge strong { display: block; font-size: 1.05rem; }
.hero-badge span { color: var(--ink-soft); font-size: 0.88rem; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: -1;
}
.orb-1 {
  width: 180px;
  height: 180px;
  background: rgba(240, 176, 200, 0.45);
  top: -30px;
  right: -20px;
}
.orb-2 {
  width: 120px;
  height: 120px;
  background: rgba(228, 138, 174, 0.25);
  bottom: 40px;
  left: -30px;
}

/* Sections */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section.soft {
  background: linear-gradient(180deg, rgba(253, 238, 243, 0.55), rgba(255, 255, 255, 0.2));
  border-block: 1px solid rgba(248, 213, 226, 0.45);
}
.section-head { margin-bottom: 2rem; max-width: 640px; }
.muted { color: var(--ink-soft); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.stat {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(248, 213, 226, 0.7);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 30px rgba(184, 77, 120, 0.06);
}
.stat-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-500);
  margin-bottom: 0.4rem;
}
.stat p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: var(--white);
  border: 1px solid rgba(248, 213, 226, 0.75);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: 0 12px 36px rgba(184, 77, 120, 0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(184, 77, 120, 0.12);
}
.card-highlight {
  background: linear-gradient(160deg, #fff, var(--rose-100));
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--rose-100);
  color: var(--rose-600);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  flex: 1;
}
.card-link {
  margin-top: 0.6rem;
  color: var(--rose-600);
  font-weight: 600;
  font-size: 0.92rem;
}
.card-link:hover { color: var(--rose-700); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.about-media img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 6px solid rgba(255, 255, 255, 0.9);
  width: 100%;
  object-fit: cover;
  min-height: 280px;
}

/* CTA */
.cta { padding-bottom: clamp(3.5rem, 8vw, 6rem); }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: 28px;
  background:
    radial-gradient(700px 240px at 90% 0%, rgba(255, 255, 255, 0.18), transparent 50%),
    linear-gradient(135deg, #c45c7a, #b84d78 45%, #933a5e);
  color: var(--white);
  box-shadow: 0 24px 50px rgba(147, 58, 94, 0.28);
}
.cta-box h2 { color: #fff; }
.cta-box p { color: rgba(255, 255, 255, 0.9); max-width: 36rem; margin-bottom: 0; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: min(100%, 260px);
}
.cta-actions .btn { width: 100%; }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(248, 213, 226, 0.6);
  padding: 2rem 0 2.4rem;
  background: rgba(255, 255, 255, 0.55);
}
.footer-inner {
  display: grid;
  gap: 1.2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.footer-brand strong { display: block; font-size: 0.95rem; }
.footer-brand span { color: var(--ink-soft); font-size: 0.85rem; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-links a:hover { color: var(--rose-600); }
.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cards,
  .stats { grid-template-columns: 1fr 1fr; }
  .cards .card:last-child:nth-child(odd) { grid-column: span 2; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    inset: 72px 1rem auto;
    background: rgba(255, 251, 252, 0.97);
    border: 1px solid var(--rose-200);
    border-radius: 18px;
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-grid,
  .about-grid,
  .cards,
  .stats { grid-template-columns: 1fr; }
  .cards .card:last-child:nth-child(odd) { grid-column: auto; }
  .hero { padding-top: 1.5rem; }
}
