/* ── Variables ── */
:root {
  --forest-deep: #082611;
  --forest-dark: #0d401b;
  --forest-mid: #16762e;
  --forest-bright: #23c44b;
  --leaf-light: #6b8d33;
  --gold: #c8a84b;
  --gold-light: #f0d080;
  --cream: #f7f4ee;
  --charcoal: #1e2019;
  --text-body: #2a2e24;
  --text-light: #f7f4ee;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Overpass", sans-serif;
  background-color: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
}

/* ── ANCHOR SCROLLING ── */
[id] {
  scroll-margin-top: 100px;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: white;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  transition: background-color 0.3s;
}

.nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2.5rem 0.55rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-brand img {
  height: 52px;
  width: auto;
}

.nav-brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 900;
  font-size: 0.8rem;
  color: rgba(8, 38, 17, 0.92);
  line-height: 1.2;
  max-width: 160px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 0.25rem;
  transition:
    color 0.2s,
    background-color 0.2s;
  color: rgba(8, 38, 17, 0.92);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a.active {
  color: var(--gold-light);
  background-color: rgba(200, 168, 75, 0.08);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.15rem;
  height: 2px;
  background-color: var(--gold-light);
  border-radius: 999px;
}

.nav-links a.cta-link {
  background-color: var(--forest-mid);
  color: #fff;
  border: 1px solid rgba(200, 168, 75, 0.4);
  padding: 0.45rem 1rem;
}

.nav-links a.cta-link:hover {
  background-color: var(--gold);
  color: var(--forest-deep);
}

/* ── Menu Toggle Button ── */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-toggle span {
  width: 100%;
  height: 0.2rem;
  background-color: var(--forest-dark);
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

/* Toggle Active State */
.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ── Breadcrumbs inside nav ── */
.nav-breadcrumbs {
  padding: 0.55rem 2.5rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(247, 244, 238, 0.62);
}

.nav-breadcrumbs a {
  text-decoration: none;
  color: rgba(247, 244, 238, 0.72);
  transition: color 0.2s ease;
}

.nav-breadcrumbs a:hover {
  color: var(--gold-light);
}

.nav-breadcrumbs .current {
  color: var(--gold-light);
  font-weight: 700;
}

/* ── HERO SLIDER ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s ease-in-out;
}

.hero-slides img.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 38, 17, 0.15) 0%,
    rgba(8, 38, 17, 0.35) 50%,
    rgba(8, 38, 17, 0.82) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 2.5rem;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.3rem 0.85rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease both;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.85);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background-color: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0.35rem;
  transition:
    background-color 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 20px rgba(200, 168, 75, 0.35);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 0.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.btn-ghost:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.2s;
  border: none;
}

.slider-dot.active {
  background-color: var(--gold);
  transform: scale(1.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background-color: rgba(8, 38, 17, 0.5);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: #fff;
  font-size: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.slider-arrow:hover {
  background-color: rgba(200, 168, 75, 0.6);
}
.slider-arrow.prev {
  left: 1.5rem;
}
.slider-arrow.next {
  right: 1.5rem;
}

/* ── INTRO SECTION ── */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 480px;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

.intro-text {
  background-color: var(--forest-deep);
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.intro-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.intro-text p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.85;
  max-width: 52ch;
  margin-bottom: 1rem;
}

.intro-text p b {
  color: var(--gold-light);
  font-weight: 600;
}

.intro-cta {
  display: inline-block;
  margin-top: 1.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.intro-cta:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── CARDS SECTION ── */
.cards-section {
  padding: 6rem 2.5rem;
  background-color: var(--cream);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-label {
  display: block;
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--forest-dark);
  line-height: 1.15;
}

.section-header h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

/* Blog page section header variant */
.section-header.section-header-left {
  text-align: left;
  margin-bottom: 2.5rem;
}

.section-header.section-header-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  text-decoration: none;
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(8, 38, 17, 0.1);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(8, 38, 17, 0.18);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.card:hover .card-img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.25rem 1.4rem 1.5rem;
  border-top: 3px solid var(--forest-mid);
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.3rem;
}

.card-arrow {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--forest-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── SUPPORT SECTION (consolidated) ── */
/* Page variant: compact (about, blog, poem, contact pages) */


.support-left h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.support-left h2 em {
  color: var(--gold-light);
  font-style: italic;
}

.ways-list {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ways-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.way-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-top: 0.1rem;
}

.ways-list p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.65;
}

/* Donation card */
.donate-card {
  background-color: rgba(247, 244, 238, 0.06);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 1rem;
  padding: 2.5rem;
  backdrop-filter: blur(4px);
}

.donate-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}

.donate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.donate-row:last-of-type {
  border-bottom: none;
}

.donate-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.5);
}

.donate-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.donate-value.highlight {
  font-size: 1.3rem;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
}

.donate-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: rgba(200, 168, 75, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.35rem 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(247, 244, 238, 0.75);
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  background-color: var(--forest-deep);
  border-top: 1px solid rgba(200, 168, 75, 0.15);
  padding: 2rem 2.5rem;
  text-align: center;
}

