:root {
  --green: #2f5b36;
  --green-soft: #eaf1e8;
  --ink: #17120d;
  --muted: #6b645c;
  --line: #e5dccf;
  --cream: #fffdf9;
  --cta: #d5693b;
  --shadow-soft: 0 12px 24px rgba(45, 34, 22, 0.06);
}

.sponsored-archive-block {
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid #d9cdbd;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(49, 90, 54, 0.07), rgba(255, 253, 248, 0.96));
}

.sponsored-archive-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.sponsored-archive-head span,
.stay-sponsored-label {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sponsored-archive-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
}

.sponsored-archive-cards {
  display: grid;
  gap: 16px;
}

.stay-sponsored-label {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fffdf8;
  box-shadow: 0 8px 20px rgba(24, 20, 15, 0.16);
}

.stay-card.is-sponsored {
  border-color: rgba(49, 90, 54, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
}

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

img[loading="lazy"] {
  color: transparent;
  font-size: 0;
  background: #fff url("/assets/logo-bulle.svg") center / 58px auto no-repeat;
}

button {
  font: inherit;
}

.mobile-menu-toggle {
  display: none;
}

.region-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 61px;
  display: grid;
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr) auto;
  grid-template-areas: "brand nav actions";
  column-gap: 28px;
  align-items: center;
  padding: 0 46px 0 46px;
  border-bottom: 1px solid rgba(227, 218, 204, 0.92);
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 2px 12px rgba(54, 42, 23, 0.03);
  backdrop-filter: blur(10px);
}

.region-brand {
  grid-area: brand;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.region-brand img {
  width: 44px;
  height: 44px;
  filter: brightness(0) saturate(100%);
}

.region-brand span,
#location-title,
.location-card-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.region-brand span {
  font-size: 27px;
  line-height: 1;
}

.region-nav {
  grid-area: nav;
  display: flex;
  justify-content: center;
  gap: 44px;
  min-width: 0;
  font-size: 15px;
}

.region-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 29px;
  justify-self: end;
  font-size: 14px;
  white-space: nowrap;
}

.region-nav a,
.region-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.region-actions svg {
  width: 19px;
  height: 19px;
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(360px, 3fr) minmax(0, 7fr);
  min-height: 100vh;
}

.region-map-shell {
  position: sticky;
  top: 0;
  height: 100vh;
  border-right: 1px solid rgba(224, 216, 204, 0.88);
  background: #eef3ee;
  overflow: hidden;
}

.region-map {
  position: relative;
  width: 100%;
  height: 100%;
  background: center center / cover no-repeat;
  opacity: 0;
  transition: opacity 320ms ease;
}

.region-map-shell.map-ready .region-map {
  opacity: 1;
}

.region-map-toggle {
  display: none;
}

.region-map-placeholder {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.92)),
    linear-gradient(180deg, #edf3ed 0%, #e7efe7 100%);
  color: #17120d;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.region-map-shell.map-ready .region-map-placeholder {
  opacity: 0;
  visibility: hidden;
}

.region-map-marker-wrap {
  background: transparent;
  border: 0;
  transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.region-map-marker-wrap .location-card-badge {
  position: static;
  left: auto;
  bottom: auto;
  margin: 0;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.region-map-marker-wrap.is-dimmed {
  opacity: 0.34;
  filter: grayscale(0.18) saturate(0.78);
}

.region-map-marker-wrap.is-highlighted {
  opacity: 1;
  filter: none;
  transform: translateY(-4px);
}

.region-map-marker-wrap.is-highlighted .location-card-badge {
  border-color: #fffdf8;
  background: #dc5a2f;
  box-shadow:
    0 0 0 7px rgba(220, 90, 47, 0.22),
    0 18px 38px rgba(22, 37, 23, 0.34);
  transform: scale(1.22);
}

.region-map-marker-wrap .location-card-badge svg {
  width: 20px;
  height: 20px;
}

.region-map-marker-wrap .map-split-badge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding: 0;
}

.region-map-marker-wrap .map-split-half {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 40px;
}

.region-map-marker-wrap .map-split-left {
  border-right: 1px solid rgba(255, 255, 255, 0.45);
}

.region-map-marker-wrap .map-split-badge svg {
  width: 15px;
  height: 15px;
}

.region-map-placeholder img {
  width: 54px;
  height: 54px;
  filter: brightness(0) saturate(100%);
  animation: mapPlaceholderPulse 1.7s ease-in-out infinite;
}

.map-popup .leaflet-popup-content-wrapper {
  padding: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 18, 13, 0.2);
}

.map-popup .leaflet-popup-content {
  width: 380px !important;
  margin: 0;
}

.map-popup .leaflet-popup-tip {
  box-shadow: 0 10px 24px rgba(23, 18, 13, 0.14);
}

.map-popup-card {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 150px;
  background: #fffdf9;
  color: #17120d;
}

