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

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

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

.banner-container 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;
}

.two-column-btn {
  display: flex;
  gap: 2rem;
}

/* BANNER SOCIAL LINKS */
.banner-socials {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 5;
  pointer-events: none;
}

.banner-socials-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.banner-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.banner-social img {
  width: inherit;
  height: inherit;
  display: block;
  object-fit: contain;
}

.banner-social:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* WhatsApp icon sits on the right of the banner */
.banner-social-whatsapp {
  pointer-events: auto;
}

/*RESPONSIVE BANNER*/

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .banner-container {
    padding: 0 1rem;
    gap: 2rem;
  }

  .banner-container h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }

  .banner-container p {
    font-size: 1rem;
  }

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

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

  .banner-socials {
    bottom: 1.5rem;
    padding: 0 1.5rem;
  }
}

/* Mobile: 480px - 767px */
@media (max-width: 767px) {
  .banner-container {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1rem;
    gap: 1.5rem;
  }

  .banner-container h1 {
    font-size: 3.5rem;
    line-height: 3.8rem;
  }

  .banner-container br {
    display: none;
  }

  .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

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

  .banner-socials {
    bottom: 1rem;
    padding: 0 1rem;
  }

  .banner-social {
    width: 2.25rem;
    height: 2.25rem;
  }


  .banner-socials-left {
    gap: 0.5rem;
  }
}

/* Small Mobile: 480px */
@media (max-width: 479px) {
  .banner-container {
    height: auto;
    min-height: 100vh;
    padding: 3rem 1rem;
    gap: 1rem;
  }

  .banner-container h1 {
    font-size: 4rem;
    line-height: 4.2rem;
  }

  .two-column-btn {
    gap: 0.8rem;
  }
}

/*LOCATION-REGION*/

.location-region-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
}

