* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2b1a22;
  background: #fff9fb;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: rgba(255, 249, 251, 0.96);
  border-bottom: 1px solid #f1d8e4;
  position: sticky; top: 0; z-index: 30; backdrop-filter: blur(8px);
}
.nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; gap: 16px;
}
.logo { font-size: 1.55rem; font-weight: 800; color: #8a1f54; }
.logo span { color: #d14c8c; }
nav { display: flex; gap: 18px; flex-wrap: wrap; }
nav a { color: #5f4150; font-weight: 700; }
.hero {
  padding: 52px 0;
  background: linear-gradient(135deg, #fff7fb 0%, #ffeef6 45%, #fffef8 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; align-items: center;
}
.hero-text h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
  margin: 0 0 14px;
}
.tag {
  display: inline-block; background: #fde0ec; color: #9a295e;
  padding: 8px 14px; border-radius: 999px; font-weight: 700; margin-bottom: 14px;
}
.lead { font-size: 1.05rem; color: #654957; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 22px; }
.btn { padding: 13px 20px; border-radius: 999px; font-weight: 700; display: inline-block; }
.primary { background: #9a295e; color: #fff; }
.secondary { background: #fff; color: #9a295e; border: 1px solid #e9bfd2; }
.hero-image-card, .card, .info-box, .contact-box {
  background: #fff; border-radius: 22px;
  box-shadow: 0 12px 30px rgba(154, 41, 94, 0.10); overflow: hidden;
}
.hero-image-card img { width: 100%; min-height: 440px; object-fit: cover; }
.section { padding: 56px 0; }
.soft { background: #fff1f7; }
.section-heading { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.section-heading h2, .two-col h2, .contact-box h2, .info-box h3 { margin-top: 0; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card img { width: 100%; height: 420px; object-fit: cover; }
.card-body { padding: 18px; }
.two-col { display: grid; grid-template-columns: 1fr 0.9fr; gap: 24px; align-items: start; }
.info-box { padding: 24px; }
.info-box ul { margin: 0; padding-left: 20px; }
.contact-box { padding: 28px; text-align: center; }
.footer { background: #7f1f4b; color: white; text-align: center; padding: 18px 0; }
@media (max-width: 900px) {
  .hero-grid, .card-grid, .two-col { grid-template-columns: 1fr; }
  .hero-image-card img, .card img { height: auto; }
}
@media (max-width: 600px) {
  .nav { flex-direction: column; align-items: flex-start; }
  .hero { padding: 30px 0; }
  .section { padding: 38px 0; }
}