.map-popup-card > picture {
  display: block;
  width: 152px;
  min-height: 150px;
}

.map-popup-image {
  width: 152px;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  background: #eee7dc;
}

.map-popup-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
}

.map-popup-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: #17120d;
  font-size: 16px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.map-popup-copy span {
  overflow: hidden;
  color: #6b6258;
  font-size: 13.5px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-popup-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 9px 4px 7px;
  border: 1px solid rgba(54, 95, 55, 0.18);
  border-radius: 999px;
  background: rgba(247, 252, 246, 0.94);
  color: #005321;
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.map-popup-rating img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.map-popup-rating span {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.map-popup-rating strong {
  color: #17120d;
  font-size: 13px;
}

.map-popup-cta {
  align-self: flex-start;
  color: #005321;
  font-size: 13.5px;
  font-weight: 800;
  text-decoration: none;
}

.map-popup-cta:hover {
  text-decoration: underline;
}

@keyframes mapPlaceholderPulse {
  0%,
  100% {
    opacity: 0.32;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.region-content {
  padding: 28px 44px 18px 43px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6f685f;
  font-size: 13px;
}

.breadcrumbs span + span::before {
  content: "›";
  margin-right: 12px;
  color: #9b958b;
}

#location-title {
  margin: 11px 0 0;
  font-size: 55px;
  line-height: 0.98;
  font-weight: 500;
}

.location-intro {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  color: #5f574e;
  font-size: 15px;
  line-height: 1.42;
  text-align: justify;
  hyphens: auto;
}

.location-intro .archive-intro-text {
  overflow: hidden;
}

.location-intro p {
  margin: 0;
}

.location-intro .archive-intro-toggle {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  margin: 12px auto 0;
  padding: 0 16px;
  border: 1px solid #d7cdbc;
  border-radius: 999px;
  background: #fffdf9;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(39, 31, 20, 0.06);
  cursor: pointer;
}

.location-intro .archive-intro-toggle:hover,
.location-intro .archive-intro-toggle:focus-visible {
  border-color: var(--green);
  background: #eef3ec;
}

.location-intro .archive-intro-toggle[hidden] {
  display: none;
}

.location-intro.is-expanded::after {
  display: none;
}

.location-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
}

.location-meta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #4f483f;
  font-size: 15px;
}

.meta-item + .meta-item {
  position: relative;
  padding-left: 18px;
}

.meta-item + .meta-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: #e2d9cd;
}

.meta-item svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.department-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.department-pills a,
.department-pills span {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid #dfd6ca;
  border-radius: 9px;
  background: #fffefa;
  color: #4f4a43;
  font-size: 14px;
}

.department-pills .active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.department-pills small {
  min-width: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  padding: 0 6px;
  border-radius: 999px;
  background: #edf2e8;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.department-pills .active small {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.location-divider {
  height: 1px;
  margin-top: 18px;
  background: #e8ded2;
}

.location-filters-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
}

.region-page .archive-sort {
  flex: 0 0 auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  color: #6b645b;
  font-size: 14px;
}

.region-page .archive-sort button {
  min-width: 160px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border: 1px solid #ddd3c5;
  border-radius: 7px;
  background: #fffdfa;
  color: #6a6055;
  cursor: pointer;
}

.region-page .archive-sort svg {
  width: 16px;
  height: 16px;
}

.region-page .archive-sort button[aria-expanded="true"] {
  border-color: #c8beaf;
  box-shadow: 0 6px 18px rgba(33, 30, 24, 0.08);
}

.region-page .archive-sort-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 220px;
  padding: 8px;
  border: 1px solid #ddd3c5;
  border-radius: 8px;
  background: #fffdfa;
  box-shadow: 0 16px 34px rgba(33, 30, 24, 0.12);
}

.region-page .archive-sort-menu button {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  height: auto;
  padding: 10px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #3f382f;
}

.region-page .archive-sort-menu button:hover,
.region-page .archive-sort-menu button:focus-visible {
  background: #f4efe7;
  outline: none;
}

.region-page .archive-sort-menu button.is-active {
  background: #edf3eb;
  color: var(--green);
  font-weight: 700;
}

.location-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
}

.location-filter-pills:not(.facet-filter-menu) {
  display: contents;
}

.location-mobile-filter-menus {
  display: none;
}

.location-filters a,
.location-filters button {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid #e1d7cb;
  border-radius: 8px;
  background: #fffdfa;
  color: #44413a;
  font-size: 14px;
}

.location-filters a {
  text-decoration: none;
}

.location-filters small {
  min-width: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: #edf2e8;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
}