.site-footer a {
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 200;
  color: rgba(247, 244, 238, 0.45);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--gold-light);
}
.site-footer span {
  color: var(--gold);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .intro-section {
    grid-template-columns: 1fr;
  }
  .intro-image {
    height: 320px;
  }
  .intro-text {
    padding: 3.5rem 2rem;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .site-nav {
    padding: 0.75rem 1.25rem;
  }
  
  /* Mobile Navigation Styles */
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 250px;
    height: calc(100vh - 70px);
    background-color: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem;
  }

  .nav-links a.active::after {
    left: 0.75rem;
    right: auto;
    width: clamp(2rem, 50%, 4rem);
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 2.5rem 1.5rem;
  }
  .cards-section,
  .support-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* ── About page–specific styles ── */

/* Page hero banner */
.page-hero {
  position: relative;
  width: 100%;
  height: 52vh;
  min-height: 340px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 76px; /* offset fixed nav */
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 38, 17, 0.1) 0%,
    rgba(8, 38, 17, 0.72) 100%
  );
  z-index: 2;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 3rem 3rem 3.5rem;
}

.page-breadcrumb {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.page-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
}

/* ── Main content wrapper ── */
.about-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 2rem;
}

/* ── VMO grid (Vision / Mission / Objectives) ── */
.vmo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.vmo-card {
  background-color: #fff;
  border-radius: 0.85rem;
  padding: 2.2rem 2rem;
  box-shadow: 0 2px 16px rgba(8, 38, 17, 0.08);
  border-top: 4px solid var(--forest-mid);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.vmo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(8, 38, 17, 0.13);
}

.vmo-card.span-full {
  grid-column: 1 / -1;
}

.vmo-icon {
  font-size: 1.8rem;
  margin-bottom: 0.85rem;
  display: block;
}

.vmo-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(22, 118, 46, 0.15);
}

.vmo-card p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.8;
}

/* Objectives list */
.obj-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.obj-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

.obj-num {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: var(--forest-mid);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

/* Core values pills */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--cream);
  border: 1px solid rgba(22, 118, 46, 0.25);
  color: var(--forest-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.9rem;
  border-radius: 2rem;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

.value-pill:hover {
  background-color: var(--forest-mid);
  color: #fff;
  border-color: var(--forest-mid);
}

.value-pill::before {
  content: "✦";
  font-size: 0.55rem;
  color: var(--gold);
}

/* ── Photo strip ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}

.photo-strip-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img {
  transform: scale(1.05);
}

.photo-strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 38, 17, 0.45) 0%,
    transparent 55%
  );
  pointer-events: none;
}

/* ── Community section ── */
.community-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--forest-deep);
  border-radius: 1.25rem;
  padding: 4rem;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.community-section::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(35, 196, 75, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.community-text .section-label {
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

.community-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.community-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.community-text p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.78);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.community-image {
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Support section uses consolidated styles from line 538 ── */

/* ── Responsive ── */
@media (max-width: 860px) {
  .vmo-grid {
    grid-template-columns: 1fr;
  }
  .vmo-card.span-full {
    grid-column: auto;
  }
  .photo-strip {
    grid-template-columns: 1fr 1fr;
  }
  .photo-strip-item:last-child {
    display: none;
  }
  .community-section {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2rem;
  }
  .community-image {
    display: none;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .about-main {
    padding: 3rem 1.5rem 1rem;
  }
}

@media (max-width: 540px) {
  .page-hero-content {
    padding: 2rem 1.5rem 2.5rem;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .photo-strip-item:last-child {
    display: block;
  }
}

/* ── Activities page–specific styles ── */

.page-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 2rem;
}

/* ── Intro banner ── */
.intro-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  margin-bottom: 5rem;
  box-shadow: 0 8px 40px rgba(8, 38, 17, 0.14);
}

.intro-banner-image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.intro-banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.intro-banner:hover .intro-banner-image img {
  transform: scale(1.03);
}

.intro-banner-text {
  background-color: var(--forest-deep);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-banner-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.intro-banner-text h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.intro-banner-text p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.85;
  margin-bottom: 0.85rem;
}

.intro-banner-text p strong {
  color: var(--gold-light);
  font-weight: 600;
}

.volunteer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  align-self: flex-start;
  text-decoration: none;
  background-color: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 0.35rem;
  transition:
    background-color 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 18px rgba(200, 168, 75, 0.3);
}

.volunteer-btn:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── Beehive section ── */
.beehive-section {
  margin-bottom: 5rem;
}

.beehive-section .section-header {
  text-align: left;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.beehive-section .section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.beehive-section .section-header h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

.beehive-desc {
  font-size: 0.95rem;
  font-weight: 300;
  color: #555;
  max-width: 55ch;
  line-height: 1.7;
  margin-top: 0.4rem;
}

/* Masonry-style hive grid */
.hive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}

/* Featured first item spans 2 rows */
.hive-item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: var(--forest-deep);
  cursor: pointer;
}

.hive-item.featured {
  grid-row: span 2;
}

.hive-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
  transition:
    transform 0.45s ease,
    filter 0.3s ease;
}

