/* =============================================================
   ONDJOU & VAN HEERDEN SAFARIS — Custom CSS (Tailwind Supplement)
   Only styles that Tailwind utility classes cannot handle
   ============================================================= */

/* ---------------------------------------------------------------
   0. BASE RESETS (beyond Tailwind's preflight)
--------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

address {
  font-style: normal;
}

/* ---------------------------------------------------------------
   1. NAVBAR TRANSITIONS & SCROLLED STATE (JS-toggled)
--------------------------------------------------------------- */
.navbar-transition {
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.navbar--scrolled {
  background-color: rgba(76, 69, 37, 0.7) !important;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.10);
}

.navbar--scrolled:hover {
  background-color: rgba(76, 69, 37, 1) !important;
}

/* ---------------------------------------------------------------
   2. NAV LINK HOVER UNDERLINE (::after pseudo-element)
--------------------------------------------------------------- */
.nav-link-underline {
  position: relative;
}

.nav-link-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E76825;
  transition: width 0.25s ease;
}

.nav-link-underline:hover::after {
  width: 100%;
}

/* Active link — no hover underline */
.nav-link-active::after {
  display: none;
}

/* ---------------------------------------------------------------
   3. DESKTOP DROPDOWN (hover behavior + invisible bridge)
--------------------------------------------------------------- */
.dropdown-toggle-underline {
  position: relative;
}

.dropdown-toggle-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E76825;
  transition: width 0.25s ease;
}

.group:hover .dropdown-toggle-underline::after {
  width: 100%;
}

/* Hide "See All" link on desktop */
.dropdown-see-all {
  display: none;
}

/* ---------------------------------------------------------------
   4. MOBILE NAVBAR (slide transition)
--------------------------------------------------------------- */
@media (max-width: 768px) {
  .mobile-nav-panel {
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    visibility: hidden;
  }

  .mobile-nav-panel.navbar__nav--open {
    transform: translateX(0);
    visibility: visible;
  }

  /* Show "See All" link on mobile */
  .dropdown-see-all {
    display: block;
  }

  /* Mobile dropdown menu — hidden by default, shown on toggle */
  .mobile-dropdown-menu {
    display: none !important;
  }

  .navbar__dropdown--open .mobile-dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  /* Center dropdown parent content on mobile */
  .navbar__dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Disable desktop hover on mobile */
  .group:hover .desktop-dropdown-menu {
    opacity: 1;
    visibility: visible;
  }

  .desktop-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    background-color: transparent !important;
    box-shadow: none !important;
    min-width: 0 !important;
    margin-top: 0 !important;
  }

  /* Hide standalone desktop dropdown on mobile (mobile menu takes over) */
  .desktop-dropdown-menu:not(.mobile-dropdown-menu) {
    display: none !important;
  }
}

/* Desktop dropdown visibility on hover (and keyboard focus) */
@media (min-width: 769px) {
  /* Parent <li> needs explicit relative positioning so absolute
     children + the hover-bridge ::after anchor correctly. */
  li.navbar__dropdown {
    position: relative;
  }

  /* Invisible "bridge" extending the parent hover area into the gap
     below the toggle button. Lives on the always-visible <li> so it
     keeps catching hover even while the menu itself is hidden. */
  li.navbar__dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 24px;
    pointer-events: auto;
    z-index: 59;
  }

  ul.desktop-dropdown-menu {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: visible !important;
    transition: opacity 0.2s ease;
    z-index: 60;
    display: block;
  }

  li.navbar__dropdown:hover > ul.desktop-dropdown-menu,
  li.navbar__dropdown:focus-within > ul.desktop-dropdown-menu,
  li.navbar__dropdown.navbar__dropdown--open > ul.desktop-dropdown-menu {
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  li.navbar__dropdown:hover .dropdown-arrow,
  li.navbar__dropdown:focus-within .dropdown-arrow,
  li.navbar__dropdown.navbar__dropdown--open .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
  }

  /* Hide standalone mobile dropdown on desktop */
  ul.mobile-dropdown-menu:not(.desktop-dropdown-menu) {
    display: none !important;
  }
}

/* ---------------------------------------------------------------
   5. NAVBAR WHITE VARIANT (blog post pages)
--------------------------------------------------------------- */
.navbar--white .navbar-logo {
  filter: brightness(0) sepia(1) saturate(3) hue-rotate(346deg) brightness(0.35);
}

