/* =========================================================
   ASK HELPING HANDS - HOW IT WORKS PAGE
   ========================================================= */

/* ---------- Google Font ---------- */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&display=swap');


/* ---------- Root ---------- */

:root {
    --primary: #168a5b;
    --primary-dark: #0d6844;
    --primary-light: #e9f7f0;

    --ink: #17251f;
    --muted: #66756e;

    --surface: #f5f8f6;
    --white: #ffffff;

    --border: #dce7e1;

    --shadow: 0 10px 30px rgba(20, 60, 45, 0.08);
    --shadow-green: 0 12px 30px rgba(22, 138, 91, 0.22);

    --radius: 18px;
    --container: 1080px;
}


/* ---------- Reset ---------- */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/* ---------- Main Container ---------- */

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


/* =========================================================
   HERO
   ========================================================= */

.page-hero {
    background: var(--white);
    text-align: center;
    padding: 75px 0 55px;
}

.page-hero .container {
    max-width: 860px;
}

.breadcrumbs {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.eyebrow {
    display: inline-block;
    padding: 7px 13px;
    border-radius: 999px;

    background: var(--primary-light);
    color: var(--primary-dark);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    margin-bottom: 20px;
}

.page-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(44px, 7vw, 64px);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.035em;

    margin-bottom: 24px;
}

.page-hero h1 em {
    color: var(--primary);
    font-weight: 400;
}

.page-hero > .container > .muted {
    max-width: 680px;
    margin: 0 auto 35px;
}


/* ---------- Muted Text ---------- */

.muted {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
}


/* =========================================================
   BUTTON
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    border: 0;
    cursor: pointer;

    font-weight: 700;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);

    padding: 14px 28px 14px 18px;
    border-radius: 999px;

    box-shadow: var(--shadow-green);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-primary > i {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--white);
    color: var(--primary);

    border-radius: 50%;
    font-size: 20px;
}

.btn-primary span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    line-height: 1.1;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
    font-weight: 500;
}

.btn-primary span small {
    font-family: "DM Sans", Arial, sans-serif;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    opacity: 0.85;
    margin-bottom: 4px;
}


/* ---------- Hours ---------- */

.hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    color: var(--muted);
    font-size: 13px;
    font-weight: 500;

    margin-top: 16px;
}

.hours i {
    font-size: 13px;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section {
    padding: 80px 0;
    background: var(--white);
}

.section.alt {
    background: var(--surface);
}

.section .container {
    max-width: 920px;
}


/* ---------- Section Heading ---------- */

.section-head {
    margin-bottom: 45px;
}

.section-head h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(36px, 5vw, 48px);
    font-weight: 500;
    line-height: 1.08;

    letter-spacing: -0.03em;

    margin-bottom: 20px;
}

.section-head h2 em {
    color: var(--primary);
    font-weight: 400;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;

    max-width: 700px;
    margin-bottom: 15px;
}

.section-head p:last-child {
    margin-bottom: 0;
}

.section-head.center {
    text-align: center;
}

.section-head.center p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   GRID
   ========================================================= */

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}


/* =========================================================
   CARDS
   ========================================================= */

.card {
    background: var(--white);

    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 28px;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.section.alt .card {
    background: var(--white);
}


/* ---------- Card Icon ---------- */

.icon-box {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    background: var(--primary-light);
    color: var(--primary);

    border-radius: 12px;

    margin-bottom: 17px;

    font-size: 20px;
}


/* ---------- Card Heading ---------- */

.card h3 {
    font-family: "Playfair Display", Georgia, serif;

    color: var(--ink);

    font-size: 22px;
    font-weight: 500;

    line-height: 1.25;

    margin-bottom: 10px;
}


/* ---------- Card Paragraph ---------- */

.card p {
    color: var(--muted);

    font-size: 14.5px;
    line-height: 1.6;
}


/* =========================================================
   SIMPLE PROCESS NUMBERS
   ========================================================= */

.num {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 50%;

    background: var(--primary-light);
    color: var(--primary);

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}


/* =========================================================
   LISTS
   ========================================================= */

.card ul {
    list-style: none;
    margin-top: 15px;
}

.card ul li {
    position: relative;

    color: var(--muted);

    font-size: 15px;

    padding-left: 25px;
    margin-bottom: 12px;
}

.card ul li:last-child {
    margin-bottom: 0;
}

.card ul li::before {
    content: "\f00c";

    position: absolute;
    left: 0;
    top: 3px;

    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    color: var(--primary);
    font-size: 12px;
}


/* =========================================================
   NOTICE
   ========================================================= */

.notice {
    margin-top: 30px;

    padding: 18px 22px;

    background: #fff9e8;
    border: 1px solid #f0dfaa;
    border-radius: 14px;

    color: #655323;

    font-size: 14px;
    line-height: 1.6;
}

.notice strong {
    color: #473a14;
}


/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    text-align: center;
    padding: 90px 0;
}