.hive-item.featured img {
  min-height: 420px;
}

.hive-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.8);
}

.hive-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 38, 17, 0.7) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  pointer-events: none;
}

.hive-item:hover .hive-overlay {
  opacity: 1;
}

.hive-view-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hive-view-label::after {
  content: "→";
}

/* ── Participation types ── */
.participate-section {
  margin-bottom: 5rem;
}

.participate-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--forest-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.participate-section h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

.participate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.participate-card {
  background-color: #fff;
  border-radius: 0.85rem;
  padding: 2rem 1.75rem;
  box-shadow: 0 2px 14px rgba(8, 38, 17, 0.08);
  border-bottom: 4px solid var(--forest-mid);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  text-align: center;
}

.participate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(8, 38, 17, 0.14);
}

.participate-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.participate-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.65rem;
}

.participate-card p {
  font-size: 0.92rem;
  font-weight: 300;
  color: #555;
  line-height: 1.75;
}

/* ── Support section uses consolidated styles from line 538 ── */

/* ── Responsive ── */
@media (max-width: 860px) {
  .intro-banner {
    grid-template-columns: 1fr;
  }
  .intro-banner-image {
    min-height: 260px;
  }
  .hive-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hive-item.featured {
    grid-row: span 1;
  }
  .hive-item.featured img {
    min-height: 200px;
  }
  .participate-grid {
    grid-template-columns: 1fr 1fr;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .page-main {
    padding: 3rem 1.5rem 1rem;
  }
}

@media (max-width: 540px) {
  .hive-grid {
    grid-template-columns: 1fr;
  }
  .participate-grid {
    grid-template-columns: 1fr;
  }
  .beehive-section .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Activities lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(5, 20, 10, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  width: 96vw;
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background-color 0.2s ease;
}

.lightbox-close:hover {
  background-color: rgba(200, 168, 75, 0.35);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background-color 0.2s ease;
}

.lightbox-arrow:hover {
  background-color: rgba(200, 168, 75, 0.35);
}

.lightbox-arrow.lb-prev {
  left: clamp(0.5rem, 2vw, 1rem);
}

.lightbox-arrow.lb-next {
  right: clamp(0.5rem, 2vw, 1rem);
}

.lightbox-counter {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .lightbox-img-wrap {
    width: 100vw;
    height: 88vh;
  }

  .lightbox-img-wrap img {
    max-width: 100vw;
    max-height: 88vh;
    border-radius: 0;
  }

  .lightbox-arrow {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.2rem;
  }

  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ── Gallery page styles ── */

.page-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

/* ── Tab bar ── */
.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(22, 118, 46, 0.15);
  padding-bottom: 0;
}

.tab-btn {
  background: none;
  border: none;
  font-family: "Overpass", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tab-btn:hover {
  color: var(--forest-mid);
}

.tab-btn.active {
  color: var(--forest-dark);
  border-bottom-color: var(--gold);
}

.tab-count {
  display: inline-block;
  background-color: var(--forest-mid);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 2rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.tab-btn.active .tab-count {
  background-color: var(--gold);
  color: var(--forest-deep);
}

/* ── Tab panels ── */
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}

/* ── Masonry grid ── */
.masonry-grid {
  columns: 4;
  column-gap: 0.75rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  cursor: pointer;
  background-color: var(--forest-deep);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.3s ease;
}

.masonry-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.zoom-icon {
  width: 2.8rem;
  height: 2.8rem;
  background-color: rgba(200, 168, 75, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--forest-deep);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transform: scale(0.7);
  transition: transform 0.25s ease;
}

.masonry-item:hover .zoom-icon {
  transform: scale(1);
}

/* ── Hive grid (3-col uniform) ── */
.hive-uniform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.hive-uniform-item {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  display: block;
  aspect-ratio: 4/3;
  background-color: var(--forest-deep);
  cursor: pointer;
}

.hive-uniform-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 0.4s ease,
    filter 0.3s ease;
}

.hive-uniform-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.hive-uniform-item .masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.hive-uniform-item:hover .masonry-overlay {
  opacity: 1;
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(5, 20, 10, 0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-img-wrap {
  position: relative;
  width: 96vw;
  height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  animation: lbFade 0.25s ease;
}

@keyframes lbFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  z-index: 2;
}

.lightbox-close:hover {
  background-color: rgba(200, 168, 75, 0.4);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
  z-index: 2;
}

.lightbox-arrow:hover {
  background-color: rgba(200, 168, 75, 0.35);
}
.lightbox-arrow.lb-prev {
  left: 1rem;
}
.lightbox-arrow.lb-next {
  right: 1rem;
}

.lightbox-counter {
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.lightbox-view-link:hover {
  color: var(--gold-light);
}

/* ── Support section uses consolidated styles from line 538 ── */

/* ── Responsive ── */
@media (max-width: 1024px) {
  .masonry-grid {
    columns: 3;
  }
}
@media (max-width: 700px) {
  .masonry-grid {
    columns: 2;
  }
  .hive-uniform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox-arrow.lb-prev {
    left: 0.5rem;
  }
  .lightbox-arrow.lb-next {
    right: 0.5rem;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .gallery-tabs {
    flex-wrap: wrap;
  }
}
@media (max-width: 480px) {
  .masonry-grid {
    columns: 1;
  }
  .page-main {
    padding: 3rem 1rem 1rem;
  }
}

/* ── Blog page styles ── */

.blog-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 2rem;
}

/* ── Featured post (first/hero post) ── */
.post-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 28px rgba(8, 38, 17, 0.11);
  margin-bottom: 4rem;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.post-featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(8, 38, 17, 0.16);
}

.post-featured-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.post-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.post-featured:hover .post-featured-image img {
  transform: scale(1.04);
}

.post-featured-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 38, 17, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.post-featured-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  background-color: var(--gold);
  color: var(--forest-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
}

.post-featured-body {
  padding: 3rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--forest-deep);
}

.post-featured-body .post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.post-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.post-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: rgba(247, 244, 238, 0.3);
  display: inline-block;
}

.post-date {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.5);
}

