:root {
  --pink: #EC2C8E;
  --pink-mid: #F06CA8;
  --pink-soft: #F9E3EC;
  --pink-bg: #FDF4F8;
  --cyan: #3FE0E0;
  --gold: #C9A86A;
  --ink: #2B2B2B;
  --muted: #7a6e72;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(236, 44, 142, 0.12);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }

a { text-decoration: none; color: inherit; }

em { font-style: italic; color: var(--pink); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pink-soft);
}
.nav__inner {
  max-width: 1140px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav__brand { display: flex; align-items: center; gap: 6px; }
.nav__logo-img { height: 52px; width: auto; display: block; }
.nav__logo { font-family: 'Dancing Script', cursive; font-size: 30px; font-weight: 700; color: var(--pink); line-height: 1; }
.nav__sub { font-family: 'Poppins'; font-size: 12px; letter-spacing: 2px; color: var(--muted); text-transform: lowercase; }
.footer__logo-img { height: 110px; width: auto; display: block; }
.nav__links { display: flex; gap: 26px; }
.nav__links a { font-size: 14px; font-weight: 500; color: var(--ink); transition: color .2s; }
.nav__links a:hover { color: var(--pink); }

/* BUTTONS */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 500; font-size: 15px; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
}
.btn--primary { background: var(--pink); color: #fff; box-shadow: 0 10px 24px rgba(236,44,142,.35); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(236,44,142,.45); }
.btn--ghost { background: transparent; color: var(--pink); border: 1.5px solid var(--pink); }
.btn--ghost:hover { background: var(--pink); color: #fff; }
.btn--nav { background: var(--pink); color: #fff; padding: 10px 22px; font-size: 14px; }
.btn--nav:hover { transform: translateY(-2px); }

/* HERO */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--pink-bg) 0%, var(--pink-soft) 100%);
  padding: 110px 24px 120px;
  text-align: center;
}
.hero__petals {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(240,108,168,.25) 0, transparent 22%),
    radial-gradient(circle at 88% 30%, rgba(63,224,224,.18) 0, transparent 20%),
    radial-gradient(circle at 75% 85%, rgba(236,44,142,.15) 0, transparent 25%);
}
.hero__content { position: relative; max-width: 760px; margin: 0 auto; }
.hero__eyebrow { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); font-weight: 500; margin-bottom: 18px; }
.hero__title { font-size: clamp(44px, 7vw, 76px); margin-bottom: 22px; }
.hero__text { font-size: 18px; color: var(--muted); max-width: 560px; margin: 0 auto 34px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* SECTIONS */
.section { max-width: 1140px; margin: 0 auto; padding: 90px 24px; }
.section--soft { max-width: 100%; background: var(--pink-bg); }
.section--soft .treatments, .section--soft .section__head { max-width: 1140px; margin-left: auto; margin-right: auto; }
.section__head { text-align: center; margin-bottom: 54px; }
.kicker { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: var(--pink); font-weight: 600; margin-bottom: 10px; }
.kicker--light { color: #fff; opacity: .9; }
.section__head h2 { font-size: clamp(32px, 5vw, 48px); }
.section__lead { color: var(--muted); margin-top: 12px; }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  background: #fff; border: 1px solid var(--pink-soft); border-radius: var(--radius);
  padding: 40px 30px; text-align: center; box-shadow: var(--shadow); transition: transform .25s;
}
.pillar:hover { transform: translateY(-6px); }
.pillar__icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; font-size: 26px; color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--pink-mid));
}
.pillar h3 { font-size: 26px; margin-bottom: 12px; }
.pillar p { color: var(--muted); font-size: 15px; }

/* TREATMENTS */
.treatments { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.treatment {
  background: #fff; border-radius: var(--radius); padding: 30px 32px;
  border-left: 4px solid var(--pink); box-shadow: var(--shadow);
}
.treatment h3 { font-size: 23px; color: var(--pink); margin-bottom: 8px; }
.treatment p { color: var(--muted); font-size: 15px; }

/* GALLERY */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery__item {
  aspect-ratio: 4/5; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--pink-soft), var(--pink-bg));
  display: grid; place-items: center; color: var(--pink-mid);
  font-weight: 500; letter-spacing: 1px; border: 1px dashed var(--pink-mid);
}
.gallery__note { text-align: center; color: var(--muted); margin-top: 28px; font-size: 15px; }

/* CTA */
.section--cta { max-width: 100%; padding-top: 0; }
.cta-card {
  max-width: 1140px; margin: 0 auto; border-radius: 28px; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-mid) 100%);
  color: #fff; box-shadow: var(--shadow);
}
.cta-card__text { padding: 56px 48px; }
.cta-card__text h2 { font-size: 38px; margin-bottom: 14px; }
.cta-card__text p { opacity: .92; margin-bottom: 26px; }
.cta-card__text .btn--primary { background: #fff; color: var(--pink); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.booking-form { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.booking-form input, .booking-form select {
  padding: 12px 14px; border-radius: 10px; border: none; font-family: inherit; font-size: 15px;
  background: rgba(255,255,255,.95); color: var(--ink);
}
.booking-form input:focus, .booking-form select:focus { outline: 2px solid #fff; }
.booking-form .btn--primary { background: #fff; color: var(--pink); margin-top: 4px; }
.booking-msg { font-size: 14px; margin: 4px 0 0; min-height: 18px; }
.booking-msg.ok { color: #fff; font-weight: 500; }
.booking-msg.err { color: #ffe0e0; }
.booking-wa { display: inline-block; margin-top: 14px; color: #fff; font-size: 14px; opacity: .9; text-decoration: underline; }
.booking-wa:hover { opacity: 1; }
.cta-card__info { background: rgba(255,255,255,.12); padding: 56px 44px; backdrop-filter: blur(4px); }
.cta-card__info h3 { font-size: 24px; margin-bottom: 18px; }
.hours { list-style: none; margin-bottom: 24px; }
.hours li { display: flex; flex-direction: column; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.hours span { font-size: 13px; opacity: .85; }
.hours strong { font-weight: 500; }
.contact-lines { display: flex; flex-direction: column; gap: 10px; }
.contact-lines a { font-weight: 500; transition: opacity .2s; }
.contact-lines a:hover { opacity: .8; }

/* FOOTER */
.footer { text-align: center; padding: 56px 24px 40px; background: var(--pink-bg); }
.footer__brand { display: flex; align-items: baseline; gap: 6px; justify-content: center; margin-bottom: 12px; }
.footer p { color: var(--muted); font-size: 14px; }
.footer__small { margin-top: 10px; font-size: 12px; opacity: .8; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.5); transition: transform .2s;
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes pulse {
  0% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 10px 26px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
  .treatments { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
