:root {
  --bg: #fffafc;
  --bg-soft: #fff1f6;
  --text: #2a1f27;
  --muted: #6d5a66;
  --primary: #c0267b;
  --primary-dark: #8e1558;
  --accent: #f59e0b;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(192, 38, 123, 0.12);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffafc 0%, #fff 40%, #fff7fb 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 250, 252, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f4ddea;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-size: 1.1rem;
}

.brand strong {
  display: block;
  font-size: 0.97rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.main-nav a {
  font-weight: 600;
  color: #462f3f;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  background: var(--primary);
  color: var(--white) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-ghost {
  border: 1px solid #e7bfd7;
  background: var(--white);
  color: var(--primary-dark);
}

.hero {
  padding: 4.4rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.hero-kicker {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.hero p {
  color: var(--muted);
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-points {
  list-style: none;
  color: #4f3a48;
  display: grid;
  gap: 0.35rem;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section {
  padding: 4.2rem 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.tag {
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 0.45rem;
}

.section h2 {
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.service-item,
.trust-card,
.info-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 8px 22px rgba(86, 35, 62, 0.08);
  border: 1px solid #f3d9e7;
}

.icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.check-list,
.address-list {
  padding-left: 1.1rem;
  margin-top: 0.9rem;
  color: #4b3a46;
}

.services-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.map-frame iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

details {
  background: var(--white);
  border: 1px solid #f0d2e3;
  border-radius: 14px;
  padding: 0.9rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.cta-final {
  background: linear-gradient(135deg, #701542, #c0267b);
  color: var(--white);
}

.cta-box {
  text-align: center;
}

.cta-box p {
  margin: 0.65rem 0 1rem;
}

.cta-final .btn-ghost {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  background: transparent;
}

.site-footer {
  background: #220c17;
  color: #fbeef5;
  padding-top: 2.2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.2rem;
}

.site-footer a {
  color: #ffd2ea;
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid #5e3449;
  text-align: center;
  padding: 1rem;
  color: #e7bfd7;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .cards-3,
  .services-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    right: 4%;
    background: #fff;
    border: 1px solid #f1d4e4;
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }
}
