:root {
  --rose-deep: #a4425a;
  --rose-dark: #6e2438;
  --blush: #f7e6e0;
  --cream: #fffaf7;
  --gold: #cf9b4e;
  --ink: #2e1f22;
  --muted: #8a7377;
  --radius: 16px;
  --shadow: 0 12px 28px rgba(110,36,56,0.14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1040px; margin: 0 auto; padding: 0 20px; }

.demo-banner {
  background: var(--rose-dark);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  padding: 9px 14px;
}
.demo-banner a { color: var(--gold); font-weight: 700; text-decoration: underline; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid rgba(110,36,56,0.1);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.brand { font-weight: 800; font-size: 1.2rem; color: var(--rose-dark); letter-spacing: 0.3px; }
.brand span { color: var(--gold); }

nav.links { display: none; gap: 24px; font-size: 0.9rem; font-weight: 600; }

.btn-whats {
  background: var(--rose-deep);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(160deg, var(--blush), var(--cream) 65%);
  padding: 56px 0 46px;
  text-align: center;
}
.eyebrow {
  display: inline-block;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(164,66,90,0.3);
  padding: 5px 14px;
  border-radius: 999px;
}
.hero h1 { font-size: 2rem; font-weight: 800; margin-bottom: 14px; color: var(--rose-dark); line-height: 1.25; }
.hero p { color: var(--muted); max-width: 480px; margin: 0 auto 26px; font-size: 1rem; }

.btn-primary {
  display: inline-block;
  background: var(--rose-deep);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  box-shadow: var(--shadow);
}

.hero-gallery {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-gallery .swatch {
  width: 84px;
  height: 84px;
  border-radius: 14px;
}
.s1 { background: linear-gradient(135deg,#e7b8c4,#a4425a); }
.s2 { background: linear-gradient(135deg,#f0d9c0,#cf9b4e); }
.s3 { background: linear-gradient(135deg,#d9c2d1,#6e2438); }
.s4 { background: linear-gradient(135deg,#f4e3e6,#e7b8c4); }

section { padding: 52px 0; }
.section-head { text-align: center; max-width: 520px; margin: 0 auto 34px; }
.section-head .eyebrow { }
.section-head h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 8px; color: var(--rose-dark); }
.section-head p { color: var(--muted); font-size: 0.94rem; }

.grid-2 { display: grid; gap: 18px; grid-template-columns: 1fr; }

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(110,36,56,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.service-card h3 { font-size: 1rem; margin-bottom: 4px; }
.service-card p { color: var(--muted); font-size: 0.85rem; }
.service-price { color: var(--rose-deep); font-weight: 800; font-size: 1.05rem; white-space: nowrap; }

.about-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.about-wrap p { color: var(--muted); margin-bottom: 10px; }

.info-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.info-card .icon { font-size: 1.6rem; margin-bottom: 10px; }
.info-card h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--rose-dark); }
.info-card p { color: var(--muted); font-size: 0.85rem; }

.cta-final {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose-dark));
  color: #fff;
  text-align: center;
  border-radius: 20px;
  padding: 40px 22px;
  margin: 0 20px;
}
.cta-final h2 { font-size: 1.4rem; margin-bottom: 10px; }
.cta-final p { color: rgba(255,255,255,0.85); margin-bottom: 22px; max-width: 420px; margin-left:auto; margin-right:auto; }
.cta-final .btn-primary { background: #fff; color: var(--rose-dark); }

footer {
  text-align: center;
  padding: 26px 20px 90px;
  color: var(--muted);
  font-size: 0.8rem;
}

.floating-whats {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #25D366;
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 200;
}

@media (min-width: 720px) {
  nav.links { display: flex; }
  .hero h1 { font-size: 2.5rem; max-width: 620px; margin-left:auto; margin-right:auto; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}
