:root {
  color-scheme: light;
  --bg: #f7f4ef;
  --surface: #ffffff;
  --text: #161716;
  --muted: #596159;
  --subtle: #747b74;
  --border: #ded8cf;
  --accent: #c2603e;
  --accent-2: #4a7c6f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.wrap {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: 48px 0;
}

.home-wrap {
  width: min(100% - 32px, 920px);
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 56px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow {
  margin: 40px 0 0;
  color: var(--subtle);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 8px 0 0;
  font-size: clamp(34px, 7vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

.legal h1 {
  font-size: clamp(34px, 6vw, 48px);
}

h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.intro {
  max-width: 680px;
  margin: 18px 0 0;
  font-size: 18px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.nav a,
.button-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0 16px;
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.button-link.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.card {
  margin-top: 34px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 22px;
}

.section-list {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.section {
  border-top: 1px solid var(--border);
  padding-top: 26px;
}

.section p {
  margin: 12px 0 0;
}

.footer {
  margin-top: 52px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 12px;
}

.footer a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.support-email {
  color: var(--text);
  font-weight: 800;
}