.post-featured-body h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.post-featured-body p {
  font-size: 0.97rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.75);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.post-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(200, 168, 75, 0.4);
  padding-bottom: 0.15rem;
  transition:
    color 0.2s,
    border-color 0.2s;
  align-self: flex-start;
}

.post-read-link:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
.post-read-link::after {
  content: "→";
  transition: transform 0.2s;
}
.post-read-link:hover::after {
  transform: translateX(4px);
}

/* ── Blog grid (for additional posts) ── */
.blog-section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.blog-section-label span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.blog-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(22, 118, 46, 0.18);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 5rem;
}

.blog-card {
  display: block;
  text-decoration: none;
  background-color: #fff;
  border-radius: 0.85rem;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(8, 38, 17, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(8, 38, 17, 0.14);
}

.blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 1.4rem 1.5rem 1.75rem;
  border-top: 3px solid var(--forest-mid);
}

.blog-card-body .post-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.blog-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.3;
  margin-bottom: 0.65rem;
}

.blog-card-body p {
  font-size: 0.88rem;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}

.blog-card-link::after {
  content: "→";
}
.blog-card:hover .blog-card-link {
  color: var(--forest-bright);
}

/* ── Empty state (for future posts) ── */
.blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
  background-color: rgba(22, 118, 46, 0.04);
  border: 2px dashed rgba(22, 118, 46, 0.2);
  border-radius: 1rem;
}

.blog-empty p {
  font-size: 0.97rem;
  color: #888;
  font-weight: 300;
}

.blog-empty span {
  font-size: 2.5rem;
}

/* ── Support section uses consolidated styles from line 538 ── */

/* ── Responsive ── */
@media (max-width: 860px) {
  .post-featured {
    grid-template-columns: 1fr;
  }
  .post-featured-image {
    min-height: 260px;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .blog-main {
    padding: 3rem 1.5rem 1rem;
  }
}

@media (max-width: 540px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Poem page styles ── */

/* Full-bleed poem hero — darker, more immersive than other pages */
.poem-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px;
}

.poem-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.7);
}

.poem-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 38, 17, 0.5) 0%,
    rgba(8, 38, 17, 0.78) 60%,
    rgba(8, 38, 17, 0.96) 100%
  );
  z-index: 2;
}

.poem-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.poem-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}

.poem-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  animation: fadeUp 0.9s ease both;
}

.poem-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.poem-hero-leaf {
  font-size: 2rem;
  animation: sway 4s ease-in-out infinite;
  display: block;
  margin-top: 0.5rem;
}

