.conservation-banner {
  width: 100%;
  height: 80vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/discover-conservation.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.conservation-banner-inner {
  width: 100%;
  max-width: 1600px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}

.conservation-banner-inner span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.conservation-banner-inner h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.conservation-banner p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

@media (max-width: 1024px) {
  .conservation-banner h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .conservation-banner {
    height: auto;
    min-height: 80vh;
    padding: 4rem 0;
  }
  .conservation-banner h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }
  .conservation-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .conservation-banner h1 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }
  .conservation-banner p {
    font-size: 0.9rem;
  }
}

.discover-section {
  background: #f7f6f3;
  padding: 5rem 2rem 0 2rem;
  display: flex;
  justify-content: center;
}

.discover-section-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.discover-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #ede9e6;
  padding: 0.5rem;
  width: 100%;
  max-width: 860px;
  border-radius: 4px;
  margin-bottom: 5rem;
}

.discover-filter-btn {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.74rem 2rem;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--secondary-text-color);
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  text-align: center;
  border-radius: 4px;
}

.discover-filter-btn:hover {
  color: var(--intro-text-color);
}

.discover-filter-btn.active {
  background: var(--primary-color);
  color: var(--intro-text-color);
  border: 1px solid #d2cecb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.discover-panel {
  display: none;
  width: 100%;
  animation: panelFadeIn 0.4s ease forwards;
}

.discover-panel.active {
  display: block;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-label {
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--secondary-text-color);
  display: block;
  margin-bottom: 1.2rem;
}

.cta-btn {
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color);
  padding: 1rem 2.2rem;
  text-decoration: underline;
  font-family: "Jost", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--primary-color);
  white-space: nowrap;
}

.conservation-intro {
  text-align: center;
  max-width: 1400px;
  margin: 0 auto 5rem;
}

.conservation-intro h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--intro-text-color);
  margin: 0 0 1.4rem;
  line-height: 1.2;
}

.conservation-intro p {
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
  color: var(--secondary-text-color);
}

.conservation-intro p + p {
  margin-top: 0.5rem;
}

.conservation-pillars {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #c6b9a9;
  margin-bottom: 3.5rem;
}

.conservation-pillars-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2rem;
  box-sizing: border-box;
}

.pillar-card {
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.pillar-card:last-child {
  border-right: none;
}

.pillar-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid #b0a89e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-text-color);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.pillar-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
  line-height: 1.3;
}

.pillar-card p {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: var(--primary-color);
  line-height: 1.75;
}

/* Map */
.conservation-map-block {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 3.5rem;
}

.conservation-map-block img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.nh-intro {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 4rem;
}

.nh-intro p {
  font-family: "Jost", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.03rem;
  color: var(--secondary-text-color);
}

.nh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.6rem;
  width: 100%;
  margin-bottom: 4rem;
}

.nh-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.nh-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #ddd8d2;
  margin-bottom: 1.2rem;
}

.nh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nh-card:hover .nh-card-img img {
  transform: scale(1.04);
}

.nh-card-img .photo-placeholder {
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #ddd8d2, #c6b9a9);
}

.nh-card-img .photo-placeholder span {
  color: rgba(255, 255, 255, 0.8);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ddd8d2, #c6b9a9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: rgba(44, 36, 28, 0.3);
}

.nh-category {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.55rem;
}

.nh-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--intro-text-color);
  margin: 0 0 0.8rem;
}

.nh-card p {
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  color: #847a71;
  line-height: 1.85;
  margin: 0 0 1rem;
  flex: 1;
}

.nh-read-more {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18rem;
  text-transform: uppercase;
  color: var(--form-text-color);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s ease;
}

.nh-read-more::after {
  content: "→";
}

.nh-read-more:hover {
  gap: 0.6rem;
}

/* Citizen Science CTA */
.citizen-science-cta {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: #c6b9a9;
  padding: 5rem 2rem;
  margin-bottom: 6rem;
}

.citizen-science-cta-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.cta-text {
  max-width: 820px;
}

.cta-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--primary-color);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.cta-text p {
  font-family: "Jost", sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--primary-color);
}

.nh-publication {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.pub-books {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
}

.pub-book-img {
  width: 100%;
  max-width: 763px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}

.pub-book-img:first-child {
  transform: rotate(-4deg);
}

.pub-book-img:last-child {
  transform: rotate(3deg);
  margin-bottom: 2rem;
}

.pub-book-img img {
  width: 100%;
  height: auto;
  display: block;
}

.pub-book-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.35)),
    linear-gradient(145deg, #768f61, #4c6540);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.pub-book-placeholder span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  text-align: center;
}

.pub-label {
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22rem;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: block;
}

.nh-publication h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 1.4rem;
  color: var(--intro-text-color);
}

