@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter24pt-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/Inter24pt-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f2f0e9;
  --card: #ffffff;
  --text: #1c1c1a;
  --text-muted: #6d6c65;
  --border: #cfccc2;
  --max-width: 640px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.logo {
  display: block;
  height: 11.2px;
  width: auto;
  margin: 0 0 48px;
}

h1 {
  font-weight: 300;
  font-size: 44px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 60px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 0 16px;
}

.stat-card {
  background: var(--card);
  border-radius: 16px;
  padding: 20px;
}

.stat-card .headline {
  font-size: 16px;
  line-height: 1.35;
  margin: 0 0 10px;
}

.stat-card .detail {
  font-size: 14px;
  line-height: 1.4;
  color: var(--text-muted);
  margin: 0;
}

.portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin: 0 0 24px;
}

.caption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 56px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

h2 {
  font-weight: 300;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0 0 32px;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 11.2px 16px;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  background: var(--card);
  border-color: var(--text-muted);
}

.service {
  margin: 0 0 28px;
}

.service:last-child {
  margin-bottom: 0;
}

.service h3 {
  font-weight: 400;
  font-size: 18px;
  margin: 0 0 10px;
}

.service p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

footer {
  margin-top: 64px;
}

footer a {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--text);
  text-decoration: underline;
}

@media (max-width: 620px) {
  .page {
    padding: 40px 20px 32px;
  }

  h1 {
    font-size: 34px;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Legal page */
.back-link {
  display: inline-block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
}

.back-link:hover {
  color: var(--text);
}

.legal-section {
  margin: 0 0 48px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 24px;
  margin: 0 0 20px;
}

.legal-section h3 {
  font-weight: 400;
  font-size: 16px;
  margin: 24px 0 8px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 12px;
}

.legal-section a {
  color: var(--text);
}

.legal-section p.tight {
  margin-bottom: 0;
}
