:root {
  --cream: #ebebb9;
  --cream-dark: #d4d4a8;
  /* Primary text: ~15:1 on white, strong on cream-tint sections */
  --text: #161513;
  /* Secondary body: ≥4.5:1 on white and tinted backgrounds */
  --text-muted: #3a3833;
  /* Links / buttons: darker green for contrast (esp. small text & WCAG AA) */
  --accent: #1a4d36;
  --accent-hover: #143d2b;
  /* Surfaces: one page wash, one band for “feature” strips, cards stay white */
  --surface-base: #f7f6f0;
  --surface-band: #e4e6df;
  --surface-inset: #e8e7e0;
  --surface-card: #ffffff;
  --surface-soft: #eeede6;
  /* Curriculum, testimonials, partners: shared warm strip */
  --gradient-warm-section: linear-gradient(
    180deg,
    rgba(228, 226, 198, 0.55) 0%,
    rgba(245, 243, 232, 0.92) 45%,
    #f0efe6 100%
  );
  --border-subtle: rgba(22, 21, 19, 0.07);
  --white: var(--surface-base);
  --shadow: 0 4px 24px rgba(42, 41, 36, 0.08);
  --font-display: "Sacramento", cursive;
  --font-body: "Raleway", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--cream-dark);
}

.nav-more {
  position: relative;
}

.nav-more summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.35rem 0;
  color: var(--text);
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary::after {
  content: " ▾";
  font-size: 0.75em;
  opacity: 0.7;
}

.nav-more[open] summary::after {
  content: " ▴";
}

.nav-more-list {
  position: absolute;
  top: 100%;
  right: 0;
  margin: 0.35rem 0 0;
  padding: 0.5rem 0;
  min-width: 11rem;
  list-style: none;
  background: var(--surface-card);
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-subtle);
}

.nav-more-list a {
  display: block;
  padding: 0.45rem 1rem;
  font-weight: 500;
  border-bottom: none;
}

.nav-more-list a:hover,
.nav-more-list a:focus-visible {
  background: var(--cream);
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto 0;
    top: 3.5rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--white);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav > a {
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(42, 41, 36, 0.06);
  }

  .nav-more {
    border-bottom: 1px solid rgba(42, 41, 36, 0.06);
    padding-bottom: 0.5rem;
  }

  .nav-more-list {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 0.5rem;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(82vh, 680px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 4.25rem 1.25rem 1.25rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  /* Light scrim: show the photo; text relies on dark type + subtle shadow */
  background:
    linear-gradient(
      180deg,
      rgba(247, 246, 240, 0.78) 0%,
      rgba(232, 230, 212, 0.55) 45%,
      rgba(247, 246, 240, 0.9) 100%
    ),
    url("https://img1.wsimg.com/isteam/ip/36ee7dbf-4414-41a4-bb21-dd4f91e3347c/HERO.jpg")
      center / cover no-repeat;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 52rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 0;
}

/* Center headline + lede + CTA in the space above the stats strip */
.hero-intro {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 0;
  padding: 0.25rem 0 1.25rem;
}

.hero h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-lede {
  margin: 0 0 1.25rem;
  max-width: 36rem;
  font-size: clamp(1.14rem, 2.5vw, 1.26rem);
  line-height: 1.5;
  color: #070605;
  font-weight: 600;
  letter-spacing: -0.015em;
  /* Halo like the headline so type stays readable over the photo */
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95),
    0 2px 6px rgba(247, 246, 240, 0.9);
}

.hero .cta {
  margin-bottom: 0;
}

/* Impact strip: typography-first (no badge circles) */
.hero-stats {
  list-style: none;
  margin: 0;
  flex-shrink: 0;
  padding: 1.1rem 1rem 1rem;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 0 0.75rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px rgba(22, 21, 19, 0.06);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0.35rem 0.65rem;
  }

  .hero-stat {
    padding: 0.85rem 0.35rem;
    border-bottom: 1px solid rgba(22, 21, 19, 0.07);
  }

  .hero-stat:last-child {
    border-bottom: none;
  }
}

