/* ─── CHARITY ─── */
#charity {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 5rem;
}

#charity::before {
  content: '✦';
  position: absolute;
  top: -2rem; left: 10%;
  font-size: 8rem;
  color: rgba(255,255,255,0.06);
}

#charity::after {
  content: '✦';
  position: absolute;
  bottom: -2rem; right: 10%;
  font-size: 10rem;
  color: rgba(255,255,255,0.05);
}

.charity-eyebrow {
  font-family: 'EB Garamond', serif;
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
}

.charity-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 1rem;
}

.charity-name {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  color: white;
  margin-bottom: 1.5rem;
  display: block;
}

.charity-body {
  font-family: 'EB Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.charity-pill {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: white;
  padding: 0.7rem 1.8rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.charity-pill:hover { background: rgba(255,255,255,0.3); }

/* Charity sub-card inside cause section */
.cause-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.charity-subcard {
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  padding: 2rem 2.2rem;
  position: relative;
  overflow: hidden;
}

.charity-subcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--honey), var(--honey-dark));
}

.charity-subcard-tag {
  font-family: 'EB Garamond', serif;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--honey-dark);
  margin-bottom: 0.6rem;
}

.charity-subcard-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 0.8rem;
}

.charity-subcard-body {
  font-family: 'EB Garamond', serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}

.charity-subcard-link {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--honey-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--honey-light);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.charity-subcard-link:hover {
  color: var(--warm-brown);
  border-color: var(--warm-brown);
}

.cause-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.cause-section-header .section-title {
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  color: var(--text);
  margin-bottom: 0.4rem;
}

/* ─── CAUSE OF THE MONTH ─── */
#cause {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 8rem 5rem;
}

.cause-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.cause-left { position: relative; }

.cause-ribbon {
  display: inline-block;
  background: var(--honey);
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.45rem 1.2rem;
  margin-bottom: 1.5rem;
}

.cause-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.cause-title em {
  font-style: italic;
  color: var(--honey-dark);
}

.cause-month {
  font-family: 'Cinzel', serif;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.cause-month::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--honey);
}

.cause-body {
  font-family: 'EB Garamond', serif;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cause-body p {
  text-indent: 2em;
}

.cause-body p + p { margin-top: 1rem; }

.cause-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cause-stat-row {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige-dark);
}

.cause-stat { text-align: center; }

.cause-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--honey-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cause-stat-label {
  font-family: 'EB Garamond', serif;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

/* Ribbon visual on the right */
.cause-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cause-ribbon-art {
  width: 280px;
  height: 280px;
}
