:root {
  --ink: #1b2430;
  --muted: #637083;
  --line: #d9e0e8;
  --surface: #f5f7fa;
  --paper: #ffffff;
  --brand: #144f5f;
  --accent: #d95f35;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-size: 1rem;
  font-weight: 750;
}

.logo img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--brand);
}

.hero {
  padding: 88px 0 76px;
  background:
    linear-gradient(135deg, rgba(20, 79, 95, 0.08), rgba(217, 95, 53, 0.08)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--brand);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.05rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-weight: 700;
}

.button.primary {
  background: var(--brand);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--brand);
}

.summary-panel,
.card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.summary-panel {
  padding: 26px;
}

.summary-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  display: block;
  margin: 0 0 18px;
}

.summary-panel dl {
  margin: 0;
}

.summary-panel div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.summary-panel div:first-child {
  padding-top: 0;
}

.summary-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

dt,
.contact-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 650;
}

.section {
  padding: 76px 0;
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.muted {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.card {
  padding: 24px;
}

.card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.contact-section {
  background: var(--brand);
  color: var(--paper);
}

.contact-section h2,
.contact-section p {
  color: var(--paper);
}

.contact-section p {
  opacity: 0.82;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 24px;
}

.contact-card a {
  margin-bottom: 14px;
  color: var(--brand);
  font-size: 1.02rem;
  font-weight: 750;
}

.contact-card a:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 26px 20px;
  color: var(--muted);
  text-align: center;
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .nav {
    min-height: auto;
    padding: 18px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .hero,
  .section {
    padding: 56px 0;
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .summary-panel,
  .contact-card {
    width: 100%;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