.location-region-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.location-region-container span {
  color: var(--accent-color);
  text-align: center;
  font-family: Jost;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.location-region-container h2 {
  color: var(--text-color);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 3.6875rem;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

.location-region-container p {
  color: var(--text-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

.as-featured-in-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  background: var(--accent-background-color);
}

.as-featured-in-container span {
  color: var(--accent-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1.5rem;
  width: 100%;
  max-width: 1400px;
  text-align: center;
}

.as-featured-in-container a {
  color: var(--text-color);
  text-align: center;
  font-family: "Cormorant Garamond";
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05rem;
}

.as-featured-in-container a:hover {
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .as-featured-in-container {
    padding: 4rem 2rem;
  }

  .as-featured-in-container span {
    font-size: 1.25rem;
  }

  .as-featured-in-container a {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .as-featured-in-container {
    padding: 3rem 1.5rem;
  }

  .as-featured-in-container span {
    font-size: 1rem;
  }

  .as-featured-in-container a {
    font-size: 1.25rem;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .as-featured-in-container {
    padding: 2rem 1rem;
  }

  .as-featured-in-container span {
    font-size: 0.875rem;
  }

  .as-featured-in-container a {
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

/* ── Seasons Carousel ─────────────────────────────── */
.seasons-carousel-wrapper {
  margin-top: 3rem;
  width: 100%;
  position: relative;
}

.seasons-overflow-clip {
  overflow: hidden;
  width: 100%;
}

.seasons-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.season-card {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d6cfc4;
  background: #faf8f5;
  overflow: hidden;
}

.season-card--featured {
  background: #6b5c40;
  border-color: #6b5c40;
}

.season-card-image {
  height: 220px;
  background: #ccc9c2;
  flex-shrink: 0;
  width: 100%;
}

.season-card--featured .season-card-image {
  background: #8a7560;

}

.season-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.season-date {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7a68;
  text-align: left;
  align-self: flex-start;
}

.season-card--featured .season-date {
  color: #c4ad91;
}

.season-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: #2c2520;
  text-align: left;
}

.season-card--featured .season-card-body h3 {
  color: #fff;
}

.season-card-body p {
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #6b5e51;
  margin: 0;
  text-align: left;
}

.season-card--featured .season-card-body p {
  color: #d6c9b8;
}

.season-tags {
  display: inline-flex;
  align-self: flex-start;
  gap: 0;
  margin-top: auto;
  padding-top: 1rem;
}

.season-tags span {
  font-family: "Jost", sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b5e51;
  padding: 0.45rem 0.85rem;
  border: 1px solid #c8bfb4;
}

.season-tags span + span {
  border-left: none;
}

.season-tags--featured span {
  border-color: rgba(196, 169, 122, 0.5);
  color: #f0e0c4;
}

.seasons-pagination {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.seasons-prev,
.seasons-next {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seasons-prev img,
.seasons-next img {
  width: 32px;
  height: 32px;
  display: block;
}

.seasons-prev[disabled],
.seasons-next[disabled] {
  opacity: 0.3;
  cursor: default;
}

/* Responsive */
@media (max-width: 1024px) {
  .location-region-container {
    padding: 4rem 2rem;
  }

  .location-region-container h2 {
    font-size: 3.5rem;
  }

  .season-card {
    flex: 0 0 100%;
  }

  .seasons-track {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .location-region-container {
    padding: 3rem 1.5rem;
  }

  .location-region-container h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .location-region-container p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .location-region-container {
    padding: 2rem 1rem;
  }

  .location-region-container h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }
}

.season-card--featured {
  background: #6b5c40;
  border-color: #6b5c40;
}

.season-card-image {
  height: 220px;
  background: #ccc9c2;
  flex-shrink: 0;
  width: 100%;
  background-size: cover;
}

.season-card--featured .season-card-image {
  background: #8a7560;
    height: 260px;
}

.season-card-body {
  padding: 1rem 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.season-date {
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #8a7a68;
  text-align: left;
  align-self: flex-start;
}

.season-card--featured .season-date {
  color: #c4ad91;
}

.season-card-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.25;
  margin: 0;
  color: #2c2520;
  text-align: left;
}

.season-card--featured .season-card-body h3 {
  color: #fff;
}

.season-card-body p {
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  line-height: 1.7;
  color: #6b5e51;
  margin: 0;
  text-align: left;
}

.season-card--featured .season-card-body p {
  color: #d6c9b8;
}

.season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 1rem;
}

.season-tags span {
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 12;
  text-transform: uppercase;
  border: 1px solid var("--card-background-color");
  color: var("--text-color");
  background-color: #c6b9a9;
  padding: 0.35rem 0.75rem;
}

.season-tags--featured span {
  border-color: rgba(196, 169, 122, 0.6);
  color: #f0e0c4;
  background: rgba(255, 255, 255, 0.08);
}

.seasons-pagination {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.seasons-prev,
.seasons-next {
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .location-region-container {
    padding: 4rem 2rem;
  }

  .location-region-container h2 {
    font-size: 3.5rem;
  }
}

/* Mobile: 768px and below */
@media (max-width: 768px) {
  .location-region-container {
    height: auto;
    min-height: 80vh;
  }

  .location-region-container h2 {
    font-size: 2.5rem;
    line-height: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .location-region-container span {
    margin-bottom: 1.5rem;
  }

  .location-region-container p {
    font-size: 1rem;
  }
}

/* Small Mobile: 480px and below */
@media (max-width: 480px) {
  .location-region-container {
    padding: 2rem 1rem;
  }

  .location-region-container h2 {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .location-region-container p {
    font-size: 0.95rem;
  }
}

/* WELCOME TO MUTINONDO */

.welcome-to-mutinondo-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  column-gap: 6rem;
  align-items: start;
}

/* LEFT COLUMN - Heading */
.welcome-left {
  display: flex;
  flex-direction: column;
}

.welcome-left > span {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 0.75rem;
  line-height: 100%;
  letter-spacing: 46%;
  text-transform: uppercase;
  color: var(--accent-color);
}

.welcome-left > h2 {
  font-family: Cormorant Garamond;
  font-weight: 400;
  font-style: Regular;
  font-size: 4.125rem;
  line-height: 5rem;
  letter-spacing: 0%;
  color: var(--text-color);
  margin-top: 10px;
}

/* RIGHT COLUMN - Text and Stats */
.welcome-right {
  display: flex;
  flex-direction: column;
}

.welcome-right > p {
  font-family: Jost;
  font-weight: 300;
  font-style: Light;
  font-size: 1.25rem;
  line-height: 32px;
  letter-spacing: 0%;
}

.welcome-divider {
  grid-column: 1 / -1;
  border: none;
  border-top: 1px solid #766041;
  margin: 2rem 0;
}

/* Stats Grid - spans full container width */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  width: 100%;
}

.welcome-to-mutinondo-container > .stats-grid {
  grid-column: 1 / -1;
}

.stat-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.5rem;
}

.stat-card > img {
  height: 80px;
  width: 80px;
  flex-shrink: 0;
  object-fit: contain;
  filter: brightness(0) saturate(100%);
}

.stat-card > div {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.stat-card > div > h3 {
  color: var(--text-color);
  font-family: "Cormorant Garamond";
  font-size: 2.813rem;
  font-weight: 400;
  margin: 0.5rem 0;
  line-height: 1;
}

.stat-card > div > h4 {
  color: var(--accent-color);
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 22%;
  margin: 10px 0;
}

/* RESPONSIVE WELCOME SECTION */

@media (max-width: 1024px) {
  .welcome-to-mutinondo-container {
    grid-template-columns: 1fr;
    column-gap: 0;
    padding: 4rem 1.5rem;
  }

  .welcome-left > h2 {
    font-size: 3rem;
  }

  .welcome-divider {
    margin: 1.5rem 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card > img {
    height: 60px;
    width: 60px;
  }

  .stat-card > div > h3 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .welcome-to-mutinondo-container {
    padding: 3rem 1rem;
    gap: 1.5rem;
  }

  .welcome-left > h2 {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .welcome-right > p {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card > img {
    height: 50px;
    width: 50px;
  }

  .stat-card > div > h3 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .welcome-to-mutinondo-container {
    padding: 2rem 1rem;
  }

  .welcome-left > h2 {
    font-size: 2rem;
  }

  .welcome-right > p {
    font-size: 0.9rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .stat-card > img {
    height: 45px;
    width: 45px;
  }

  .stat-card > div > h3 {
    font-size: 1.75rem;
  }
}

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

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.carousel-card {
  flex: 0 0 calc(33.333% - 1rem);
  height: 450px;
  position: relative;
  overflow: hidden;
}

/* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-carousel:hover .carousel-arrow {
  opacity: 1;
}

.carousel-prev {
  left: 1.5rem;
}

.carousel-next {
  right: 1.5rem;
}

.carousel-arrow img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

.card-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}


/* Card background images */
.card-image-1 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/wilderness-chalets.webp");
}

.card-image-2 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/wild-trails.webp");
}

.card-image-3 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/birds.webp");
}

.card-image-4 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/hiking.webp");
}

.card-image-5 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/wild-swimming.webp");
}

.card-image-6 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/races.webp");
}

.card-image-7 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/wildlife.webp");
}


.card-image-8 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
    url("/images/wild-trails.webp");
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3));
  color: #fff;
}

.card-content > span {
  font-family: Jost;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.card-content > h2 {
  font-family: Cormorant Garamond;
  font-weight: 400;
  font-size: 1.75rem;
  color: #fff;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.card-content > p {
  font-family: Jost;
  font-weight: 300;
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.5;
  margin: 0 0 1rem 0;
  opacity: 0.9;
}

.card-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
}

.card-link > p {
  font-family: Jost;
  font-weight: 400;
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-link > i {
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-card {
    flex: 0 0 calc(50% - 0.75rem);
    height: 400px;
  }
}

@media (max-width: 768px) {
  .carousel-card {
    flex: 0 0 100%;
    height: 350px;
  }

  .card-content {
    padding: 1.25rem;
  }

  .card-content > h2 {
    font-size: 1.4rem;
  }

  .card-content > p {
    font-size: 0.82rem;
  }

  .carousel-prev {
    left: 0.75rem;
  }

  .carousel-next {
    right: 0.75rem;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1rem;
  }

  .card-content > h2 {
    font-size: 1.25rem;
  }

  .card-content > p {
    font-size: 0.8rem;
  }
}

/* AIR CHARTER BANNER */

.air-charter-banner {
  display: flex;
  width: 100%;
  min-height: 500px;
  background-color: #f5f1eb;
}

.air-charter-banner > img {
  width: 55%;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.air-charter-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 3rem;
  gap: 2.5rem;
  background-color: #f5f1eb;
}

.air-charter-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-color);
}

@media (max-width: 1024px) {
  .air-charter-banner {
    min-height: 420px;
  }

  .air-charter-content h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .air-charter-banner {
    flex-direction: column;
    min-height: auto;
  }

  .air-charter-banner > img {
    width: 100%;
    height: 300px;
  }

  .air-charter-content {
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .air-charter-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 480px) {
  .air-charter-banner > img {
    height: 240px;
  }

  .air-charter-content {
    padding: 2.5rem 1.5rem;
  }

  .air-charter-content h2 {
    font-size: 1.875rem;
  }
}

/* TESTIMONIAL */

.testimonial-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonial-container > span {
  font-family: Jost;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 2.5rem;
}

.testimonial-track {
  display: grid;
  width: 100%;
}

.testimonial-slide {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.testimonial-quote {
  font-family: "Cormorant Garamond";
  font-weight: 400;
  font-size: 2.5rem;
  line-height: 1.4;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.testimonial-name {
  font-family: Jost;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.testimonial-country {
  font-family: Jost;
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  color: var(--accent-color);
}

/* Testimonial Nav */
.testimonial-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.testimonial-prev img,
.testimonial-next img {
  width: 24px;
  height: 24px;
  display: block;
}

.testimonial-prev:hover {
  opacity: 0.6;
  transform: translateX(-2px);
}

.testimonial-next:hover {
  opacity: 0.6;
  transform: translateX(2px);
}

/* Responsive Testimonial */
@media (max-width: 1024px) {
  .testimonial-container {
    padding: 5rem 2rem;
  }

  .testimonial-quote {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .testimonial-container {
    padding: 3rem 1.5rem;
  }

  .testimonial-quote {
    font-size: 1.75rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .testimonial-container {
    padding: 2.5rem 1rem;
  }

  .testimonial-quote {
    font-size: 1.4rem;
    line-height: 1.45;
  }

  .testimonial-name {
    font-size: 0.7rem;
  }

  .testimonial-country {
    font-size: 0.7rem;
  }
}

/* SEASONAL CAROUSEL */

.seasonal-carousel {
  position: relative;
  width: 100%;
  margin-top: 4rem;
  padding: 0 3rem;
  padding-bottom: 4rem;
  overflow: hidden;
}

.seasonal-carousel-nav {
  position: absolute;
  bottom: 0;
  left: 3rem;
  display: flex;
  gap: 0.5rem;
  z-index: 20;
}

@media (max-width: 1024px) {
  .seasonal-carousel {
    padding: 0 2rem;
    padding-bottom: 3rem;
  }

  .seasonal-carousel-nav {
    left: 2rem;
  }
}

@media (max-width: 768px) {
  .seasonal-carousel {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }

  .seasonal-carousel-nav {
    left: 1rem;
  }
}

.seasonal-prev,
.seasonal-next {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #1a1a1a;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.seasonal-prev:hover,
.seasonal-next:hover {
  opacity: 0.6;
}

.seasonal-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
  margin-bottom: 2rem;
  padding-right: 14rem;
}

.seasonal-card {
  flex: 0 0 calc(25% - 1.125rem);
  height: 380px;
  background: #fff;
  border: 1px solid #8b7355;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.seasonal-card.seasonal-featured {
  background: #766041;
  flex: 0 0 calc(25% - 1.125rem);
  height: 380px;
  transform: translateY(-60px);
  border: none;
}

/* Seasonal images */
.seasonal-image {
  width: 100%;
  height: 160px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  background-color: #d4d0cc;
}

.seasonal-image-1 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/wilderness-chalets.png");
}

.seasonal-image-2 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/wild-trails.webp");
}

.seasonal-image-3 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/birds.png");
  height: 160px;
}

.seasonal-image-4 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/wilderness-chalets.png");
}

.seasonal-image-5 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/wild-trails.webp");
}

.seasonal-image-6 {
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%),
    url("/images/birds.png");
}

/* Seasonal content */
.seasonal-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  background: #fff;
  text-align: left;
  flex: 1;
}

.seasonal-card.seasonal-featured .seasonal-content {
  background: #766041;
  color: #fff;
}

.seasonal-content > span {
  font-family: Jost;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 0.4rem;
  display: block;
}

.seasonal-card.seasonal-featured .seasonal-content > span {
  color: rgba(255, 255, 255, 0.8);
}

.seasonal-content > h3 {
  font-family: "Cormorant Garamond";
  font-size: 1.25rem;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

.seasonal-card.seasonal-featured .seasonal-content > h3 {
  color: #fff;
}

.seasonal-content > p {
  font-family: Jost;
  font-size: 0.8rem;
  font-weight: 300;
  color: #666;
  line-height: 1.4;
  margin: 0 0 0.75rem 0;
  flex-grow: 1;
}

.seasonal-card.seasonal-featured .seasonal-content > p {
  color: rgba(255, 255, 255, 0.9);
}

/* Tags */
.seasonal-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.tag {
  display: inline-block;
  background: #c6b9a9;
  color: #4a3f37;
  padding: 0.25rem 0.6rem;
  font-family: Jost;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.seasonal-card.seasonal-featured .tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* Signature link */
.signature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 0.9rem;
  color: #fff;
  text-decoration: none;
  font-family: Jost;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: all 0.3s ease;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.signature-link:before {
  content: "★";
  margin-right: 0.3rem;
}

.signature-link:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1200px) {
  .seasonal-carousel {
    padding: 0 4rem;
    padding-bottom: 4rem;
  }

  .seasonal-carousel-nav {
    left: 4rem;
  }

  .seasonal-track {
    padding-right: 4rem;
  }

  .seasonal-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}

@media (max-width: 908px) {
  .seasonal-carousel {
    padding: 0 1rem;
    padding-bottom: 3rem;
    margin-top: 3rem;
  }

  .seasonal-carousel-nav {
    left: 1rem;
  }

  .seasonal-track {
    gap: 1rem;
    padding-right: 1rem;
  }

  .seasonal-card {
    flex: 0 0 calc(50% - 0.5rem);
    height: 360px;
  }

  .seasonal-image {
    height: 140px;
  }

  .seasonal-image-3 {
    height: 140px;
  }

  .seasonal-content {
    padding: 1.25rem;
  }

  .seasonal-content > h3 {
    font-size: 1.1rem;
  }

  .seasonal-content > p {
    font-size: 0.75rem;
  }

  .seasonal-card.seasonal-featured {
    transform: translateY(-40px);
  }
}

@media (max-width: 480px) {
  .seasonal-carousel {
    padding: 0 1rem;
    padding-bottom: 2rem;
  }

  .seasonal-carousel-nav {
    left: 1rem;
  }

  .seasonal-track {
    padding-right: 1rem;
  }

  .seasonal-card {
    flex: 0 0 100%;
    height: 340px;
  }

  .seasonal-image {
    height: 120px;
  }

  .seasonal-image-3 {
    height: 120px;
  }

  .seasonal-prev,
  .seasonal-next {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }

  .seasonal-card.seasonal-featured {
    transform: translateY(-30px);
  }
}

.begin-your-journey {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/home-cta-banner.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;
}

.begin-your-journey > span {
  font-family: Jost;
  font-weight: 400;
  font-style: Regular;
  font-size: 0.688rem;
  line-height: 100%;
  letter-spacing: 59%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

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

.begin-your-journey > 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) {
  .begin-your-journey {
    padding: 0 2rem;
    gap: 2rem;
  }

  .begin-your-journey > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

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

  .begin-your-journey > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .begin-your-journey > p {
    font-size: 1rem;
  }

  .begin-your-journey > p br {
    display: none;
  }

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

  .begin-your-journey .two-column-btn button {
    width: 100%;
  }

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

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

  .begin-your-journey > p {
    font-size: 0.9rem;
  }
}

.northern-zambia-container {
  background-color: #c6b9a9;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
  margin-top: 6.25rem;
}

.northern-zambia-inner {
  width: 100%;
  max-width: 1600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.northern-zambia-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.northern-zambia-container .label-tag {
  color: var(--accent-color);
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-align: center;
}

.northern-zambia-container h2 {
  color: var(--primary-color);
  font-family: "Cormorant Garamond", serif;
  font-size: 3.6875rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.15;
}

.northern-zambia-inner h3 {
  color: var(--intro-text-color);
  font-family: "Jost", sans-serif;
  font-size: 1.188rem;
  font-weight: 600;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
  margin: 5rem 0;
  text-align: center;
}

.northern-zambia-container p.intro-text {
  color: var(--intro-text-color);
  font-family: "Jost", sans-serif;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
  margin-top: 2.5rem;
  text-align: center;
  /* max-width: 900px; */
}

/* ── Map + Panel wrapper ── */
.map-section {
  width: 100%;
  max-width: 1700px;
  display: flex;
  margin-top: 3.5rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--card-background);
  min-height: 560px;
}

#map {
  flex: 1 1 0;
  min-height: 560px;
  z-index: 1;
  position: relative;
}

/* Wrapper so the Fullscreen button overlays the map itself, bottom-right. */
.map-canvas-wrap {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
}

/* ── Right panel ── */
.destinations-panel {
  width: 360px;
  flex-shrink: 0;
  background-color: var(--accent-background-color);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  border-left: 1px solid var(--card-background);
}

/* ── Home tab ── */
.panel-home-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--card-background);
  transition: background 0.2s ease;
  position: relative;
}

