:root {
  --bg: #f8f8fc;
  --hero: #ede7fb;
  --surface: #ffffff;
  --surface-soft: #fcfbff;
  --surface-alt: #f1ecfb;
  --border: #ddd4f2;
  --text: #5c5478;
  --heading: #3d3461;
  --muted: #7a6aa8;
  --footer: #66548f;
  --footer-text: #f6f2ff;
  --footer-muted: #ebe4ff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}
.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}
.hero {
  background: var(--hero);
  border-bottom: 1px solid var(--border);
}
.hero .container {
  padding: 56px 0 64px;
}
.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  color: var(--muted);
}
h1, h2, h3 {
  color: var(--heading);
  line-height: 1.2;
  margin: 0 0 18px;
}
h1 { font-size: clamp(2rem, 4vw, 3.6rem); max-width: 12ch; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.lead {
  font-size: 1.12rem;
  max-width: 40rem;
  margin: 0 0 10px;
}
.sublead {
  font-size: 0.98rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 10px;
}
.phone-line {
  margin: 0;
  font-size: 1.02rem;
}
.section { padding: 48px 0 0; }
.tight-top { padding-top: 8px; }
.card, .contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(61, 52, 97, 0.06);
}
.card.soft { background: var(--surface-soft); }
.card.alt { background: var(--surface-alt); }
.section-label {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  color: var(--muted);
}
.section-label.light { color: var(--footer-muted); }
.text-block p, .intro, .price-item p, .contact-card p, .bullet-item p {
  margin: 0 0 14px;
}
.bullet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 36px;
}
.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  margin-top: 13px;
  flex: 0 0 auto;
}
.two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.stack {
  display: grid;
  gap: 24px;
}
.price-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer { padding-bottom: 64px; }
.contact-card {
  background: var(--footer);
  color: var(--footer-text);
  border-color: transparent;
}
.contact-card h3,
.contact-card strong {
  color: #fff;
}
.contact-intro {
  color: var(--footer-text);
  margin-bottom: 20px !important;
}

@media (max-width: 860px) {
  .bullet-grid,
  .two-col,
  .price-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero .container {
    padding: 44px 0 52px;
  }
  .card, .contact-card {
    padding: 22px;
  }
}
