:root {
  --cream: #F2ECDD;
  --light: #FAF8F5;
  --green: #536B52;
  --gold: #B4A276;
  --text: #1D1D1A;
  --muted: #5C5A54;
  --border: #D9D1C1;
  --quote: #EEE5D3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Lato", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

/* =========================
   HEADER
========================= */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 24px 5%;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-heart {
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  line-height: 1;
}

.brand-name {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
}

.brand-tagline {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.6px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

.nav a:hover,
.nav a.active {
  color: var(--green);
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--green);
}

/* =========================
   GENERAL
========================= */

h1,
h2,
h3,
blockquote {
  font-family: "Cormorant Garamond", serif;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  min-height: 570px;
}

.hero-image {
  min-height: 570px;
  overflow: hidden;
}

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

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 8%;
  background: var(--light);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 500;
  line-height: .98;
}

.intro {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.primary-button {
  display: inline-block;
  width: fit-content;
  padding: 13px 21px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .2s ease, transform .2s ease;
}

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

/* =========================
   HOMEPAGE RESOURCE CARDS
========================= */

.resources {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  padding: 34px 5%;
}

.resource-card {
  display: block;
  min-width: 0;
  padding: 30px;
  border-radius: 18px;
  background: var(--light);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
}

/* FIRST ROW — 3 equal cards */

.resource-card:nth-child(1) {
  grid-column: 1 / span 2;
}

.resource-card:nth-child(2) {
  grid-column: 3 / span 2;
}

.resource-card:nth-child(3) {
  grid-column: 5 / span 2;
}

/* SECOND ROW — 2 equal cards, centered */

.resource-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.resource-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.icon-circle {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--cream);
}

.icon-circle svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--green);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.resource-card h2 {
  margin-bottom: 10px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.05;
}

.resource-card p {
  min-height: 52px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.card-link {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
}

/* =========================
   QUOTE
========================= */

.quote-section {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 50px;
  align-items: center;
  padding: 80px 8%;
}

.quote-mark {
  margin-bottom: -12px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 75px;
  line-height: .8;
}

blockquote {
  max-width: 800px;
  margin: 0 0 18px;
  font-size: clamp(31px, 4vw, 49px);
  font-weight: 500;
  line-height: 1.05;
}

.quote-credit {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hope-note {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 35px;
  border: 1px solid var(--border);
  background: rgba(250, 248, 245, .45);
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
}

.hope-note span:nth-child(2) {
  padding-left: 28px;
}

.hope-note span:nth-child(3) {
  padding-left: 56px;
}

/* =========================
   FOOTER
========================= */

footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 5%;
  border-top: 1px solid var(--border);
  background: var(--light);
}

.footer-brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 600;
}

.footer-tagline {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1.4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green);
}

/* =========================
   FINANCIAL SUPPORT PAGE
========================= */

.page-hero {
  padding: 90px 8% 70px;
  background: var(--light);
}

