:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --ink: #1f1b19;
  --muted: #746d68;
  --line: #e7ddd4;
  --brand: #c95730;
  --brand-dark: #a33f28;
  --soft: #f4ece4;
  --green: #2f7551;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--brand-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 132px;
  height: auto;
  display: block;
}

.hero {
  padding: 54px 0 38px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin: 16px 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 9vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(20px, 3vw, 26px);
}

.answer {
  margin: 30px 0 0;
  padding: 22px;
  border-left: 6px solid #f0b7a4;
  background: #fffaf5;
  box-shadow: 0 16px 42px rgba(61, 45, 35, 0.06);
}

.answer strong {
  color: var(--brand-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: white;
  color: var(--brand-dark);
  border: 1px solid var(--line);
}

.section {
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-height: 100%;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.card h2,
.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.15;
}

.card p,
.small {
  color: var(--muted);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.meta-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 700;
}

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 19px;
}

.footer {
  padding: 32px 0 46px;
  color: var(--muted);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 34px;
  }
}