.panel-home-tab:hover {
  background: rgba(94, 80, 59, 0.08);
}

.panel-home-tab.active {
  background: #5e503b !important;
}

.panel-home-tab.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-color);
}

.panel-home-tab .home-info {
  flex: 1;
}

.panel-home-tab .home-name {
  font-family: "Jost", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--intro-text-color);
  letter-spacing: 0.04rem;
  margin-bottom: 0.18rem;
  transition: color 0.2s;
}

.panel-home-tab .home-sub {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--secondary-text-color);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  transition: color 0.2s;
}

.panel-home-tab.active .home-name {
  color: #ffffff !important;
}
.panel-home-tab.active .home-sub {
  color: rgba(255, 255, 255, 0.65) !important;
}

.yah-badge {
  font-family: "Jost", sans-serif;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0.22rem 0.55rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition:
    color 0.2s,
    border-color 0.2s;
}

.panel-home-tab.active .yah-badge {
  color: rgba(255, 255, 255, 0.75) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
}

/* ── Destination list ── */
.destinations-list {
  list-style: none;
  flex: 1;
}

.dest-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid var(--card-background);
  transition: background 0.2s ease;
  position: relative;
}

.dest-item:last-child {
  border-bottom: none;
}

.dest-item:hover {
  background: rgba(94, 80, 59, 0.08);
}