@keyframes sway {
  0%,
  100% {
    transform: rotate(-8deg);
  }
  50% {
    transform: rotate(8deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Poem body ── */
.poem-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  /* Pull up to overlap the hero bottom */
  position: relative;
  z-index: 10;
  margin-top: -6rem;
}

.poem-card {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 20px 64px rgba(8, 38, 17, 0.18);
  overflow: hidden;
}

.poem-card-header {
  background-color: var(--forest-deep);
  padding: 2.5rem 3.5rem 2rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.poem-title-small {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.poem-byline {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.5);
  letter-spacing: 0.08em;
}

.poem-byline span {
  color: var(--gold);
  font-weight: 600;
}

/* ── Stanza layout ── */
.poem-body {
  padding: 3rem 3.5rem 3.5rem;
}

.stanza {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.stanza.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Question stanza — italic, slightly muted */
.stanza-question .poem-line {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #666;
  line-height: 2;
  display: block;
  text-align: center;
}

/* Lament stanza — left-aligned, slightly heavier */
.stanza-lament .poem-line {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: #333;
  line-height: 2;
  display: block;
  padding-left: 2rem;
  border-left: 2px solid rgba(22, 118, 46, 0.15);
}

/* Resolution stanza — bold, green-tinted, centered */
.stanza-resolve .poem-line {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--forest-dark);
  line-height: 2;
  display: block;
  text-align: center;
}

/* Refrain — the key repeated lines */
.stanza-refrain .poem-line {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 900;
  font-style: italic;
  color: var(--forest-mid);
  line-height: 1.8;
  display: block;
  text-align: center;
}

/* Closing dedication */
.stanza-dedication .poem-line {
  font-family: "Overpass", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #888;
  line-height: 2;
  display: block;
  text-align: center;
  text-transform: uppercase;
}

/* Divider between sections */
.stanza-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 1.5rem 0 2.5rem;
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
}

.stanza-divider::before,
.stanza-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(22, 118, 46, 0.12);
  max-width: 100px;
}

/* ── Share strip ── */
.poem-share {
  background-color: var(--cream);
  border-top: 1px solid rgba(22, 118, 46, 0.1);
  padding: 1.5rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.poem-share-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999;
}

.share-btns {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  transition:
    background-color 0.2s,
    color 0.2s;
  border: 1.5px solid;
}

.share-btn.twitter {
  color: var(--forest-dark);
  border-color: rgba(22, 118, 46, 0.25);
  background-color: #fff;
}

.share-btn.twitter:hover {
  background-color: var(--forest-mid);
  color: #fff;
  border-color: var(--forest-mid);
}

.share-btn.whatsapp {
  color: var(--forest-dark);
  border-color: rgba(22, 118, 46, 0.25);
  background-color: #fff;
}

.share-btn.whatsapp:hover {
  background-color: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* ── Support section ── */
.poem-support-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
}

/* Support section uses consolidated styles from line 538 */

/* ── Responsive ── */
@media (max-width: 700px) {
  .poem-body,
  .poem-card-header,
  .poem-share {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .stanza-lament .poem-line {
    padding-left: 1rem;
  }
  .poem-main {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: -3rem;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }
  .poem-support-wrap {
    padding: 2rem 1rem 1rem;
  }
}

/* ── Contact page styles ── */

.contact-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 2rem;
}

/* ── Two-column layout: info left, map right ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: start;
}

/* ── Contact info column ── */
.contact-intro {
  margin-bottom: 2.5rem;
}

.contact-intro h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--forest-dark);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.contact-intro h2 em {
  font-style: italic;
  color: var(--forest-mid);
}

.contact-intro p {
  font-size: 0.97rem;
  font-weight: 300;
  color: #666;
  line-height: 1.8;
  max-width: 48ch;
}

/* Contact cards */
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: #fff;
  border-radius: 0.85rem;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 2px 12px rgba(8, 38, 17, 0.07);
  border-left: 4px solid var(--forest-mid);
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(8, 38, 17, 0.12);
  border-color: var(--gold);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, var(--forest-mid), var(--forest-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(8, 38, 17, 0.2);
}

.contact-card-body {
  flex: 1;
}

.contact-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.2rem;
}

.contact-card-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest-dark);
  display: block;
  line-height: 1.4;
}

.contact-card-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: #888;
  display: block;
  margin-top: 0.1rem;
}

.contact-card-arrow {
  color: rgba(8, 38, 17, 0.2);
  font-size: 1rem;
  transition:
    color 0.2s,
    transform 0.2s;
}

.contact-card:hover .contact-card-arrow {
  color: var(--gold);
  transform: translateX(3px);
}

.contact-card.no-hover {
  cursor: default;
}

.contact-card.no-hover:hover {
  transform: none;
  box-shadow: none;
  border-color: rgba(200, 168, 75, 0.15);
}

/* ── Map + location column ── */
.contact-map-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-embed {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(8, 38, 17, 0.12);
  aspect-ratio: 4/3;
  background-color: #e8f0e9;
  position: relative;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-caption {
  background-color: var(--forest-deep);
  border-radius: 0.85rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.map-caption-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.map-caption-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.2rem;
}

.map-caption-text span {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.6);
}

/* ── Reach out CTA strip ── */
.contact-cta-strip {
  background: linear-gradient(
    135deg,
    var(--forest-dark) 0%,
    var(--forest-deep) 100%
  );
  border-radius: 1.25rem;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
  position: relative;
  overflow: hidden;
}

.contact-cta-strip::before {
  content: "🌳";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.06;
  pointer-events: none;
  line-height: 1;
}

.cta-strip-text h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-strip-text h3 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-strip-text p {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.7);
  max-width: 52ch;
  line-height: 1.65;
}

.cta-strip-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-block;
  text-decoration: none;
  background-color: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 0.35rem;
  transition:
    background-color 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 18px rgba(200, 168, 75, 0.3);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-ghost-light {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.75rem;
  border-radius: 0.35rem;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.btn-ghost-light:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

/* ── Support section uses consolidated styles from line 538 ── */

/* ── Responsive ── */
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-cta-strip {
    padding: 2.5rem 2rem;
  }
  .support-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  .contact-main {
    padding: 3rem 1.5rem 1rem;
  }
}

@media (max-width: 540px) {
  .cta-strip-actions {
    width: 100%;
  }
  .btn-primary,
  .btn-ghost-light {
    width: 100%;
    text-align: center;
  }
}

/* ── Contact1 Enhanced Styles ── */

/* Response time banner */
.response-time-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(
    135deg,
    rgba(22, 118, 46, 0.08),
    rgba(200, 168, 75, 0.08)
  );
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--gold);
}

.response-icon {
  font-size: 1.5rem;
}

