:root {
  --bg: #f6f0e8;
  --surface: rgba(255, 251, 246, 0.84);
  --surface-strong: #fffdf9;
  --line: rgba(105, 79, 59, 0.14);
  --text: #2f241f;
  --muted: #6f625b;
  --terracotta: #c86f58;
  --sage: #93aa95;
  --shadow: 0 24px 70px rgba(91, 64, 48, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Manrope, "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 111, 88, 0.1), transparent 32%),
    linear-gradient(180deg, #faf6f0 0%, #f4ede4 100%);
}

a {
  color: inherit;
}

.page-shell {
  width: min(980px, calc(100vw - 24px));
  margin: 0 auto;
  padding: 24px 0 36px;
}

.page-topbar,
.page-hero,
.page-card,
.page-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.page-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 2px 18px 2px 10px;
  border-radius: 999px;
}

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

.brand img {
  width: 152px;
  height: auto;
}

.page-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.page-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.page-hero {
  margin-top: 18px;
  border-radius: 34px;
  padding: 38px;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(200, 111, 88, 0.12);
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.04em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  margin: 16px 0 0;
  max-width: 44rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(147, 170, 149, 0.14);
  color: #4e5f51;
  font-weight: 700;
  font-size: 0.92rem;
}

.page-main {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.page-card {
  border-radius: 28px;
  padding: 28px;
}

.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.72;
}

.page-card p:last-child,
.page-card ul:last-child {
  margin-bottom: 0;
}

.faq-section > h2 {
  margin-bottom: 22px;
}

.faq-item + .faq-item {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin-bottom: 10px;
}

.faq-item p {
  margin: 0;
}

.closing-note {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

ul,
ol {
  margin: 12px 0 0;
  padding-left: 18px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), #d98c68);
  color: #fffaf7;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.65);
  border-color: var(--line);
}

.page-footer {
  margin-top: 18px;
  border-radius: 28px;
  padding: 22px 26px;
}

.page-footer p {
  margin: 0;
  color: var(--muted);
}

.page-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

@media (max-width: 820px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100vw - 16px, 980px);
    padding-top: 14px;
  }

  .page-topbar,
  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .page-topbar {
    padding: 12px 14px;
    border-radius: 26px;
  }

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

  .faq-section > h2 {
    margin-bottom: 18px;
  }

  .faq-item + .faq-item {
    margin-top: 20px;
    padding-top: 20px;
  }
}
