:root {
  --ink: #20203f;
  --dark: #17172e;
  --ink-soft: #454563;
  --cream: #f6f2ea;
  --paper: #fffdf9;
  --sand: #e9e0d2;
  --rust: #b86143;
  --rust-dark: #964a31;
  --line: rgba(32, 32, 63, .13);
  --shadow: 0 24px 70px rgba(32, 32, 63, .13);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

button { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-notice {
  background: var(--ink);
  color: #fff;
  font-size: .8rem;
  letter-spacing: .04em;
}

.notice-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.notice-dismiss {
  position: absolute;
  right: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: #fff;
  pointer-events: none;
}

.site-header .nav-wrap,
.site-header a,
.site-header button {
  pointer-events: auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: 130px;
  height: auto;
  max-width: 100%;
}

@media (max-width: 800px) {
  .brand-logo { width: 100px; }
}

.brand-script {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-style: italic;
  letter-spacing: -.03em;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .16em;
  margin-top: 3px;
}

.brand-role {
  font-size: .54rem;
  font-weight: 600;
  letter-spacing: .24em;
  margin-top: 7px;
  opacity: .8;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: .88rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
  color: #fff;
  transition: opacity .2s ease;
}

.site-nav a:hover { opacity: .72; }

.site-nav .nav-cta {
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 10px 16px;
}

.menu-toggle { display: none; }

.hero {
  min-height: 760px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #27304a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 70px;
  padding-top: 150px;
}

.hero-copy { max-width: 640px; }

.eyebrow {
  margin: 0 0 15px;
  color: var(--rust);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.forward-close .eyebrow { color:var(--cream); }

.hero .eyebrow { color: #e9b19b; }

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.045em;
  line-height: 1.04;
}

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 7vw, 6.4rem);
}

h1 em, h2 em {
  color: #d99579;
  font-style: italic;
}

.hero-lede {
  max-width: 620px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  position: relative;
  z-index: 10;
}

.hero-actions .button {
  position: relative;
  z-index: 11;
  display: inline-flex;
  pointer-events: auto;
}
.hero-copy {
  position: relative;
  z-index: 10;
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  background: var(--rust);
  color: #fff;
}

.button-primary:hover { background: var(--rust-dark); }
.button-cream {
  background: var(--cream);
  color:var(--rust);
}

.button-cream:hover { background: var(--cream); }
.button-ghost {
  border: 1px solid var(--cream);
  color:var(--rust);
}

.button-ghost:hover { border-color: #fff; }
.button-ghost-dark {
  border: 1px solid var(--ink);
  color:var(--ink);
}

.button-ghost-dark:hover { border-color: #fff; }

.button-ghost-cream {
  border: 1px solid var(--cream);
  color:var(--cream);
}

.button-ghost-cream:hover { border-color:var(--cream); }
.hero-note {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-top: 44px;
  max-width: 520px;
  color: rgba(255,255,255,.68);
  font-size: .79rem;
}

.note-line {
  width: 38px;
  height: 1px;
  flex: 0 0 auto;
  background: #d99579;
}

.hero-photo-wrap {
  position: relative;
  max-width: 450px;
  justify-self: end;
  width: 100%;
}

.hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 35%;
  border: 10px solid rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 2;
}

.photo-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255,255,255,.42);
  z-index: 1;
}

.photo-accent-one { right: -26px; top: -26px; }
.photo-accent-two { left: -26px; bottom: 56px; }

.photo-caption {
  position: absolute;
  z-index: 3;
  bottom: -25px;
  left: -34px;
  background: var(--paper);
  color: var(--ink);
  padding: 17px 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
}

.photo-caption strong { font-size: .92rem; }
.photo-caption span { font-size: .72rem; color: var(--ink-soft); }

.section { padding: 115px 0; }

.about-section { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  margin-bottom: 24px;
}