.location-filters .active small {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.location-filters a.active,
.location-filters button.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.location-filters a.active svg,
.location-filters button.active svg {
  color: #fff;
}

.location-filters a svg,
.location-filters svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.location-filters .facet-filter-menu {
  position: relative;
}

.location-filters .facet-filter-menu summary {
  height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid #e1d7cb;
  border-radius: 999px;
  background: #fffdf9;
  color: #44413a;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  list-style: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.location-filters .facet-filter-menu summary:hover,
.location-filters .facet-filter-menu[open] summary {
  border-color: #cfc3b2;
  background: #f7f2ea;
}

.location-filters .facet-filter-menu summary span {
  font-weight: 500;
}

.location-filters .facet-filter-menu summary::-webkit-details-marker {
  display: none;
}

.location-filters .facet-filter-menu summary small {
  min-width: 20px;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
}

.location-filters .facet-filter-menu summary em {
  color: var(--green);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.location-filters .facet-filter-menu summary em:empty {
  display: none;
}

.location-filters .facet-filter-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 30;
  width: 246px;
  min-width: 246px;
  max-width: calc(100vw - 48px);
  display: grid;
  gap: 12px;
  max-height: min(70vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 14px;
  border: 1px solid #e1d6c8;
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 18px 46px rgba(50, 39, 25, 0.16);
}

.location-filters .facet-filter-group {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex-wrap: nowrap;
}

.location-filters .facet-filter-group strong {
  min-width: 96px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #594f44;
  font-size: 13px;
  font-weight: 800;
}

.location-filters .facet-filter {
  width: 100%;
  justify-content: flex-start;
  cursor: pointer;
}

.location-filters .facet-filter.is-active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.location-filters .facet-filter.is-active svg {
  color: #fff;
}

.location-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.location-card {
  overflow: hidden;
  border: 1px solid #e7ddd1;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.location-card-media {
  position: relative;
  height: 220px;
}

.location-card-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-rating {
  position: absolute;
  right: 12px;
  top: 12px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(29, 51, 33, 0.16);
}

.location-card-badge {
  position: absolute;
  left: 11px;
  bottom: -21px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green);
  border: 2px solid #fffefb;
  color: #fff;
  box-shadow: 0 8px 18px rgba(29, 51, 33, 0.18);
}

.location-card-badge svg {
  width: 20px;
  height: 20px;
}

.location-card-copy {
  padding: 30px 14px 13px;
}

.location-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.location-card-copy h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.15;
  font-weight: 500;
}

.wishlist-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #7f7a71;
  cursor: pointer;
}

.wishlist-button.is-active {
  color: #c9542a;
}

.wishlist-button svg {
  width: 15px;
  height: 15px;
}

.region-page .wishlist-button {
  width: 34px;
  height: 34px;
  margin-right: -8px;
}

.region-page .wishlist-button svg {
  width: 22px;
  height: 22px;
}

.card-location {
  margin: 6px 0 0;
  color: #6d655c;
  font-size: 13px;
}

.card-summary {
  min-height: 64px;
  margin: 9px 0 0;
  color: #4f493f;
  font-size: 13px;
  line-height: 1.5;
}

.card-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.card-strengths li {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 7px;
  background: #f6f2eb;
  color: #3f4939;
  font-size: 12px;
  line-height: 1.25;
}

.card-nearby {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 11px;
  color: #6b645b;
  font-size: 12px;
}

.card-nearby svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
  color: var(--green);
}

