* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #1f2937;
  background: #fffdf8;
  line-height: 1.7;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(760px, 100%);
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 68px;
  gap: 16px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav a {
  color: #374151;
  font-weight: 600;
}

.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, #fff7ed 0%, #fffdf8 100%);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #c2410c;
  font-weight: 700;
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.15;
  color: #111827;
}

.lead {
  max-width: 720px;
  font-size: 18px;
  color: #4b5563;
}

.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: #ea580c;
  color: white;
}

.btn-secondary {
  background: white;
  color: #111827;
  border: 1px solid #d1d5db;
}

.section {
  padding: 72px 0;
}

.section.alt {
  background: #fff7ed;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  color: #111827;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.list {
  padding-left: 20px;
}

.contact-box {
  margin-top: 18px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}

.document h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 36px;
}

.document h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 24px;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0;
  }

  .hero {
    padding: 64px 0 48px;
  }

  .section {
    padding: 56px 0;
  }
}