/* Lansing Somali Bantu Organization — site styles
   Design language taken from the organisation's own printed brochure:
   deep teal band, spring-green panel, serif headings over a clean sans body.
   Intentionally unlike the other sites in this portfolio (no blue/coral,
   no geometric display face, rounded cards rather than flat top-accents). */

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,600;8..60,700&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --teal-900: #0b3b3c;   /* brochure header band */
  --teal-700: #12595b;
  --teal-500: #1b7f7e;
  --green-300: #bdf08a;  /* brochure panel */
  --green-500: #7cc242;
  --ink: #14231f;
  --slate: #55665f;
  --line: #dfe9e3;
  --paper: #f4f8f4;
  --white: #fff;
  --max: 1120px;
  --radius: 14px;
  --display: "Source Serif 4", Georgia, serif;
  --body: "Source Sans 3", system-ui, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--white); line-height: 1.72; font-size: 17px; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); color: var(--teal-900); line-height: 1.2; font-weight: 700; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.15rem); }
h3 { font-size: 1.18rem; }
p { margin: 0 0 1em; }
a { color: var(--teal-500); }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
ul { padding-left: 1.15em; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 74px 0; }
.bg-paper { background: var(--paper); }
.bg-teal { background: var(--teal-900); color: #cfe6df; }
.bg-teal h2, .bg-teal h3 { color: #fff; }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--slate); max-width: 64ch; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Header + nav */
.site-header { border-bottom: 1px solid var(--line); background: var(--white); position: sticky; top: 0; z-index: 20; }
.nav { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--teal-900); text-decoration: none; }
.brand__mark { width: 42px; height: auto; flex: none; }
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.02rem; line-height: 1.25; }
.brand__name span { display: block; font-family: var(--body); font-weight: 500; font-size: .78rem; color: var(--slate); letter-spacing: .01em; }
.nav__links { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.nav__links a { color: var(--ink); font-weight: 600; font-size: .95rem; text-decoration: none; }
.nav__links a:hover { color: var(--teal-500); }
.nav__toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; font-size: 1.3rem; padding: 2px 10px; cursor: pointer; }

/* Hero */
.hero { background: var(--paper); padding: 96px 0 104px; }
.hero h1 { max-width: 22ch; margin-left: auto; margin-right: auto; }
.hero .lead { font-size: 1.2rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-block; padding: 13px 24px; border-radius: 999px; font-weight: 700; text-decoration: none; font-size: .97rem; }
.btn--green { background: var(--green-300); color: var(--teal-900); }
.btn--green:hover { background: var(--green-500); text-decoration: none; }

/* Cards + grids */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.card h3 { margin-bottom: .35em; }
.card p:last-child { margin-bottom: 0; }
.card__when { font-size: .9rem; color: var(--teal-700); font-weight: 600; }

/* Fact strip */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fact { background: var(--green-300); border-radius: var(--radius); padding: 24px; }
.fact strong { display: block; font-family: var(--display); font-size: 1.9rem; color: var(--teal-900); line-height: 1.1; }
.fact span { font-size: .95rem; color: #2c4a3f; }

/* Footer */
.site-footer { background: var(--teal-900); color: #a9cfc6; padding: 46px 0 30px; font-size: .93rem; }
.site-footer a { color: #cdeade; }
.footer__top { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer__name { font-family: var(--display); font-weight: 700; font-size: 1.12rem; color: #fff; margin: 0; }
.footer__links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__links a { font-size: .9rem; color: #a9cfc6; }
.site-footer hr { border: 0; border-top: 1px solid #1d5a58; margin: 28px 0; }
.footer__legal { text-align: center; font-size: .86rem; color: #8fbdb2; }
.footer__legal p { margin: 0 0 .5em; }
.contact-block h3 { color: var(--teal-900); }
.contact-block p { color: var(--slate); margin-bottom: .6em; }

@media (max-width: 860px) {
  .grid--3, .grid--4, .facts { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .nav__toggle { display: block; }
  .nav__links { display: none; width: 100%; flex-direction: column; gap: 12px; padding: 12px 0 4px; }
  .nav__links.is-open { display: flex; }
  .nav { flex-wrap: wrap; }
}
