/* About Us page */

.aboutus .section { padding: 3rem 0; }
.aboutus .section--tight { padding: 2rem 0; }
}

.aboutus .section--panel {
  background: rgba(245, 241, 237, 0.75);
  border-top: 1px solid rgba(61, 57, 53, 0.10);
  border-bottom: 1px solid rgba(61, 57, 53, 0.10);
}

.aboutus .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.aboutus h2 { margin: 0 0 0.75rem 0; }
.aboutus h3 { margin: 0 0 0.5rem 0; }
.aboutus p { margin: 0 0 1rem 0; }

.aboutus .muted { opacity: 0.85; }

.aboutus .two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 860px) {
  .aboutus .two-col { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
}

.aboutus .card,
.aboutus .panel {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(61, , 53, 0.12);
  border-radius: 14px;
  padding: 1rem 1.05rem;
}
/* Center the foundation image vertically and horizontally */
.aboutus .foundation__image {
  display: flex;
  align-items: center;      /* vertical centering */
  justify-content: center;  /* horizontal centering */
  padding: 1.5rem;          /* more breathing room */
  min-height: 420px;        /* makes the card feel deliberate */
}

.aboutus .foundation__image img {
  width: min(520px, 95%);
  height: auto;
}
.aboutus .bullets {
  margin: 0.75rem 0 0 1.1rem;
}
.aboutus .bullets li { margin: 0.35rem 0; }

.aboutus .accordion details {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(61, 57, 53, 0.12);
  border-radius: 14px;
  padding: 0.75rem 0.9rem;
  margin: 0.75rem 0;
}
.aboutus .accordion summary {
  cursor: pointer;
  list-style: none;

  /* MATCH SECTION HEADINGS */
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

  /* match the page heading font */
  font-family: inherit;      /* safest if your h2 font is already set on .aboutus */
  font-weight: 600;          /* 700 looks harsh in serif */
  font-size: 1.15rem;        /* brings it closer to the design system */
  line-height: 1.35;
}

.aboutus .accordion summary::-webkit-details-marker { display: none; }
.aboutus .accordion__body { padding-top: 0.75rem; }

.aboutus .tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 860px) {
  .aboutus .tiles { grid-template-columns: 1fr 1fr 1fr; }
}

.aboutus .tile {
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(61, 57, 53, 0.12);
  border-radius: 14px;
  padding: 1rem 1.05rem;
}
/* HOW WE HELP – TILE TITLES */
.aboutus .tile h3 {
  font-size: 1.65rem;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.aboutus .meta { margin: 0.75rem 0 0 0; opacity: 0.9; }
.aboutus .meta span {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 57, 53, 0.14);
  margin-right: 0.4rem;
  margin-top: 0.35rem;
}

.aboutus .prose { max-width: 820px; }

.aboutus .cta {
  padding: 2.25rem 0;
  background: rgba(168, 181, 160, 0.18);
  border-top: 1px solid rgba(61, 57, 53, 0.10);
}
.aboutus .cta__inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 860px) {
  .aboutus .cta__inner {
    flex-direction: row;
    align-items: center;
  }
}


/* =========================
   HERO
========================= */
.hero--fullbleed{
  position: relative;
  min-height: 70vh;
  padding: 0;
  overflow: hidden;
}

.hero--fullbleed .hero-title{
  color: var(--warm-white);
  margin: 0;
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.08em;
}

.hero--aboutus .hero-bg{
  background-image: url("/assets/images/river-reeds-sparkle.jpg");
  background-size: cover;
  background-position: 50% 65%; /* move image DOWN so you see higher part */
  background-repeat: no-repeat;
}

.hero-content{
  position: relative;
  z-index: 2;
}

/* override global .hero-content max-width */
.hero--fullbleed .hero-content{
  width: 100%;
  max-width: none;
  padding: 0 16px;
}

