:root {
  --lavender: #b59ac7;
  --lavender-deep: #8d6aa7;
  --lavender-soft: #ddd0e7;
  --beige: #e9d7c4;
  --cream: #fbf7f2;
  --rose-cream: #f4e8e0;
  --ink: #302b31;
  --muted: #6f666e;
  --white: #ffffff;
  --line: rgba(48, 43, 49, .12);
  --shadow: 0 20px 55px rgba(74, 58, 76, .10);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(760px, 100%); }
.center { text-align: center; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 16px; top: 16px; z-index: 999; background: #fff; padding: 10px 14px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  color: var(--ink);
}
.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  text-decoration: none;
  font-size: .98rem;
  letter-spacing: .18em;
  font-weight: 700;
}
.site-nav { display: flex; gap: 28px; align-items: center; }
.site-nav a {
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: opacity .2s ease;
}
.site-nav a:hover { opacity: .58; }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 9px 14px;
  font: inherit;
}

.hero {
  min-height: 740px;
  position: relative;
  display: grid;
  place-items: center;
  background: url("assets/hero.png") center / cover no-repeat;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251,247,242,.30), rgba(255,255,255,.12), rgba(181,154,199,.08));
}
.hero-content {
  position: relative;
  padding-top: 108px;
  text-align: center;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 800;
}
.eyebrow.dark { color: var(--lavender-deep); }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  margin-top: 0;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .98;
  letter-spacing: -.045em;
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.65rem;
  line-height: 1.2;
  margin-bottom: 18px;
}
.hero-tagline {
  margin: 0 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}
.hero-copy {
  max-width: 650px;
  margin: 0 auto;
  color: #4e454e;
  font-size: 1.02rem;
}
.hero-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 30px 0 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--lavender-deep); color: white; box-shadow: 0 12px 28px rgba(141,106,167,.26); }
.btn-secondary { background: rgba(255,255,255,.68); border: 1px solid rgba(48,43,49,.18); backdrop-filter: blur(8px); }
.btn-light { background: white; color: var(--ink); }
.hero-note { margin: 0; font-size: .82rem; font-weight: 700; letter-spacing: .04em; }
.hero-note span { padding: 0 8px; }

.section { padding: 105px 0; }
.intro { background: #fff; }
.intro .narrow > p:last-child, .soft-section .narrow > p:last-child { color: var(--muted); }
.price-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.price-card.featured { background: linear-gradient(180deg, #f2eaf7 0%, #fbf7f2 100%); transform: translateY(-10px); }
.mini-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--lavender-deep);
  color: white;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .66rem;
  font-weight: 800;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row strong { white-space: nowrap; }
.card-note { margin: 22px 0 8px; color: var(--muted); font-size: .92rem; }
.text-link { text-decoration: none; font-weight: 800; color: var(--lavender-deep); }

.soft-section { background: linear-gradient(135deg, #f4e8e0 0%, #efe7f3 100%); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 74px; align-items: center; }
.decorative-card {
  min-height: 420px;
  border-radius: 34px;
  padding: 38px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.75);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.decor-line { letter-spacing: .18em; font-size: .8rem; font-weight: 800; }
.decorative-card p { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; line-height: 1.15; max-width: 330px; }
.decor-circle {
  position: absolute;
  width: 290px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e9d7c4, #b59ac7 70%, #8d6aa7);
  opacity: .68;
  right: -65px;
  top: 55px;
}
.about-copy p { color: var(--muted); max-width: 640px; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pill-row span { padding: 8px 13px; border-radius: 999px; background: rgba(255,255,255,.62); border: 1px solid rgba(48,43,49,.09); font-size: .82rem; font-weight: 700; }

.care-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 52px; }
.care-card { background: white; border-radius: var(--radius); padding: 34px; border: 1px solid var(--line); box-shadow: var(--shadow); }
ul { padding-left: 20px; margin-bottom: 0; }
li + li { margin-top: 10px; }

.faq-list { margin-top: 40px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 800; list-style: none; padding-right: 30px; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 12px 0 0; }

.contact-section { background: var(--lavender-deep); color: white; }
.contact-card { display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.contact-card h2 { max-width: 700px; margin-bottom: 16px; }
.contact-card p { color: rgba(255,255,255,.82); }
.contact-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.contact-meta span { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); padding: 7px 10px; border-radius: 999px; font-size: .78rem; }

.footer { background: #2e2930; color: rgba(255,255,255,.72); padding: 38px 0; }
.footer-row { display: flex; justify-content: space-between; gap: 24px; align-items: flex-end; }
.footer-brand { color: white; }
.footer p { margin: 8px 0 0; font-size: .86rem; }

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lavender-deep);
  color: white;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(48,43,49,.28);
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    padding: 18px;
    border-radius: 18px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(251,247,242,.97);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 8px 4px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .care-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-wrap { min-height: 70px; }
  .hero { min-height: 680px; background-position: center; }
  .hero-content { padding-top: 90px; }
  h1 { font-size: clamp(3rem, 17vw, 4.7rem); }
  h2 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .hero-copy { font-size: .95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; width: min(100%, 330px); margin-left: auto; margin-right: auto; }
  .btn { width: 100%; }
  .section { padding: 78px 0; }
  .price-card, .care-card { padding: 26px; }
  .decorative-card { min-height: 330px; }
  .footer-row { flex-direction: column; align-items: flex-start; }
}

/* Photo-led refresh */
.hero-content.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .75fr);
  gap: 70px;
  align-items: center;
  text-align: left;
}
.hero-copy-wrap { max-width: 610px; }
.hero-copy-wrap .hero-copy { margin-left: 0; }
.hero-copy-wrap .hero-actions { justify-content: flex-start; }
.hero-photo-frame {
  justify-self: end;
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  border-radius: 220px 220px 32px 32px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.58);
  box-shadow: 0 28px 70px rgba(77,55,76,.18);
  background: rgba(255,255,255,.3);
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 48% 50%; }
.service-photo {
  width: calc(100% + 64px);
  max-width: none;
  height: 210px;
  object-fit: cover;
  margin: -32px -32px 26px;
  border-radius: 24px 24px 0 0;
}
.about-photo-card {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 480px;
  background: #e7d7c8;
}
.about-photo-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.about-copy h2 { max-width: 620px; }

@media (max-width: 900px) {
  .hero-content.hero-grid { grid-template-columns: 1fr 330px; gap: 28px; }
  .hero-photo-frame { width: 330px; }
}
@media (max-width: 720px) {
  .hero { min-height: auto; padding: 98px 0 62px; }
  .hero-content.hero-grid { grid-template-columns: 1fr; text-align: center; gap: 34px; padding-top: 0; }
  .hero-copy-wrap { max-width: 100%; }
  .hero-copy-wrap .hero-copy { margin-left: auto; }
  .hero-copy-wrap .hero-actions { justify-content: center; }
  .hero-photo-frame { justify-self: center; width: min(86vw, 380px); order: -1; aspect-ratio: 4 / 4.8; }
}
@media (max-width: 640px) {
  .service-photo { width: calc(100% + 52px); margin: -26px -26px 24px; }
  .about-photo-card, .about-photo-card img { min-height: 360px; }
}