.card-nearby > span {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-nearby > span span::after {
  content: ",";
}

.card-nearby > span span:last-child::after {
  content: "";
}

.card-practical {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 11px;
}

.card-practical-item {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 8px;
  border: 1px solid #e6ded2;
  border-radius: 999px;
  color: #4f594a;
  background: #fffdfa;
  font-size: 11px;
}

.card-practical-item svg {
  width: 14px;
  height: 14px;
  color: var(--green);
}

.card-practical-item.status-non {
  opacity: 0.58;
}

.card-practical-item.status-inconnu {
  color: #7e776f;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 9px;
}

.card-tags span {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 7px;
  background: #eff3ea;
  color: #466747;
  font-size: 12px;
}

.card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.card-price {
  margin: 0;
}

.card-price span,
.card-price small {
  display: block;
  color: #656057;
  font-size: 12px;
}

.card-price strong {
  display: inline-block;
  margin-top: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
}

.card-price small {
  display: inline-block;
  margin-left: 4px;
}

.card-cta {
  min-width: 116px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 4px;
  background: linear-gradient(180deg, #dc6f41, var(--cta));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.related-guides {
  margin-top: 30px;
}

.related-guides-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.related-guides-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.08;
  font-weight: 500;
}

.related-guides-head a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.related-guides-head svg {
  width: 16px;
  height: 16px;
}

.related-guides-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.archive-editorial-block {
  margin: 30px 0 8px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-editorial-block h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: 0;
}

.archive-editorial-block p {
  max-width: 74ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.archive-editorial-block p + p {
  margin-top: 12px;
}

.archive-faq {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.archive-faq h2 {
  margin: 0 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.archive-faq-list {
  display: grid;
  gap: 10px;
}

.archive-faq details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf8;
}

.archive-faq summary {
  cursor: pointer;
  padding: 15px 18px;
  color: var(--green);
  font-weight: 850;
}

.archive-faq p {
  margin: 0;
  padding: 0 18px 16px;
  color: #4f473d;
  line-height: 1.6;
}

.archive-faq p a {
  color: var(--green);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

.archive-faq p a:hover,
.archive-faq p a:focus-visible {
  color: #003f22;
  text-decoration-thickness: 2px;
}

.archive-guide-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid #e5dccf;
  border-radius: 8px;
  background: #fffdf9;
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(45, 34, 22, 0.04);
}

.archive-guide-card picture,
.archive-guide-card img {
  width: 100%;
  aspect-ratio: 16 / 7;
  display: block;
}

.archive-guide-card img {
  object-fit: cover;
  background: #eee7dd;
}

.archive-guide-card span {
  width: fit-content;
  margin: 14px 16px 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: #eef3e9;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-guide-card h3 {
  margin: 11px 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  line-height: 1.13;
  font-weight: 600;
}

.archive-guide-card p {
  margin: 9px 16px 0;
  color: #4f4a43;
  font-size: 14px;
  line-height: 1.45;
}

.archive-guide-card em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: auto 16px 16px;
  padding-top: 16px;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}

.archive-guide-card em svg {
  width: 16px;
  height: 16px;
}

.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.archive-pagination[hidden] {
  display: none;
}

.archive-pagination button,
.archive-pagination a,
.archive-pagination-gap {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ded3c5;
  border-radius: 999px;
  background: #fffdf9;
  color: #2c2a25;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.archive-pagination button {
  cursor: pointer;
}

.archive-pagination a {
  text-decoration: none;
}

.archive-pagination button.is-active,
.archive-pagination a.is-active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.archive-pagination-gap {
  border-color: transparent;
  background: transparent;
  color: #8a8378;
}

@media (max-width: 1200px) {
  .region-layout {
    grid-template-columns: 320px minmax(0, 1fr);
  }

  .location-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .location-intro.is-collapsed .archive-intro-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .location-intro.is-collapsed::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    height: 2.2em;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255,253,249,0), #fffdf9 78%);
  }

  .location-intro .archive-intro-toggle {
    display: flex;
  }

  .region-topbar {
    grid-template-columns: 1fr auto;
    grid-template-areas: "brand toggle";
    padding: 14px 16px;
    height: auto;
    gap: 12px;
  }

  .mobile-menu-toggle {
    grid-area: toggle;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d8d0c4;
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.94);
    color: var(--ink);
    box-shadow: 0 8px 22px rgba(44, 34, 22, 0.1);
  }

  .mobile-menu-toggle svg {
    width: 22px;
    height: 22px;
  }

  .region-nav,
  .region-actions {
    display: none;
  }

  .region-topbar.menu-open {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand toggle"
      "nav nav"
      "actions actions";
    align-items: start;
  }

  .region-topbar.menu-open .region-nav {
    grid-area: nav;
  }

  .region-topbar.menu-open .region-actions {
    grid-area: actions;
  }

  .region-topbar.menu-open .region-nav,
  .region-topbar.menu-open .region-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    border: 1px solid #e5dccf;
    border-radius: 18px;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 16px 34px rgba(35, 25, 14, 0.08);
    grid-column: 1 / -1;
  }

  .region-topbar.menu-open .region-nav a,
  .region-topbar.menu-open .region-actions a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
  }

  .region-layout {
    grid-template-columns: 1fr;
  }

  .region-map-shell {
    position: relative;
    top: 0;
    height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(224, 216, 204, 0.88);
    transition: height 260ms ease;
  }

  .region-map-shell.is-map-expanded {
    height: 560px !important;
    max-height: 72vh;
  }

  .region-map-shell::after {
    content: "";
    position: absolute;
    z-index: 1050;
    right: 0;
    bottom: 0;
    left: 0;
    height: 86%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0) 0%, rgba(255, 253, 248, 0.68) 34%, rgba(255, 253, 248, 0.96) 62%, #fffdf8 86%, #fffdf8 100%);
    transition: opacity 220ms ease;
  }

  .region-map-shell.is-map-expanded::after {
    opacity: 0;
  }

  .region-map-shell .leaflet-control-zoom {
    display: none;
  }

  .region-map-shell .leaflet-control-attribution {
    z-index: 700;
  }

  .region-map-toggle {
    position: absolute;
    z-index: 1150;
    right: auto;
    top: 50%;
    bottom: auto;
    left: 50%;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(0, 88, 45, 0.24);
    border-radius: 999px;
    background: #00582d;
    color: #fffdf8;
    box-shadow: 0 14px 34px rgba(23, 18, 13, 0.18);
    font: 800 14px/1 var(--sans);
    cursor: pointer;
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
  }

  .region-map-toggle:hover,
  .region-map-toggle:focus-visible {
    background: #004523;
    box-shadow: 0 16px 38px rgba(23, 18, 13, 0.22);
    transform: translate(-50%, calc(-50% - 1px));
  }

  .region-map-shell.is-map-expanded .region-map-toggle {
    display: none;
  }

  .region-content {
    padding: 24px 16px 30px;
  }

  .breadcrumbs {
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    font-size: 12px;
    white-space: nowrap;
    scrollbar-width: none;
  }

  #location-title {
    margin-top: 8px;
    font-size: 37px;
    line-height: 1.03;
  }

  .location-intro {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .location-meta,
  .location-filters-row {
    flex-direction: column;
    align-items: stretch;
  }

  .region-page .archive-sort {
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
    margin-left: 0;
  }

  .region-page .archive-sort button {
    width: 100%;
  }

  .region-page .archive-sort-menu {
    left: 0;
    right: 0;
    min-width: 0;
  }

  .location-meta {
    gap: 12px;
    margin-top: 18px;
  }

  .location-meta-left {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 0;
    border: 1px solid #e5dccf;
    border-radius: 12px;
    background: #fffefb;
  }

  .meta-item {
    min-width: 0;
    justify-content: center;
    gap: 9px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 1.2;
  }

  .meta-item svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
  }

  .meta-item + .meta-item {
    padding-left: 10px;
  }

  .department-pills {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .department-pills::-webkit-scrollbar {
    display: none;
  }

  .department-pills a,
  .department-pills span {
    flex: 0 0 auto;
  }

  .location-filters {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding-bottom: 4px;
  }

  .location-filters > .location-filter-pills,
  .location-filters > .facet-filter-menu {
    display: none;
  }

  .location-mobile-filter-menus {
    width: 100%;
    display: grid;
    gap: 10px;
  }

  .location-mobile-filter-menu {
    width: 100%;
  }

  .location-mobile-filter-menu summary {
    min-height: 44px;
    width: 100%;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    border: 1px solid #ded4c8;
    border-radius: 10px;
    background: #fffdf9;
    color: #2c4f31;
    cursor: pointer;
    list-style: none;
    box-shadow: 0 8px 20px rgba(40, 31, 21, 0.04);
  }

  .location-mobile-filter-menu summary::-webkit-details-marker {
    display: none;
  }

  .location-mobile-filter-menu summary svg {
    width: 16px;
    height: 16px;
    color: var(--green);
  }

  .location-mobile-filter-menu summary span {
    min-width: 0;
    color: #2f291f;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.15;
  }

  .location-mobile-filter-menu summary em {
    color: #6a6258;
    font-size: 12px;
    font-style: normal;
    white-space: nowrap;
  }

  .location-mobile-filter-panel {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #e2d8cc;
    border-radius: 12px;
    background: #fffefa;
  }

  .location-mobile-menu-option {
    height: auto;
    min-height: 42px;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 12px;
    border: 1px solid #e3d9cd;
    border-radius: 10px;
    background: #fff;
    color: #443d35;
    font-size: 14px;
    text-decoration: none;
  }

  .location-mobile-menu-option svg {
    width: 16px;
    height: 16px;
    color: var(--green);
  }

  .location-mobile-menu-option small {
    margin-left: auto;
  }

  .location-mobile-menu-option.is-active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
    font-weight: 800;
  }

  .location-mobile-menu-option.is-active svg {
    color: #fff;
  }

  .location-filters .facet-filter-group {
    flex: 1 1 100%;
  }

  .location-filters .facet-filter-group strong {
    min-width: 100%;
  }

  .location-filters .facet-filter-panel {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 120px;
    width: auto;
    max-height: calc(100dvh - 150px);
    overflow: auto;
  }

  .location-cards,
  .related-guides-grid {
    grid-template-columns: 1fr;
  }

  .related-guides-head {
    align-items: start;
    flex-direction: column;
  }

  .card-strengths {
    grid-template-columns: 1fr;
  }

}

