/* Blue Heron Mental Health Navigation — Brand Standard */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  background-color: #FAF7F0;
  color: #2B2B2B;
  line-height: 1.65;
}

a { text-decoration: none; }

/* Header */
.site-header {
  background-color: #1B3A5C;
  padding: 18px 24px;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
}
.brand-name {
  color: #FFFFFF;
  letter-spacing: 2px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
}
nav a {
  color: #FFFFFF;
  margin-left: 22px;
  font-size: 15px;
}
nav a:hover { color: #C7D3DE; }
.accent-line { height: 4px; background-color: #7A8B6F; }

/* Footer */
.site-footer {
  background-color: #1B3A5C;
  color: #FFFFFF;
  text-align: center;
  padding: 36px 20px;
  margin-top: 60px;
}
.site-footer .footer-title { font-weight: bold; margin-bottom: 8px; }
.site-footer .disclaimer { font-style: italic; font-size: 14px; margin-bottom: 10px; color: #C7D3DE; }
.site-footer .crisis-line { font-size: 15px; font-weight: bold; }

/* Layout */
main { max-width: 1000px; margin: 0 auto; padding: 60px 24px; }
section { margin-bottom: 56px; }
.divider { border: none; border-top: 1px solid #C7D3DE; margin: 48px 0; }

h1 { font-size: 40px; margin-bottom: 18px; }
h2 { font-size: 28px; margin-bottom: 16px; color: #1B3A5C; }
h3 { font-size: 20px; margin-bottom: 10px; color: #1B3A5C; }
p { margin-bottom: 16px; font-size: 17px; }
.tagline { font-style: italic; color: #7A8B6F; font-size: 18px; }

.hero { text-align: center; padding: 40px 0 20px; }
.hero h1 { color: #1B3A5C; }
.hero p.sub { max-width: 640px; margin: 0 auto 30px; font-size: 19px; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  margin: 8px;
}
.btn-primary {
  background-color: #1B3A5C;
  color: #FFFFFF;
}
.btn-secondary {
  background-color: #FFFFFF;
  color: #1B3A5C;
  border: 2px solid #1B3A5C;
}

.card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 10px rgba(27, 58, 92, 0.08);
}

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

.steps { display: grid; gap: 20px; }
.step { display: flex; align-items: flex-start; gap: 18px; }
.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1B3A5C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.testimonial {
  border-left: 3px solid #7A8B6F;
  padding-left: 20px;
  font-style: italic;
  color: #2B2B2B;
}

.coming-soon { color: #7A8B6F; font-style: italic; font-size: 14px; }

form label { display: block; margin-bottom: 6px; font-weight: bold; font-size: 15px; }
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #C7D3DE;
  border-radius: 8px;
  font-family: inherit;
  font-size: 16px;
  background: #FFFFFF;
}
form textarea { min-height: 140px; resize: vertical; }

@media (max-width: 640px) {
  .header-inner { flex-direction: column; text-align: center; }
  nav a { margin: 0 10px; }
  h1 { font-size: 30px; }
}
