* {
  box-sizing: border-box;
}

html {
  font-family: "Georgia", "Times New Roman", serif;
  color: #1e170f;
  background:
    radial-gradient(circle at top left, rgba(255, 241, 207, 0.95), transparent 34%),
    linear-gradient(180deg, #fff7e8 0%, #f8e2c2 52%, #f1cfb0 100%);
}

body {
  margin: 0;
  min-height: 100vh;
}

a {
  color: #8f3f23;
}

.site-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.brand {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1e170f;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
}

.hero {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(86, 42, 16, 0.12);
  backdrop-filter: blur(14px);
}

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

.hero-grid {
  grid-template-columns: 1.3fr 0.9fr;
  align-items: stretch;
}

.hero-copy,
.hero-card,
.panel,
.legal-shell {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 36px rgba(102, 58, 28, 0.1);
}

.hero-copy {
  padding: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  color: #a54f2a;
}

h1,
h2 {
  line-height: 1.08;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
}

p,
li {
  font-size: 1.05rem;
  line-height: 1.7;
}

.lede {
  max-width: 62ch;
}

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

.button {
  display: inline-block;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(135deg, #c7552c, #ef8750);
  color: #fff8f3;
}

.button-secondary {
  background: rgba(255, 244, 232, 0.9);
  color: #6e3119;
  border: 1px solid rgba(111, 49, 25, 0.12);
}

.hero-card,
.panel {
  padding: 24px;
}

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.content-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
}

.panel-wide {
  grid-column: 1 / -1;
}

.legal-page {
  padding: 28px;
}

.legal-shell {
  padding: 32px;
}

.legal-shell h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.legal-meta {
  color: #6d5b4d;
  font-style: italic;
}

.legal-shell section + section {
  margin-top: 22px;
}

@media (max-width: 840px) {
  .hero-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .site-shell {
    width: min(100vw - 20px, 1120px);
    padding-top: 12px;
  }

  .hero,
  .legal-page {
    padding: 16px;
  }

  .hero-copy,
  .hero-card,
  .panel,
  .legal-shell {
    padding: 20px;
  }

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