.dest-item.active {
  background: #5e503b !important;
}

.dest-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent-color);
}

/* Coloured dot */
.dest-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.dot-home {
  background: var(--accent-color);
}
.dot-green {
  background: #4a7c59;
}
.dot-blue {
  background: #4a6fa5;
}
.dot-brown {
  background: #9b7b52;
}

.dest-info {
  flex: 1;
}

.dest-name {
  font-family: "Jost", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--intro-text-color);
  letter-spacing: 0.04rem;
  margin-bottom: 0.18rem;
}

.dest-type {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--secondary-text-color);
  letter-spacing: 0.05rem;
}

.dest-drive {
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--accent-color);
  white-space: nowrap;
  letter-spacing: 0.04rem;
}

.dest-item.active .dest-name {
  color: #ffffff !important;
}
.dest-item.active .dest-type {
  color: rgba(255, 255, 255, 0.6) !important;
}
.dest-item.active .dest-drive {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ── Leaflet popup ── */
.leaflet-popup-content-wrapper {
  background: #ffffff;
  color: var(--intro-text-color);
  border-radius: 4px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--card-background);
}
.leaflet-popup-tip {
  background: #ffffff;
}
.leaflet-popup-content {
  font-family: "Jost", sans-serif;
  margin: 10px 14px;
}
.leaflet-popup-content h6 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.04rem;
  color: var(--intro-text-color);
}
.leaflet-popup-content p {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--secondary-text-color);
  letter-spacing: 0.03rem;
  line-height: 1.5;
  margin: 0;
}
.leaflet-popup-close-button {
  color: var(--accent-color) !important;
  font-size: 16px !important;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .map-section {
    flex-direction: column;
  }
  .destinations-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--card-background);
    max-height: 340px;
  }
  #map {
    min-height: 420px;
  }
}

