:root {
  --blush: #E8B4B8;
  --mauve: #B76E79;
  --cream: #FAF6F4;
  --charcoal: #3A3A3A;
  --soft-mauve: #C48A8E;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #efe2e0;
}
.navbar .logo {
  font-size: 28px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 1px;
}
.navbar .logo span { color: var(--blush); }
.nav-links a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--mauve); }

.hero {
  text-align: center;
  padding: 90px 8% 80px;
  background: linear-gradient(180deg, #fdf4f3 0%, var(--cream) 100%);
}
.hero img.logo-mark { width: 90px; margin-bottom: 20px; }
.hero h1 {
  font-size: 52px;
  font-weight: 600;
  color: var(--mauve);
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.hero p.tagline {
  font-size: 20px;
  color: var(--soft-mauve);
  margin-bottom: 30px;
  font-weight: 400;
}
.btn {
  display: inline-block;
  background: var(--blush);
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s;
}
.btn:hover { background: var(--mauve); transform: translateY(-2px); }

.section { padding: 70px 8%; }
.section h2 {
  text-align: center;
  font-size: 34px;
  color: var(--mauve);
  margin-bottom: 12px;
  font-weight: 600;
}
.section p.subtitle {
  text-align: center;
  color: var(--soft-mauve);
  max-width: 600px;
  margin: 0 auto 45px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(183,110,121,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(183,110,121,0.15);
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card .card-body { padding: 20px; }
.card h3 { color: var(--mauve); margin-bottom: 8px; font-size: 20px; }
.card p { font-size: 14px; color: #777; }

.trust-bar {
  background: var(--blush);
  color: #fff;
  text-align: center;
  padding: 28px 8%;
  font-size: 18px;
  font-weight: 500;
}

.about-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  color: #555;
}
.about-content p { margin-bottom: 20px; }
.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  display: block;
  margin: 0 auto 40px;
}

.contact-box {
  background: #fff;
  max-width: 540px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(183,110,121,0.08);
  text-align: center;
}
.contact-box a {
  color: var(--mauve);
  text-decoration: none;
  font-weight: 500;
}
.contact-box .contact-item { margin: 14px 0; font-size: 17px; }

.footer {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 35px 8%;
  font-size: 14px;
}
.footer a { color: var(--blush); text-decoration: none; margin: 0 8px; }

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .nav-links a { margin-left: 15px; font-size: 13px; }
  .navbar { padding: 15px 5%; }
}
