
.hero {
  position: relative; overflow: hidden;
  background: var(--green-mid); width: 100%;
  height: clamp(220px, 40vw, 520px);
}
.carousel-track {
  position: relative; width: 100%; height: 100%;
}
.carousel-slide {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-mid);
  opacity: 0; transition: opacity 2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.carousel-slide.active {
  opacity: 1; pointer-events: auto;
  z-index: 2;
}
.carousel-slide::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg,  rgba(255,255,255,0.03) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 1px, transparent 1px 12px);
}
.slide-placeholder { text-align: center; color: rgba(255,255,255,0.35); z-index: 1; }
.slide-placeholder svg { width: 48px; height: 48px; margin: 0 auto 10px; opacity: 0.5; }
.slide-placeholder p   { font-size: 13px; letter-spacing: 0.5px; }
.carousel-slide img    { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45); border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
  width: 44px; height: 44px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
}
.carousel-btn:hover { background: rgba(0,0,0,0.65); }
.carousel-btn.prev  { left: 14px; }
.carousel-btn.next  { right: 14px; }
.carousel-btn svg   { width: 18px; height: 18px; }
@media (min-width: 768px) {
  .carousel-btn { width: 52px; height: 52px; }
  .carousel-btn svg { width: 22px; height: 22px; }
}
.carousel-dots {
  position: absolute; bottom: 14px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10; align-items: center;
}
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  min-width: 10px;
}
.carousel-dot.active { background: var(--white); width: 28px; border-radius: 5px; }


.carousel-progress {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
  background: rgba(255,255,255,0.15); z-index: 10; overflow: hidden;
}
.carousel-progress-bar {
  height: 100%; width: 0%; background: var(--gold);
  transition: width linear;
}


.page-body { background: transparent; }


.about-section {
  padding: 32px clamp(16px, 5%, 12.5%) 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 600px) {
  .about-section {
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: start;
  }
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 30px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px;
}
.about-text p { font-size: clamp(14px, 2vw, 16px); color: var(--gray-dark); line-height: 1.75; max-width: 1000px; font-family: 'Montserrat', sans-serif; }
.read-more-btn {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  border: 1.5px solid var(--green-dark); color: var(--green-dark);
  font-size: 12px; font-weight: 500; padding: 6px 16px; border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}
