:root {
  --pink-50: #fff3f8;
  --pink-100: #ffe4ef;
  --pink-200: #ffc2dc;
  --pink-400: #f05b9d;
  --pink-500: #df3d88;
  --pink-700: #9f1d5b;
  --plum: #3a1430;
  --ink: #211620;
  --muted: #735c6d;
  --white: #ffffff;
  --soft-shadow: 0 24px 70px rgba(159, 29, 91, 0.18);
  --radius: 28px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--pink-50), #fff 38%, var(--pink-50));
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 243, 248, 0.88);
  border-bottom: 1px solid rgba(223, 61, 136, 0.14);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 10px 24px rgba(223, 61, 136, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu a {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--plum);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--pink-100);
  color: var(--pink-700);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--pink-100);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--plum);
}

.hero {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -54px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: var(--pink-200);
  filter: blur(36px);
  opacity: 0.6;
  z-index: -1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink-700);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--plum);
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  box-shadow: 0 14px 28px rgba(223, 61, 136, 0.25);
}

.btn-secondary {
  color: var(--pink-700);
  background: var(--white);
  border: 1px solid rgba(223, 61, 136, 0.18);
  box-shadow: 0 12px 28px rgba(159, 29, 91, 0.09);
}

.hero-image-card {
  position: relative;
  padding: 14px;
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--soft-shadow);
}

.hero-image-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 42%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--pink-200), var(--pink-500));
  z-index: -1;
}

.hero-image-card img,
.about img,
.feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-image-card img {
  aspect-ratio: 4 / 5;
}

.intro-strip {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 22px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  border: 1px solid rgba(223, 61, 136, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(159, 29, 91, 0.08);
}

.intro-strip div {
  padding: 12px 16px;
  border-radius: 18px;
  background: var(--pink-50);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  color: var(--plum);
}

.intro-strip span {
  color: var(--muted);
  font-size: 0.94rem;
}

.section {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 84px 0;
}

.about,
.feature,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about img,
.feature img {
  aspect-ratio: 1.1 / 1;
  box-shadow: var(--soft-shadow);
}

.section-text,
.contact-details,
.contact-form {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 61, 136, 0.14);
  box-shadow: 0 16px 46px rgba(159, 29, 91, 0.09);
  padding: clamp(24px, 4vw, 42px);
}

.section-text h2,
.section-heading h2,
.contact-details h2 {
  margin: 0;
  color: var(--plum);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.section-text p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact-details p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 190px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, var(--pink-50));
  border: 1px solid rgba(223, 61, 136, 0.13);
  box-shadow: 0 14px 36px rgba(159, 29, 91, 0.08);
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--plum);
  font-size: 1.35rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--pink-700);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
}

.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  border: 10px solid #fff;
  box-shadow: var(--soft-shadow);
  background: var(--pink-100);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: min(58vh, 480px);
  min-height: 330px;
  border: 0;
}

.contact {
  align-items: start;
  padding-top: 60px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.contact-list span {
  color: var(--plum);
  font-weight: 900;
}

.contact-list a {
  color: var(--pink-700);
  font-weight: 850;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 7px;
}

label {
  color: var(--plum);
  font-weight: 850;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(223, 61, 136, 0.2);
  border-radius: 18px;
  background: #fff;
  padding: 14px 16px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px rgba(240, 91, 157, 0.14);
}

.form-submit {
  width: fit-content;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 750;
}

.form-status.success {
  color: #167a3d;
}

.form-status.error {
  color: #b42318;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(223, 61, 136, 0.15);
  color: var(--muted);
}

.site-footer strong {
  color: var(--plum);
}

.site-footer p {
  margin: 6px 0 0;
}

.footer-links {
  margin-top: 0;
}

.footer-links a {
  color: var(--pink-700);
  font-weight: 850;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.32);
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(223, 61, 136, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--soft-shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: center;
  }

  .hero,
  .about,
  .feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-image-card {
    max-width: 620px;
    margin: 0 auto;
  }

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

  .feature img {
    order: 2;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .navbar,
  .hero,
  .intro-strip,
  .section,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    gap: 30px;
    padding-top: 40px;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
  }

  .btn,
  .form-submit {
    width: 100%;
  }

  .intro-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .section-text,
  .contact-details,
  .contact-form,
  .service-card {
    padding: 22px;
  }

  .map-wrap iframe {
    min-height: 280px;
  }

  .whatsapp-float {
    left: 18px;
    right: 18px;
  }
}