.cta-section .container {
    max-width: 760px;
}

.cta-section h2 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(40px, 6vw, 52px);
    font-weight: 500;

    line-height: 1.08;
    letter-spacing: -0.035em;

    margin-bottom: 22px;
}

.cta-section h2 em {
    color: var(--primary);
    font-weight: 400;
}

.cta-section > .container > p:not(.callback-link) {
    color: var(--muted);

    font-size: 18px;
    line-height: 1.65;

    max-width: 680px;

    margin: 0 auto 32px;
}


/* ---------- Callback Link ---------- */

.callback-link {
    margin-top: 15px;
}

.callback-link a {
    color: var(--muted);

    font-size: 14px;
    font-weight: 600;

    text-decoration: underline;
    text-underline-offset: 4px;

    transition: color 0.2s ease;
}

.callback-link a:hover {
    color: var(--primary);
}


/* =========================================================
   STRONG TEXT
   ========================================================= */

strong {
    color: var(--ink);
}
/* =========================================
   RESOURCES PAGE
========================================= */

.resources-tools {
  background: #f7f9f8;
}

.section-badge {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: #eaf7ef;
  color: #176b3e;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 16px;
}

.financial-badge {
  background: #fff3e5;
  color: #8a5311;
}

.section-head {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-head h2 {
  color: #17201b;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -1.5px;
  font-weight: 500;
  margin: 0;
}

.section-head h2 em {
  color: #159957;
  font-style: italic;
  font-weight: 400;
}

.section-head .muted {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}


/* =========================================
   PLANNING TOOL CARDS
========================================= */

.resource-tool-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid #e1e6e3;
  border-radius: 16px;
  text-decoration: none;
  transition: .25s ease;
}

.resource-tool-card:hover {
  transform: translateY(-5px);
  border-color: #159957;
  box-shadow: 0 15px 35px rgba(20, 40, 30, .10);
}

.resource-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 20px;
  color: #fff;
  font-size: 21px;
}

.resource-icon-primary {
  background: #159957;
}

.resource-icon-housing {
  background: #4b8f63;
}

.resource-icon-financial {
  background: #b87524;
}

.resource-icon-utility {
  background: #237c8a;
}

.resource-tool-card h3 {
  margin: 0 0 12px;
  color: #176b3e;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.4px;
}

.resource-tool-card:nth-child(2) h3 {
  color: #356d49;
}

.resource-tool-card:nth-child(3) h3 {
  color: #9b641d;
}

.resource-tool-card:nth-child(4) h3 {
  color: #236c78;
}

.resource-tool-card p {
  margin: 0 0 20px;
  color: #667085;
  font-size: 14.5px;
  line-height: 1.55;
  flex-grow: 1;
}

.resource-open {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #159957;
  font-size: 13px;
  font-weight: 700;
}

.resource-open i {
  transition: transform .2s ease;
}

.resource-tool-card:hover .resource-open i {
  transform: translateX(4px);
}


/* =========================================
   RESOURCE LIBRARY
========================================= */

.program-library {
  background: #fff;
}

.resource-heading {
  max-width: 640px;
}

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

.resource-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e1e6e3;
  border-radius: 16px;
  text-decoration: none;
  transition: .25s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
  border-color: #159957;
  box-shadow: 0 15px 35px rgba(20, 40, 30, .10);
}


/* Images */

.resource-image {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #edf1ef;
}

.resource-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.resource-card:hover .resource-image img {
  transform: scale(1.05);
}