.breadcrumbs > a + a::before,
.breadcrumbs > a + span::before,
.breadcrumbs > span + a::before {
  content: "›";
  margin-right: 12px;
  color: #9b958b;
}

.breadcrumbs a,
.breadcrumbs span {
  color: inherit;
}

.region-page .location-cards {
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}

.region-page .stay-card {
  min-height: 344px;
  display: grid;
  grid-template-columns: minmax(360px, 470px) minmax(0, 1fr) 238px;
  align-items: stretch;
  content-visibility: auto;
  contain-intrinsic-size: 470px 420px;
  overflow: hidden;
  border: 1px solid #e5dccf;
  border-radius: 7px;
  background: #fffdf9;
  box-shadow: 0 8px 24px rgba(45, 34, 22, 0.04);
}

@supports (content-visibility: auto) {
  .region-page .stay-card {
    content-visibility: auto;
    contain-intrinsic-size: 344px 1000px;
  }
}

.region-page .stay-card.is-anchor-target {
  border-color: rgba(0, 88, 45, 0.5);
  box-shadow: 0 12px 30px rgba(0, 88, 45, 0.1);
}

.region-page .stay-media {
  position: relative;
  align-self: stretch;
  height: 100%;
  min-height: 471px;
  overflow: hidden;
  background: #fff;
}

