:root {
  --forest: #1F5A3C;
  --leaf: #6BAA44;
  --teal: #1D7F8C;
  --navy: #12324A;
  --sage: #DDE8E3;
  --cream: #F7F7F2;
  --grey: #E6E7E8;
  --text: #263238;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 50, 74, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.brand img { height: 48px; width: 48px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--teal); }
.nav-button {
  border: 2px solid var(--teal);
  padding: 9px 16px;
  border-radius: 999px;
}

.hero {
  padding: 92px 0 82px;
  background:
    radial-gradient(circle at top right, rgba(29,127,140,0.14), transparent 35%),
    linear-gradient(135deg, var(--white), var(--sage));
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}
.eyebrow, .section-label {
  margin: 0 0 12px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.78rem;
}
h1, h2, h3 { color: var(--navy); line-height: 1.12; }
h1 { font-size: clamp(2.4rem, 5vw, 4.7rem); margin: 0 0 22px; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); margin: 0 0 20px; }
h3 { font-size: 1.25rem; margin: 0 0 12px; }
.lead { font-size: 1.2rem; max-width: 620px; margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.button.primary { background: var(--navy); color: var(--white); }
.button.secondary { background: var(--white); color: var(--navy); border: 2px solid var(--teal); }
.button:hover { transform: translateY(-1px); }
.location-note {
  margin: 20px 0 0;
  color: var(--forest);
  font-weight: 800;
  font-size: 0.95rem;
}
.location-note.centered { text-align: center; color: var(--text); font-weight: 700; }
.hero-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 34px;
}
.hero-card img { width: 100%; display: block; }

.section { padding: 82px 0; }
.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.text-block p { font-size: 1.08rem; margin-top: 0; }
.muted { color: #556469; font-size: 1.05rem; max-width: 520px; }
.services-section { background: var(--white); }
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.card {
  background: var(--cream);
  border: 1px solid var(--grey);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 10px 25px rgba(18, 50, 74, 0.06);
}
.card h3 { color: var(--forest); }

.founder-section {
  background: linear-gradient(135deg, var(--navy), #16435e);
  color: var(--white);
}
.founder-card { max-width: 900px; }
.founder-card h2, .founder-card p { color: var(--white); }
.founder-card .section-label { color: #9bd6dd; }
.founder-card p { font-size: 1.12rem; }

.resource-list {
  display: grid;
  gap: 12px;
}
.resource-list div {
  background: var(--white);
  border-left: 5px solid var(--leaf);
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(18, 50, 74, 0.05);
  font-weight: 700;
}

.contact-section { background: var(--sage); }
.contact-card {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 46px;
  text-align: center;
}
.email-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
}

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 42px 0 24px;
}
.footer h3, .footer p, .footer a { color: var(--white); }
.footer a { font-weight: 800; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.9rem;
}
.footer p { margin: 0 0 12px; }

@media (max-width: 900px) {
  .nav { flex-direction: column; gap: 12px; padding: 14px 0; }
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .hero-grid, .split, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 54px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .nav-links a:not(.nav-button) { display: none; }
  .hero-card { padding: 18px; }
  .cards { grid-template-columns: 1fr; }
  .contact-card { padding: 30px 20px; }
  .email-link { font-size: 0.98rem; word-break: break-word; }
}
