/* ─── Fonts ─────────────────────────────────────────────────────── */
@font-face {
  font-family: 'EBGaramond';
  src: url('inspiration/fonts/Fonts/EBGaramond12-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'EBGaramond';
  src: url('inspiration/fonts/Fonts/EBGaramond12-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Montserrat';
  src: url('inspiration/fonts/Fonts/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: url('inspiration/fonts/Fonts/Montserrat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}

/* ─── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #f7f4ef;
  --charcoal:  #2a2a2a;
  --stone:     #6b6560;
  --sage:      #7a8c72;
  --light:     #e8e4de;
  --white:     #ffffff;

  --serif:     'EBGaramond', Georgia, serif;
  --sans:      'Montserrat', 'Helvetica Neue', sans-serif;

  --max:       1160px;
  --gap:       2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--charcoal);
  background: var(--cream);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ─── Utilities ──────────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: var(--max);
  margin: 0 auto;
}
.container--narrow { max-width: 720px; }

.label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.label--center { text-align: center; }
.label--light   { color: rgba(255,255,255,0.65); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.section-title--center { text-align: center; }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid currentColor;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
  margin-top: 1.5rem;
}
.btn--dark  { color: var(--charcoal); }
.btn--dark:hover { background: var(--charcoal); color: var(--cream); }
.btn--light { color: var(--white); }
.btn--light:hover { background: var(--white); color: var(--charcoal); }

/* ─── Nav ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5%;
  background: rgba(247, 244, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light);
  transition: background 0.3s;
}
.nav__logo {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--charcoal); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--charcoal);
}

/* ─── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('inspiration/hero.jpg') center center / cover no-repeat;
  background-color: #2d3d2e;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,18,30,0.55) 0%, rgba(10,18,30,0.30) 60%, rgba(10,18,30,0.65) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  padding: 0 1.5rem;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 1.2rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Quote ──────────────────────────────────────────────────────── */
.quote {
  padding: 6rem 0;
  text-align: center;
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
  margin: 2rem 0;
}
.quote__line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--stone);
  margin: 0 auto;
}

/* ─── Split ──────────────────────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.split__image {
  position: relative;
  overflow: hidden;
  background: url('inspiration/about.jpg') center center / cover no-repeat;
  background-color: #c8cfc2;
  min-height: 400px;
}
.split__img-fill {
  position: absolute;
  inset: 0;
  background: rgba(40,50,38,0.08);
}
.split__text {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.split__text p {
  color: var(--stone);
  margin-bottom: 1rem;
  max-width: 440px;
}

/* ─── Beliefs ────────────────────────────────────────────────────── */
.beliefs {
  padding: 7rem 0;
  background: var(--white);
}
.beliefs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.belief-card {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--light);
}
.belief-card__icon {
  font-size: 1.1rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
  display: block;
}
.belief-card h3 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.9rem;
}
.belief-card p {
  font-size: 0.98rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ─── Full Bleed ─────────────────────────────────────────────────── */
.full-bleed {
  position: relative;
  height: 70vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('inspiration/fullbleed.jpg') center center / cover no-repeat;
  background-color: #3d4a38;
}
.full-bleed__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,15,25,0.58);
}
.full-bleed__text {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.full-bleed__label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}
.full-bleed__text h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.2;
}

/* ─── Community ──────────────────────────────────────────────────── */
.community {
  padding: 7rem 0;
  background: var(--cream);
}
.community__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.community__text p {
  color: var(--stone);
  margin-bottom: 1rem;
}
.community__list {
  padding-top: 0.5rem;
}
.community__item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--light);
}
.community__item:first-child { border-top: 1px solid var(--light); }
.community__item-marker {
  font-family: var(--sans);
  color: var(--sage);
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.community__item h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.community__item p {
  font-size: 0.98rem;
  color: var(--stone);
}

/* ─── Leadership ─────────────────────────────────────────────────── */
.leadership {
  padding: 7rem 0;
  background: var(--white);
}
.leadership__intro {
  text-align: center;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto 4rem;
  font-style: italic;
}
.leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.leader-card {
  text-align: center;
}
.leader-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light);
  margin-bottom: 1.5rem;
  overflow: hidden;
  /* Photos can be added as background-image per card */
  background-size: cover;
  background-position: center top;
}
.leader-card__role {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.4rem;
}
.leader-card__name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
}

/* ─── Join ───────────────────────────────────────────────────────── */
.join {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  background: url('inspiration/join.jpg') center center / cover no-repeat;
  background-color: #2d3d2e;
}
.join__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,12,8,0.58);
}
.join__inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.join__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.join__sub {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.6);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3.5rem 0;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__name {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__tagline {
  font-style: italic;
  font-size: 0.9rem;
}
.footer__links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 5%;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .beliefs__grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__image { min-height: 320px; }
  .split__text { padding: 3.5rem 2rem; }
  .community__inner { grid-template-columns: 1fr; gap: 3rem; }
  .leadership__grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 600px) {
  .beliefs__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }
}

/* ─── Mobile nav open ────────────────────────────────────────────── */
.nav--open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--cream);
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  z-index: 99;
}
.nav--open .nav__links a { font-size: 0.9rem; letter-spacing: 0.2em; }

/* ─── Nav logo as link ───────────────────────────────────────────── */
a.nav__logo { color: var(--charcoal); }