.region-page .stay-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #fff url("/assets/logo-bulle.svg") center / 74px auto no-repeat;
  transition: opacity 180ms ease;
}

.region-page .stay-media.is-loaded::before {
  opacity: 0;
  pointer-events: none;
}

.region-page .stay-media picture,
.region-page .stay-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 471px;
}

.region-page .stay-media img {
  object-fit: cover;
  transition: opacity 180ms ease;
}

.region-page .stay-media.is-loading img {
  visibility: hidden;
  opacity: 0;
}

.region-page .stay-media.is-loading .stay-popular-label,
.region-page .stay-media.is-loading .stay-photos-cta,
.region-page .stay-media.is-loading .stay-card-badge {
  opacity: 0;
  pointer-events: none;
}

.region-page .stay-popular-label {
  position: absolute;
  z-index: 2;
  left: 14px;
  top: 14px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(49, 90, 54, 0.96);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(29, 51, 33, 0.16);
}

.region-page .stay-photos-cta,
.stay-photos-cta {
  position: absolute;
  z-index: 2;
  right: 14px;
  top: 14px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(49, 90, 54, 0.28);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(29, 51, 33, 0.12);
  cursor: pointer;
}

.stay-photos-cta:hover,
.stay-photos-cta:focus-visible {
  border-color: var(--green);
  background: #fffdf9;
  outline: none;
}

.stay-photos-cta[hidden] {
  display: none;
}

.stay-photos-cta svg {
  width: 15px;
  height: 15px;
  color: currentColor;
}

.region-page .stay-copy {
  min-width: 0;
  padding: 25px 28px 20px 34px;
}

.region-page .stay-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.region-page .stay-location {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: #5f5a53;
  font-size: 13px;
}

.region-page .stay-location svg {
  width: 16px;
  height: 16px;
  color: #53634e;
}

.region-page .stay-heading h3 {
  max-width: 650px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 500;
}

.region-page .stay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 0;
  color: #5f5a53;
  font-size: 13px;
}

.region-page .stay-meta > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.region-page .stay-meta > span + span {
  position: relative;
  padding-left: 16px;
}

.region-page .stay-meta > span + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: #d9d0c3;
}

.region-page .stay-meta svg {
  width: 16px;
  height: 16px;
  color: #53634e;
}

.region-page .stay-duration > span {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
}

.region-page .stay-duration small {
  color: #7a7268;
  font-size: 12px;
}

.region-page .stay-summary {
  min-height: 64px;
  margin-top: 18px;
  color: #55504a;
  font-size: 14px;
  line-height: 1.55;
  text-align: justify;
  text-wrap: wrap;
}

.region-page .stay-fit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.region-page .stay-fit-row span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid #e4dacd;
  border-radius: 999px;
  background: #fbfaf4;
  color: #244b2c;
  font-size: 12px;
  font-weight: 700;
}

.region-page .stay-fit-row .stay-fit-duration {
  gap: 6px;
  background: #edf2e8;
}

.region-page .stay-fit-row .stay-fit-duration small {
  color: #60735c;
  font-size: 11px;
  font-weight: 700;
}

.region-page .stay-fit-row .stay-fit-duration small::after {
  content: ":";
}

.region-page .stay-fit-row svg {
  width: 15px;
  height: 15px;
  color: #2d6839;
}

.region-page .stay-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5dccf;
  overflow: visible;
}

.region-page .stay-amenity {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: #4f5c4c;
  font-size: 13px;
  white-space: nowrap;
}

@media (min-width: 901px) {
  .region-page .stay-amenities {
    box-sizing: border-box;
    width: calc(100% + 204px);
    max-width: calc(100% + 204px);
    margin-right: -204px;
    padding-right: 0;
  }
}

@media (min-width: 1201px) and (max-width: 1500px) {
  .region-page .stay-card {
    grid-template-columns: minmax(300px, 320px) minmax(0, 1fr) 204px;
  }

  .region-page .stay-copy {
    padding-left: 28px;
    padding-right: 24px;
  }

  .region-page .stay-side {
    padding-right: 24px;
  }
}

.region-page .stay-fit-amenity {
  color: #244b2c;
  font-weight: 700;
}

.region-page .stay-amenities .stay-fit-duration {
  gap: 6px;
}

