.shadow-soft { box-shadow: 0 10px 30px rgba(0,0,0,.08); }
.bg-sand { background-color: #F4F1EA; }
.text-pine { color: #1E5A3F; }

.c-hero {
  background-image: radial-gradient(rgba(30,90,63,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  padding: 3rem 1.25rem 4rem;
}

.c-hero__grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .c-hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
  }
}

.c-hero__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  aspect-ratio: 4 / 3;
  max-height: 745px;
}

.c-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.c-hero__media--transparent .c-hero__img {
  object-fit: contain;
  object-position: center;
}

.c-hero__media--transparent.c-hero__media--landscape .c-hero__img {
  width: 100%;
  height: 100%;
}

.c-hero__media--transparent.c-hero__media--portrait .c-hero__img {
  height: 100%;
  width: 100%;
}

.c-hero__media--transparent {
  box-shadow: none;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.c-hero__media--transparent.shadow-soft {
  box-shadow: none;
}

.c-hero__media--landscape {
  aspect-ratio: 4 / 3;
}

.c-hero__media--portrait {
  aspect-ratio: auto;
  height: 100%;
  align-self: stretch;
}

.c-hero__img.is-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1023.98px) {
  .c-hero__media--portrait {
    max-height: 70vh;
  }
}

.c-hero__headline {
  color: #1E5A3F;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 .75rem;
}


.c-hero__intro {
  color: rgba(60,60,59,.85);
  line-height: 1.7;
  max-width: 60ch;
  margin-bottom: 1.25rem;
}
.c-hero__intro p { margin: .4rem 0; }

.c-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: .8rem 1.25rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.btn--primary {
  background: #1E5A3F;
  color: #fff;
}
.btn--primary:hover { filter: brightness(.96); }
.btn--ghost {
  background: #fff;
  color: #1E5A3F;
  border-color: rgba(30,90,63,.2);
}
.btn--ghost:hover { border-color: #1E5A3F; }

.c-hero__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .c-hero__stats { grid-template-columns: repeat(3, 1fr); }
}
.stat {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.stat__label {
  font-size: .9rem;
  color: rgba(60,60,59,.7);
}
.stat__value {
  margin-top: .2rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #1E5A3F;
}

.c-list { padding: 3rem 1.25rem; }
.c-list__inner { max-width: 80rem; margin: 0 auto; }

.c-list__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 2rem;
}
.c-list__title {
  color: #1E5A3F; font-weight: 800;
  font-size: clamp(1.75rem, 1.6rem + 1vw, 2rem);
  margin: 0;
}
.c-list__subtitle {
  margin: .25rem 0 0; color: rgba(60,60,59,.7);
}
.c-list__more {
  color: #1E5A3F; font-weight: 700; text-decoration: none;
}
.c-list__more:hover { text-decoration: underline; }

.c-cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .c-cards { grid-template-columns: repeat(3, 1fr); }
}

.c-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.04);
}

.c-card__media { aspect-ratio: 16 / 7; background: #f4f4f4; }
.c-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }

.c-card__body { padding: 1.1rem 1.25rem 1.25rem; }

.c-card__date {
  display: block; font-size: .75rem; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(60,60,59,.6);
}
.c-card__title {
  margin: .4rem 0 0; font-size: 1.0625rem; line-height: 1.35; font-weight: 700; color: #1b1b1a;
}
.c-card__title a { color: inherit; text-decoration: none; }
.c-card__title a:hover { text-decoration: underline; }

.c-card__excerpt {
  margin: .45rem 0 0; color: rgba(60,60,59,.85); line-height: 1.55;
}

.c-card__link {
  display: inline-flex; margin-top: .6rem; font-weight: 700;
  color: #1E5A3F; text-decoration: none;
}
.c-card__link:hover { text-decoration: underline; }

.stats-quad-section {
  padding: 4rem 0;
}

.stats-quad-container {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.stats-quad-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-quad-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


.stats-quad-item {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stats-quad-title {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.stats-quad-value {
  margin-top: 0.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  color: #1E5A3F;
}


.fbb-wrap {
  position: relative;
  width: 100%;
}

.fbb--standard .fbb-media {
  border-radius: 12px;
  overflow: hidden;
}

.fbb--full {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
.fbb--full .fbb-media {
  border-radius: 0;
  overflow: hidden;
}

.fbb-media {
  position: relative;
}

.fbb-img {
  display: block;
  width: 100%;
  height: auto;
}

.fbb-overlay {
  --overlay-alpha: 25%;
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / var(--overlay-alpha));
  pointer-events: none;
  z-index: 1;
}

.fbb-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.25rem;
  z-index: 2;
}
.fbb-inner {
  max-width: 60rem;
}
.fbb-title {
  color: #fff;
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2.75rem);
  line-height: 1.15;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.fbb-text {
  color: #fff;
  margin: 0.5rem 0 0 0;
  font-size: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  white-space: pre-line;
}

@media (max-width: 767px) {
  .event-meta__sep {
    display: none;
  }
  .event-meta__guide {
    display: block;
    margin-top: .25rem;
  }
}

.widget-spacer {
  height: 24px;
}

@media (max-width: 768px) {
  .widget-spacer--no-mobile {
    display: none;
  }
}