:root {
  --navy: #1c2b3a;
  --green: #2f9e6e;
  --bg: #fafaf8;
  --text: #232b33;
  --muted: #5c6773;
  --border: #e3e6e8;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, Segoe UI, Roboto, Georgia, serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: var(--navy);
  color: white;
  padding: 18px 0;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  height: 48px;
  width: auto;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 24px;
  font-size: 15px;
  opacity: 0.9;
}

nav a:hover { opacity: 1; text-decoration: underline; }

.hero {
  background-image: linear-gradient(135deg, rgba(28,43,58,0.88), rgba(44,65,86,0.88)), url('images/about-4.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0 64px;
  text-align: center;
}

.hero-logo {
  width: 220px;
  max-width: 80%;
  margin: 0 auto 24px;
  display: block;
}

.hero h1 {
  font-size: 36px;
  max-width: 760px;
  margin: 0 auto 16px;
}

.hero .subhead {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 28px;
  color: #d7dee5;
}

.cta {
  display: inline-block;
  background: var(--green);
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
}

.cta:hover { background: #268258; }

.section {
  padding: 64px 0;
}

.section.alt {
  background: #f0f1ec;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: center;
}

.about-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
}

.about-grid h2 {
  text-align: left;
}

.about-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 16px;
  max-width: none;
}

@media (max-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-grid h2 {
    text-align: center;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  overflow: hidden;
}

.card-img {
  width: calc(100% + 56px);
  margin: -28px -28px 16px -28px;
  height: 160px;
  object-fit: cover;
  display: block;
}

.card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--navy);
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

#contact p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-list {
  list-style: none;
  font-size: 16px;
}

.contact-list li {
  margin-bottom: 8px;
}

.site-footer {
  background: var(--navy);
  color: #c9d2da;
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
}