@media (min-width: 641px) {
  .hero-stat:not(:first-child) {
    border-left: 1px solid rgba(22, 21, 19, 0.08);
  }
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  min-width: 0;
  padding: 0.35rem 0.4rem;
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-stat-label {
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 14rem;
  text-wrap: balance;
}

.cta {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--accent);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: 0.02em;
  border-radius: 6px;
  border: 2px solid var(--accent);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

.cta-secondary {
  margin-top: 0.5rem;
}

/* Sections */
.section {
  padding: 3.25rem 1.25rem;
}

/* Curriculum + testimonials + partners: same band (calmer than mixed tints) */
/* Curriculum, testimonials, partners: same warm gradient (via --gradient-warm-section) */
.section-curriculum {
  background: var(--gradient-warm-section);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.about-photo-graphic {
  object-fit: contain;
  background: var(--surface-inset);
  padding: 0.35rem;
}

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

.container {
  max-width: 900px;
  margin: 0 auto;
}

.container.narrow {
  max-width: 40rem;
}

.container-about {
  max-width: 960px;
}

/* About (two columns, circular photos) — surface from body */

.about-grid {
  display: grid;
  gap: 2.75rem 3rem;
  align-items: start;
}

@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-col {
  text-align: center;
}

.about-figure {
  margin: 0 0 1.25rem;
}

.about-photo {
  display: block;
  width: min(280px, 85vw);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 14px;
  border: 3px solid #d8d4b0;
  box-shadow: 0 2px 12px rgba(42, 41, 36, 0.06);
}

/* Illustrations read better in a square frame */
.about-photo.about-photo-graphic {
  aspect-ratio: 1;
  object-fit: contain;
}

.about-col-title {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.about-col-text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

/* About: community photos on top, then story + founder */
.about-story-layout {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
  align-items: stretch;
}

.about-story-main {
  width: 100%;
  min-width: 0;
}

.about-story-aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
  margin: 0;
  width: 100%;
}

@media (min-width: 640px) {
  .about-story-aside {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 1rem 1.5rem;
  }

  .about-story-aside-figure {
    flex: 1 1 0;
    min-width: 0;
  }
}

.about-story-aside-figure {
  margin: 0;
}

/* Community photos: same frame size; both cropped to fill matching 4:3 tiles */
.about-story-aside .about-photo {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.about-story-body {
  margin: 0;
}

.about-story-body p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-story-body p + p {
  margin-top: 1.1rem;
}

.about-story-founder {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 100%;
  margin: 2rem 0 0 auto;
  text-align: right;
}

.about-story-founder-caption {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  margin: 0;
  flex: 0 0 auto;
}

.about-story-founder-name {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.about-story-founder-role {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.about-story-founder-cred {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Founder headshot stays circular; other .about-photo images are rounded rectangles */
.about-photo.about-story-founder-photo {
  flex-shrink: 0;
  display: block;
  margin: 0;
  width: min(130px, 36vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 520px) {
  .about-story-founder {
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    margin-right: 0;
  }

  .about-story-founder-photo {
    align-self: flex-end;
  }
}

.section-title {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.6vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
}

h2.section-title.about-page-title {
  margin: 0 0 2.75rem;
}

/* Our Story only: lines flanking the title */
.about-page-title--decorated {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 0 0 2.75rem;
}

.about-page-title--decorated .about-page-title-line {
  flex: 1;
  max-width: 8rem;
  height: 1px;
  background: rgba(22, 21, 19, 0.35);
}

.about-page-title--decorated .about-page-title-text {
  flex-shrink: 0;
}

.about-page-title--decorated .section-title {
  margin: 0;
}

/* Program + Join: image left, copy right (stacks on narrow viewports) */
.curriculum-intro,
.join-intro {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  margin: 0 0 1.75rem;
}

@media (min-width: 680px) {
  .curriculum-intro,
  .join-intro {
    /* Image and copy each half of row (within section container) */
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1.75rem 2.25rem;
  }
}

.curriculum-intro-media,
.join-intro-media {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}

@media (min-width: 680px) {
  .curriculum-intro-media,
  .join-intro-media {
    justify-content: flex-start;
  }
}

.curriculum-intro-media .about-figure,
.join-intro-media .about-figure {
  margin: 0;
  width: 100%;
}

.curriculum-intro-media .about-photo,
.join-intro-media .about-photo {
  width: 100%;
  height: auto;
}

@media (max-width: 679px) {
  .curriculum-intro-media .about-figure,
  .curriculum-intro-media .about-photo,
  .join-intro-media .about-figure,
  .join-intro-media .about-photo {
    max-width: min(92vw, 380px);
  }
}

.program-outcome {
  margin: 0 auto 1.75rem;
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: center;
}

.curriculum-intro-copy,
.join-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.curriculum-intro .program-outcome {
  margin: 0;
  max-width: none;
}

@media (min-width: 680px) {
  .curriculum-intro .program-outcome {
    text-align: left;
    padding-top: 0.1rem;
  }
}

/* Sign up under intro copy (not below week cards) */
.curriculum-intro-copy .week-cta--intro {
  margin: 0.75rem 0 0;
  max-width: none;
}

@media (min-width: 680px) {
  .curriculum-intro-copy .week-cta--intro {
    align-items: flex-start;
    text-align: left;
  }

  .curriculum-intro-copy .week-cta--intro .cta-block {
    align-self: flex-start;
  }
}

@media (max-width: 679px) {
  .curriculum-intro-copy .week-cta--intro {
    align-items: center;
    text-align: center;
  }
}

.join-intro-copy .join-intro-text p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.join-intro-copy .join-intro-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 679px) {
  .join-intro-copy .join-intro-text,
  .join-intro-copy .join-intro-text p {
    text-align: center;
  }
}

@media (min-width: 680px) {
  .join-intro-copy .join-intro-text p {
    text-align: left;
  }
}

.join-intro-copy .contact-cta {
  margin: 1rem 0 0;
  align-self: center;
}

@media (min-width: 680px) {
  .join-intro-copy .contact-cta {
    align-self: flex-start;
  }
}

.weeks-grid {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 640px) {
  .weeks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* List items participate in parent grid (valid HTML: ol only wraps li) */
.weeks {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.week-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  text-align: left;
  border-radius: 12px;
  padding: 1.25rem 1.35rem 1.25rem 1.15rem;
  border: 1px solid rgba(22, 21, 19, 0.1);
  background: var(--surface-card);
}

.week-card-top {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.week-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: baseline;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  background: transparent;
}

.week-badge::after {
  content: ".";
  font-weight: 800;
}

.week-card h4 {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  text-align: left;
}

.week-card ul {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.week-card ul li + li {
  margin-top: 0.55rem;
}

/* Below week cards — no box */
.week-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 1.75rem;
  padding: 0;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.week-cta .cta-block {
  align-self: center;
}

/* FAQ */
.faq-list {
  margin: 0;
}

.faq-list dt {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--text);
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
}

.faq-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq-list a:hover,
.faq-list a:focus-visible {
  color: var(--accent-hover);
}

/* Testimonials (same band as curriculum & partners) */
.section-testimonials {
  background: var(--gradient-warm-section);
  border-top: 1px solid var(--border-subtle);
}

.quotes {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .quotes {
    grid-template-columns: 1fr 1fr;
  }
}

.quote {
  margin: 0;
  padding: 1.35rem 1.5rem;
  background: var(--surface-card);
  border-radius: 12px;
  border: 1px solid rgba(22, 21, 19, 0.1);
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0 0 0.75rem;
  font-style: italic;
  color: var(--text-muted);
}

.quote footer {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

/* Partners: same warm strip as testimonials (no top border) */
.section-partners {
  background: var(--gradient-warm-section);
  border-bottom: 1px solid var(--border-subtle);
}

.partners-inner {
  max-width: min(100%, 72rem);
}

/* Title + intro read as one unit; global about-page-title 2.75rem is too loose here */
.section-partners h2.section-title.about-page-title {
  margin-bottom: 0.75rem;
}

.partners-intro {
  margin: 0 auto calc(1.25rem + 1.65em);
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.partners-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem 1.5rem;
  justify-items: stretch;
  text-align: center;
  align-items: start;
}

@media (min-width: 640px) {
  .partners-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .partners-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem 1.25rem;
  }
}

.partner-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  gap: 0.85rem;
  width: 100%;
  max-width: 22rem;
  margin: 0 auto;
}

.partner-caption {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-muted);
  text-align: center;
  align-self: stretch;
}

.partner-caption-name {
  font-weight: 700;
  color: var(--text);
}

/* Fixed-height slot so logos stay centered while caption tops line up across columns */
.partner-logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.5rem;
  min-height: 7.5rem;
  padding: 0.75rem 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.15s ease, background 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}

.partner-logo-link:hover,
.partner-logo-link:focus-visible {
  opacity: 0.88;
  background: rgba(255, 255, 255, 0.5);
  outline: none;
}

.partner-logo-link:focus-visible {
  box-shadow: 0 0 0 2px var(--accent);
}

.partner-logo-link img {
  display: block;
  max-height: 5.75rem;
  max-width: min(100%, 18rem);
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Contact */
.section-contact {
  text-align: center;
}

.section-contact p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  text-align: left;
}

.contact-col-copy {
  text-align: left;
}

.contact-tagline {
  margin-bottom: 1.25rem;
}

.contact-cta {
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  padding: 1.5rem 1.25rem 2rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 0.4rem;
}

.site-footer-nonprofit {
  font-size: 0.82rem;
  opacity: 0.92;
}