.response-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--forest-dark);
}

.response-text span {
  font-size: 0.8rem;
  color: #666;
}

/* WhatsApp card */
.contact-card.whatsapp-card {
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.08),
    rgba(37, 211, 102, 0.03)
  );
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-card.whatsapp-card:hover {
  border-color: #25d366;
  background: linear-gradient(
    135deg,
    rgba(37, 211, 102, 0.12),
    rgba(37, 211, 102, 0.05)
  );
}

/* Office hours */
.office-hours {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: rgba(8, 38, 17, 0.03);
  border-radius: 0.75rem;
  border: 1px solid rgba(200, 168, 75, 0.1);
}

.office-hours h4 {
  font-size: 0.9rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-size: 0.85rem;
  color: #555;
}

.hours-row .time {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest-dark);
}

.hours-row.closed .time {
  color: #999;
}

/* Contact social section */
.contact-social-section {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background-color: var(--forest-deep);
  border-radius: 0.75rem;
}

.contact-social-section h4 {
  font-size: 0.9rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background-color: rgba(247, 244, 238, 0.08);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 2rem;
  color: rgba(247, 244, 238, 0.8);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.social-link-card:hover {
  background-color: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Contact form column */
.contact-form-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-form-card {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 28px rgba(8, 38, 17, 0.1);
  overflow: hidden;
}

/* Map section */
.map-section {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 28px rgba(8, 38, 17, 0.1);
  overflow: hidden;
}

.map-section h4 {
  padding: 1.25rem 1.5rem 0;
  font-size: 1rem;
  color: var(--forest-dark);
}

.map-section .map-embed {
  margin: 1rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.map-section .map-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: rgba(8, 38, 17, 0.03);
  border-top: 1px solid rgba(200, 168, 75, 0.1);
}

.directions-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--forest-mid);
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.2s;
}

.directions-btn:hover {
  background-color: var(--forest-deep);
  transform: translateX(3px);
}

/* Trust stats */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}

.trust-stat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--forest-deep), var(--forest-dark));
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(8, 38, 17, 0.15);
}

.trust-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.85rem;
  color: rgba(247, 244, 238, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* FAQ Section */
.faq-section {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding: 0 2.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.faq-item {
  background-color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(8, 38, 17, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: "Overpass", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--forest-dark);
  transition: background-color 0.2s;
}

.faq-question:hover {
  background-color: rgba(200, 168, 75, 0.05);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--forest-mid);
  font-weight: 600;
}

.faq-item.open .faq-answer {
  display: block;
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background-color: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 2rem;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-whatsapp:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Responsive for contact1 */
@media (max-width: 860px) {
  .contact-form-col {
    grid-template-columns: 1fr;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1.5rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .trust-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-number {
    font-size: 2rem;
  }

  .contact-social-links {
    flex-direction: column;
  }

  .social-link-card {
    justify-content: center;
  }

  .map-section .map-caption {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/*get involved*/

.gi-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2.5rem 2rem;
}

/* Impact strip */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(22, 118, 46, 0.12);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 5rem;
  box-shadow: 0 4px 24px rgba(8, 38, 17, 0.08);
}

.impact-stat {
  background-color: #fff;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background-color 0.25s;
}

.impact-stat:hover {
  background-color: var(--forest-deep);
}
.impact-stat:hover .impact-number,
.impact-stat:hover .impact-label {
  color: #fff;
}
.impact-stat:hover .impact-unit {
  color: var(--gold-light);
}

.impact-number {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--forest-dark);
  line-height: 1;
  display: block;
  transition: color 0.25s;
}

.impact-unit {
  font-size: 1.4rem;
  color: var(--gold);
  transition: color 0.25s;
}

.impact-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-top: 0.5rem;
  transition: color 0.25s;
}

/* Ways cards */
.ways-section {
  margin-bottom: 5rem;
}

.ways-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ways-section .section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--forest-dark);
}

.ways-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.way-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(8, 38, 17, 0.08);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}

.way-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(8, 38, 17, 0.14);
}

.way-card-top {
  padding: 2rem 2rem 1rem;
  border-bottom: 3px solid var(--forest-mid);
}

.way-card-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 1rem;
}

.way-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.6rem;
}

.way-card p {
  font-size: 0.93rem;
  font-weight: 300;
  color: #666;
  line-height: 1.75;
}

.way-card-bottom {
  padding: 1.25rem 2rem 1.75rem;
  margin-top: auto;
}

.way-card-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.way-card-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: #555;
  line-height: 1.5;
}

.step-dot {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  background-color: var(--forest-mid);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

/* Action layout */
.action-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: stretch;
}

/* Volunteer form */
.volunteer-form-card {
  background-color: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 28px rgba(8, 38, 17, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.form-card-header {
  background-color: var(--forest-deep);
  padding: 2rem 2.5rem;
}

.form-card-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.form-card-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.65);
  line-height: 1.6;
}

.form-body {
  padding: 2rem 2.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  flex: 1;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  width: 100%;
  box-sizing: border-box;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-dark);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group select,
