:root {
  --bg: #f7f1eb;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: #ffffff;
  --text: #2c241d;
  --muted: #6c5e53;
  --line: #e3d7cc;
  --accent: #6b5b4d;
  --accent-hover: #5a4b3f;
  --shadow: 0 18px 40px rgba(60, 49, 40, 0.12);
  --radius: 20px;
  --max: 860px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbf7f3 0%, var(--bg) 100%);
  line-height: 1.75;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.site-header, .site-footer { background: #3f332a; color: #f8f2eb; }
.site-header .inner, .site-footer .inner, .container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.site-header .inner { min-height: 68px; display: flex; align-items: center; }
.brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; font-weight: 700; text-decoration: none; }
.hero { padding: 72px 0 28px; text-align: center; }
.eyebrow { letter-spacing: .18em; text-transform: uppercase; font-size: .78rem; color: var(--accent); font-weight: 700; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; margin: 0; }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); margin-top: 20px; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-top: 64px; }
h3 { font-size: 1.65rem; margin-top: 34px; }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 720px; margin: 24px auto 0; }
.article, .legal-wrap { padding-bottom: 96px; }
.figure { margin: 28px 0 40px; }
.figure img { border-radius: 24px; box-shadow: var(--shadow); }
.figure figcaption { color: var(--muted); text-align: center; font-size: .95rem; margin-top: 12px; font-style: italic; }
p { margin: 22px 0 0; }
strong { color: #201914; }
.section-card, .cta-box, .review-card, .legal-box, .table-wrap, .faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; padding: 26px; margin: 34px 0; }
.stat { text-align: center; }
.stat-value { color: var(--accent); font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', Georgia, serif; }
.stat-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--accent); color: white; text-decoration: none; padding: 15px 28px; font-weight: 700; box-shadow: var(--shadow); transition: .2s ease; }
.button:hover { background: var(--accent-hover); transform: translateY(-1px); }
.cta-box { padding: 28px; text-align: center; margin: 40px 0; }
.cta-box p { color: var(--muted); max-width: 640px; margin-inline: auto; }
blockquote.quote { border-left: 4px solid var(--accent); padding: 18px 20px; margin: 24px 0; background: rgba(255,255,255,.68); }
blockquote.quote footer { margin-top: 12px; color: var(--muted); font-size: .95rem; }
.table-wrap { overflow-x: auto; margin: 28px 0; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; }
thead { background: rgba(107,91,77,.09); }
ul.feature-list, .legal-wrap ul { padding-left: 22px; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.review-card { padding: 20px; display: flex; flex-direction: column; }
.stars { color: var(--accent); letter-spacing: .08em; font-size: 1rem; }
.faq { margin-top: 28px; display: grid; gap: 14px; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 22px; font-family: 'Playfair Display', Georgia, serif; font-size: 1.18rem; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .answer { padding: 0 22px 20px; color: var(--muted); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 16px 22px; justify-content: center; margin-top: 22px; }
.site-footer { margin-top: 80px; }
.site-footer .inner { text-align: center; padding: 42px 0; }
.site-footer p, .site-footer a { color: rgba(248,242,235,.82); }
.legal-wrap { padding-top: 56px; }
.legal-box { padding: 30px; }
.muted { color: var(--muted); }
.center { text-align: center; }
@media (max-width: 860px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  .review-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hero { padding-top: 52px; }
  .stats, .review-grid { grid-template-columns: 1fr; }
  .site-header .inner { justify-content: center; }
}