.region-page .stay-amenities .stay-fit-duration small {
  color: #60735c;
  font-size: 11px;
  font-weight: 700;
}

.region-page .stay-amenities .stay-fit-duration small::after {
  content: ":";
}

.region-page .stay-amenity svg {
  width: 19px;
  height: 19px;
  color: var(--green);
}

.region-page .stay-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 16px;
}

.region-page .stay-info-grid section {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid #e5dccf;
}

.region-page .stay-info-grid section:first-child {
  padding-left: 0;
  border-left: 0;
}

.region-page .stay-info-grid h4 {
  margin: 0 0 10px;
  color: #3d3934;
  font-size: 13px;
  font-weight: 800;
}

.region-page .stay-info-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5f5a53;
  font-size: 13px;
  line-height: 1.32;
}

.region-page .stay-info-grid li {
  position: relative;
  padding-left: 20px;
}

.region-page .stay-check-list li:not(.stay-more-item)::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}

.region-page .stay-dot-list li:not(.stay-more-item)::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
}

.region-page .stay-nearby-list li:has(svg)::before {
  content: none;
}

.region-page .stay-nearby-list li svg {
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 14px;
  height: 14px;
  color: var(--green);
}

.region-page .stay-info-grid li span {
  min-width: 0;
}

.region-page .stay-info-grid .stay-more-item {
  padding-left: 0;
}

.region-page .stay-info-grid .stay-more-item::before {
  content: none;
}

.stay-more-button {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border: 1px solid #d9ccbd;
  border-radius: 999px;
  background: #fbf7ef;
  color: var(--green);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.stay-more-button:hover,
.stay-more-button:focus-visible {
  border-color: var(--green);
  background: #edf2e8;
  outline: none;
}

.stay-info-modal[hidden] {
  display: none;
}

.stay-info-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.stay-info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 17, 0.45);
  backdrop-filter: blur(3px);
}

.stay-info-dialog {
  position: relative;
  width: min(520px, 100%);
  max-height: min(620px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid #d9ccbd;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(35, 27, 20, 0.22);
  padding: 30px;
}

.stay-info-dialog h2 {
  margin: 0 42px 20px 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: 0;
}

.stay-info-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid #d9ccbd;
  border-radius: 999px;
  background: #fffaf2;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.stay-info-modal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #3d3934;
  font-size: 15px;
  line-height: 1.4;
}

.stay-info-modal-list li {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 0 0 12px;
  border-bottom: 1px solid #e7ded1;
}

.stay-info-modal-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.stay-info-modal-list li::before {
  content: "\2713";
  color: var(--green);
  font-weight: 900;
}

.stay-info-modal-list li:has(svg)::before {
  content: none;
}

.stay-info-modal-list svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
  margin-top: 1px;
  color: var(--green);
}

.stay-modal-open {
  overflow: hidden;
}

.region-page .stay-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  padding: 31px 28px 22px 0;
}

.region-page .stay-rating {
  position: static;
  align-self: end;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 9px 16px 8px 14px;
  border: 1px solid #e4d9ca;
  border-radius: 10px;
  background: #fffdf9;
  color: var(--ink);
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(45, 34, 22, 0.05);
}

