* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html { scroll-behavior: smooth; }
body { color: #14213d; background: #fff; }
.container { width: 80%; max-width: 1100px; margin: auto; }

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  background: #3d1f2f;
  z-index: 10;
  padding: 20px 0;
}
.nav-wrap { display: flex; justify-content: space-between; align-items: center; }
.logo { color: #fff; font-size: 28px; font-weight: 800; text-decoration: none; }
.logo span { color: #f7a8c8; }
nav a { color: #fff; text-decoration: none; margin-left: 28px; font-weight: 600; }
nav a:hover { color: #f7a8c8; }

.hero {
  min-height: 700px;
  background: url('https://images.unsplash.com/photo-1512290923902-8a9f81dc236c?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.overlay { position: absolute; inset: 0; background: rgba(40, 16, 30, .68); }
.hero-content { position: relative; color: #fff; }
.hero h1 { font-size: 54px; line-height: 1.25; margin-bottom: 28px; }
.hero p { max-width: 650px; font-size: 18px; line-height: 1.8; margin-bottom: 32px; }
.btn {
  display: inline-block;
  background: #f7a8c8;
  color: #3d1f2f;
  padding: 18px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
}
.btn:hover { background: #fff; }

section { padding: 90px 0; }
.section-light { background: #fff6fa; }
.center { text-align: center; }
h2 { font-size: 38px; margin-bottom: 15px; color: #3d1f2f; }
.subtitle { color: #6b5b66; font-size: 17px; margin-bottom: 50px; }

.about-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 12px 35px rgba(61,31,47,.12);
}
.about-card img { width: 100%; height: 100%; object-fit: cover; }
.about-card div { padding: 45px; }
.about-card h3 { font-size: 26px; margin-bottom: 16px; }
.about-card p { line-height: 1.8; color: #5c5158; margin-bottom: 25px; }
.link-btn { color: #c44b82; font-weight: 800; text-decoration: none; }

.services { background: #fff; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card, .quote {
  background: #fff6fa;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(61,31,47,.08);
}
.service-card h3 { color: #3d1f2f; margin-bottom: 14px; }
.service-card p, .quote { line-height: 1.7; color: #5c5158; }
.two { grid-template-columns: repeat(2, 1fr); }

.contact { background: linear-gradient(135deg, #3d1f2f, #8f3d63); color: #fff; }
.contact h2, .contact .subtitle { color: #fff; }
footer { background: #24111c; color: #fff; text-align: center; padding: 25px; }

@media (max-width: 768px) {
  .container { width: 90%; }
  .nav-wrap { flex-direction: column; gap: 14px; }
  nav a { margin: 0 8px; font-size: 14px; }
  .hero { margin-top: 115px; min-height: 620px; }
  .hero h1 { font-size: 36px; }
  .about-card, .grid, .two { grid-template-columns: 1fr; }
}
