@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #FAFAF8;
  --surface: #FFFFFF;
  --surface-alt: #F0F4F3;
  --text-primary: #16232B;
  --text-secondary: #52646F;
  --text-muted: #8C9AA3;
  --accent: #1F6F78;
  --accent-dark: #154F56;
  --accent-soft: #E4F0EF;
  --success: #3D8F6B;
  --success-soft: #E7F3ED;
  --border: #E4E7E5;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg);
  line-height: 1.6;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 10;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}
nav.site-nav { display: flex; align-items: center; gap: 28px; }
nav.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
nav.site-nav a:hover { color: var(--accent); }
nav.site-nav a.btn { color: white; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-dark); }
.btn.small { padding: 10px 18px; font-size: 13px; }

/* Hero */
.hero { padding: 72px 0 88px; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 16px;
}
h1.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 44px;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.lede { font-size: 17px; color: var(--text-secondary); margin: 0 0 32px; max-width: 46ch; }
.hero-img { width: 100%; height: 400px; object-fit: cover; border-radius: 16px; }
.trust-line { margin-top: 20px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }

/* Sections */
section { padding: 64px 0; }
section.alt { background: var(--surface-alt); }
h2.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--text-primary);
  margin: 0 0 12px;
  text-align: center;
}
.section-sub { text-align: center; color: var(--text-secondary); font-size: 15px; max-width: 52ch; margin: 0 auto 48px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step .num {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 600; color: var(--accent);
  margin-bottom: 12px;
}
.step h3 { font-size: 17px; margin: 0 0 8px; }
.step p { font-size: 14px; color: var(--text-secondary); margin: 0; }

.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.trust-img { width: 100%; height: 320px; object-fit: cover; border-radius: 16px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 28px; }
.stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 18px; }
.stat .n { font-family: var(--font-display); font-size: 22px; color: var(--accent); }
.stat .l { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* Footer */
footer.site {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  background: var(--surface);
}
footer.site .wrap { display: flex; flex-direction: column; gap: 12px; align-items: center; text-align: center; }
footer.site .links { display: flex; gap: 18px; }
footer.site a { color: var(--text-secondary); text-decoration: none; font-size: 13px; }
footer.site a:hover { color: var(--accent); }
footer.site .copyright { font-size: 12px; color: var(--text-muted); }

/* Legal pages */
.legal-page { padding: 64px 0 88px; }
.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}
.legal-card h1 { font-family: var(--font-display); font-weight: 500; font-size: 32px; margin: 0 0 8px; }
.legal-card .updated { font-size: 13px; color: var(--text-muted); margin: 0 0 32px; }
.legal-card h2 { font-family: var(--font-display); font-weight: 500; font-size: 19px; margin: 32px 0 12px; }
.legal-card h3 { font-family: var(--font-display); font-weight: 500; font-size: 17px; margin: 28px 0 10px; }
.legal-card p { font-size: 15px; color: var(--text-secondary); margin: 0 0 14px; }
.legal-card .contact { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-muted); }

@media (max-width: 800px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-img { height: 260px; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  h1.display { font-size: 32px; }
  .legal-card { padding: 28px; }
}
