:root {
  --bg: #f8f6f1;
  --text: #2b2b2b;
  --accent: #b24a2f;
  --muted: #6a6661;
  --card: #ffffff;
  --border: #e6ded5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, serif;
  color: var(--text);
  background: radial-gradient(circle at top, #fffaf3 0%, var(--bg) 70%);
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 246, 241, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
}

.content {
  padding: 40px 0 80px;
}

.page {
  width: min(900px, 92%);
  margin: 0 auto;
}

.page-header {
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 12px;
}

h2 {
  margin-top: 36px;
  font-size: clamp(22px, 3vw, 30px);
}

h3 {
  margin-top: 28px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.page-body {
  background: var(--card);
  padding: 28px 28px 32px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 30px rgba(28, 26, 23, 0.08);
}

.page-body ul {
  padding-left: 20px;
}

.cta-row {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.faq {
  margin-top: 36px;
}

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

.faq details {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  background: #f4f1ec;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.footer-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 6px;
}

.footer-bottom {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--muted);
}

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

  .page-body {
    padding: 22px;
  }
}
