:root {
  --bg: #f6f5f7;
  --surface: #ffffff;
  --primary: #db6f9f;
  --primary-dark: #b7517f;
  --accent: #fdebf3;
  --text: #1b171a;
  --muted: #625861;
  --radius: 16px;
  --shadow: 0 14px 40px rgba(219, 111, 159, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #fff7fb 0%, var(--bg) 45%);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1140px, 92%); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title { font-size: clamp(1.7rem, 2.4vw, 2.3rem); margin: 0 0 12px; }
.section-subtitle { color: var(--muted); margin-top: 0; max-width: 720px; }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee1e8;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary-dark); font-size: 1.05rem; }
.brand img { height: 48px; width: 48px; object-fit: cover; border-radius: 10px; border: 1px solid #f0dde6; }
.nav nav { margin-left: auto; }
.menu { display: flex; gap: 10px; list-style: none; margin: 0; padding: 0; }
.menu a { padding: 9px 12px; border-radius: 10px; transition: .25s ease; }
.menu a[aria-current="page"], .menu a:hover { background: #fdeef5; color: var(--primary-dark); }
.menu-toggle {
  display: none;
  border: 1px solid #ecdbe4;
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.hamburger {
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  position: relative;
  border-radius: 4px;
}
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 4px;
}
.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 160px;
  border: 0;
  border-radius: 12px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1;
  cursor: pointer;
  transition: .25s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 22px rgba(219,111,159,.3); }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); }
.btn-secondary { background: #fff; border: 1px solid #ead8e1; color: var(--primary-dark); }

.hero { padding: 90px 0 56px; }
.hero-overlay {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid #eddfe7;
}
.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 16, 19, 0.70), rgba(20, 16, 19, 0.35));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 28px;
}
.hero h1 { font-size: clamp(2rem, 4.1vw, 3.2rem); line-height: 1.1; margin: 0 0 14px; color: #fff; }
.hero p { color: #f5ecf1; }
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cards { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid #f0e3e9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: .3s ease;
}
.card:hover { transform: translateY(-5px); }

.kpi { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.kpi .card { text-align: center; }
.kpi strong { font-size: 1.8rem; color: var(--primary-dark); display: block; }

.gallery-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  margin: 0;
  background: #fff;
  border: 1px solid #f0e3e9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img,
.before-after img,
.hero figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.before-after { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }

.cta {
  background: linear-gradient(120deg, #f9e6ee, #fffafd);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border: 1px solid #f0e1e7;
}

.form-wrap { background: #fff; border: 1px solid #f0e3e9; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
label { display: block; font-weight: 600; margin-bottom: 6px; }
input, textarea, select { width: 100%; padding: 11px 12px; border: 1px solid #dbc8d1; border-radius: 10px; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.form-msg { margin-top: 12px; font-weight: 600; }

.footer { margin-top: 52px; background: #151216; color: #f8eef3; padding: 38px 0 24px; }
.footer-grid { display: grid; gap: 20px; grid-template-columns: 2fr 1fr 1fr; }
.footer a { color: #fbeaf0; }
.small { color: #d8c5ce; font-size: .92rem; margin-top: 18px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: 8px 12px; }
.skip-link:focus { left: 10px; }

/* Motion style (framer-like feel with CSS + JS reveal) */
.reveal { opacity: 0; transform: translateY(24px) scale(.99); transition: opacity .65s ease, transform .65s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0) scale(1); }

@media (max-width: 960px) {
  .hero-grid, .cards, .kpi, .before-after, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .nav nav { margin-left: 0; }
  .menu {
    display: none; position: absolute; right: 4%; top: 66px; background: #fff; border: 1px solid #eddee5; border-radius: 12px;
    flex-direction: column; padding: 10px; min-width: 220px; box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .hero-grid, .cards, .kpi, .gallery-grid, .before-after, .footer-grid, .form-row { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
  .hero-content { padding: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; min-width: 0; }
  .gallery-item img, .before-after img, .hero figure img { height: 280px; }
}
