:root {
  --rose: #d292ad;
  --rose-strong: #b96f8f;
  --sky: #9fcfdf;
  --sky-soft: #dff0f7;
  --text: #4a4950;
  --bg: #fff8fb;
  --card: #ffffff;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 22px 55px -28px rgba(120, 113, 140, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1000px 500px at 10% -5%, #ffe8f2 0%, transparent 60%),
    radial-gradient(900px 450px at 95% 0%, #e7f6fd 0%, transparent 55%),
    var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(45px);
  z-index: -1;
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
}

.bg-shape-1 {
  width: 240px;
  height: 240px;
  background: #f7c4d9;
  top: 8%;
  left: -90px;
}

.bg-shape-2 {
  width: 280px;
  height: 280px;
  background: #c3e6f3;
  bottom: 8%;
  right: -120px;
  animation-delay: 2s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 248, 251, 0.8);
  border-bottom: 1px solid rgba(210, 146, 173, 0.2);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 360px;
}

.brand img {
  width: 100%;
  border-radius: 16px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 0.97rem;
  transition: color 0.25s ease;
}

.menu a:hover {
  color: var(--rose-strong);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
  padding: 3.4rem 0 2rem;
}

.kicker {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--rose-strong);
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "DM Serif Display", Georgia, serif;
  color: #493f4a;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 4rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}

.lead {
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  padding: 0.86rem 1.4rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--rose), var(--rose-strong));
  color: #fff;
  box-shadow: 0 18px 28px -18px rgba(185, 111, 143, 0.7);
}

.btn-outline {
  border-color: rgba(185, 111, 143, 0.4);
  color: var(--rose-strong);
  background: #fff;
}

.btn-outline.light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
}

.btn-small {
  padding: 0.7rem 1.1rem;
  font-size: 0.92rem;
}

.tags {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
}

.tags li {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #f0d3e0;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-photo {
  position: relative;
}

.hero-photo .photo-wrap {
  position: relative;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  overflow: visible;
  min-height: 580px;
  display: flex;
  align-items: end;
  justify-content: center;
  isolation: isolate;
}

.hero-photo .photo-wrap::before {
  content: "";
  position: absolute;
  width: 92%;
  height: 88%;
  top: 4%;
  left: 4%;
  border-radius: 58% 42% 50% 50% / 46% 60% 40% 54%;
  transform: rotate(-4deg);
  background:
    radial-gradient(90% 78% at 18% 30%, rgba(181, 224, 241, 0.62) 0%, rgba(181, 224, 241, 0) 70%),
    radial-gradient(70% 68% at 86% 14%, rgba(223, 171, 196, 0.5) 0%, rgba(223, 171, 196, 0) 67%),
    linear-gradient(160deg, rgba(221, 240, 248, 0.54), rgba(255, 255, 255, 0.15));
  filter: blur(1px);
  z-index: 0;
}

.hero-photo .photo-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% 114%, var(--bg) 0%, rgba(255, 248, 251, 0) 55%),
    linear-gradient(to top, rgba(255, 248, 251, 0.95) 0%, rgba(255, 248, 251, 0.5) 14%, rgba(255, 248, 251, 0) 34%);
  z-index: 2;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  max-height: 760px;
  object-fit: contain;
  object-position: center bottom;
  z-index: 1;
  filter: drop-shadow(0 20px 34px rgba(150, 122, 136, 0.2));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 21%, #000 100%);
  mask-image: linear-gradient(to top, transparent 0%, #000 21%, #000 100%);
}

.section {
  padding: 3.6rem 0;
}

.section-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid #f2dde7;
  box-shadow: var(--shadow);
  padding: 2.2rem;
}

.section-head {
  margin-bottom: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.35rem;
  border: 1px solid #f2dde7;
  border-radius: var(--radius-md);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.95), rgba(230, 245, 252, 0.5));
  box-shadow: 0 14px 30px -25px rgba(94, 89, 110, 0.6);
}

.journey {
  padding: 2.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid #d8ecf6;
  background:
    linear-gradient(145deg, #f6fbfe, #ffffff);
}

.journey ol {
  margin-left: 1.2rem;
  margin-top: 0.8rem;
}

.journey li + li {
  margin-top: 0.55rem;
}

.cta {
  margin-top: 2rem;
  background: linear-gradient(130deg, #9ecfe1, #d292ad);
  color: #fff;
}

.cta-inner {
  padding: 3rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
}

.cta h2 {
  color: #fff;
}

.cta p {
  max-width: 60ch;
}

.cta-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer {
  padding: 1.3rem 0 2rem;
}

.footer-inner {
  border-top: 1px solid rgba(180, 111, 143, 0.2);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .hero-photo {
    order: -1;
  }

  .hero-photo .photo-wrap {
    min-height: 450px;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    max-width: 250px;
  }

  .hero-photo .photo-wrap {
    min-height: 360px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-card,
  .journey {
    padding: 1.3rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