@media (max-width: 1024px) {
  .northern-zambia-container {
    padding: 4rem 2rem;
    margin-top: 4rem;
  }

  .northern-zambia-container h2 {
    font-size: 3rem;
    line-height: 1.2;
  }

  .northern-zambia-inner h3 {
    font-size: 1rem;
    margin: 2.5rem 0;
    letter-spacing: 0.25rem;
  }

  .northern-zambia-container p.intro-text {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .northern-zambia-container {
    padding: 3rem 1.5rem;
    margin-top: 3rem;
  }
  .northern-zambia-container h2 {
    font-size: 2.5rem;
  }
  .northern-zambia-inner h3 {
    font-size: 0.9rem;
    margin: 2rem 0;
  }
  #map {
    min-height: 320px;
  }
}

@media (max-width: 480px) {
  .northern-zambia-container {
    padding: 2rem 1rem;
  }
  .northern-zambia-container h2 {
    font-size: 2rem;
  }
  .northern-zambia-inner h3 {
    font-size: 0.8rem;
    letter-spacing: 0.2rem;
    margin: 1.5rem 0;
  }
  .northern-zambia-container p.intro-text {
    font-size: 0.95rem;
  }
  
}


.banner-social-whatsapp{
  height: auto;
  width: auto;
}


.banner-social-whatsapp img{
  height: 30px; 
  width: auto;
}