.about-copy {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.about-copy p + p { margin-top: 24px; }

.priorities-section { background: var(--paper); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading > p {
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.priority-card {
  min-height: 100%;
  border: 1px solid var(--line);
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(32,32,63,.04);
}

.priority-featured { grid-column: span 2; }

.priority-image {
  background: var(--sand);
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 25px;
}

.priority-image img {
  width: min(100%, 390px);
  height: auto;
  mix-blend-mode: multiply;
}

.priority-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.priority-number {
  color: var(--rust);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.priority-body h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.1;
  margin-bottom: 13px;
}

.priority-body p {
  color: var(--ink-soft);
  font-size: .91rem;
  margin-bottom: 24px;
}

.text-link {
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: var(--rust-dark);
  font-weight: 700;
  font-size: .82rem;
  text-align: left;
  cursor: pointer;
}

.text-link span { margin-left: 6px; }

.priority-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.priority-dark .priority-body p { color: rgba(255,255,255,.72); }
.priority-dark .priority-number { color: #e6a087; }
.text-link.light { color: #e6a087; }

.quote-section {
  background: var(--cream);
  color: var(--ink);
  padding: 60px 0;
  text-align: center;
}

.quote-inner { max-width: 850px; }

.quote-mark {
  display: block;
  color: #d99579;
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: .55;
}

blockquote {
  margin: 30px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: -.03em;
}

.quote-inner p {
  color: var(--ink);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-section { background: var(--cream); }

.contact-card {
  background: #fff;
  padding: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  max-width: 650px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 14px;
}

.contact-card p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 0;
}

.site-footer {
  background: #17172e;
  color: #fff;
  padding: 55px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
}

.footer-brand { margin-bottom: 18px; }
.site-footer p { color: rgba(255,255,255,.55); font-size: .76rem; margin: 0; }

.footer-links {
  display: flex;
  gap: 24px;
  font-size: .78rem;
  font-weight: 600;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: #e6a087; }

.footer-meta { text-align: right; }

.site-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  width: min(420px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  padding: 17px;
  display: grid;
  grid-template-columns: 34px 1fr 24px;
  gap: 12px;
  align-items: start;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}

.site-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1e1d9;
  color: var(--rust-dark);
  font-weight: 700;
}

.site-toast strong { font-size: .85rem; }
.site-toast p { margin: 2px 0 0; color: var(--ink-soft); font-size: .78rem; line-height: 1.4; }
.toast-close { border: 0; background: none; cursor: pointer; font-size: 1.1rem; }

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .menu-toggle {
    display: grid;
    gap: 4px;
    border: 0;
    background: transparent;
    padding: 8px;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) {
    width: 25px;
    height: 2px;
    background: #fff;
    display: block;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 92px;
    left: 20px;
    right: 20px;
    padding: 20px;
    background: var(--ink);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { text-align: center; }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 125px;
    padding-bottom: 90px;
  }
  .hero { min-height: auto; }
  .hero-photo-wrap { justify-self: start; max-width: 370px; }
  .about-grid, .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .priority-grid { grid-template-columns: 1fr 1fr; }
  .priority-featured { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { text-align: left; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero-grid { gap: 45px; }
  h1 { font-size: clamp(3rem, 16vw, 4.3rem); }
  .section { padding: 80px 0; }
  .priority-grid { grid-template-columns: 1fr; }
  .priority-featured { grid-column: span 1; }
  .contact-card { padding: 32px 25px; flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
  .hero-photo { border-width: 7px; }
  .photo-caption { left: 10px; bottom: -20px; }
}



/* =========================================================
   Shared page styles
   ========================================================= */

.forward-hero {
  background: var(--ink);
  color: #fff;
  padding: 150px 0 90px;
  position: relative;
  overflow: hidden;
}
.forward-hero .container { position: relative; z-index: 1; }
.forward-hero h1 {
  max-width: 900px;
  margin: 0 0 24px;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
}
.forward-hero .lead {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}

.forward-intro { padding: 80px 0 50px; }
.forward-intro-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.forward-intro h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  margin: 0;
}
.forward-intro-copy {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 760px;
}
.forward-intro-copy p:last-child { margin-bottom: 0; }

.progress-list { border-top: 1px solid var(--line); margin-top: 55px; }
.progress-item { border-bottom: 1px solid var(--line); }
.progress-item summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 70px 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
}
.progress-item summary::-webkit-details-marker { display: none; }
.progress-num {
  font-size: .72rem;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--rust);
}
.progress-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}
.progress-plus {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: right;
  transition: transform .2s ease;
}
.progress-item[open] .progress-plus { transform: rotate(45deg); }
.progress-body {
  padding: 0 50px 30px 90px;
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 1rem;
}
.progress-body p { margin-bottom: 15px; }
.progress-body p:last-child { margin-bottom: 0; }

.numbers-section { background: var(--cream); padding: 80px 0; }
.numbers-heading { max-width: 760px; margin-bottom: 40px; }
.numbers-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 15px;
}
.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.impact-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  min-height: 190px;
}
.impact-card .number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.9rem;
  line-height: 1;
  color: var(--rust);
}
.impact-card h3 { font-size: 1rem; margin: 20px 0 8px; }
.impact-card p { color: var(--ink-soft); font-size: .88rem; margin: 0; }