.resource-category {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;

  padding: 6px 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.95);
  color: #17201b;

  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
}


/* Content */

.resource-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
}

.resource-content h3 {
  margin: 0 0 10px;
  color: #17201b;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -.3px;
}

.resource-content p {
  margin: 0 0 18px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
  flex-grow: 1;
}

.resource-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #e1e6e3;
  color: #667085;
  font-size: 12.5px;
  font-weight: 600;
}


/* =========================================
   FOOD BANK + HOTLINE
========================================= */

.resources-support {
  background: #f7f9f8;
}

.support-card {
  display: flex;
  flex-direction: column;
  padding: 40px;
  background: #fff;
  border: 1px solid #e1e6e3;
  border-radius: 16px;
  text-decoration: none;
  transition: .25s ease;
}

.support-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(20, 40, 30, .10);
}

.food-support:hover {
  border-color: #d47b2d;
}

.crisis-support {
  border: 2px solid #c93636;
}

.crisis-support:hover {
  border-color: #b82e2e;
}

.support-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #fff;
  font-size: 21px;
}

.food-support .support-icon {
  background: #d47b2d;
}

.crisis-support .support-icon {
  background: #c93636;
}

.support-label {
  align-self: flex-start;
  padding: 5px 10px;
  margin-bottom: 12px;
  border-radius: 6px;

  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.food-support .support-label {
  background: #fff1e5;
  color: #95531c;
}

.crisis-support .support-label {
  background: #fdecec;
  color: #a62b2b;
}

.support-card h3 {
  margin: 0 0 12px;
  color: #17201b;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -.7px;
  font-weight: 600;
}

.food-support:hover h3 {
  color: #95531c;
}

.crisis-support:hover h3 {
  color: #a62b2b;
}

.support-card p {
  margin: 0 0 20px;
  color: #667085;
  font-size: 14.5px;
  line-height: 1.55;
  flex-grow: 1;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.food-support .support-link {
  color: #d47b2d;
}

.crisis-support .support-link {
  color: #c93636;
}

.support-link i {
  transition: transform .2s ease;
}

.support-card:hover .support-link i {
  transform: translateX(4px);
}


/* =========================================
   CALL CTA
========================================= */

.resource-call-cta {
  padding: 80px 20px;
  background: #176b3e;
  color: #fff;
  text-align: center;
}

.resource-call-cta .container {
  max-width: 760px;
  margin: 0 auto;
}

.resource-call-cta h2 {
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.8px;
  font-weight: 500;
}

.resource-call-cta h2 em {
  color: #e8f7ee;
  font-weight: 400;
  font-style: italic;
}

.resource-call-cta > .container > p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,.85);
  font-size: 17px;
  line-height: 1.6;
}

.call-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;

  padding: 8px 32px 8px 8px;
  border-radius: 999px;

  background: #fff;
  color: #17201b;

  text-decoration: none;
  box-shadow: 0 15px 35px rgba(0,0,0,.18);
  transition: .25s ease;
}

.call-button:hover {
  background: #eef8f2;
  transform: translateY(-4px);
}

.call-button-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #159957;
  color: #fff;
  font-size: 20px;
}

.call-button-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}

.call-button-text small {
  margin-bottom: 4px;
  color: #667085;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.call-button-text strong {
  color: #17201b;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.5px;
}

.call-hours {
  margin-top: 22px !important;
  margin-bottom: 0 !important;
  color: rgba(255,255,255,.7) !important;
  font-size: 13.5px !important;
}
/* =========================
   ABOUT PAGE
========================= */

.about-page .page-hero {
  background: #fff;
}

.team-intro {
  align-items: start;
  margin-bottom: 48px;
}

.team-intro h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 0;
}

.team-intro h2 em {
  color: #16a34a;
  font-weight: 400;
  font-style: italic;
}

.team-intro p {
  color: #667085;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: #ecfdf3;
  color: #16a34a;
  font-size: 20px;
}

.housing-icon {
  background: #eff6ff;
  color: #2563eb;
}

.food-icon {
  background: #fff7ed;
  color: #ea580c;
}


/* Team photos */

.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f7f8;
  border: 3px solid #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.team-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-note {
  text-align: center;
  color: #667085;
  font-size: 13px;
  font-style: italic;
  margin: 0;
}