.navbar--white.navbar--scrolled .navbar-logo {
  filter: none;
}

/* ---------------------------------------------------------------
   6a. HIDDEN SCROLLBAR (Big Five horizontal scroll)
--------------------------------------------------------------- */
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

/* ---------------------------------------------------------------
   6. CUSTOM SCROLLBAR (news horizontal scroll)
--------------------------------------------------------------- */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 54, 33, 0.4) transparent;
}

.custom-scrollbar::-webkit-scrollbar {
  height: 5px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(72, 54, 33, 0.4);
  border-radius: 4px;
}

/* ---------------------------------------------------------------
   7. FORM ELEMENTS (custom select arrow, checkbox mark)
--------------------------------------------------------------- */
.select-arrow {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23636363' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 48px;
  cursor: pointer;
}

/* Custom checkbox mark */
.checkbox-custom input {
  display: none;
}

.checkbox-mark {
  transition: all 0.2s ease;
}

.checkbox-custom input:checked + .checkbox-mark {
  background: #483621;
  border-color: #483621;
}

.checkbox-custom input:checked + .checkbox-mark::after {
  content: '';
  width: 6px;
  height: 10px;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

/* Pill checkbox & radio — checked state */
.pill-input input {
  display: none;
}

.pill-input input:checked + .pill-text {
  background: #483621;
  border-color: #483621;
  color: #FFFFFF;
}

/* ---------------------------------------------------------------
   8. SWIPER.JS OVERRIDES
--------------------------------------------------------------- */
.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c4c4c4;
  opacity: 1;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #483621;
}

/* ---------------------------------------------------------------
   9. BUTTON HOVER EFFECTS
--------------------------------------------------------------- */
.btn-hover {
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-hover:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.btn-hover:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   10. IMAGE HOVER ZOOM
--------------------------------------------------------------- */
.img-zoom {
  transition: transform 0.4s ease;
}

.group:hover .img-zoom {
  transform: scale(1.04);
}

.img-zoom-sm {
  transition: transform 0.3s ease;
}

.group:hover .img-zoom-sm {
  transform: scale(1.05);
}

/* ---------------------------------------------------------------
   11. CARD HOVER EFFECTS
--------------------------------------------------------------- */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------------------------------------
   12. GALLERY OVERLAY FADE
--------------------------------------------------------------- */
.overlay-fade {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.group:hover .overlay-fade {
  opacity: 1;
}

/* ---------------------------------------------------------------
   13. INQUIRY FORM — Step visibility
--------------------------------------------------------------- */
.inquiry-step {
  display: none;
}

.inquiry-step--active {
  display: block;
}

.inquiry-success {
  display: none;
}

/* ---------------------------------------------------------------
   14. SOCIAL LINK HOVER — filter swap
--------------------------------------------------------------- */
.social-link-icon {
  filter: brightness(0) saturate(100%);
}

.social-link:hover .social-link-icon {
  filter: brightness(0) invert(1);
}

/* ---------------------------------------------------------------
   15. FOOTER NAV LINK OVERRIDES
--------------------------------------------------------------- */
.footer-nav-link {
  color: #FFFFFF !important;
}

.footer-nav-link:hover {
  color: #E76825 !important;
}

/* ---------------------------------------------------------------
   16. SCROLL-TO-TOP BUTTON
--------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #483621;
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.2s ease;
  z-index: 60;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.scroll-top:hover {
  background: #E76825;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  pointer-events: none;
}

.scroll-top__progress-bar {
  fill: none;
  stroke: #E76825;
  stroke-width: 2;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

.scroll-top:hover .scroll-top__progress-bar {
  stroke: #fff;
}

.scroll-top__arrow {
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .scroll-top {
    right: 16px;
    bottom: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ---------------------------------------------------------------
   17. ACCORDION MODULE (FAQ-style)
--------------------------------------------------------------- */
.accordion-item {
  border: 1px solid rgba(72, 54, 33, 0.15);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item[open] {
  border-color: rgba(72, 54, 33, 0.35);
  box-shadow: 0 4px 18px rgba(72, 54, 33, 0.08);
}

.accordion-trigger {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.4;
  color: #483621;
  background: #fff;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.accordion-trigger:hover {
  background: rgba(170, 143, 41, 0.08);
}

.accordion-item[open] .accordion-trigger {
  background: rgba(170, 143, 41, 0.1);
  color: #483621;
}

.accordion-question {
  flex: 1;
  text-align: left;
}

.accordion-icon {
  flex-shrink: 0;
  color: #483621;
  transition: transform 0.25s ease;
}

.accordion-item[open] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.accordion-item[open] .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel-inner {
  overflow: hidden;
  padding: 0 22px 0 22px;
}

.accordion-item[open] .accordion-panel-inner {
  padding: 4px 22px 22px 22px;
}

/* ---------------------------------------------------------------
   18. INTERACTIVE NAMIBIA MAP
--------------------------------------------------------------- */
.map-hotspot {
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.map-hotspot:focus {
  outline: none;
}

.hotspot-pin {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  background: #E76825;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.hotspot-pin::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 9999px;
  background: rgba(231, 104, 37, 0.35);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.5s ease, transform 0.6s ease;
  pointer-events: none;
}

.map-hotspot:hover .hotspot-pin,
.map-hotspot:focus-visible .hotspot-pin,
.map-hotspot.is-active .hotspot-pin {
  transform: scale(1.18);
}

.map-hotspot:hover .hotspot-pin::after,
.map-hotspot:focus-visible .hotspot-pin::after,
.map-hotspot.is-active .hotspot-pin::after {
  opacity: 1;
  transform: scale(1);
}

@keyframes hotspotPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

.hotspot-pin {
  animation: hotspotPulse 2.4s ease-in-out infinite;
}

.map-tooltip {
  position: absolute;
  z-index: 5;
  width: min(280px, 80vw);
  padding: 16px 18px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 18px)) translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.map-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 18px)) translateY(0);
  pointer-events: auto;
}

