:root {
  --ink: #18211f;
  --muted: #586560;
  --paper: #f6f5f0;
  --line: #d8d9d1;
  --accent: #e75c31;
  --deep: #193c36;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.site-header, main, .site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}

.brand { font-weight: 750; text-decoration: none; letter-spacing: -0.03em; }
.brand span { color: var(--muted); font-weight: 500; }
nav { display: flex; gap: 22px; }
nav a { color: var(--muted); text-decoration: none; font-size: .94rem; }
nav a:hover { color: var(--ink); }

.hero { padding: clamp(72px, 13vw, 164px) 0 100px; max-width: 850px; }
.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(2.8rem, 7vw, 6.2rem); line-height: .95; letter-spacing: -.07em; margin-bottom: 30px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.04; letter-spacing: -.05em; }
.lead { color: var(--muted); font-size: clamp(1.1rem, 2.2vw, 1.42rem); max-width: 610px; }
.button { display: inline-block; margin-top: 15px; padding: 13px 18px; background: var(--deep); color: white; text-decoration: none; font-weight: 700; border-radius: 5px; }
.button:hover { background: var(--accent); }

.section { padding: 70px 0; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; }
.section-heading h2 { margin-bottom: 36px; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.card { min-height: 255px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.card:hover { background: #efeee8; }
.card-number { color: var(--accent); font-weight: 800; }
.card h3 { max-width: 360px; font-size: 1.35rem; line-height: 1.08; letter-spacing: -.03em; }
.card p:not(.card-number) { color: var(--muted); max-width: 390px; }
.status { color: var(--muted); font-size: .82rem; }
.note { max-width: 820px; }
.note > p:last-child { color: var(--muted); font-size: 1.1rem; max-width: 650px; }
.site-footer { padding: 28px 0 48px; color: var(--muted); font-size: .9rem; border-top: 1px solid var(--line); }

@media (max-width: 620px) {
  .site-header, main, .site-footer { width: min(100% - 32px, 1120px); }
  .site-header { min-height: 64px; }
  nav { gap: 14px; }
  .hero { padding-bottom: 70px; }
  .cards { grid-template-columns: 1fr; }
  .section { padding: 55px 0; }
}