/* ─── Hero multiple buttons ──────────────────────────────────────── */
.hero__btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ─── Quote body paragraph ───────────────────────────────────────── */
.quote__body {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.8;
  text-align: center;
  margin: 1.5rem 0;
}

/* ─── 3-column beliefs grid ──────────────────────────────────────── */
.beliefs__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ─── Join multiple buttons ──────────────────────────────────────── */
.join__btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ─── Page header (inner pages) ──────────────────────────────────── */
.page-header {
  padding: 10rem 0 5rem;
  text-align: center;
  background-color: var(--cream);
  border-bottom: 1px solid var(--light);
}

/* ─── Photo page header ──────────────────────────────────────────── */
.page-header--photo {
  position: relative;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-color: #1a1f2a;
  border-bottom: none;
  padding: 8rem 1.5rem 5rem;
}
.page-header--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,14,20,0.6) 0%, rgba(10,14,20,0.35) 55%, rgba(10,14,20,0.65) 100%);
}
.page-header--photo .page-header__eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.6);
}
.page-header--photo .page-header__title {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-header--photo .page-header__sub {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.78);
}
.page-header__eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.2rem;
}
.page-header__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.page-header__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--stone);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── Founders ───────────────────────────────────────────────────── */
.founders { padding: 2rem 0 5rem; }
.founder {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: start;
  padding: 5rem 0;
  border-top: 1px solid var(--light);
}
.founder:last-child { border-bottom: 1px solid var(--light); }
.founder__photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light);
  background-size: cover;
  background-position: center top;
}
.founder__name {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.3rem;
}
.founder__role {
  display: block;
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.5rem;
}
.founder__bio p { color: var(--stone); margin-bottom: 1rem; }

/* ─── Why We Exist ───────────────────────────────────────────────── */
.why-section { padding: 7rem 0; background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3.5rem;
}
.why-card {
  text-align: center;
  padding: 3rem 2rem;
  border-top: 1px solid var(--light);
}
.why-card__word {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.why-card p { font-size: 0.95rem; color: var(--stone); }

/* ─── Offering details ───────────────────────────────────────────── */
.offering-detail { padding: 5rem 0; }
.offering-detail + .offering-detail { border-top: 1px solid var(--light); }
.offering-detail__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 6rem;
  align-items: start;
}
.offering-detail__label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.offering-detail__title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
}
.offering-detail__body p { color: var(--stone); margin-bottom: 1rem; }
.offering-list { list-style: none; margin-top: 1.5rem; }
.offering-list li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light);
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.offering-list li::before { content: '— '; color: var(--sage); }

/* ─── Retreat flyer placeholder ──────────────────────────────────── */
.flyer-area {
  max-width: 480px;
  margin: 3rem auto;
  border: 1px solid var(--light);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 3rem;
  text-align: center;
}
.flyer-area p {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.flyer-area img { max-width: 100%; display: block; }

/* ─── Events ─────────────────────────────────────────────────────── */
.events-section { padding: 6rem 0; background: var(--cream); }
.event-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light);
}
.event-item:first-child { border-top: 1px solid var(--light); }
.event-item__date {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  padding-top: 0.3rem;
}
.event-item__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.event-item__desc { font-size: 0.95rem; color: var(--stone); }

/* ─── Expect / Bring ─────────────────────────────────────────────── */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.expect-block h3 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.expect-block ul { list-style: none; }
.expect-block ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.95rem;
  color: var(--stone);
}
.expect-block ul li::before { content: '— '; color: var(--sage); }

/* ─── FAQ / New Here ─────────────────────────────────────────────── */
.faq-section { padding: 6rem 0; }
.faq-item {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light);
  max-width: 720px;
}
.faq-item:first-child { border-top: 1px solid var(--light); }
.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.faq-item p { color: var(--stone); font-size: 0.98rem; }

/* ─── Contact ────────────────────────────────────────────────────── */
.contact-section { padding: 6rem 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.contact-info h3 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  margin-top: 2rem;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 0.95rem; color: var(--stone); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field label {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-field input,
.form-field textarea {
  font-family: var(--serif);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light);
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--stone); }
.form-field textarea { min-height: 160px; resize: vertical; }

/* ─── Donations ──────────────────────────────────────────────────── */
.donations-section { padding: 6rem 0; background: var(--cream); }
.donations-uses { list-style: none; margin: 1.5rem 0 3rem; }
.donations-uses li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--light);
  font-size: 0.95rem;
  color: var(--stone);
}
.donations-uses li::before { content: '— '; color: var(--sage); }
.donate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  max-width: 480px;
  margin-top: 1.5rem;
}
.donate-btn {
  display: block;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  transition: background 0.3s, color 0.3s;
}
.donate-btn:hover { background: var(--charcoal); color: var(--cream); }

/* ─── Responsive additions ───────────────────────────────────────── */
@media (max-width: 900px) {
  .beliefs__grid--3 { grid-template-columns: 1fr 1fr; }
  .founder { grid-template-columns: 1fr; gap: 2rem; }
  .offering-detail__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .expect-grid { grid-template-columns: 1fr; gap: 2rem; }
  .donate-options { max-width: 100%; }
  .why-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 1fr; gap: 0.5rem; }
}
@media (max-width: 600px) {
  .beliefs__grid--3 { grid-template-columns: 1fr; }
  .hero__btns { flex-direction: column; align-items: center; }
  .join__btns { flex-direction: column; align-items: center; }
  .page-header { padding: 8rem 0 3rem; }
  .donate-options { grid-template-columns: 1fr; }
}
