:root {
  color-scheme: light;
  --ink: #2f2520;
  --muted: #6f625b;
  --brand: #574337;
  --brand-dark: #3a2820;
  --gold: #c5963a;
  --paper: #fffaf3;
  --line: #e6dbcf;
  --green: #1f6a4a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #f6f0e8;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(58, 40, 32, 0.98);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.nav-links .primary {
  color: #fff;
  background: var(--gold);
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
}

.hero {
  padding: clamp(56px, 9vw, 104px) clamp(18px, 5vw, 64px) 46px;
  background: linear-gradient(180deg, #fff8ed 0%, #f6f0e8 100%);
}

.hero-inner,
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.15rem, 5vw, 4.6rem);
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid var(--brand);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  color: #fff;
  background: var(--brand);
}

.button.secondary {
  color: var(--brand);
  background: #fff;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

section {
  padding: 54px clamp(18px, 5vw, 64px);
}

.section-title {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.section-copy {
  max-width: 760px;
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.card,
.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.card p,
.quote p {
  margin: 0;
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.check-list li {
  margin: 10px 0;
}

.contrast {
  background: var(--brand-dark);
  color: #fff;
}

.contrast .section-copy,
.contrast .card p {
  color: rgba(255, 255, 255, 0.72);
}

.contrast .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

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

.faq p {
  margin: 10px 0 0;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  background: #fff8ed;
}

.final-cta p {
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 28px clamp(18px, 5vw, 64px);
  background: #211815;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-inner a {
  color: #fff;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .grid,
  .two-col {
    grid-template-columns: 1fr;
  }
}