.region-page .stay-rating > span {
  order: 2;
  min-width: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  margin-left: -76px;
  padding: 31px 0 0;
  background: transparent;
  color: #5f665c;
  font-size: 10px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.region-page .stay-rating-logo {
  align-self: center;
  order: 1;
  width: 46px;
  height: 27px;
  margin: 0 12px 14px 0;
  display: block;
  object-fit: contain;
}

.region-page .stay-rating strong {
  min-width: 74px;
  order: 3;
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 12px;
  border-left: 1px solid #eadfd1;
  color: #070706;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}

.region-page .stay-side-bottom {
  display: grid;
  justify-items: stretch;
  gap: 16px;
}

.region-page .stay-price {
  justify-self: start;
  display: grid;
  gap: 2px;
  margin: 0;
  color: #5f5a53;
  white-space: normal;
}

.region-page .stay-price span {
  color: #5f5a53;
  font-size: 12px;
}

.region-page .stay-price strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1;
}

.region-page .stay-price small {
  margin-left: 4px;
  color: #5f5a53;
  font-size: 13px;
}

.region-page .stay-cta {
  border: 0;
  width: 100%;
  min-width: 204px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 5px;
  background: linear-gradient(180deg, #df6738, #cf552b);
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

@media (min-width: 1201px) {
  .region-page .stay-summary {
    box-sizing: border-box;
    width: calc(100% + 204px);
    max-width: calc(100% + 204px);
    margin-right: -204px;
    padding-right: 0;
  }
}

@media (max-width: 1200px) {
  .region-page .stay-card {
    grid-template-columns: 370px minmax(0, 1fr);
  }

  .region-page .stay-side {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 0 28px 22px 34px;
  }

  .region-page .stay-side-bottom {
    justify-self: end;
  }
}

@media (max-width: 900px) {
  .region-page .stay-card {
    grid-template-columns: 1fr;
  }

  .region-page .stay-media,
  .region-page .stay-media img {
    height: 245px;
    min-height: 245px;
  }

  .region-page .stay-copy {
    padding: 24px 18px 18px;
  }

  .region-page .stay-amenities {
    gap: 14px;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
  }

  .region-page .stay-heading h3 {
    font-size: 25px;
  }

  .region-page .stay-info-grid {
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    gap: 14px;
  }

  .region-page .stay-info-grid section {
    padding: 0 0 0 14px;
    border-left: 1px solid #e5dccf;
  }

  .region-page .stay-info-grid section:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .region-page .stay-side {
    display: grid;
    grid-column: auto;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 0 18px 20px;
  }

  .region-page .stay-rating {
    justify-self: start;
    min-height: 50px;
    padding: 8px 14px 7px 13px;
    gap: 11px;
  }

  .region-page .stay-rating > span {
    min-width: 58px;
    margin-left: -70px;
    padding: 29px 0 0;
    font-size: 9px;
  }

  .region-page .stay-rating-logo {
    width: 42px;
    height: 25px;
    margin: 0 12px 13px 0;
  }

  .region-page .stay-rating strong {
    min-width: 66px;
    padding-left: 11px;
    padding-right: 0;
    font-size: 18px;
  }

  .region-page .stay-side-bottom {
    width: 100%;
    display: contents;
    justify-self: stretch;
  }

  .region-page .stay-price {
    grid-column: 2;
    justify-self: end;
    text-align: right;
  }

  .region-page .stay-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
  }

  .region-page .breadcrumbs {
    max-width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    font-size: 12px;
    line-height: 1.25;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .region-page .breadcrumbs::-webkit-scrollbar {
    display: none;
  }

  .region-page .breadcrumbs a,
  .region-page .breadcrumbs span {
    flex: 0 0 auto;
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .region-page .breadcrumbs > a + a::before,
  .region-page .breadcrumbs > a + span::before,
  .region-page .breadcrumbs > span + a::before {
    margin: 0 8px;
  }
}

.breadcrumbs > a + a::before,
.breadcrumbs > a + span::before,
.breadcrumbs > span + a::before {
  content: "›";
  margin-right: 12px;
  color: #9b958b;
}

.breadcrumbs a,
.breadcrumbs span {
  color: inherit;
}
@media (max-width: 340px) {
  .region-page .stay-info-grid {
    grid-template-columns: 1fr;
  }

  .region-page .stay-info-grid section,
  .region-page .stay-info-grid section:first-child {
    padding: 0;
    border-left: 0;
  }
}

@media (max-width: 900px) {
  html,
  body,
  .region-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .region-page .region-topbar,
  .region-page .region-layout,
  .region-page .region-content,
  .region-page .location-filters-row,
  .region-page .location-filters,
  .region-page .location-mobile-filter-menus,
  .region-page .location-cards,
  .region-page .stay-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .region-page .region-content {
    padding-left: max(16px, env(safe-area-inset-left));
    padding-right: max(16px, env(safe-area-inset-right));
  }

  .region-page .department-pills {
    max-width: 100%;
  }

  .region-page .location-mobile-filter-menu summary,
  .region-page .archive-sort button {
    min-width: 0;
  }

  .region-page .location-mobile-filter-menu summary span,
  .region-page .location-mobile-filter-menu summary em,
  .region-page .archive-sort button span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .region-page .location-mobile-filter-menu summary em {
    max-width: 108px;
  }

  .region-page .stay-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .region-page .stay-media {
    width: 100%;
    height: 245px;
    min-height: 245px;
  }

  .region-page .stay-media img {
    display: block;
    width: 100%;
    height: 245px;
    min-height: 245px;
    object-fit: cover;
  }

  .region-page .stay-popular-label {
    left: 12px;
    top: 12px;
    max-width: calc(50% - 16px);
    white-space: nowrap;
  }

  .region-page .stay-photos-cta {
    right: 12px;
    top: 12px;
    max-width: calc(56% - 16px);
    white-space: nowrap;
    overflow: hidden;
  }

  .region-page .stay-photos-cta span {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .region-page .stay-copy,
  .region-page .stay-side {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .region-page .region-map-shell.is-map-expanded,
  .region-map-shell.is-map-expanded {
    height: 72vh !important;
  }

  .region-page .region-map-shell.is-map-expanded::after,
  .region-map-shell.is-map-expanded::after {
    opacity: 0;
  }

  .region-page .region-map-shell.is-map-expanded .region-map-toggle,
  .region-map-shell.is-map-expanded .region-map-toggle {
    display: none;
  }
}
