/* ============================================================
   LAKE SUPERIOR COLLABORATIVE — style.css
   ============================================================ */

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Sans 3', -apple-system, sans-serif;
  color: #1F2937;
  line-height: 1.65;
  background: #FAFAF8;
  overflow-x: hidden;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
a { transition: color .25s ease, background .25s ease; }
img { max-width: 100%; height: auto; }

/* --- Skip Link (Accessibility) ---------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #00507A;
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 6px 6px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* --- Top Bar ---------------------------------------------- */
.top-bar {
  background: #00507A;
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-weight: 500;
}
.top-bar a:hover { color: #fff; text-decoration: underline; }

/* --- Header & Nav ----------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid rgba(0,80,122,.08);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,80,122,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1140px;
  margin: 0 auto;
  height: 92px;
}
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { height: 64px; width: auto; }

nav { display: flex; align-items: center; gap: 2px; }
nav > a,
.nav-dropdown > button.nav-parent {
  text-decoration: none;
  color: #1F2937;
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  letter-spacing: .01em;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  font-family: inherit;
  transition: color .2s, background .2s;
}
nav > a:hover,
nav > a[aria-current="page"],
.nav-dropdown:hover > button.nav-parent,
.nav-dropdown > button.nav-parent[aria-expanded="true"] {
  color: #006699;
  background: #EEF6FB;
}
nav > a[aria-current="page"]::after {
  content: '';
  position: absolute;
  bottom: 0; left: 13px; right: 13px;
  height: 2px;
  background: #006699;
  border-radius: 2px;
}
nav > a:focus-visible,
.nav-dropdown > button.nav-parent:focus-visible {
  outline: 3px solid #006699;
  outline-offset: 2px;
}

.nav-caret { font-size: .6rem; opacity: .5; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  min-width: 210px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,80,122,.13);
  border: 1px solid rgba(0,80,122,.08);
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}
.dropdown-menu a {
  display: block;
  padding: 9px 16px;
  font-size: .87rem;
  color: #1F2937;
  text-decoration: none;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: #EEF6FB; color: #006699; }
.dropdown-menu a:focus-visible {
  outline: 3px solid #006699;
  outline-offset: -3px;
}
.dropdown-menu a[aria-current="page"] { color: #006699; background: #EEF6FB; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #1F2937;
  border-radius: 6px;
}
.menu-toggle:focus-visible { outline: 3px solid #006699; outline-offset: 2px; }
.menu-toggle svg { width: 24px; height: 24px; display: block; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .25s, transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  letter-spacing: .01em;
  font-family: inherit;
}
.btn:focus-visible { outline: 3px solid #006699; outline-offset: 3px; }
.btn-primary { background: #9B3D1F; color: #fff; }
.btn-primary:hover { background: #7D3018; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(155,61,31,.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lake { background: #006699; color: #fff; }
.btn-lake:hover { background: #00507A; transform: translateY(-1px); }
.btn-green { background: #2D6A4F; color: #fff; }
.btn-green:hover { background: #1B4332; }

/* --- Typography Helpers ----------------------------------- */
.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #A8401F;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2rem;
  color: #00507A;
  margin-bottom: 16px;
  line-height: 1.3;
}
.section-subtext {
  color: #4B5563;
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.body-text { color: #6B7280; font-size: .95rem; line-height: 1.75; }
.body-text + .body-text { margin-top: 16px; }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0,80,122,.93), rgba(27,67,50,.82));
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('lake-superior-shore.jpg');
  background-size: cover;
  background-position: center;
  opacity: .22;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: #FAFAF8;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 72px 0;
}
.hero h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,.88);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 620px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Page Header ------------------------------------------ */
.page-header {
  background: linear-gradient(135deg, #00507A, #1B4332);
  padding: 56px 0 52px;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: #FAFAF8;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-header h1 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 10px;
}
.page-header p {
  color: rgba(255,255,255,.9);
  font-size: 1.05rem;
  max-width: 560px;
}
.inner-content { padding: 60px 0 80px; }

/* --- Sections --------------------------------------------- */
section { padding: 80px 0; }

/* --- Mission / Two-col grid ------------------------------ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: 12px; width: 100%; height: 100%; object-fit: cover; }
.about-image-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }

/* --- Goals Grid ------------------------------------------- */
.goals-section { background: #F5F0E8; }
.goals-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.goal-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0,80,122,.07);
  transition: box-shadow .25s, transform .25s, border-color .25s;
  border: 1px solid transparent;
}
.goal-card:hover {
  box-shadow: 0 4px 14px rgba(0,80,122,.1);
  border-color: rgba(44,141,181,.18);
  transform: translateY(-2px);
}
.goal-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.goal-icon svg { width: 24px; height: 24px; }
.goal-icon.blue { background: #EEF6FB; color: #006699; }
.goal-icon.green { background: #D8F3DC; color: #2D6A4F; }
.goal-icon.rust { background: #FDE8DB; color: #C4552D; }
.goal-card h3 { font-size: 1rem; font-weight: 600; color: #00507A; margin-bottom: 10px; }
.goal-card p { font-size: .9rem; color: #6B7280; line-height: 1.65; }

/* --- Three Rs --------------------------------------------- */
.three-rs { background: #00507A; padding: 72px 0; }
.three-rs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.three-r-item {
  padding: 48px 36px;
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background .25s;
}
.three-r-item:last-child { border-right: none; }
.three-r-item:hover { background: rgba(255,255,255,.08); }
.three-r-letter {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 3.5rem;
  color: rgba(255,255,255,.15);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 700;
}
.three-r-item h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 12px;
}
.three-r-item p { font-size: .95rem; color: rgba(255,255,255,.9); line-height: 1.7; }

/* --- Members ---------------------------------------------- */
.members-intro { text-align: center; margin-bottom: 48px; }
.members-intro .section-subtext { margin-left: auto; margin-right: auto; }
.member-types { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 40px; }
.member-type {
  background: #fff;
  border: 1px solid rgba(0,80,122,.08);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color .25s, box-shadow .25s;
}
.member-type:hover { border-color: #2C8DB5; box-shadow: 0 2px 8px rgba(0,80,122,.08); }
.member-type h3 { font-size: .95rem; font-weight: 600; color: #00507A; margin-bottom: 6px; }
.member-type p { font-size: .82rem; color: #6B7280; line-height: 1.55; }
.member-cta {
  text-align: center;
  padding: 36px;
  background: #EEF6FB;
  border-radius: 12px;
}
.member-cta p { margin-bottom: 16px; color: #00507A; font-size: 1.05rem; }
.member-logos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 40px;
}
.member-logo-card {
  background: #fff;
  border: 1px solid rgba(0,80,122,.08);
  border-radius: 6px;
  padding: 20px 14px;
  text-align: center;
  font-size: .82rem;
  font-weight: 500;
  color: #00507A;
  transition: border-color .25s, box-shadow .25s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  text-decoration: none;
  line-height: 1.4;
}
.member-logo-card:hover { border-color: #2C8DB5; box-shadow: 0 2px 8px rgba(0,80,122,.08); }
.member-logo-card:focus-visible { outline: 3px solid #006699; outline-offset: 2px; }

/* --- Workgroups ------------------------------------------- */
.workgroup-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.workgroup-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: #FAFAF8;
  border-radius: 12px;
  border: 1px solid rgba(0,80,122,.06);
  transition: border-color .25s, box-shadow .25s;
}
.workgroup-item:hover { border-color: rgba(44,141,181,.22); box-shadow: 0 2px 8px rgba(0,80,122,.07); }
.wg-marker { width: 4px; border-radius: 4px; flex-shrink: 0; }
.wg-marker.monitor { background: #52B788; }
.wg-marker.restore { background: #E87B4F; }
.wg-marker.climate { background: #8B5CF6; }
.workgroup-item h3 { font-size: 1rem; font-weight: 600; color: #00507A; margin-bottom: 6px; }
.workgroup-item p { font-size: .88rem; color: #6B7280; line-height: 1.6; }
.wg-lead { margin-top: 10px; font-size: .82rem; color: #595F6B; font-style: italic; }

/* --- Resources -------------------------------------------- */
.resource-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 8px;
  text-decoration: none;
  color: #1F2937;
  transition: border-color .25s, box-shadow .25s, transform .2s;
  border: 1px solid rgba(0,80,122,.08);
}
.resource-item:hover {
  border-color: #2C8DB5;
  box-shadow: 0 2px 8px rgba(0,80,122,.08);
  transform: translateX(4px);
}
.resource-item:focus-visible { outline: 3px solid #006699; outline-offset: 2px; }
.resource-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: #EEF6FB;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #006699;
}
.resource-icon svg { width: 20px; height: 20px; }
.resource-icon.green { background: #D8F3DC; color: #2D6A4F; }
.resource-item h4 { font-size: .92rem; font-weight: 600; margin-bottom: 2px; color: #00507A; }
.resource-item p { font-size: .8rem; color: #6B7280; line-height: 1.5; }

/* --- Timeline --------------------------------------------- */
.timeline { position: relative; padding-left: 40px; max-width: 700px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(to bottom, #2C8DB5, #52B788);
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #006699;
}
.timeline-item:last-child::before { border-color: #52B788; }
.timeline-year { font-size: .78rem; font-weight: 700; color: #A8401F; letter-spacing: .05em; margin-bottom: 4px; }
.timeline-item h3 { font-size: 1rem; font-weight: 600; color: #00507A; margin-bottom: 4px; }
.timeline-item p { font-size: .9rem; color: #6B7280; line-height: 1.6; }

/* --- Blog ------------------------------------------------- */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,80,122,.07);
  transition: box-shadow .25s, transform .25s;
  border: 1px solid rgba(0,80,122,.06);
}
.blog-card:hover { box-shadow: 0 6px 16px rgba(0,80,122,.1); transform: translateY(-3px); }
.blog-card-image { height: 180px; position: relative; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-image .placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.blog-card-body { padding: 24px; }
.blog-date { font-size: .78rem; color: #595F6B; margin-bottom: 8px; font-weight: 500; }
.blog-card-body h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.05rem;
  color: #00507A;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-card-body p { font-size: .88rem; color: #6B7280; line-height: 1.6; margin-bottom: 14px; }
.blog-read-more { font-size: .85rem; font-weight: 600; color: #A8401F; text-decoration: none; }
.blog-read-more:hover { color: #006699; text-decoration: underline; }
.blog-read-more:focus-visible { outline: 3px solid #006699; outline-offset: 2px; border-radius: 2px; }

/* --- Team ------------------------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,80,122,.07);
  transition: box-shadow .25s, transform .25s;
  border: 1px solid rgba(0,80,122,.06);
  text-align: center;
}
.team-card:hover { box-shadow: 0 5px 14px rgba(0,80,122,.1); transform: translateY(-2px); }
.team-card-photo {
  height: 280px;
  background: linear-gradient(135deg, #EEF6FB, #D8F3DC);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.team-card-photo img.portrait {
  object-position: center 20%;
}
.avatar-placeholder {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,80,122,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #006699;
  font-weight: 700;
  aria-hidden: true;
}
.team-card-body { padding: 18px 16px; }
.team-card-body h3 { font-size: .95rem; font-weight: 700; color: #00507A; margin-bottom: 2px; }
.team-role { font-size: .73rem; font-weight: 700; color: #A8401F; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em; }
.team-org { font-size: .8rem; color: #006699; font-weight: 500; margin-bottom: 8px; }
.team-card-body p.bio { font-size: .8rem; color: #6B7280; line-height: 1.5; text-align: left; }
.email-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: .75rem;
  color: #006699;
  text-decoration: none;
  font-weight: 500;
  word-break: break-all;
}
.email-link:hover { color: #C4552D; text-decoration: underline; }
.email-link:focus-visible { outline: 3px solid #006699; outline-offset: 2px; border-radius: 2px; }

/* --- Video & Map ------------------------------------------ */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  margin: 24px 0;
}
.video-container iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0; border-radius: 12px;
}
.map-embed { border-radius: 12px; overflow: hidden; margin: 24px 0; box-shadow: 0 4px 14px rgba(0,80,122,.1); }
.map-embed iframe { width: 100%; height: 600px; border: 0; display: block; }

/* --- Contact Section -------------------------------------- */
.contact-section {
  background: linear-gradient(135deg, #00507A, #163E50);
  color: #fff;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-section .section-label { color: #fff; }
.contact-section .section-heading { color: #fff; }
.contact-section .section-subtext { color: rgba(255,255,255,.9); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: rgba(255,255,255,.07);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
}
.contact-card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(82,183,136,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #52B788;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.55; }
.contact-card a { color: #52B788; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.85); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-family: inherit;
  font-size: .92rem;
  transition: border-color .25s, background .25s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.38); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #52B788;
  background: rgba(255,255,255,.11);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Conservation Priorities ------------------------------ */
.priorities-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.priority-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(0,80,122,.08);
  border-left: 4px solid #006699;
  transition: box-shadow .25s, transform .2s;
}
.priority-card:hover { box-shadow: 0 4px 14px rgba(0,80,122,.1); transform: translateY(-2px); }
.priority-card h3 { font-size: 1.05rem; font-weight: 600; color: #00507A; margin-bottom: 8px; }
.priority-card .priority-goal { font-size: .8rem; font-weight: 600; color: #A8401F; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.priority-card p { font-size: .88rem; color: #6B7280; line-height: 1.65; }
.priority-card ul { font-size: .88rem; color: #6B7280; line-height: 1.65; padding-left: 18px; margin-top: 8px; }
.priority-card ul li { margin-bottom: 4px; }

/* --- Pitch Party ------------------------------------------ */
.pitch-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 48px 0; }
@media (max-width: 960px) { .pitch-steps { grid-template-columns: 1fr; } }
.pitch-step {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0,80,122,.08);
  position: relative;
}
.pitch-step-number {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #006699;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Libre Baskerville', Georgia, serif;
}
.pitch-step h3 { font-size: 1rem; font-weight: 600; color: #00507A; margin-bottom: 8px; }
.pitch-step p { font-size: .88rem; color: #6B7280; line-height: 1.6; }

/* --- Symposium -------------------------------------------- */
.symposium-recaps { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.recap-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,80,122,.08);
  box-shadow: 0 1px 4px rgba(0,80,122,.06);
  display: flex;
  flex-direction: column;
}
.recap-card-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(0,80,122,.07);
}
.recap-year {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #A8401F;
  margin-bottom: 6px;
}
.recap-card h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.1rem;
  color: #00507A;
  line-height: 1.4;
}
.recap-card-body { padding: 20px 28px 24px; display: flex; flex-direction: column; flex: 1; }
.recap-card-body p { font-size: .9rem; color: #6B7280; line-height: 1.65; margin-bottom: 16px; flex: 1; }

/* --- Newsletter bar --------------------------------------- */
.newsletter-bar {
  background: #EEF6FB;
  padding: 56px 0;
  text-align: center;
}
.newsletter-bar h3 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.4rem;
  color: #00507A;
  margin-bottom: 8px;
}
.newsletter-bar p { color: #4B5563; margin-bottom: 24px; font-size: .95rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* --- Footer ----------------------------------------------- */
footer {
  background: #F5F0E8;
  color: #4B5563;
  padding: 56px 0 32px;
  font-size: .85rem;
}
.footer-logos { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer-logos img { height: 48px; width: auto; }
.footer-inner { display: grid; grid-template-columns: auto 2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; align-items: start; }
.footer-brand p { line-height: 1.65; max-width: 360px; }
.footer-links h4,
.footer-contact h4 {
  color: #00507A;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #4B5563; text-decoration: none; font-size: .85rem; }
.footer-links a:hover { color: #006699; text-decoration: underline; }
.footer-nav-columns { columns: 2; column-gap: 24px; }
.footer-nav-columns li { break-inside: avoid; }
.footer-contact p { margin-bottom: 6px; line-height: 1.55; color: #4B5563; font-size: .88rem; }
.footer-contact a { color: #006699; text-decoration: underline; display: inline-block; padding: 4px 0; min-height: 44px; line-height: 44px; }
.footer-contact a:hover { text-decoration: underline; }
.footer-social { display: flex; gap: 16px; margin-top: 16px; align-items: center; flex-wrap: wrap; }
.footer-social a { color: #004466; font-size: .82rem; text-decoration: none; font-weight: 600; }
.footer-social a:hover { color: #C4552D; text-decoration: underline; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(0,80,122,.1);
  font-size: .78rem;
  color: #4B5563;
  line-height: 1.6;
}
.footer-bottom a { color: #4B5563; text-decoration: underline; }
.footer-bottom a:hover { color: #006699; text-decoration: underline; }
.footer-legal { margin-top: 10px; font-size: .73rem; color: #4B5563; line-height: 1.6; }

/* --- Inline info box -------------------------------------- */
.info-box {
  padding: 28px 32px;
  border-radius: 12px;
  margin: 32px 0;
}
.info-box.blue { background: #EEF6FB; border-left: 4px solid #006699; }
.info-box.green { background: #D8F3DC; border-left: 4px solid #2D6A4F; }
.info-box.rust { background: #FDE8DB; border-left: 4px solid #C4552D; }
.info-box h3 { font-size: 1rem; font-weight: 600; color: #00507A; margin-bottom: 8px; }
.info-box p { font-size: .9rem; color: #4B5563; line-height: 1.65; }
.info-box p + p { margin-top: 8px; }

/* --- Charter Goals List ----------------------------------- */
.charter-goals {
  list-style: none;
  counter-reset: goal-counter;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.charter-goals li {
  counter-increment: goal-counter;
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(0,80,122,.08);
  font-size: .92rem;
  color: #4B5563;
  line-height: 1.65;
  transition: border-color .2s, box-shadow .2s;
}
.charter-goals li:hover {
  border-color: rgba(44,141,181,.2);
  box-shadow: 0 2px 8px rgba(0,80,122,.07);
}
.charter-goals li::before {
  content: counter(goal-counter);
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #EEF6FB;
  color: #006699;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
@media (max-width: 640px) {
  .charter-goals { grid-template-columns: 1fr; }
}

/* --- Blog post styles ------------------------------------- */
.post-img { width: 100%; border-radius: 10px; margin: 24px 0 8px; box-shadow: 0 2px 8px rgba(0,80,122,.08); display: block; }
.post-img-caption { font-size: .82rem; color: #6B7280; font-style: italic; margin: 0 0 28px; text-align: center; padding-top: 8px; line-height: 1.5; }
.post-featured-img { width: 100%; border-radius: 12px; margin-bottom: 24px; max-height: 480px; object-fit: cover; box-shadow: 0 4px 16px rgba(0,80,122,.1); display: block; }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 24px 0 8px; }
.photo-pair img { border-radius: 10px; width: 100%; height: 260px; object-fit: cover; object-position: center; box-shadow: 0 2px 8px rgba(0,80,122,.08); display: block; }
@media (max-width: 600px) { .photo-pair { grid-template-columns: 1fr; } .photo-pair img { height: 220px; } }
.post-featured-img { width: 100%; border-radius: 12px; margin-bottom: 32px; max-height: 480px; object-fit: cover; box-shadow: 0 4px 16px rgba(0,80,122,.1); }
.post-layout { display: grid; grid-template-columns: 1fr 280px; gap: 56px; align-items: start; }
.post-sidebar { position: sticky; top: 100px; }
.post-sidebar-card { background: #EEF6FB; border-radius: 12px; padding: 24px; margin-bottom: 24px; }
.post-sidebar-card h4 { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #00507A; margin-bottom: 12px; }
.post-sidebar-card p { font-size: .85rem; color: #4B5563; line-height: 1.6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .mission-grid,
  .contact-grid,
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { position: static; }
  .goals-grid,
  .blog-grid,
  .team-grid { grid-template-columns: 1fr 1fr; }
  .member-types { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-logos { flex-direction: row; }
  .member-logos-grid { grid-template-columns: repeat(3,1fr); }
  .three-rs-grid { grid-template-columns: 1fr; }
  .three-r-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .three-r-item:last-child { border-bottom: none; }
  .hero h1 { font-size: 2.1rem; }
  .priorities-grid { grid-template-columns: 1fr; }
  .symposium-recaps { grid-template-columns: 1fr; }
  .pitch-steps { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .menu-toggle { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 6px 16px rgba(0,80,122,.1);
  }
  nav.open { display: flex; }
  nav > a,
  .nav-dropdown > button.nav-parent {
    justify-content: flex-start;
    padding: 10px 12px;
    width: 100%;
    border-radius: 6px;
  }
  nav > a[aria-current="page"]::after { display: none; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: block;
  }
  .goals-grid,
  .workgroup-list,
  .resource-list,
  .blog-grid,
  .team-grid { grid-template-columns: 1fr; }
  .member-types { grid-template-columns: 1fr; }
  .member-logos-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.85rem; }
  .hero { min-height: 340px; }
  section { padding: 56px 0; }
  .section-heading { font-size: 1.65rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-logos { flex-direction: row; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar { display: none; }
  .three-rs-grid { grid-template-columns: 1fr; }
  .pitch-steps { grid-template-columns: 1fr; }
  .priorities-grid { grid-template-columns: 1fr; }
  .symposium-recaps { grid-template-columns: 1fr; }
}