.forward-close {
  background: var(--rust);
  color: #fff;
  padding: 90px 0;
}
.forward-close-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}
.forward-close h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 820px;
  margin-bottom: 20px;
}
.forward-close p:not(.eyebrow) {
  max-width: 800px;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
}

/* Meet Melissa */
.story-section { background: var(--paper); }
.story-intro {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.story-intro h2 { margin-bottom: 0; }
.story-copy { color: var(--ink-soft); font-size: 1.02rem; }
.story-copy p + p { margin-top: 24px; }
.story-highlight {
  margin-top: 80px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: var(--cream);
}
.story-highlight-photo {
  min-height: 500px;
  background:
    linear-gradient(rgba(32,32,63,.08), rgba(32,32,63,.08)),
    url("https://www.melissadobbins.com/image/MelissaDobbinsHeadShot.jpg") center 20% / cover no-repeat;
}
.story-highlight-copy {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-highlight-copy h2 { font-size: clamp(2.5rem, 4.5vw, 4rem); }

.profile-section { background: var(--ink); color: #fff; }
.profile-heading { max-width: 760px; margin-bottom: 50px; }
.profile-heading h2 { margin-bottom: 0; }
.profile-heading h2 em { color: #d99579; }
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.profile-card {
  border: 1px solid rgba(255,255,255,.14);
  padding: 32px;
  min-height: 245px;
  background: rgba(255,255,255,.035);
}
.profile-card .profile-number {
  color: #d99579;
  font-size: .72rem;
  letter-spacing: .15em;
  font-weight: 700;
}
.profile-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  margin: 32px 0 12px;
}
.profile-card p {
  color: rgba(255,255,255,.68);
  font-size: .9rem;
  margin-bottom: 0;
}
.leadership-section { background: var(--cream); }
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.leadership-card {
  background: #fff;
  padding: 40px;
  border: 1px solid var(--line);
}
.leadership-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.9rem;
  margin-bottom: 12px;
}
.leadership-card p { color: var(--ink-soft); font-size: .92rem; }
.meet-cta {
  background: var(--rust);
  color: #fff;
  padding: 85px 0;
}
.meet-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
}
.meet-cta h2 {
  max-width: 750px;
  margin-bottom: 12px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}
.meet-cta p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  margin-bottom: 0;
}
.meet-cta .button-primary {
  background: #fff;
  color: var(--ink);
  flex: 0 0 auto;
}
.meet-cta .eyebrow { color: #f0c1af; }

/* Issues */
.source-note {
  font-size: .8rem;
  color: var(--ink-soft);
  margin-top: 1.5rem;
}
.issue-feature { padding: 6rem 0; }
.issue-feature.alt { background: var(--sand); }
.issue-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.issue-grid.reverse .issue-copy { order: 2; }
.issue-grid.reverse .issue-photo { order: 1; }
.issue-copy h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -.045em;
  margin: .35rem 0 1.2rem;
}
.issue-copy p:not(.eyebrow) {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.issue-photo {
  min-height: 480px;
  background-size: cover;
  background-position: center;
  box-shadow: 24px 24px 0 rgba(35,49,42,.08);
}
.issue-photo.one { background-image: url('../images/house.jpg'); }
.issue-photo.two { background-image: url('../images/IMG_2696.jpeg'); }
.issues-more { padding: 7rem 0; }
.issues-more h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -.04em;
}
.issue-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 3rem;
}
.issue-card {
  background: var(--paper);
  padding: 2.6rem;
  min-height: 280px;
}
.issue-card .num {
  font-weight: 700;
  color: var(--rust);
  letter-spacing: .12em;
  font-size: .78rem;
}
.issue-card h3 { font-size: 1.65rem; margin: 1.8rem 0 .8rem; }
.issue-card p { line-height: 1.7; color: var(--ink-soft); margin: 0; }
.issues-quote {
  background: var(--dark);
  color: #fff;
  padding: 7rem 0;
}
.issues-quote blockquote {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  max-width: 900px;
  margin: 1rem 0 1.5rem;
}
.issues-quote .eyebrow { color: #d8c8a6; }

/* Contact */
.contact-main { padding: 6rem 0 7rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 5rem;
  align-items: start;
}
.contact-copy h2 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: .35rem 0 1.5rem;
}
.contact-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.contact-card-page {
  background: var(--cream);
  padding: 2.5rem;
  border-top: 4px solid var(--rust);
}
.contact-card-page h3 { margin-top: 0; font-size: 1.5rem; }
.contact-detail { margin: 1.75rem 0 0; }
.contact-detail-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: .35rem;
}
.contact-detail a { font-size: 1.05rem; font-weight: 600; }
.contact-note { margin-top: 1.5rem; font-size: .9rem; color: var(--ink-soft); }