.page-hero h1 {
  max-width: 850px;
  margin-bottom: 20px;
  font-size: clamp(45px, 6vw, 72px);
  font-weight: 500;
  line-height: .98;
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.support-resources {
  padding: 70px 8%;
}

.section-label {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

.support-resources h2 {
  margin-bottom: 12px;
  font-size: 42px;
  font-weight: 500;
}

.support-intro {
  max-width: 700px;
  margin-bottom: 45px;
  color: var(--muted);
}

.regions-section {
  padding-top: 10px;
}

.regions-list {
  border-top: 1px solid var(--border);
}

.region-link {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  gap: 25px;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.region-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.region-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 500;
}

.region-arrow {
  color: var(--green);
  font-size: 22px;
  text-align: right;
}

.region-link:hover .region-name {
  color: var(--green);
}

.support-note {
  max-width: 850px;
  margin-top: 55px;
  padding: 28px 30px;
  border-left: 3px solid var(--gold);
  background: var(--quote);
}

.support-note h3 {
  margin-bottom: 8px;
  font-size: 25px;
  font-weight: 500;
}

.support-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.closing-message {
  padding: 65px 8%;
  text-align: center;
}

.closing-message p {
  margin: 0;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* =========================
   REGIONAL RESOURCE PAGES
========================= */

.resources-page {
  padding: 70px 8%;
}

.resources-page-header {
  margin-bottom: 45px;
}

.resources-page-header h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(43px, 5vw, 65px);
  font-weight: 500;
  line-height: .98;
}

.resources-page-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
}

.resource-list {
  border-top: 1px solid var(--border);
}

.resource {
  display: grid;
  grid-template-columns: 55px 1fr 150px;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.resource-number {
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
}

.resource-info h2 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.1;
}

.resource-info p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.resource-button {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease;
}

.resource-button:hover {
  background: var(--green);
  color: white;
}

.location {
  padding-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: right;
}

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

@media (max-width: 1000px) {

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

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

  .hero-image {
    min-height: 420px;
  }

  .hero-copy {
    padding: 60px 7%;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {

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

  .resource-card:nth-child(1),
  .resource-card:nth-child(2),
  .resource-card:nth-child(3),
  .resource-card:nth-child(4),
  .resource-card:nth-child(5) {
    grid-column: auto;
  }

  .resource-card p {
    min-height: auto;
  }

  .resource {
    grid-template-columns: 45px 1fr;
  }

  .location {
    grid-column: 2;
    padding-top: 0;
    text-align: left;
  }
}

@media (max-width: 600px) {

  .site-header {
    padding: 20px 6%;
  }

  .nav {
    gap: 14px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero-image {
    min-height: 330px;
  }

  .hero-copy {
    padding: 50px 7%;
  }

  .hero h1 {
    font-size: 46px;
  }

  .resources {
    padding: 25px 6%;
  }

  .resource-card {
    padding: 25px;
  }

  .quote-section {
    padding: 60px 7%;
  }

  .hope-note {
    padding: 27px;
  }

  footer {
    flex-direction: column;
    padding: 35px 6%;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .page-hero,
  .support-resources,
  .resources-page {
    padding-left: 7%;
    padding-right: 7%;
  }

  .page-hero {
    padding-top: 65px;
    padding-bottom: 55px;
  }

  .support-resources {
    padding-top: 55px;
  }

  .region-link {
    grid-template-columns: 40px 1fr 25px;
    gap: 15px;
  }

  .region-name {
    font-size: 25px;
  }

  .resource {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .resource-info h2 {
    font-size: 27px;
  }
}
 /* =========================
    ABOUT WEBSITE — FULL DESIGN
 ========================= */

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

/* INTRO */

.about-hero {
  padding: 95px 8% 85px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}

.about-hero .eyebrow {
  margin-bottom: 20px;
}

.about-hero h1 {
  max-width: 900px;
  margin-bottom: 25px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  line-height: .95;
}

.about-intro {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}


/* INFORMATION SECTIONS */

.about-note {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 55px 7%;
  border-bottom: 1px solid var(--border);
}

.about-note-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: var(--light);

  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}

.about-note h2 {
  margin: 0 0 16px;

  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.05;
}

.about-note p {
  max-width: 780px;
  margin: 0 0 17px;

  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-note p:last-child {
  margin-bottom: 0;
}


/* ALTERNATING BACKGROUNDS */

.about-note:nth-of-type(2),
.about-note:nth-of-type(4) {
  background: rgba(250, 248, 245, .45);
}


/* CLOSING */

.about-closing {
  padding: 95px 8%;
  text-align: center;
  background: var(--light);
  border-top: 1px solid var(--border);
}

.about-closing .eyebrow {
  margin-bottom: 20px;
}

.about-closing h2 {
  max-width: 850px;
  margin: 0 auto;

  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.05;
}


/* MOBILE */

@media (max-width: 700px) {

  .about-hero {
    padding: 65px 7% 60px;
  }

  .about-hero h1 {
    font-size: 47px;
  }

  .about-note {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 45px 7%;
  }

  .about-note h2 {
    font-size: 32px;
  }

  .about-note p {
    font-size: 14px;
  }

  .about-closing {
    padding: 65px 7%;
  }

  .about-closing h2 {
    font-size: 38px;
  }

}
