:root {
  --blue: #114e8a;
  --blue-dark: #0d3e6f;
  --text: #1f1f1f;
  --bg-alt: #f4f7fb;
  --border: #d8e2ee;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  background: #ffffff;
}

.header-inner {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.brand-logo {
  width: 90%;
  height: auto;
  max-width: 4000px;
}

.site-nav {
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  width: 100%;
  color: var(--blue);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.site-nav .container {
  max-width: 750px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav a {
  font-size: clamp(0.1rem, 2.5vw, 1rem);
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--blue-dark);
}

h1,
h2 {
  color: var(--blue);
}

.section {
  padding: 5vh 0;
}

.section-alt {
  background: var(--bg-alt);
}

.event-card {
  background: #ffffff;
  border: 1px solid var(--border);
  padding: 2vw;
  border-radius: 10px;
}

.work-list li {
  margin-bottom: 10px;
}

form {
  display: flex;
  flex-direction: column;
}

input,
textarea {
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
  resize: vertical;
}

button {
  padding: 14px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

button:hover,
button:focus-visible {
  background: var(--blue-dark);
  outline: none;
}

.honeypot {
  display: none;
}

#formMessage {
  display: none;
  margin-bottom: 10px;
  font-weight: bold;
}

.site-footer {
  background: #222;
  color: #fff;
  padding: 30px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0 0 8px;
}

.footer-inner p:last-child {
  margin-bottom: 0;
}

.site-footer a {
  color: #fff;
}
