:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --panel: #ffffff;
  --ink: #171717;
  --muted: #62605b;
  --line: #e2ded6;
  --accent: #111827;
  --gold: #c4913a;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #fff7df 0, transparent 30rem), var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  letter-spacing: -0.05em;
}
.brand-text { font-size: 1.05rem; }

nav { display: flex; gap: 24px; color: var(--muted); font-weight: 600; }
nav a:hover { color: var(--ink); }

.section { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 76px 0; }
.hero { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); gap: 48px; align-items: center; min-height: 72vh; }
.eyebrow { color: var(--gold); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 800; margin: 0 0 14px; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(3rem, 7vw, 6.4rem); line-height: 0.92; letter-spacing: -0.07em; margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -0.05em; margin-bottom: 20px; }
h3 { font-size: 1.15rem; margin-bottom: 10px; }
.lead { font-size: 1.25rem; color: var(--muted); max-width: 650px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { padding: 14px 20px; border-radius: 999px; font-weight: 800; border: 1px solid var(--line); }
.button.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.button.secondary { background: rgba(255,255,255,0.65); }

.hero-card {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.metric { padding: 22px 0; border-bottom: 1px solid var(--line); }
.metric:last-child { border-bottom: 0; }
.metric-label { display: block; color: var(--muted); font-size: 0.85rem; margin-bottom: 6px; }
.metric strong { font-size: 1.35rem; letter-spacing: -0.03em; }

.split { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 48px; border-top: 1px solid var(--line); }
.cards { display: grid; gap: 16px; }
.card, .steps > div, .contact {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card { padding: 26px; }
.card p, .steps p, .contact p { color: var(--muted); margin-bottom: 0; }
.approach { border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.steps > div { padding: 26px; }
.steps span { color: var(--gold); font-weight: 900; }
.contact { display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 36px; margin-bottom: 60px; }
.contact-link { font-weight: 900; font-size: 1.2rem; border-bottom: 2px solid var(--gold); }
.site-footer { width: min(1120px, calc(100% - 32px)); margin: 0 auto; padding: 28px 0 48px; color: var(--muted); border-top: 1px solid var(--line); }

@media (max-width: 820px) {
  .site-header { align-items: flex-start; }
  nav { gap: 14px; font-size: 0.92rem; }
  .hero, .split, .steps, .contact { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; }
  .contact { display: grid; }
}

@media (max-width: 560px) {
  .site-header { display: grid; }
  h1 { font-size: 3.4rem; }
  .section { padding: 52px 0; }
}

.page-hero { min-height: 36vh; padding-top: 92px; padding-bottom: 44px; }
.page-hero h1 { max-width: 920px; }
.content-page {
  max-width: 860px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  margin-bottom: 72px;
}
.content-page h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-top: 34px;
  margin-bottom: 10px;
}
.content-page h2:first-child { margin-top: 0; }
.content-page p { color: var(--muted); }
.content-page a { color: var(--ink); font-weight: 800; border-bottom: 1px solid var(--gold); }
.legal p { margin-bottom: 18px; }
.contact-panel { min-height: 260px; }
.small-note { font-size: 0.95rem; }