@media (max-width: 767px) {
  .banner-social-whatsapp img{
    height: 20px; 
    width: auto;
  }

}

@media (max-width: 480px) {

  .banner-social-whatsapp{
    height: auto;
    width: auto;
  }

}

@media (max-width: 480px) {
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }

    .carousel-arrow img{
      width: 22px;
      height: 22px;
    }
}

/* ============================================================
   MAP EXPAND BUTTON (mobile)
   Floating action button over the map, only on small screens.
   ============================================================ */
.map-expand-btn {
  display: none;
  position: absolute;
  z-index: 1001;                 /* above Leaflet controls */
  right: 0.75rem;
  bottom: 0.75rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border: none;
  border-radius: 999px;
  background: rgba(30, 30, 30, 0.82);
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s, transform 0.15s;
}

.map-expand-btn:hover,
.map-expand-btn:active {
  background: rgba(15, 15, 15, 0.9);
}

/* Only visible on touch/small screens */
@media (max-width: 1100px) {
  .map-expand-btn {
    display: inline-flex;
  }
}

/* On small screens the native Leaflet popups are replaced by the fullscreen
   map + bottom-sheet card, so hide them to avoid clipped/offscreen popups. */
@media (max-width: 1100px) {
  .map-section .leaflet-popup {
    display: none;
  }
}