.form-group textarea {
  font-family: "Overpass", sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  color: #333;
  background-color: var(--cream);
  border: 1.5px solid rgba(22, 118, 46, 0.18);
  border-radius: 0.45rem;
  padding: 0.7rem 0.9rem;
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
}

.form-group input[type="checkbox"],
.form-group input[type="radio"] {
  width: auto;
  appearance: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--forest-mid);
  box-shadow: 0 0 0 3px rgba(22, 118, 46, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23345913' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--forest-mid);
  color: #fff;
  font-family: "Overpass", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 0.45rem;
  cursor: pointer;
  transition:
    background-color 0.2s,
    transform 0.15s;
  box-shadow: 0 4px 16px rgba(22, 118, 46, 0.3);
  margin-top: 0.5rem;
  width: 100%;
}

.form-submit:hover {
  background-color: var(--forest-dark);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.78rem;
  font-weight: 300;
  color: #aaa;
  text-align: center;
  margin-top: -0.5rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show {
  display: block;
}
.form-body.hide {
  display: none;
}
.success-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 1rem;
}

.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 0.65rem;
}

.form-success p {
  font-size: 0.95rem;
  font-weight: 300;
  color: #666;
  line-height: 1.7;
}

/* Donate card */
.donate-full-card {
  background-color: var(--forest-deep);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(8, 38, 17, 0.15);
  scroll-margin-top: 5rem;
  display: flex;
  flex-direction: column;
}

.donate-full-header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
}

.donate-full-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.donate-full-header p {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.6);
  line-height: 1.6;
}

.donate-full-body {
  padding: 2rem 2.5rem 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.amount-pills {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.amount-pill {
  background-color: rgba(247, 244, 238, 0.07);
  border: 1.5px solid rgba(200, 168, 75, 0.25);
  color: rgba(247, 244, 238, 0.75);
  font-family: "Overpass", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.2s;
}

.amount-pill:hover,
.amount-pill.selected {
  background-color: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}

.donate-divider {
  height: 1px;
  background-color: rgba(200, 168, 75, 0.15);
}

.donate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.donate-row:last-of-type {
  border-bottom: none;
}
.donate-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.45);
}
.donate-value {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}
.donate-value.highlight {
  font-size: 1.3rem;
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
}

.donate-note-box {
  padding: 1rem 1.25rem;
  background-color: rgba(200, 168, 75, 0.1);
  border-left: 3px solid var(--gold);
  border-radius: 0 0.4rem 0.4rem 0;
  font-size: 0.88rem;
  color: rgba(247, 244, 238, 0.7);
  line-height: 1.65;
}

.whatsapp-donate {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  text-decoration: none;
  background-color: #25d366;
  color: #fff;
  font-family: "Overpass", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 0.45rem;
  justify-content: center;
  transition:
    background-color 0.2s,
    transform 0.15s;
}

.whatsapp-donate:hover {
  background-color: #1ebe5a;
  transform: translateY(-2px);
}

/* Testimonial strip */
.testimonial-strip {
  background-color: var(--forest-dark);
  border-radius: 1.25rem;
  padding: 4rem 3.5rem;
  margin-bottom: 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}