.read-more-btn:hover { background: var(--green-dark); color: var(--white); }
.logo-block { text-align: left; flex-shrink: 0; }
.logo-ring {
  width: clamp(120px, 20vw, 220px); height: clamp(120px, 20vw, 220px);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
.logo-ring img { width: 100%; height: 100%; object-fit: cover; }
.logo-ring-placeholder { color: var(--green-light); opacity: 0.5; }
.logo-ring-placeholder svg { width: 44px; height: 44px; }
.logo-name    { font-size: 13px; font-weight: 600; letter-spacing: 2px; color: var(--green-dark); text-transform: uppercase; margin-top: 6px; }
.logo-tagline { font-size: 10px; color: var(--gray-mid); font-style: italic; margin-top: 2px; }


.section-divider {
  border: none; border-top: 1px solid #e0e0d8;
  margin: 0 clamp(16px, 5%, 12.5%);
}


.main-two-col {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 0 clamp(16px, 5%, 12.5%);
  gap: 0;
  align-items: stretch;
}
@media (min-width: 860px) {
  .main-two-col { grid-template-columns: 1fr auto; align-items: stretch; }
}


.main-left-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
@media (min-width: 860px) {
  .main-left-col { border-right: 1px solid #e8e8e0; }
}
@media (max-width: 859px) {
  .main-left-col { border-bottom: 1px solid #e8e8e0; }
}


.support-col {
  padding: 24px 16px 24px 0;
  min-width: 0;
}
@media (max-width: 859px) {
  .support-col { padding: 24px 0 16px; border-bottom: 1px solid #e8e8e0; }
}
.support-collage {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-collage-top {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
}
.support-collage-top img {
  width: 100%;
  height: auto;
  display: block;
}
.support-collage-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.support-collage-cell {
  overflow: hidden;
  border-radius: 8px;
}
.support-collage-cell img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.35s ease;
}
.support-collage-cell:hover img {
  transform: scale(1.04);
}
.learn-more-btn {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%);
  background: var(--green-mid); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  padding: 8px 20px; border-radius: 4px; white-space: nowrap; z-index: 2;
  text-transform: uppercase; transition: background 0.2s;
}
.learn-more-btn:hover { background: #b8942e; }
.support-learn-more {
  display: block;
  width: fit-content;
  margin: 10px auto 0;
  position: relative;
  left: auto; bottom: auto;
  transform: none;
}


.fb-placeholder {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(30,58,30,0.15);
  background: #f7f9f7;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  flex: 1;
}
.fb-ph-header {
  background: var(--green-dark);
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.fb-ph-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-ph-icon svg { display: block; }
.fb-ph-meta { display: flex; flex-direction: column; gap: 2px; }
.fb-ph-name { color: var(--white); font-size: 13px; font-weight: 600; line-height: 1; font-family: 'Montserrat', sans-serif; }
.fb-ph-handle { color: rgba(255,255,255,0.5); font-size: 11px; font-family: 'Montserrat', sans-serif; }
.fb-ph-body {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; padding: 24px 20px;
  color: var(--gray-mid); font-size: 13px; text-align: center;
}
.fb-ph-body svg { opacity: 0.35; }
.fb-ph-skeleton { display: flex; flex-direction: column; gap: 7px; width: 100%; max-width: 220px; }
.fb-ph-skeleton span {
  display: block; height: 9px;
  border-radius: 6px;
  background: rgba(30,58,30,0.07);
}
.fb-ph-skeleton span:nth-child(1) { width: 78%; }
.fb-ph-skeleton span:nth-child(2) { width: 52%; }
.fb-ph-skeleton span:nth-child(3) { width: 68%; }


.social-col {
  padding: 24px 0 24px 16px;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 860px) {
  .social-col { width: 500px; flex-shrink: 0; }
}


.fb-scale-wrap {
  width: 100%;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
}


#fbCard {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(30,58,30,0.13);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fb-card-header {
  background: var(--green-dark);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.fb-card-header-left {
  display: flex; align-items: center; gap: 10px;
}
.fb-card-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fb-card-title { display: flex; flex-direction: column; gap: 2px; }
.fb-card-name { color: var(--white); font-size: 12px; font-weight: 600; line-height: 1; font-family: 'Montserrat', sans-serif; }
.fb-card-sub  { color: rgba(255,255,255,0.45); font-size: 10px; font-family: 'Montserrat', sans-serif; }
.fb-card-badge {
  background: var(--gold); color: var(--white);
  font-size: 9px; font-weight: 700; letter-spacing: 0.8px;
  padding: 4px 10px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase;
  text-decoration: none; flex-shrink: 0;
  transition: background 0.2s;
}
.fb-card-badge:hover { background: #b8942e; }


.fb-clip {
  overflow: hidden;
  flex: none;
  height: 650px;
}


@media (max-width: 859px) {
  .fb-clip { height: 480px; }
}

#fbPageWrap {
  overflow: hidden;
  background: var(--gray-light);
  width: 500px;
  transform-origin: top left;
}

.fb-card-footer {
  background: var(--green-dark);
  padding: 8px 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  flex-shrink: 0;
}
.fb-card-footer span { color: rgba(255,255,255,0.35); font-size: 10px; font-family: 'Montserrat', sans-serif; }
.fb-card-footer-dot  { color: rgba(255,255,255,0.2) !important; }
.fb-card-footer a    { color: var(--gold); font-size: 10px; font-family: 'Montserrat', sans-serif; text-decoration: none; transition: color 0.2s; }
.fb-card-footer a:hover { color: #f0dfa0; }


.social-qr {
  margin-top: 16px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
}

.qr-wrap {
  position: relative;
  display: inline-block;
}

.qr-img {
  width: 320px;
  height: auto;
  display: block;
  border-radius: 8px;
}


.qr-volunteer-btn {
  position: absolute;
  top: 22%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 25px;
  font-weight: 1000;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.qr-volunteer-btn:hover {
  background: #b8942e;
  transform: translateX(-50%) translateY(-1px);
}


@media (max-width: 859px) {
  .qr-img {
    width: 240px;
  }

  .qr-volunteer-btn {
    font-size: 17px;
    padding: 7px 20px;
    top: 22.3%;
  }
}


.col-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 30px); font-weight: 700;
  color: var(--green-dark); margin-bottom: 12px;
}


.updates-list { display: flex; flex-direction: column; gap: 14px; }
.update-card {
  background: var(--white); border-radius: 10px;
  padding: 14px 16px; border-left: 3px solid var(--gold);
  box-shadow: 0 1px 6px rgba(0,0,0,0.05);
}
.update-date  { font-size: 11px; color: var(--gray-mid); letter-spacing: 0.5px; margin-bottom: 3px; }
.update-title { font-size: 14px; font-weight: 600; color: var(--green-dark); }
.update-desc  { font-size: 13px; color: var(--gray-dark); margin-top: 3px; line-height: 1.5; }


.join-section {
  padding: 24px 16px 28px 0;
}
@media (max-width: 859px) {
  .join-section { padding: 20px 0 28px; }
}


.join-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}


.join-carousel {
  width: 80%;
  flex-shrink: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #c8d4c8;
  height: 350px;
  box-shadow: 0 4px 18px rgba(30,58,30,0.18);
}


@media (min-width: 600px) {
  .join-carousel { height: 480px; }
}


@media (max-width: 599px) {
  .join-carousel { width: 100%; }
}

.join-carousel-track {
  position: relative; width: 100%; height: 100%;
}
.join-carousel-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  pointer-events: none;
  z-index: 1;
}
.join-carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.join-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
}


.join-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.40); border: 1.5px solid rgba(255,255,255,0.25); color: #fff;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10; transition: background 0.2s;
  padding: 0;
}
.join-carousel-btn:hover { background: rgba(0,0,0,0.65); }
.join-carousel-btn.prev  { left: 7px; }
.join-carousel-btn.next  { right: 7px; }
.join-carousel-btn svg   { width: 14px; height: 14px; }


