
:root {
  --primary: #d6332a;
  --accent: #f0b74a;
  --dark: #141414;
  --muted: #6b5b54;
  --bg: #fffaf6;
  --light: #f5eee6;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 28px rgba(20,20,20,.08);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; border-radius: 16px; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-bottom: 1px solid #eee; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: var(--dark); }
.brand span { display: flex; flex-direction: column; }
.brand small { color: var(--muted); font-size: .85rem; }
.header-cta { display: flex; gap: .75rem; align-items: center; }
.main-nav { border-top: 1px solid #f2f2f2; }
.main-nav .container { display: flex; gap: 1rem; flex-wrap: wrap; padding: .8rem 0; }
.main-nav a { color: var(--dark); font-weight: 600; }
.main-nav a.active { color: var(--primary); }
.btn, .btn-inline {
  display: inline-block; background: var(--primary); color: #fff; padding: .9rem 1.2rem;
  border-radius: 999px; font-weight: 700; box-shadow: var(--shadow);
}
.btn:hover, .btn-inline:hover { text-decoration: none; opacity: .95; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid rgba(214,51,42,.18); box-shadow: none; }
.hero { background: linear-gradient(180deg, var(--bg), #fff 85%); padding: 3.5rem 0 2rem; }
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 1.5rem; align-items: center; }
.eyebrow { color: var(--primary); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: .8rem; margin-bottom: .5rem; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); line-height: 1.05; margin: .2rem 0 1rem; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.15; margin: 0 0 1rem; }
h3 { font-size: 1.18rem; margin: 0 0 .65rem; }
.lead { font-size: 1.14rem; color: #332822; max-width: 62ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.25rem 0; }
.trust-list, .checklist, .number-list, .site-footer ul, .link-list { padding-left: 1.2rem; }
.trust-list li, .checklist li, .number-list li, .link-list li { margin-bottom: .55rem; }
.hero-card, .info-card, .feature-image, .contact-cards article {
  background: #fff; border: 1px solid #f0e7df; border-radius: var(--radius); padding: 1.25rem; box-shadow: var(--shadow);
}
.hero-card h2 { font-size: 1.4rem; }
.card-label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 800; }
.section { padding: 1.6rem 0; }
.section-tight { padding-top: 0; }
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1.3rem; align-items: start; }
.triple, .card-grid, .contact-cards, .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card-grid { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.contact-cards { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.info-card p:last-child { margin-bottom: 0; }
.text-link { font-weight: 700; }
.faq details { border: 1px solid #ebdfd6; border-radius: 16px; padding: 1rem 1.1rem; margin-bottom: .8rem; background: #fffdfa; }
.faq summary { cursor: pointer; font-weight: 700; }
.feature-image figcaption { color: var(--muted); font-size: .92rem; margin-top: .65rem; }
.site-footer { margin-top: 2rem; background: #1d1613; color: #f9f2eb; padding: 2.2rem 0 1rem; }
.site-footer a { color: #ffd58c; }
.footer-grid { grid-template-columns: 1.2fr .8fr 1fr; align-items: start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 1.25rem; padding-top: 1rem; }
p { margin: 0 0 1rem; }
@media (max-width: 900px) {
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .topbar { flex-direction: column; align-items: stretch; }
  .header-cta { width: 100%; justify-content: stretch; }
  .header-cta .btn { flex: 1; text-align: center; }
  .triple { grid-template-columns: 1fr; }
  .hero { padding-top: 2rem; }
}