.testimonial-strip::before {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(35, 196, 75, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0.65rem;
  display: block;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.testimonial-quote {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: rgba(247, 244, 238, 0.85);
  line-height: 1.7;
}

.testimonial-quote::before {
  content: "\201C";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.35rem;
  margin-right: 0.15rem;
}
.testimonial-quote::after {
  content: "\201D";
  color: var(--gold);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.35rem;
  margin-left: 0.15rem;
}

.testimonial-name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Responsive */
@media (max-width: 960px) {
  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .ways-cards {
    grid-template-columns: 1fr 1fr;
  }
  .action-layout {
    grid-template-columns: 1fr;
  }
  .testimonial-strip {
    grid-template-columns: 1fr;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .ways-cards {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gi-main {
    padding: 3rem 1.25rem 1rem;
  }
}

/* Form validation styles */
.required {
  color: var(--gold);
  font-weight: 700;
}

.field-error {
  display: none;
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.field-error.show {
  display: block;
}

.field-hint {
  display: block;
  color: rgba(247, 244, 238, 0.5);
  font-size: 0.73rem;
  margin-top: 0.25rem;
  font-style: italic;
}

/* Checkbox and radio styles */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 100%;
  box-sizing: border-box;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label,
.radio-label {
  font-size: 0.88rem;
  line-height: 1.4;
  cursor: pointer;
  color: rgba(247, 244, 238, 0.8);
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1.5px solid rgba(200, 168, 75, 0.25);
  border-radius: 0.45rem;
  cursor: pointer;
  transition: all 0.2s;
}

.radio-label:hover {
  border-color: var(--gold);
  background-color: rgba(200, 168, 75, 0.05);
}

input[type="radio"]:checked + .radio-label {
  border-color: var(--gold);
  background-color: rgba(200, 168, 75, 0.1);
}

/* Custom amount section */
.custom-amount-group {
  margin-top: 1rem;
  padding: 1rem;
  background-color: rgba(247, 244, 238, 0.03);
  border-radius: 0.45rem;
  border: 1px solid rgba(200, 168, 75, 0.15);
}

/* Donor info section */
.donor-info-section,
.payment-method-section {
  padding: 1.5rem;
  background-color: rgba(247, 244, 238, 0.03);
  border-radius: 0.75rem;
  border: 1px solid rgba(200, 168, 75, 0.15);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.donor-info-section h4,
.payment-method-section h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0;
  font-weight: 600;
}

/* Labels in donation card - visible on dark background */
.donate-full-card .form-group label {
  color: rgba(247, 244, 238, 0.85);
  font-size: 0.8rem;
}

.donation-actions {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

/* Success states */
.donation-success {
  text-align: center;
  padding: 3rem 2rem;
  display: none;
}

.donation-success.show {
  display: block;
}

/* Form input error states */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.form-group input:focus:invalid,
.form-group select:focus:invalid,
.form-group textarea:focus:invalid {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

/* Donate info section */
.donate-info {
  margin-bottom: 1.5rem;
}

/* Responsive improvements */
@media (max-width: 600px) {
  .radio-group {
    gap: 0.5rem;
  }

  .radio-label {
    padding: 0.6rem;
    font-size: 0.85rem;
  }

  .donor-info-section,
  .payment-method-section {
    padding: 1rem;
  }
}

/* ══ FOOTER ══ */
.site-footer {
  background-color: var(--forest-deep, #082611);
  color: rgba(247, 244, 238, 0.7);
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(to right, #16762e, #c8a84b, #16762e);
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(35, 196, 75, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}
.footer-logo-wrap img {
  height: 52px;
  width: auto;
}
.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0d080;
  line-height: 1.2;
}
.footer-tagline {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.55);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  max-width: 32ch;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: rgba(247, 244, 238, 0.07);
  border: 1px solid rgba(247, 244, 238, 0.12);
  text-decoration: none;
  font-size: 1rem;
  transition:
    background-color 0.2s,
    border-color 0.2s,
    transform 0.2s;
  color: rgba(247, 244, 238, 0.7);
}
.social-icon:hover {
  background-color: #c8a84b;
  border-color: #c8a84b;
  color: #082611;
  transform: translateY(-3px);
}
.footer-col h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(200, 168, 75, 0.2);
  position: relative;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 2rem;
  height: 1px;
  background-color: #c8a84b;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition:
    color 0.2s,
    gap 0.2s;
}
.footer-links a::before {
  content: "›";
  color: #c8a84b;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s;
}
.footer-links a:hover {
  color: #f0d080;
  gap: 0.65rem;
}
.footer-links a:hover::before {
  transform: translateX(2px);
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.6);
  line-height: 1.5;
}
.footer-contact-list a {
  color: rgba(247, 244, 238, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover {
  color: #f0d080;
}
.contact-ico {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background-color: rgba(200, 168, 75, 0.12);
  border: 1px solid rgba(200, 168, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  margin-top: 0.05rem;
}
.footer-bottom {
  border-top: 1px solid rgba(247, 244, 238, 0.07);
  position: relative;
  z-index: 1;
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-copy {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.35);
}
.footer-credit a {
  font-size: 0.78rem;
  font-weight: 300;
  color: rgba(247, 244, 238, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-credit a:hover {
  color: #c8a84b;
}
.footer-credit span {
  color: #c8a84b;
}
/* ══ BACK TO TOP ══ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 3rem;
  height: 3rem;
  background-color: #16762e;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 4px 20px rgba(8, 38, 17, 0.35);
  opacity: 0;
  transform: translateY(1rem);
  transition:
    opacity 0.3s,
    transform 0.3s,
    background-color 0.2s;
  pointer-events: none;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background-color: #c8a84b;
  color: #082611;
}
@media (max-width: 960px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .back-to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}

/* ══ FLOATING WHATSAPP ══ */
.floating-whatsapp {
  position: fixed;
  left: 1.25rem;
  bottom: 2rem;
  z-index: 600;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background-color 0.2s;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  background-color: #1ebe5d;
}

.floating-whatsapp svg {
  width: 1.45rem;
  height: 1.45rem;
}

@media (max-width: 540px) {
  .floating-whatsapp {
    left: 1rem;
    bottom: 1.25rem;
    width: 3.1rem;
    height: 3.1rem;
  }
}
/* ── MORE PAGE STYLES ── */
.more-main {
  padding: 4rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.more-content {
  background: #fff;
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(8, 38, 17, 0.08);
  margin-bottom: 3rem;
}

.more-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
}

.more-content p {
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 1.5rem;
}

.more-img-box {
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
}

.more-img-box img {
  width: 100%;
  height: auto;
  display: block;
}

.back-btn-box {
  margin-top: 2rem;
}

.supp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.supp-card {
  background: var(--forest-dark);
  color: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
}

.supp-card h3 {
  color: var(--gold-light);
  font-family: "Playfair Display", serif;
  margin-bottom: 1.5rem;
}

.supp-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.supp-card li p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .supp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .more-main {
    padding: 2rem 1.25rem;
  }
  .more-content {
    padding: 1.5rem;
  }
}
