:root {
  --navy: #0c2d6f;
  --navy-dark: #081f4d;
  --ink: #1a2333;
  --muted: #55607a;
  --line: #e6e9f0;
  --paper: #ffffff;
  --wash: #f7f8fb;
}

* { box-sizing: border-box; }

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

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

a { color: var(--navy); text-decoration: none; }

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

/* Header */
header {
  padding: 28px 0;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 46px;
  width: auto;
  display: block;
}

.brand span {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--navy);
}

/* Hero */
.hero {
  padding: 88px 0 64px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 28px;
  max-width: 780px;
}

.hero .lede {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(19px, 2.1vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 660px;
  margin: 0;
}

/* Body content */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.section:last-of-type {
  border-bottom: none;
}

.section-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
}

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 4px;
}

.section-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 700px;
  margin: 0 0 20px;
}

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

.contact-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.15s ease;
}

.contact-link:hover {
  border-color: var(--navy);
}

/* Footer */
footer {
  padding: 40px 0 56px;
}

footer .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

footer .brand span {
  font-size: 15px;
}

footer .brand img {
  height: 22px;
}

footer .fine {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 720px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero { padding: 64px 0 48px; }
  .section { padding: 48px 0; }
}
