* { box-sizing: border-box; }
:root {
  --bg: #faf8f7;
  --surface: #ffffff;
  --surface-alt: #f4efec;
  --text: #1e1b1a;
  --muted: #6e6562;
  --accent: #ad6c6c;
  --dark: #181414;
  --border: #e7ddda;
  --shadow: 0 10px 30px rgba(35, 24, 24, 0.08);
  --radius: 24px;
}
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 16px 0;
}
.brand { font-size: 1.15rem; font-weight: 700; }
.subtitle { color: var(--muted); font-size: 0.95rem; }
.hero {
  background: linear-gradient(135deg, #f7e6e2 0%, #fffdfa 40%, #f7efe8 100%);
  padding: 56px 0 40px;
}
.hero-grid, .split, .cta, .footer-grid { display: grid; gap: 32px; }
.hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; }
h1, h2, h3 { line-height: 1.1; margin: 0 0 12px; }
h1 { font-size: clamp(2.25rem, 5vw, 4.3rem); font-weight: 800; max-width: 12ch; }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.5rem; }
.lead, .section-text, .muted, .card p, .cta p, .footer p, .faq-item p { color: var(--muted); }
.lead { font-size: 1.12rem; max-width: 56ch; }
.pill, .section-mini {
  display: inline-block; font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.18em; font-weight: 700; color: var(--accent);
}
.pill {
  padding: 10px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.7); border: 1px solid #ecd9d3; margin-bottom: 16px;
}
.light { color: #f5cfcf; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.btn {
  display: inline-block; text-decoration: none; padding: 14px 22px;
  border-radius: 18px; font-weight: 700; transition: transform .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); opacity: .96; }
.btn-dark { background: var(--dark); color: white; }
.btn-light { background: white; color: var(--text); border: 1px solid var(--border); }
.btn-white { background: white; color: var(--dark); }
.benefits, .grid-3, .grid-2 { display: grid; gap: 16px; }
.benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card, .photo-placeholder, .faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.card { padding: 28px; }
.card.small { padding: 18px; }
.highlight { padding: 18px; }
.highlight-inner {
  min-height: 500px; border-radius: 22px; padding: 28px;
  background: linear-gradient(135deg, rgba(244,223,218,0.95), rgba(255,255,255,0.92));
  display: flex; flex-direction: column; justify-content: space-between;
}
.section { padding: 72px 0; }
.alt { background: var(--surface); }
.center { text-align: center; max-width: 820px; margin: 0 auto 28px; }
.dark { background: var(--dark); color: white; }
.dark-card {
  background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12);
  color: white; box-shadow: none;
}
.photo-placeholder {
  min-height: 260px; display: flex; align-items: center; justify-content: center;
  padding: 18px; text-align: center; color: #a59894; border-style: dashed; background: #fbf7f5;
}
.featured { background: var(--dark); color: white; }
.featured p { color: #ddd0d0; }
.price { font-size: 2rem; font-weight: 800; margin-top: 22px; }
.faq { max-width: 900px; }
.faq-item { padding: 22px; margin-top: 14px; background: #fcfbfa; }
.faq-item summary { cursor: pointer; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.cta {
  grid-template-columns: 1.4fr 0.8fr; align-items: center;
  background: linear-gradient(135deg, #1b1515, #5b4343);
  color: white; border-radius: 30px; padding: 38px;
  box-shadow: 0 18px 44px rgba(24, 20, 20, 0.2);
}
.footer { background: white; border-top: 1px solid var(--border); padding: 28px 0 36px; }
.footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) {
  .hero-grid, .grid-3, .split, .cta, .footer-grid { grid-template-columns: 1fr; }
  .benefits, .grid-2 { grid-template-columns: 1fr; }
  .topbar-inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; }
}
