:root {
  --ink: #153042;
  --muted: #4f6474;
  --line: #d7e3ec;
  --card: #fff;
  --teal: #08384a;
  --yellow: #eeee22;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #f4f8fb;
  line-height: 1.55;
}
.container { width: min(1080px, 92vw); margin: 0 auto; }

.topbar { background: rgba(8, 56, 74, .95); padding: .65rem 0; text-align: center; }
.topbar a { color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .02em; }

.hero-top {
  position: relative;
  background: center/cover no-repeat url('assets/images/Screen-Shot-2020-02-27-at-8.44.49-AM.png');
  min-height: 560px;
  display: grid;
  align-items: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,36,48,.32) 0%, rgba(6,35,47,.56) 80%);
  backdrop-filter: saturate(1.15) contrast(1.03);
}
.hero-content { position: relative; z-index: 1; color: #fff; padding: 2.5rem 0; text-align: center; }
.logo { width: min(520px, 90%); display: block; margin: 0 auto 1.1rem; filter: contrast(1.05) saturate(1.08); }
.hero-content h1 { max-width: 900px; margin: 0 auto 1rem; font-size: clamp(1.08rem, 2.5vw, 1.5rem); line-height: 1.42; font-weight: 700; }
.office-block {
  max-width: 760px; margin: 1rem auto 0;
  background: rgba(8, 56, 74, .42);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  padding: .9rem 1rem;
}
.office-block p { margin: .35rem 0; color: #ecf3f8; }
.office-block a { color: #d7ecff; }

.covid-row { background: var(--yellow); padding: .9rem 0; }
.split { display: grid; grid-template-columns: 200px 1fr; gap: 1rem; align-items: center; }
.split h2 { margin: 0; font-size: 1.1rem; letter-spacing: .03em; }
.split p { margin: 0; color: #243844; font-size: 1rem; }

.crisis-row { background: var(--teal); color: #fff; padding: 1rem 0; }
.crisis-row p { margin: 0; color: #fff; text-align: center; font-weight: 600; }

.section, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.section { margin: 1rem auto; padding: 1rem; }
.center-copy { text-align: center; }
.kicker { text-transform: uppercase; letter-spacing: .07em; color: #6f8392; font-weight: 700; margin: 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: .8rem;
  margin: 1rem auto;
}
.card { padding: 1rem; }
.service { text-align: center; }
.service img { width: 88px; height: 88px; object-fit: contain; }
.service h3 { margin: .45rem 0 0; font-size: 1.02rem; color: #344d5e; letter-spacing: .02em; }

.meet-wrap {
  position: relative;
  background: center/cover no-repeat url('assets/images/Screen-Shot-2020-02-27-at-8.46.36-AM.png');
  margin: 1rem 0;
}
.meet-overlay { position: absolute; inset: 0; background: rgba(255,255,255,.82); }
.meet-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  align-items: start;
}
.headshot-card img { width: 100%; border-radius: 12px; border: 1px solid var(--line); display: block; }
.bio-card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}
.bio-card h2 { margin: 0 0 .6rem; font-size: 1.4rem; }
.bio-card h2 span { color: var(--teal); }
.bio-card p { color: var(--muted); }

h2 { margin: 0 0 .55rem; font-size: 1.25rem; }
p { color: var(--muted); }
a { color: #0b6282; }

details {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .62rem .75rem;
  margin-bottom: .55rem;
  background: #f7fbff;
}
summary { cursor: pointer; font-weight: 700; color: var(--ink); }

.site-footer { padding: 1.2rem 0 2rem; color: #7a8d9b; text-align: center; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
  .meet-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .hero-top { min-height: 520px; }
}