/* About cards */

.section .card ul {
  margin: 0;
  padding-left: 20px;
}

.section .card li {
  margin-bottom: 10px;
  color: #667085;
  line-height: 1.55;
}

.section .card li:last-child {
  margin-bottom: 0;
}

/* =========================
   DISCLOSURES PAGE
========================= */

.disclosure-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.disclosure-content h2 {
  margin-top: 42px;
  margin-bottom: 14px;
  color: #182230;
  font-family: var(--font-display, inherit);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.disclosure-content h2:first-child {
  margin-top: 0;
}

.disclosure-content p {
  margin-bottom: 18px;
  color: #667085;
  font-size: 15.5px;
  line-height: 1.7;
}

.disclosure-content strong {
  color: #182230;
  font-weight: 600;
}

.disclosure-content ul {
  margin: 10px 0 20px;
  padding-left: 24px;
  color: #667085;
}

.disclosure-content li {
  margin-bottom: 12px;
  padding-left: 4px;
  font-size: 15.5px;
  line-height: 1.7;
}

.disclosure-content a {
  color: #16a34a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.disclosure-content a:hover {
  color: #166534;
}


/* Responsive */

@media (max-width: 768px) {
  .disclosure-content {
    padding: 28px 22px;
  }

  .disclosure-content h2 {
    font-size: 24px;
    margin-top: 34px;
  }

  .disclosure-content p,
  .disclosure-content li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .disclosure-content {
    padding: 22px 18px;
  }

  .disclosure-content h2 {
    font-size: 22px;
  }

  .disclosure-content ul {
    padding-left: 20px;
  }
}
/* Responsive */

@media (max-width: 900px) {
  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-intro h2 {
    font-size: 38px;
  }
}

@media (max-width: 700px) {
  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .team-intro {
    margin-bottom: 35px;
  }

  .team-intro h2 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .team-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .team-photo {
    border-width: 2px;
    border-radius: 12px;
  }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


@media (max-width: 700px) {

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-tool-card {
    padding: 24px;
  }

  .support-card {
    padding: 28px;
  }

  .support-card h3 {
    font-size: 25px;
  }

  .resource-image {
    height: 220px;
  }

}


@media (max-width: 480px) {

  .resource-call-cta {
    padding: 65px 18px;
  }

  .call-button {
    width: 100%;
    justify-content: flex-start;
    padding-right: 15px;
  }

  .call-button-text strong {
    font-size: 23px;
  }

  .resource-meta {
    font-size: 11.5px;
  }

}

/* =========================================================
   RESPONSIVE - TABLET
   ========================================================= */

@media (max-width: 800px) {

    .section {
        padding: 65px 0;
    }

    .page-hero {
        padding: 60px 0 45px;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-head {
        margin-bottom: 35px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px, var(--container));
    }

    .page-hero {
        padding: 45px 0 40px;
    }

    .breadcrumbs {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .eyebrow {
        font-size: 10px;
        padding: 6px 11px;
        margin-bottom: 15px;
    }

    .page-hero h1 {
        font-size: 43px;
    }

    .muted {
        font-size: 16px;
    }

    .page-hero > .container > .muted {
        margin-bottom: 28px;
    }

    .btn-primary {
        padding: 11px 20px 11px 12px;
        gap: 11px;
    }

    .btn-primary > i {
        width: 43px;
        height: 43px;
        font-size: 17px;
    }

    .btn-primary span {
        font-size: 22px;
    }

    .btn-primary span small {
        font-size: 9px;
    }

    .hours {
        font-size: 12px;
    }

    .section {
        padding: 55px 0;
    }

    .section-head h2 {
        font-size: 35px;
    }

    .section-head p {
        font-size: 15.5px;
    }

    .card {
        padding: 23px;
    }

    .card h3 {
        font-size: 20px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .cta-section h2 {
        font-size: 39px;
    }

    .cta-section > .container > p:not(.callback-link) {
        font-size: 16px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 400px) {

    .page-hero h1 {
        font-size: 38px;
    }

    .btn-primary span {
        font-size: 19px;
    }

    .section-head h2 {
        font-size: 32px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

}