
:root {
  --rose: #c98f93;
  --rose-dark: #a86870;
  --beige: #f7efe9;
  --beige-2: #f2e4d8;
  --white: #ffffff;
  --ink: #4d3f3f;
  --muted: #7a6666;
  --shadow: 0 16px 40px rgba(122, 88, 88, 0.12);
  --radius: 24px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fffaf6 0%, var(--beige) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px);
  background: rgba(255,250,246,.88); border-bottom: 1px solid rgba(201,143,147,.15);
}
.nav { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:14px 0; }
.logo-wrap img { width: 220px; }
.menu { display:flex; align-items:center; gap:26px; font-size: 15px; }
.menu a { color: var(--muted); }
.menu a:hover { color: var(--rose-dark); }
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding: 14px 22px; border-radius: 999px; border: none; cursor:pointer;
  font-weight: 700; transition: .25s ease; box-shadow: var(--shadow);
}
.btn-primary { background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%); color: white; }
.btn-primary:hover { transform: translateY(-2px); }
.btn-soft { background: rgba(201,143,147,.14); color: var(--rose-dark); box-shadow:none; }
.hero { padding: 42px 0 18px; }
.hero-grid {
  display:grid; grid-template-columns: 1.05fr 1.15fr; gap: 28px; align-items:center;
}
.hero-copy {
  background: rgba(255,255,255,.55); border: 1px solid rgba(201,143,147,.18); box-shadow: var(--shadow);
  padding: 44px; border-radius: 32px;
}
.badge { display:inline-block; background: rgba(201,143,147,.18); color: var(--rose-dark); padding: 10px 18px; border-radius: 999px; font-weight: 700; margin-bottom: 18px; }
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif; font-size: clamp(42px, 5vw, 74px);
  line-height: .97; margin: 0 0 18px; color: #7d575a;
}
.hero p { color: var(--muted); font-size: 18px; line-height: 1.6; margin-bottom: 26px; }
.hero-actions { display:flex; gap:14px; flex-wrap:wrap; }
.hero-meta { display:flex; gap:18px; flex-wrap:wrap; margin-top: 18px; color: var(--muted); font-size: 15px; }
.hero-visual {
  position:relative; overflow:hidden; border-radius: 32px; box-shadow: var(--shadow); min-height: 620px;
}
.hero-visual img { width:100%; height:100%; object-fit:cover; }
.hero-overlay {
  position:absolute; inset:auto 0 0 0; padding:24px; background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(67,39,42,.58) 100%); color:white;
}
.section { padding: 70px 0; }
.section-head { text-align:center; max-width:780px; margin:0 auto 34px; }
.section-head h2 { margin:0 0 10px; font-size: clamp(32px, 4vw, 48px); font-family: Georgia, 'Times New Roman', serif; color:#7d575a; }
.section-head p { margin:0; color:var(--muted); line-height:1.7; }
.services-grid {
  display:grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap:22px;
}
.service-card {
  background:white; border-radius: var(--radius); overflow:hidden; box-shadow: var(--shadow); border: 1px solid rgba(201,143,147,.14);
}
.service-card img { width:100%; aspect-ratio: 4/3; object-fit:cover; }
.service-body { padding: 22px; }
.service-title { display:flex; justify-content:space-between; gap:12px; align-items:flex-start; margin-bottom:8px; }
.service-title h3 { margin:0; font-size:22px; }
.price { color: var(--rose-dark); font-weight: 800; white-space: nowrap; }
.service-body p { color: var(--muted); line-height:1.6; margin: 0 0 16px; min-height: 72px; }
.tag-row { display:flex; flex-wrap:wrap; gap:8px; }
.tag { font-size:12px; font-weight:700; color: var(--rose-dark); background: rgba(201,143,147,.12); padding:8px 10px; border-radius:999px; }
.highlight {
  background: linear-gradient(135deg, rgba(201,143,147,.18), rgba(247,239,233,.9)); border-top:1px solid rgba(201,143,147,.12); padding:18px 22px; display:flex; justify-content:space-between; gap:16px; align-items:center;
}
.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.panel {
  background: rgba(255,255,255,.75); border-radius: 28px; padding: 34px; box-shadow: var(--shadow); border: 1px solid rgba(201,143,147,.14);
}
.panel h3 { margin-top:0; font-size: 28px; font-family: Georgia, 'Times New Roman', serif; color:#7d575a; }
.panel p { color: var(--muted); line-height:1.7; }
.list { margin: 0; padding-left: 18px; color: var(--muted); line-height: 1.9; }
.gallery-grid {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.gallery-grid figure {
  margin:0; overflow:hidden; border-radius: 20px; box-shadow: var(--shadow); background:white; aspect-ratio: 1/1;
}
.gallery-grid img { width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gallery-grid figure:hover img { transform: scale(1.05); }
.contact-cards {
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.contact-card {
  background:white; border-radius: 22px; padding: 22px; box-shadow: var(--shadow); border: 1px solid rgba(201,143,147,.14);
}
.contact-card h4 { margin: 0 0 8px; font-size: 18px; }
.contact-card p, .contact-card a { color: var(--muted); line-height:1.6; }
.cta-strip {
  margin-top: 28px; padding: 24px; border-radius: 24px; background: linear-gradient(135deg, #7d575a 0%, #b2767d 100%); color:white;
  display:flex; justify-content:space-between; align-items:center; gap:18px; flex-wrap:wrap;
}
footer {
  padding: 34px 0 60px; color: var(--muted); text-align:center; font-size:14px;
}
.floating-wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 30; width: 58px; height:58px; border-radius:50%;
  background: #25D366; color:white; display:flex; align-items:center; justify-content:center; font-size: 28px; box-shadow: var(--shadow);
}
.small { font-size: 13px; color: var(--muted); }
@media (max-width: 1080px) {
  .hero-grid, .two-col, .services-grid, .contact-cards { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .menu { display:none; }
  .logo-wrap img { width: 180px; }
  .hero-grid, .two-col, .services-grid, .contact-cards, .gallery-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 28px; }
  .hero-visual { min-height: 400px; }
  .panel { padding: 24px; }
  .section { padding: 52px 0; }
}