/* Contact uses the same hero height and color as the shared site hero. */
.contact-hero { min-height: 760px; background: var(--ink); }
.contact-hero .hero-grid { min-height: 760px; }

/* Shared responsive rules */
@media (max-width: 900px) {
  .story-intro,
  .story-highlight,
  .issues-intro-grid { grid-template-columns: 1fr; gap: 0; }
  .story-highlight-photo { min-height: 430px; }
  .profile-grid { grid-template-columns: 1fr 1fr; }
  .meet-cta-inner { align-items: flex-start; flex-direction: column; }
  .forward-intro-grid { grid-template-columns: 1fr; gap: 35px; }
  .impact-grid,
  .forward-close-grid { grid-template-columns: 1fr; gap: 35px; }
  .progress-item summary { grid-template-columns: 45px 1fr 28px; gap: 12px; }
  .progress-body { padding: 0 0 28px 57px; }
  .forward-close-grid { align-items: start; }
}
@media (max-width: 800px) {
  .forward-hero { padding: 130px 0 70px; }
  .issue-grid,
  .issue-cards { grid-template-columns: 1fr; }
  .issue-grid.reverse .issue-copy,
  .issue-grid.reverse .issue-photo { order: initial; }
  .issue-photo { min-height: 350px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-main { padding: 4.5rem 0 5rem; }
  .contact-card-page { padding: 2rem; }
}
@media (max-width: 620px) {
  .profile-grid,
  .leadership-grid { grid-template-columns: 1fr; }
  .story-highlight-copy { padding: 32px 25px; }
  .leadership-card { padding: 30px 25px; }
}