/* ============================================================
   FULLSCREEN MAP LIGHTBOX (mobile)
   Opens the interactive map as a fullscreen overlay so no
   popup / card content is ever clipped offscreen.
   ============================================================ */
.mm-map-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: #101010;
}

.mm-map-lightbox.open {
  display: block;
}

.mm-map-lightbox-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: calc(0.75rem + env(safe-area-inset-top, 0px)) 0.9rem 0.75rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
}

.mm-map-lightbox-title {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.mm-map-lightbox-close {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.mm-map-lightbox-close:hover,
.mm-map-lightbox-close:active {
  background: rgba(255, 255, 255, 0.3);
}

.mm-map-fullscreen {
  position: absolute;
  inset: 0;
}

.mm-map-card-tap-hint {
  position: absolute;
  z-index: 1001;
  bottom: calc(10.5rem + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.85);
  font-family: "Jost", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.mm-map-lightbox.open .mm-map-card-tap-hint {
  opacity: 1;
}

/* ---- Bottom-sheet destination card (replaces Leaflet popups) ---- */
.mm-map-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1002;
  transform: translateY(110%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  background: #fff;
  border-radius: 18px 18px 0 0;
  padding: 1.15rem 1.4rem calc(1.4rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
  max-height: 46vh;
  overflow-y: auto;
}

.mm-map-card.open {
  transform: translateY(0);
}

/* Grab handle to hint it's a sheet */
.mm-map-card::before {
  content: "";
  display: block;
  width: 2.6rem;
  height: 4px;
  border-radius: 999px;
  background: #d8d2c8;
  margin: 0 auto 0.9rem;
}

.mm-map-card-eyebrow {
  font-family: "Jost", sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14rem;
  text-transform: uppercase;
  color: var(--accent-color);
}

.mm-map-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--intro-text-color);
  margin: 0.2rem 0 0.3rem;
}

.mm-map-card-type {
  font-family: "Jost", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03rem;
  line-height: 1.55;
  color: var(--secondary-text-color);
  margin: 0;
  padding-right: 2rem;
}

.mm-map-card-close {
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.9rem;
  height: 1.9rem;
  border: none;
  border-radius: 50%;
  background: #f0ede7;
  color: var(--intro-text-color);
  cursor: pointer;
  transition: background 0.2s;
}

.mm-map-card-close:hover,
.mm-map-card-close:active {
  background: #e2ddd3;
}

/* Keep Leaflet controls away from the bottom sheet */
.mm-map-lightbox.open .leaflet-bottom.leaflet-right {
  bottom: 0.75rem;
}

@media (max-width: 480px) {
  .mm-map-card-name {
    font-size: 1.3rem;
  }
}