.map-tooltip .tooltip-title {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: #483621;
  margin: 0 0 6px;
}

.map-tooltip .tooltip-teaser {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #4F4F53;
  margin: 0 0 10px;
}

.map-tooltip .tooltip-cta {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #E76825;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.map-tooltip .tooltip-cta:hover {
  color: #483621;
}

/* ---------------------------------------------------------------
   19. TEAM SECTION (sourced from team_member CPT)
--------------------------------------------------------------- */
.team-member-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(72, 54, 33, 0.13);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
  transform: translateY(-5px);
  border-color: rgba(170, 143, 41, 0.40);
  box-shadow: 0 22px 44px -18px rgba(72, 54, 33, 0.30);
}

/* Portrait -------------------------------------------------------- */
.team-member-card__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(155deg, #f5efe3 0%, #ece2cf 100%);
  border-bottom: 2px solid rgba(72, 54, 33, 0.10);
}

.team-member-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-card__img {
  transform: scale(1.04);
}

/* Placeholder: monogram badge on parchment ----------------------- */
.team-member-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(231, 104, 37, 0.07), transparent 55%),
    radial-gradient(circle at 75% 85%, rgba(111, 112, 45, 0.12), transparent 55%),
    linear-gradient(155deg, #f5efe3 0%, #ece2cf 100%);
}

.team-member-card__placeholder-badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(72, 54, 33, 0.22);
  box-shadow: 0 0 0 6px rgba(170, 143, 41, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.04em;
  line-height: 1;
  color: rgba(72, 54, 33, 0.45);
  background: rgba(255, 255, 255, 0.30);
}

/* Body ----------------------------------------------------------- */
.team-member-card__body {
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-member-card__name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.2;
  color: #483621;
  margin: 0 0 6px;
}

.team-member-card__role {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(72, 54, 33, 0.75);
  margin: 0 0 14px;
}

/* Flags row: small label + inline flag list ---------------------- */
.team-member-card__flags-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-bottom: 14px;
}

.team-member-card__flags-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(72, 54, 33, 0.65);
  text-transform: none;
}

.team-member-card__flags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
}

.team-member-card__flag {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(72, 54, 33, 0.18);
  display: block;
  cursor: help;
}

.team-member-card__flags-text {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12.5px;
  color: #483621;
}

.team-member-card__name-divider {
  height: 1px;
  background: rgba(72, 54, 33, 0.10);
  margin-bottom: 14px;
}

.team-member-card__bio {
  position: relative;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333333;
}

.team-member-card__bio p {
  margin: 0 0 10px;
}

.team-member-card__bio p:last-child {
  margin-bottom: 0;
}

/* Collapsed: clamp the bio to ~5 lines and fade the bottom edge so the
   reader knows there's more to expand. */
