:root {
  --bg: #f7f3ea;
  --surface: #fffdf8;
  --surface-strong: #efe3cf;
  --line: #d8c7a8;
  --text: #241b11;
  --muted: #5e5344;
  --accent: #bf5b04;
  --accent-strong: #8e4002;
  --good: #2f6b3b;
  --shadow: 0 24px 80px rgba(36, 27, 17, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(191, 91, 4, 0.12), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, var(--bg) 100%);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(251, 247, 239, 0.88);
  border-bottom: 1px solid rgba(36, 27, 17, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.hero,
.section {
  padding: 72px 0;
}

.hero-grid,
.grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(191, 91, 4, 0.22);
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.hero-copy,
.statement p,
.panel p,
.feature-card p,
.faq-item p,
.site-footer p,
.site-footer li {
  color: var(--muted);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
}

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

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.hero-card,
.panel,
.feature-card,
.faq-item,
.statement,
.legal-shell {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(36, 27, 17, 0.08);
  box-shadow: var(--shadow);
}

.card-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--good);
  font-weight: 700;
}

.check-list,
.footer-links {
  margin: 0;
  padding-left: 18px;
}

.check-list li,
.footer-links li {
  margin-bottom: 10px;
}

.statement h2,
.section-title {
  max-width: 18ch;
  margin-bottom: 14px;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.alt {
  background: linear-gradient(180deg, rgba(239, 227, 207, 0.3), rgba(247, 243, 234, 0));
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.faq-list {
  display: grid;
  gap: 18px;
}

.site-footer {
  padding: 40px 0 56px;
  border-top: 1px solid rgba(36, 27, 17, 0.08);
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.legal-page {
  padding: 72px 0;
}

.legal-shell h1 {
  max-width: none;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-shell h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.legal-shell p,
.legal-shell li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-shell ul {
  padding-left: 18px;
}

@media (max-width: 920px) {
  .hero-grid,
  .grid-two,
  .grid-three,
  .grid-four,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .legal-page {
    padding: 48px 0;
  }

  .hero-card,
  .panel,
  .feature-card,
  .faq-item,
  .statement,
  .legal-shell {
    padding: 22px;
  }

  h1 {
    max-width: none;
  }
}
