:root {
  --navy: #1b3a4b;
  --navy-dark: #12262f;
  --accent: #d97b3f;
  --accent-dark: #b8632c;
  --cream: #f7f4ee;
  --text: #29343a;
  --text-light: #5c6b73;
  --border: #e3ddd0;
  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.25;
}

a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
  background: var(--navy);
  color: var(--white);
}

.nav-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--white);
  letter-spacing: 0.3px;
}

.logo span { color: var(--accent); }

nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

nav a {
  color: var(--white);
  font-size: 0.95rem;
  opacity: 0.9;
}

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

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  max-width: 780px;
  margin: 0 auto 16px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.1rem;
  opacity: 0.92;
}

.hero-small {
  padding: 48px 24px;
  text-align: center;
}

.hero-small h1 { color: var(--white); font-size: 2rem; }

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 6px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px;
}

.section h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}

.section p { color: var(--text-light); margin-bottom: 16px; max-width: 760px; }

.section-alt {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

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

.card h3 { margin-bottom: 8px; }
.card p { color: var(--text-light); font-size: 0.95rem; }
.card .tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

.facts {
  list-style: none;
  margin-top: 20px;
}
.facts li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.facts li strong { color: var(--navy); }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.info-block h3 { font-size: 1.05rem; margin-bottom: 6px; }
.info-block p { color: var(--text-light); font-size: 0.95rem; }

footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.85rem;
}
footer a { color: var(--accent); }

@media (max-width: 640px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: 1.9rem; }
}

/* Crisis / callout box */
.callout {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  padding: 22px 28px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.callout h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.callout p { color: var(--text-light); margin-bottom: 10px; }
.callout a.btn { margin-top: 6px; }

.callout-wrap {
  padding: 32px 24px 0;
  margin-bottom: 16px;
}

.steps {
  counter-reset: step;
  list-style: none;
  margin-top: 20px;
}
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 44px;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
}
.steps li:before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 12px;
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li strong { color: var(--navy); display: block; margin-bottom: 2px; }

.contact-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px 24px;
  margin: 16px 0;
}
.contact-box h4 { color: var(--navy); font-size: 1rem; margin-bottom: 6px; }
.contact-box p { margin-bottom: 4px; font-size: 0.95rem; }