.team-member-card__bio:not(.is-expanded) {
  max-height: 8.4em;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 65%, transparent 100%);
}

/* Read more / Show less button --------------------------------- */
.team-member-card__readmore {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  margin: 14px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #483621;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  border-bottom: 1px solid rgba(72, 54, 33, 0.30);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.team-member-card__readmore:hover {
  color: #E76825;
  border-color: rgba(231, 104, 37, 0.55);
}

.team-member-card__readmore:focus-visible {
  outline: 2px solid #AA8F29;
  outline-offset: 4px;
  border-radius: 2px;
}

.team-member-card__readmore-icon {
  transition: transform 0.25s ease;
}

.team-member-card__readmore[aria-expanded="true"] .team-member-card__readmore-icon {
  transform: rotate(180deg);
}

.team-member-card__readmore.is-hidden {
  display: none;
}

/* Neutralize any seeded <strong> and <mark> highlights so existing
   posts render as clean prose until they are re-saved or cleaned. */
.team-member-card__bio strong {
  font-weight: inherit;
  color: inherit;
}

.team-member-card__bio mark {
  background: none;
  color: inherit;
  padding: 0;
  border-radius: 0;
}

.team-member-card__bio em {
  color: inherit;
  font-style: italic;
}

@media (max-width: 640px) {
  .team-member-card__body {
    padding: 22px 20px 24px;
  }
  .team-member-card__name {
    font-size: 20px;
  }
}

/* ---------------------------------------------------------------
   20. HUNTING AREA — LOCATION & TROPHY SECTION
--------------------------------------------------------------- */
.area-location__figure {
  margin: 0;
}

.area-location__trophy {
  background: linear-gradient(135deg, #fdfbf6 0%, #f5efe3 100%);
  border-radius: 14px;
  padding: 36px 40px;
  border: 1px solid rgba(72, 54, 33, 0.12);
}

@media (max-width: 768px) {
  .area-location__trophy {
    padding: 26px 22px;
  }
}

.area-location__trophy-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
  color: #483621;
  margin: 0 0 20px;
}

.area-location__trophy-mark {
  display: inline-block;
  width: 6px;
  height: 22px;
  background: #E76825;
  border-radius: 2px;
  flex-shrink: 0;
}

.area-location__trophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
}

@media (min-width: 768px) {
  .area-location__trophy-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .area-location__trophy-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.area-location__trophy-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.4;
  color: #333333;
  padding: 8px 0;
  border-bottom: 1px solid rgba(72, 54, 33, 0.10);
}

.area-location__trophy-item svg {
  color: #AA8F29;
  flex-shrink: 0;
}

/* Pill-style filter buttons (Gallery page, Page Modules Gallery Section,
   Animals Section). The `gallery-page__tab--active` class is the single
   source of truth for the active state — it overrides whichever inline
   Tailwind background / text colour the button shipped with so JS only
   needs to toggle one class. */
.gallery-page__tab {
  background-color: transparent;
  color: #483621;
  border-color: #483621;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.gallery-page__tab:hover {
  background-color: rgba(72, 54, 33, 0.08);
}

.gallery-page__tab--active,
.gallery-page__tab--active:hover {
  background-color: #483621 !important;
  color: #ffffff !important;
  border-color: #483621 !important;
}

/* Hunting type cards: keep the title legible over the lighter default
   overlay (we ramp the overlay opacity up only on hover). */
.hunting-type-card__title {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  transition: text-shadow 0.3s ease;
}

.hunting-type-card:hover .hunting-type-card__title {
  text-shadow: none;
}

/* Hunt Highlight: image fills its column edge-to-edge on lg+ */
@media (min-width: 1024px) {
  .area-hunt__figure {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  .area-hunt__figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Conservation badge subsection */
.area-location__badge {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(72, 54, 33, 0.12);
  border-left: 4px solid #AA8F29;
  border-radius: 12px;
  padding: 28px 30px;
}

@media (min-width: 768px) {
  .area-location__badge {
    grid-template-columns: 180px 1fr;
    gap: 32px;
    padding: 32px 36px;
  }
}

.area-location__badge-image {
  width: 100%;
  max-width: 180px;
  margin: 0 auto;
}

.area-location__badge-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
  box-shadow: 0 12px 30px -16px rgba(72, 54, 33, 0.40);
}

.area-location__badge-text p {
  margin: 0 0 12px;
}

.area-location__badge-text p:last-child {
  margin-bottom: 0;
}
