﻿:root {
  --brand-navy: #002856;
  --brand-gold: #daa900;
  --brand-sky: #74a7c2;
  --text-primary: #1a2a4a;
  --text-muted: #4f5d75;
  --surface: #ffffff;
  --surface-alt: #f2f5f9;
  --border-light: rgba(0, 40, 86, 0.12);
  --shadow-soft: 0 12px 28px rgba(9, 30, 66, 0.12);
  --font-headline: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Kievit Offc Pro", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: #ffffff;
  color: var(--text-primary);
  font-family: var(--font-body);
  text-align: left;
  line-height: 1.6;
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover, a:focus { color: var(--brand-gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: var(--brand-navy);
  box-shadow: 0 8px 20px rgba(0, 40, 86, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.brand img { height: 56px; width: auto; }

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--surface);
  letter-spacing: 0.06em;
}

main {
  width: min(1100px, 100%);
  margin: 2rem auto 3rem;
  padding: 0 5vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-copy {
  display: grid;
  gap: 0.6rem;
  color: var(--text-primary);
  text-align: left;
}

h1 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--brand-navy);
  letter-spacing: 0.01em;
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 70ch;
}

.links-section {
  display: grid;
  gap: 1.2rem;
}

.link-stack {
  display: grid;
  gap: 1.2rem;
}

.text-link {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.3fr);
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.3rem;
  border-radius: 0;
  border: 2px solid var(--brand-navy);
  background: #ffffff;
  color: var(--brand-navy);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.text-link:hover,
.text-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 40, 86, 0.16);
  background: #f7f9fc;
}

.link-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0;
}

.link-desc {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 1rem;
}

.quick-links {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}

.quick-link-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border-radius: 0;
  border: 2px solid var(--brand-navy);
  background: var(--brand-navy);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease;
  text-align: center;
}

.quick-link-btn:hover,
.quick-link-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 40, 86, 0.2);
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--brand-navy);
}

.quick-link-btn svg {
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  main { gap: 1.2rem; }

  .text-link {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  
  .quick-links {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .quick-link-btn {
    flex: 1;
    min-width: 100%;
  }
}

