:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --surface: #ffffff;
  --text: #1a2b3c;
  --muted: #5b6b7c;
  --accent: #0f5c8c;
  --accent-soft: #e8f2f8;
  --border: #d7e0ea;
  --shadow: 0 12px 30px rgba(26, 43, 60, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--accent-soft) 0%, var(--bg) 220px);
  line-height: 1.6;
}

.container {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  padding: 4rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2 {
  line-height: 1.2;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
}

h2 {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
}

.lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--muted);
}

main {
  padding-bottom: 3rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.card p,
.card li {
  color: var(--muted);
}

.card p:last-child,
.card ul {
  margin-bottom: 0;
}

.card ul {
  padding-left: 1.25rem;
}

a {
  color: var(--accent);
}

.contact a {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}
