:root {
  --rose-50: #fff7f9;
  --rose-100: #fceff3;
  --rose-200: #efb7c8;
  --rose-300: #d98ca3;
  --rose-400: #c97892;
  --rose-700: #a85d78;
  --wine: #6f4154;
  --text: #3f3f3f;
  --muted: #747474;
  --white: #ffffff;
  --soft-gray: #f6f3f4;
  --shadow: 0 20px 50px rgba(168, 93, 120, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--rose-50);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 247, 249, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 140, 163, 0.18);
}
.nav-wrapper { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose-200), var(--rose-300));
  color: var(--white); font-weight: 800; letter-spacing: -0.04em;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: 0.78rem; }
.main-nav { display: flex; align-items: center; gap: 24px; font-weight: 700; color: #5a4c51; }
.main-nav a:not(.nav-cta):hover { color: var(--rose-700); }
.nav-cta { padding: 11px 20px; border-radius: 999px; background: var(--rose-300); color: var(--white); box-shadow: 0 10px 25px rgba(217, 140, 163, 0.24); }
.nav-cta:hover { background: var(--rose-400); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 7px 4px; background: var(--rose-700); }

.hero {
  padding: 84px 0 70px;
  background: radial-gradient(circle at 15% 10%, rgba(239, 183, 200, 0.62), transparent 30%), linear-gradient(135deg, #fff, var(--rose-100));
}
.hero-grid, .split-grid, .location-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 58px; }
.eyebrow { display: inline-flex; color: var(--rose-700); background: rgba(239, 183, 200, 0.26); border: 1px solid rgba(217, 140, 163, 0.18); padding: 7px 13px; border-radius: 999px; font-weight: 800; font-size: 0.82rem; letter-spacing: 0.02em; }
h1, h2, h3 { line-height: 1.12; margin: 0; }
h1 { margin-top: 20px; font-family: "Playfair Display", serif; font-size: clamp(3rem, 7vw, 5.8rem); color: var(--rose-700); letter-spacing: -0.06em; }
.hero h2 { margin-top: 12px; font-size: clamp(1.55rem, 3vw, 2.25rem); color: #332d30; }
.hero p { max-width: 620px; font-size: 1.08rem; color: #5d5457; margin: 22px 0 0; }
.hero-actions, .location-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 13px 24px; border-radius: 999px; font-weight: 800; transition: 0.2s ease; }
.btn-primary { background: var(--rose-300); color: var(--white); box-shadow: 0 14px 30px rgba(217, 140, 163, 0.28); }
.btn-primary:hover { background: var(--rose-400); transform: translateY(-1px); }
.btn-secondary { background: var(--white); color: var(--rose-700); border: 1px solid rgba(217, 140, 163, 0.34); }
.btn-secondary:hover { background: var(--rose-100); }
.btn-urgent { background: #fff3da; color: #8d5c00; border: 1px solid rgba(238, 173, 64, 0.42); box-shadow: 0 14px 30px rgba(238, 173, 64, 0.16); }
.btn-urgent:hover { background: #ffe9b5; transform: translateY(-1px); }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 12px; padding: 0; margin: 28px 0 0; list-style: none; }
.hero-highlights li { background: var(--white); color: #665b60; border: 1px solid rgba(217, 140, 163, 0.18); border-radius: 999px; padding: 10px 14px; font-weight: 700; font-size: 0.92rem; }

.hero-card { position: relative; min-height: 540px; border-radius: 44px; background: linear-gradient(160deg, var(--white), #fde9ef); box-shadow: var(--shadow); overflow: hidden; display: grid; place-items: center; padding: 38px; }
.hero-card::before { content: ""; position: absolute; inset: 26px; border-radius: 34px; border: 1px solid rgba(217, 140, 163, 0.22); }
.photo-wrapper { position: relative; z-index: 1; width: min(100%, 410px); height: 460px; border-radius: 34px; overflow: hidden; box-shadow: 0 22px 48px rgba(168, 93, 120, 0.16); background: var(--white); }
.photo-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.floating-card { position: absolute; left: 32px; bottom: 32px; z-index: 2; background: var(--white); border-radius: 22px; padding: 18px 20px; box-shadow: 0 18px 38px rgba(168, 93, 120, 0.16); max-width: 220px; }
.floating-card strong { display: block; color: var(--rose-700); font-size: 2rem; line-height: 1; }
.floating-card span { color: var(--muted); font-weight: 700; }

.section { padding: 82px 0; }
.intro-strip { padding: 0; margin-top: -36px; position: relative; z-index: 5; }
.intro-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.intro-grid > div { padding: 26px 28px; border-right: 1px solid rgba(217, 140, 163, 0.15); }
.intro-grid > div:last-child { border-right: 0; }
.intro-grid strong, .intro-grid span { display: block; }
.intro-grid span { color: var(--muted); margin-top: 3px; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 42px; }
.section-heading h2, .soft-panel h2, .location-grid h2, .contact-card h2 { font-family: "Playfair Display", serif; color: var(--rose-700); font-size: clamp(2.2rem, 5vw, 3.7rem); letter-spacing: -0.045em; margin-top: 14px; }
.section-heading p { color: var(--muted); margin: 14px 0 0; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card, .soft-panel, .benefits-list > div, .testimonial-grid blockquote, .map-card, .contact-card, .faq-list details, .clinic-note, .symptom-grid div { background: var(--white); border: 1px solid rgba(217, 140, 163, 0.17); box-shadow: 0 14px 40px rgba(168, 93, 120, 0.08); }
.service-card { padding: 28px; border-radius: 26px; min-height: 250px; }
.laser-card { min-height: 360px; }
.mini-list { margin: 16px 0 0; padding-left: 18px; color: var(--muted); font-size: 0.93rem; }
.mini-list li { margin: 7px 0; }
.featured-card { background: linear-gradient(180deg, #fff, var(--rose-100)); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; background: var(--rose-100); font-size: 1.5rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1.22rem; color: #3b3337; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.rose-section { background: linear-gradient(180deg, var(--rose-50), var(--rose-100)); }
.split-section { background: linear-gradient(180deg, var(--rose-50), #fff); }
.soft-panel { border-radius: var(--radius); padding: 42px; }
.soft-panel p { color: #62595d; }
.text-link { display: inline-flex; margin-top: 16px; color: var(--rose-700); font-weight: 900; }
.benefits-list { display: grid; gap: 18px; }
.benefits-list > div { padding: 24px; border-radius: 22px; }
.benefits-list strong { display: block; color: var(--rose-700); font-size: 1.08rem; }
.benefits-list span { display: block; color: var(--muted); margin-top: 5px; }

.alert-section { background: #fff; }
.symptom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.symptom-grid div { border-radius: 20px; padding: 22px; font-weight: 800; color: var(--wine); position: relative; }
.symptom-grid div::before { content: "✓"; color: var(--rose-700); margin-right: 10px; }
.symptom-grid .urgent-symptom { background: #fff3da; color: #8d5c00; border-color: rgba(238, 173, 64, 0.35); }
.symptom-grid .urgent-symptom::before { content: ""; margin-right: 0; }
.clinic-note { border-radius: var(--radius); padding: 36px; }
.clinic-note h3 { color: var(--wine); font-size: 1.6rem; }
.clinic-note p, .clinic-note li { color: var(--muted); }
.clinic-note ul { padding-left: 20px; margin-bottom: 0; }

.testimonials { background: var(--white); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-grid blockquote { margin: 0; padding: 28px; border-radius: 24px; }
.testimonial-grid p { margin-top: 0; font-weight: 700; }
.testimonial-grid cite { color: var(--muted); font-style: normal; }

.location-grid { align-items: stretch; }
.location-grid > div:first-child { align-self: center; }
.location-grid p { color: var(--muted); }
.map-card { min-height: 360px; border-radius: var(--radius); overflow: hidden; display: block; }
.map-embed-card iframe { display: block; width: 100%; min-height: 360px; }
.faq-section { background: linear-gradient(180deg, #fff, var(--rose-100)); }
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.faq-list details { border-radius: 18px; padding: 20px 22px; }
.faq-list summary { cursor: pointer; font-weight: 800; color: #46393f; }
.faq-list p { color: var(--muted); margin-bottom: 0; }

.contact-section { background: var(--rose-100); }
.contact-card { border-radius: 34px; padding: 42px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.contact-card p { max-width: 620px; color: var(--muted); }
.contact-card small { display: block; color: var(--muted); max-width: 640px; }
.contact-actions { margin-top: 0; }
.site-footer { background: #3f3439; color: rgba(255,255,255,.86); padding: 38px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 22px; }
.site-footer p { color: rgba(255,255,255,.68); margin: 8px 0 0; }
.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 30; background: #25d366; color: white; border-radius: 999px; padding: 14px 18px; font-weight: 900; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.mobile-action-bar { display: none; }

@media (max-width: 1020px) {
  .main-nav { gap: 15px; font-size: .92rem; }
}
@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .main-nav { position: absolute; top: 76px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--white); border-radius: 20px; padding: 14px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 12px; }
  .nav-cta { text-align: center; margin-top: 8px; }
  .hero-grid, .split-grid, .location-grid, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .hero-card { min-height: 410px; }
  .intro-grid, .cards-grid, .testimonial-grid, .footer-grid, .symptom-grid { grid-template-columns: 1fr; }
  .intro-grid > div { border-right: 0; border-bottom: 1px solid rgba(217, 140, 163, 0.15); }
  .intro-grid > div:last-child { border-bottom: 0; }
  .contact-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 28px, 1120px); }
  .brand small { display: none; }
  .hero { padding-bottom: 54px; }
  .hero-card { border-radius: 28px; min-height: 350px; padding: 24px; }
  .photo-wrapper { height: 360px; border-radius: 26px; }
  .floating-card { left: 18px; bottom: 18px; right: 18px; max-width: none; }
  .section { padding: 60px 0; }
  .soft-panel, .contact-card, .clinic-note { padding: 28px; }
  .btn { width: 100%; }
  .whatsapp-float { display: none; }
  .mobile-action-bar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; background: rgba(255,255,255,.94); backdrop-filter: blur(12px); padding: 10px; border-radius: 999px; box-shadow: 0 18px 36px rgba(0,0,0,.18); }
  .mobile-action-bar a { min-height: 46px; display: grid; place-items: center; border-radius: 999px; font-weight: 900; font-size: .9rem; }
  .mobile-action-bar a:first-child { background: #25d366; color: #fff; }
  .mobile-action-bar a:nth-child(2) { background: #fff3da; color: #8d5c00; }
  .mobile-action-bar a:last-child { background: var(--rose-100); color: var(--rose-700); }
}