.nh-publication p {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--secondary-text-color);
  margin-bottom: 2rem;
}

.pn-intro {
  max-width: 980px;
  margin: 0 auto 4rem;
  text-align: center;
}

.pn-intro p {
  font-family: "Jost", sans-serif;
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--secondary-text-color);
}

.pn-table {
  width: 100%;
  margin-bottom: 4rem;
}

.pn-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid #e3ddd7;
}

.pn-row:last-child {
  border-bottom: none;
}

.pn-name {
  padding-left: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--intro-text-color);
}

.pn-desc {
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 300;
  color: var(--secondary-text-color);
  padding-right: 1rem;
}

.pn-view-all-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 5rem;
}

.pn-view-all-btn {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  font-family: Jost;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.1125rem;
  text-transform: uppercase;
  padding: 0.74rem 2.13rem;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.pn-view-all-btn:hover {
  background-color: var(--accent-color);
  color: #fff;
  border-color: var(--accent-color);
}

.gallery-carousel-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.gallery-track-wrapper {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  gap: 0.6rem;
}

.gallery-slide {
  flex-shrink: 0;
  width: 380px;
  height: 280px;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .gallery-slide {
    width: 280px;
    height: 210px;
  }
}

@media (max-width: 480px) {
  .gallery-slide {
    width: 220px;
    height: 170px;
  }
}

@media (max-width: 1200px) {
  .nh-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nh-publication {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pn-row {
    grid-template-columns: 240px 1fr;
  }
}

@media (max-width: 1024px) {
  .discover-section {
    padding: 5rem 2rem 0 2rem;
  }

  .conservation-pillars-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-text h3 {
    font-size: 2.5rem;
  }

  .nh-publication h3 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .discover-section {
    padding: 3rem 1rem 0 1rem;
  }

  .discover-filters {
    max-width: 100%;
    margin-bottom: 3rem;
    padding: 0.5rem 0.6rem;
  }

  .discover-filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.64rem;
    letter-spacing: 0.1rem;
  }

  .conservation-pillars-inner {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .pillar-card {
    padding: 2rem 0.5rem;
  }

  .nh-intro {
    margin-bottom: 3rem;
  }

  .nh-intro p {
    font-size: 1rem;
  }

  .nh-grid {
    grid-template-columns: 1fr;
  }

  .nh-card-img {
    height: 280px;
  }

  .nh-card h3 {
    font-size: 1.7rem;
  }

  .nh-card p {
    font-size: 0.95rem;
  }

  .citizen-science-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-text h3 {
    font-size: 2rem;
  }

  .nh-publication h3 {
    font-size: 2rem;
  }

  .pub-books {
    justify-content: center;
  }

  .pn-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 1.6rem 0;
  }

  .pn-name {
    padding-left: 0;
    font-size: 1.7rem;
  }

  .pn-desc {
    padding-right: 0;
  }
}

@media (max-width: 600px) {
  .discover-filters {
    flex-direction: column;
    overflow-x: visible;
    padding: 0.4rem;
    gap: 0.25rem;
    margin-bottom: 2.5rem;
  }

  .discover-filter-btn {
    width: 100%;
    min-width: unset;
    flex: none;
    padding: 0.75rem 1rem;
    font-size: 0.65rem;
    letter-spacing: 0.12rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .discover-section {
    padding: 2.5rem 1rem 0 1rem;
  }

  .discover-filters {
    margin-bottom: 2rem;
  }

  .discover-filter-btn {
    font-size: 0.62rem;
    letter-spacing: 0.1rem;
  }

  .nh-card-img {
    height: 240px;
  }

  .nh-card h3 {
    font-size: 1.5rem;
  }

  .cta-text h3 {
    font-size: 1.7rem;
  }

  .nh-publication h3 {
    font-size: 1.7rem;
  }

  .pn-name {
    font-size: 1.45rem;
  }

  .pn-desc {
    font-size: 0.95rem;
  }
}

.discover-conservation {
  width: 100vw;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/discover-conservation-cta.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.discover-conservation > span {
  font-family: Jost;
  font-weight: 400;
  font-style: normal;
  font-size: 0.75rem;
  line-height: normal;
  letter-spacing: 0.345rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.discover-conservation > h2 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.discover-conservation > p {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE BEGIN YOUR JOURNEY */

@media (max-width: 1024px) {
  .discover-conservation {
    padding: 0 2rem;
    gap: 2rem;
  }

  .discover-conservation > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .discover-conservation {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .discover-conservation > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .discover-conservation > p {
    font-size: 1rem;
  }

  .discover-conservation .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .discover-conservation .two-column-btn button {
    width: 100%;
  }

  /* Carousel arrows always visible on touch */
  .carousel-arrow {
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .discover-conservation > h2 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .discover-conservation > p {
    font-size: 0.9rem;
  }
}
