/* BCC Give Page */

.bcc-give-page {
  font-family: Realist, Arial, sans-serif;
  color: #231f20;
  background: #ffffff;
}

.bcc-give-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bcc-give-container.narrow {
  max-width: 760px;
  text-align: center;
}

/* Hero */

.bcc-give-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(211, 185, 117, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #231f20 0%, #151313 100%);
  color: #ffffff;
  padding: 120px 0;
}

.bcc-eyebrow {
  margin: 0 0 18px;
  color: #d3b975;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bcc-eyebrow.dark {
  color: #8b7442;
}

.bcc-give-hero h1 {
  max-width: 920px;
  margin: 0 auto;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.bcc-hero-text {
  max-width: 680px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.6;
}

/* Buttons */

.bcc-give-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
  padding: 16px 30px;
  border-radius: 999px;
  background: #d3b975;
  color: #231f20;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.bcc-give-button:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.bcc-secure-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

/* Intro */

.bcc-give-intro {
  padding: 110px 0;
  background: #f3efe7;
}

.bcc-give-intro h2,
.bcc-section-heading h2,
.bcc-give-final h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.bcc-give-intro p,
.bcc-give-final p {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(35, 31, 32, 0.78);
}

/* Cards */

.bcc-give-options {
  padding: 110px 0;
  background: #ffffff;
}

.bcc-section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.bcc-give-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.bcc-give-card {
  min-height: 300px;
  padding: 34px;
  border-radius: 26px;
  background: #231f20;
  color: #ffffff;
}

.bcc-give-card span {
  display: inline-block;
  margin-bottom: 52px;
  color: #d3b975;
  font-size: 14px;
  font-weight: 700;
}

.bcc-give-card h3 {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.bcc-give-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.6;
}

/* Final CTA */

.bcc-give-final {
  padding: 120px 0;
  background:
    linear-gradient(rgba(35, 31, 32, 0.9), rgba(35, 31, 32, 0.96)), #231f20;
  color: #ffffff;
  text-align: center;
}

.bcc-give-final h2 {
  color: #ffffff;
}

.bcc-give-final p {
  color: rgba(255, 255, 255, 0.78);
}

.bcc-contact-box {
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.bcc-contact-box p {
  margin: 0 0 8px;
  font-size: 16px;
}

.bcc-contact-box a {
  color: #d3b975;
  text-decoration: none;
}

/* Mobile */

@media screen and (max-width: 767px) {
  .bcc-give-hero {
    min-height: auto;
    padding: 90px 0;
  }

  .bcc-give-hero h1 {
    font-size: 52px;
  }

  .bcc-hero-text,
  .bcc-give-intro p,
  .bcc-give-final p {
    font-size: 17px;
  }

  .bcc-give-intro,
  .bcc-give-options,
  .bcc-give-final {
    padding: 78px 0;
  }

  .bcc-give-grid {
    grid-template-columns: 1fr;
  }

  .bcc-give-card {
    min-height: auto;
  }

  .bcc-give-card span {
    margin-bottom: 36px;
  }
}
