:root {
  --kz-blue: #00afca;
  --kz-blue-deep: #007a94;
  --kz-blue-ink: #003d52;
  --kz-gold: #fec50c;
  --kz-gold-soft: #ffe28a;
  --white: #ffffff;
  --off-white: #f4fbfd;
  --ink: #0b1c24;
  --ink-muted: #4a6570;
  --line: rgba(0, 61, 82, 0.12);
  --page-pad: clamp(1.25rem, 5vw, 4.5rem);
  --max: 1120px;
  --font-display: "Source Serif 4", "Georgia", "Times New Roman", serif;
  --font-body: "Source Sans 3", "Helvetica Neue", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.5rem;
  background: var(--kz-gold);
  color: var(--ink);
  padding: 0.5rem 0.75rem;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  left: 0.5rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 2rem;
  padding: 2.5rem var(--page-pad);
  background: var(--kz-blue-ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--kz-gold);
  font-weight: 600;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.muted {
  opacity: 0.7;
}