.join-carousel-dots {
  position: absolute; bottom: 8px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 5px; z-index: 10; align-items: center;
}
.join-carousel-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.45); border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
  min-width: 7px;
}
.join-carousel-dot.active { background: var(--white); width: 20px; border-radius: 4px; }


@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; animation-play-state: paused; }
.fade-up:nth-child(1) { animation-delay: 0.05s; }
.fade-up:nth-child(2) { animation-delay: 0.15s; }
.fade-up:nth-child(3) { animation-delay: 0.25s; }
@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; }
  .carousel-slide, .join-carousel-slide { transition: none; }
}


@media (max-width: 640px) {
  .about-section   { padding: 20px 4%; }
  .logo-block      { order: -1; }
  .main-two-col    { padding: 0 4%; display: flex; flex-direction: column; }
  .main-left-col   { display: contents; }
  .support-col     { order: 1; }
  .social-col      { order: 2; padding: 20px 0; }
  .join-section    { order: 3; padding: 20px 0 24px; }
}


@media (min-width: 641px) and (max-width: 1024px) {
  .about-section { padding: 24px 4% 20px; gap: 20px; }
  .logo-ring     { width: clamp(100px, 15vw, 160px); height: clamp(100px, 15vw, 160px); }
  .main-two-col  { padding: 0 4%; }
  .social-col    { padding-left: 12px; }
  .support-col   { padding-right: 12px; }
  .join-section  { padding: 20px 12px 24px 0; }
}