* { box-sizing: border-box; }

:root {
  --bg: #fffaf8;
  --surface: #ffffff;
  --soft: #f9eeef;
  --pink: #d9919a;
  --pink-dark: #b96f79;
  --ink: #382e31;
  --muted: #77696e;
  --line: #eadcdf;
  --cream: #f7f0e9;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow { width: min(760px, calc(100% - 40px)); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,250,248,.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234,220,223,.8);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft);
  color: var(--pink-dark);
}

nav { display: flex; align-items: center; gap: 26px; font-size: .95rem; }
nav a { color: var(--muted); }
nav a:hover { color: var(--ink); }

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 86px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7vw, 6.6rem);
  letter-spacing: -.045em;
}

h1 span { color: var(--pink-dark); }

h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin-bottom: 24px;
  letter-spacing: -.03em;
}

h3 { font-size: 1.45rem; margin-bottom: 10px; }

.lead, .section-lead {
  font-size: 1.18rem;
  color: var(--muted);
}

.lead { max-width: 660px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.primary { background: var(--pink-dark); color: #fff; }
.primary:hover { background: #a95f69; }

.secondary {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: .92rem;
}

.hero-card {
  position: relative;
  min-height: 470px;
  border-radius: 38px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, #f5dfe2, #f8efe8);
  box-shadow: 0 30px 70px rgba(100, 60, 70, .12);
}

.hero-card p {
  max-width: 320px;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.illustration {
  position: absolute;
  inset: 34px 34px 130px;
  display: grid;
  place-items: center;
}

.house { position: relative; width: 180px; height: 160px; }
.roof {
  position: absolute;
  left: 25px;
  top: 0;
  width: 130px;
  height: 130px;
  background: #fff7f5;
  transform: rotate(45deg);
  border-radius: 20px;
}
.house-body {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 0;
  height: 110px;
  background: #fff7f5;
  border-radius: 14px 14px 20px 20px;
}
.window {
  position: absolute;
  width: 38px;
  height: 42px;
  background: #e9b5bb;
  border-radius: 10px;
  left: 22px;
  top: 24px;
}
.door {
  position: absolute;
  width: 38px;
  height: 62px;
  background: #c9868f;
  border-radius: 12px 12px 5px 5px;
  right: 22px;
  bottom: 0;
}
.shine, .sparkle { position: absolute; color: #fff; font-size: 2rem; }
.shine-a { left: 5%; top: 20%; }
.shine-b { right: 10%; top: 8%; font-size: 2.8rem; }
.shine-c { right: 0; bottom: 18%; }
.s1 { top: 26px; right: 32px; }
.s2 { top: 70px; left: 32px; }

.bubble {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(217,145,154,.24);
}
.bubble-one { width: 220px; height: 220px; left: -100px; top: 90px; }
.bubble-two { width: 130px; height: 130px; right: -50px; bottom: 20px; }

.section { padding: 100px 0; }
.soft { background: var(--soft); }

.location-pill {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(234,220,223,.9);
  border-radius: 26px;
  padding: 30px;
}

.card p { color: var(--muted); margin-bottom: 0; }

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--cream);
  margin-bottom: 22px;
  font-size: 1.25rem;
}

.included {
  margin-top: 28px;
  background: #fff;
  border-radius: 30px;
  padding: 34px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.included ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
}

.included li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--pink-dark);
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 42px;
}

.price-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
}

.price-card span, .price-card small { display: block; color: var(--muted); }
.price-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 1.6rem;
  font-family: "Playfair Display", serif;
}

.price-card.featured {
  background: var(--pink-dark);
  color: #fff;
  transform: translateY(-8px);
}
.price-card.featured span,
.price-card.featured small { color: rgba(255,255,255,.8); }

.price-note { text-align: center; color: var(--muted); margin-top: 26px; }

.contact-section { background: var(--ink); color: #fff; }

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-section .eyebrow { color: #e6abb3; }
.contact-section p { color: #d7cdd0; }

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.contact-list a, .contact-list span { color: #fff; }

.contact-form {
  background: #fffaf8;
  color: var(--ink);
  padding: 30px;
  border-radius: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  font-size: .92rem;
  font-weight: 700;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 14px 15px;
  font: inherit;
  color: var(--ink);
  resize: vertical;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(185,111,121,.22);
  border-color: var(--pink-dark);
}

.form-note {
  margin: 12px 0 0 !important;
  font-size: .8rem;
  color: var(--muted) !important;
}

footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: var(--bg);
  color: var(--muted);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .9rem;
}

@media (max-width: 820px) {
  nav a:not(.nav-cta) { display: none; }

  .hero { padding-top: 60px; }
  .hero-grid,
  .contact-wrap,
  .included {
    grid-template-columns: 1fr;
  }

  .hero-card { min-height: 380px; }
  .cards,
  .price-grid { grid-template-columns: 1fr; }

  .price-card.featured { transform: none; }

  .included ul { grid-template-columns: 1fr; }

  .section { padding: 76px 0; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 26px, 1120px); }
  .nav { min-height: 68px; }
  h1 { font-size: 3.25rem; }
  .hero-card { min-height: 340px; padding: 26px; }
  .illustration { inset: 24px 24px 115px; }
  .footer-row { flex-direction: column; }
}
