.property-page {
  --property-forest: #064f43;
  --property-forest-dark: #073b33;
  --property-orange: #f26b21;
  --property-cream: #f8f5ed;
  --property-ink: #15312c;
  --property-muted: #697571;
  --property-text-body: 1rem;
  --property-text-small: 0.875rem;
  background: #fff;
  color: var(--property-ink);
  font-family: var(--sans);
  font-size: var(--property-text-body);
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: clip;
}

.property-page h1,
.property-page h2,
.property-page h3 {
  color: var(--property-ink);
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.property-page button {
  font-family: inherit;
}

.property-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  gap: 24px;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  height: 58px;
  padding: 0 max(24px, calc((100vw - 1160px) / 2));
  position: relative;
  z-index: 80;
}

.property-header__logo {
  display: inline-flex;
  max-width: 100%;
  width: 180px;
}

.property-header__logo img {
  height: auto;
  width: 100%;
}

.property-header__logo .site-logo__on-dark {
  display: none;
}

.property-header__nav {
  align-self: stretch;
  display: flex;
  gap: clamp(22px, 3vw, 38px);
  justify-content: center;
}

.property-header__nav a {
  align-items: center;
  display: flex;
  font-size: 11px;
  position: relative;
  white-space: nowrap;
}

.property-header__nav a::after {
  background: var(--property-forest);
  bottom: 7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.property-header__nav a:hover::after,
.property-header__nav a.is-current::after {
  transform: scaleX(1);
}

.property-header__actions {
  align-items: center;
  display: flex;
  gap: 17px;
  justify-content: flex-end;
}

.property-header__language {
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  padding: 9px 0;
  white-space: nowrap;
}

.property-header__language span {
  font-size: 15px;
  margin-left: 5px;
}

.property-header__book {
  background: var(--property-forest);
  border-radius: 5px;
  color: #fff;
  font-family: var(--serif);
  font-size: 12px;
  min-width: 130px;
  padding: 11px 20px;
  text-align: center;
}

.property-header__menu {
  background: transparent;
  cursor: pointer;
  display: none;
  height: 38px;
  padding: 8px;
  width: 38px;
}

.property-header__menu span {
  background: currentColor;
  display: block;
  height: 1px;
  margin: 5px auto;
  width: 21px;
}

.property-shell {
  margin-inline: auto;
  max-width: 1160px;
  width: calc(100% - 48px);
}

.property-top-layout,
.property-overview-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 2.2fr) minmax(320px, 1fr);
}

.property-gallery-area {
  min-width: 0;
}

.property-gallery {
  background: #d9ddd9;
  border-radius: 8px;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.property-gallery__main {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: opacity 180ms ease, transform 550ms ease;
  width: 100%;
}

.property-gallery:hover .property-gallery__main {
  transform: scale(1.018);
}

.property-gallery__shade {
  background: linear-gradient(180deg, rgba(4, 19, 15, 0.45) 0%, transparent 25%, rgba(4, 20, 16, 0.3) 45%, rgba(4, 20, 16, 0.88) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.property-breadcrumbs {
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  gap: 10px;
  left: 31px;
  max-width: calc(100% - 150px);
  overflow: hidden;
  position: absolute;
  top: 11px;
  white-space: nowrap;
  z-index: 2;
}

.property-breadcrumbs strong {
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-gallery__actions {
  display: flex;
  gap: 7px;
  position: absolute;
  right: 12px;
  top: 13px;
  z-index: 3;
}

.property-gallery__actions button,
.property-related article > button {
  align-items: center;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 50%;
  color: #2c4841;
  cursor: pointer;
  display: flex;
  height: 34px;
  justify-content: center;
  padding: 0;
  width: 34px;
}

.property-gallery__actions svg,
.property-related article > button svg {
  height: 19px;
  width: 19px;
}

[data-property-favorite][aria-pressed="true"] {
  background: var(--property-forest) !important;
  color: #fff !important;
}

[data-property-favorite][aria-pressed="true"] svg {
  fill: #f59a72;
}

.property-gallery__identity {
  bottom: 72px;
  color: #fff;
  left: 31px;
  max-width: calc(100% - 62px);
  position: absolute;
  z-index: 2;
}

.property-gallery__identity h1 {
  color: #fff;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.04;
  margin: 0;
}

.property-gallery__identity > p {
  font-family: var(--serif);
  font-size: var(--property-text-body);
  line-height: 1.6;
  margin: 8px 0 12px;
}

.property-gallery__identity > div {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--property-text-small);
  gap: 8px 13px;
}

.property-gallery__identity > div > span {
  align-items: center;
  display: inline-flex;
}

.property-gallery__identity .heritage-icon {
  flex-shrink: 0;
  height: 14px;
  margin-right: 4px;
  width: 14px;
}

.property-gallery__identity a b {
  color: #ff9938;
  font-size: 14px;
}

.property-gallery__identity a small {
  font-size: inherit;
}

.property-gallery__identity em {
  background: rgba(236, 255, 249, 0.92);
  border-radius: 3px;
  color: #087362;
  font-style: normal;
  padding: 3px 6px;
}

.property-gallery__view-all {
  background: rgba(17, 29, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  bottom: 16px;
  color: #fff;
  cursor: pointer;
  font-size: var(--property-text-small);
  padding: 8px 10px;
  position: absolute;
  right: 13px;
  z-index: 3;
}

.property-gallery__arrow {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: var(--property-forest);
  cursor: pointer;
  display: flex;
  font-family: Arial, sans-serif;
  font-size: 24px;
  height: 36px;
  justify-content: center;
  opacity: 0;
  padding: 0 0 3px;
  position: absolute;
  top: 35%;
  transition: opacity 160ms ease;
  width: 36px;
  z-index: 3;
}

.property-gallery:hover .property-gallery__arrow {
  opacity: 1;
}

.property-gallery__arrow--previous { left: 12px; }
.property-gallery__arrow--next { right: 12px; }
.property-gallery__mobile-count { display: none; }

.property-thumbnails {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(var(--thumbnail-count, 5), minmax(0, 1fr));
  height: 79px;
  margin-top: 6px;
}

.property-thumbnail {
  background: #e6e6e2;
  border-radius: 4px;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.property-thumbnail::after {
  border: 2px solid transparent;
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.property-thumbnail.is-selected::after {
  border-color: var(--property-orange);
}

.property-thumbnail img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
  width: 100%;
}

.property-thumbnail:hover img {
  transform: scale(1.04);
}

.property-thumbnail > span {
  align-items: center;
  background: rgba(11, 30, 25, 0.66);
  color: #fff;
  display: flex;
  font-size: 18px;
  inset: 0;
  justify-content: center;
  position: absolute;
}

.property-anchor-nav {
  align-items: stretch;
  border-bottom: 1px solid #e5e9e6;
  display: flex;
  min-height: 52px;
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}

.property-anchor-nav::-webkit-scrollbar {
  display: none;
}

.property-anchor-nav a,
.property-anchor-nav button {
  align-items: center;
  background: transparent;
  color: #344a45;
  cursor: pointer;
  display: flex;
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  padding: 0 10px;
  position: relative;
  white-space: nowrap;
}

.property-anchor-nav a::after,
.property-anchor-nav button::after {
  background: var(--property-forest);
  bottom: 0;
  content: "";
  height: 2px;
  left: 10px;
  position: absolute;
  transform: scaleX(0);
  width: calc(100% - 20px);
}

.property-anchor-nav a:hover::after,
.property-anchor-nav a.is-current::after,
.property-anchor-nav button:hover::after {
  transform: scaleX(1);
}

.property-booking-column {
  margin-top: 11px;
  min-width: 0;
}

.property-booking-card {
  background: #fff;
  border: 1px solid #edf0ed;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(31, 55, 48, 0.11);
  padding: 16px 15px 14px;
}

.property-booking-card__price {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.property-booking-card__price > div {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.property-booking-card__price strong {
  color: #101d19;
  font-family: var(--serif);
  font-size: 23px;
}

.property-booking-card__price span {
  font-family: var(--serif);
  font-size: var(--property-text-small);
}

.property-booking-card__price em {
  background: #fff0e7;
  border-radius: 3px;
  color: var(--property-orange);
  font-size: var(--property-text-small);
  font-style: normal;
  padding: 5px 7px;
}

.property-booking-card__room {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #edf0ed;
  cursor: pointer;
  display: grid;
  gap: 4px 10px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 9px 0 0;
  padding: 0 0 7px;
  text-align: left;
  width: 100%;
}

.property-booking-card__room > span {
  color: var(--property-muted);
  font-size: var(--property-text-small);
  grid-column: 1;
}

.property-booking-card__room > strong {
  font-size: var(--property-text-body);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.property-booking-card__room > b {
  color: var(--property-orange);
  font-size: var(--property-text-small);
  font-weight: 600;
  grid-column: 2;
  grid-row: 1 / 3;
}

.property-booking-card__dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 8px;
}

.property-booking-card__dates label {
  border-bottom: 1px solid #e6eae7;
  cursor: pointer;
  display: grid;
  gap: 1px 3px;
  grid-template-columns: minmax(0, 1fr);
  padding: 6px 7px 9px 2px;
  position: relative;
}

.property-booking-card__dates label + label {
  border-left: 1px solid #e6eae7;
  padding-left: 11px;
}

.property-booking-card__dates label > span {
  color: var(--property-muted);
  font-size: var(--property-text-small);
  padding-right: 20px;
}

.property-booking-card__dates label > b {
  font-size: var(--property-text-body);
  font-weight: 500;
}

.property-booking-card__dates label > input {
  cursor: pointer;
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}

.property-booking-card__dates label:focus-within {
  outline: 2px solid var(--property-forest);
  outline-offset: 2px;
}

.property-booking-card__notice {
  color: var(--property-forest);
  font-size: var(--property-text-small);
  line-height: 1.5;
}

.property-booking-card__notice:empty {
  display: none;
}

.property-booking-card__dates .heritage-icon {
  height: 15px;
  position: absolute;
  right: 5px;
  top: 9px;
  width: 15px;
}

.property-booking-card__guests {
  align-items: center;
  border-bottom: 1px solid #e6eae7;
  display: grid;
  gap: 8px;
  grid-template-columns: 18px minmax(0, 1fr) auto;
  padding: 8px 3px;
}

.property-booking-card__guests > .heritage-icon {
  height: 17px;
  width: 17px;
}

.property-booking-card__guests > span {
  display: flex;
  flex-direction: column;
}

.property-booking-card__guests small {
  color: var(--property-muted);
  font-size: var(--property-text-small);
}

.property-booking-card__guests select {
  appearance: none;
  background: transparent;
  border: 0;
  font-size: var(--property-text-body);
  font-weight: 600;
  outline: 0;
}

.property-booking-card__guests > b {
  font-size: var(--property-text-small);
}

.property-booking-card__submit {
  background: var(--property-orange);
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-family: var(--serif) !important;
  font-size: var(--property-text-body);
  margin-top: 11px;
  min-height: 48px;
  transition: background-color 180ms ease, transform 180ms ease;
  width: 100%;
}

.property-booking-card__submit:hover {
  background: #dc5917;
  transform: translateY(-1px);
}

.property-booking-card__submit:disabled {
  background: #a7aeaa;
  cursor: not-allowed;
}

.property-booking-card ul {
  display: grid;
  gap: 4px;
  list-style: none;
  margin: 12px 2px 0;
  padding: 0;
}

.property-booking-card li {
  color: #32564e;
  font-family: var(--serif);
  font-size: var(--property-text-small);
}

.property-booking-card--empty h2 {
  font-size: 20px;
  margin: 0;
}

.property-booking-card--empty p {
  color: var(--property-muted);
  font-size: var(--property-text-body);
  line-height: 1.6;
}

.property-support-card {
  align-items: flex-start;
  background: #f7faf8;
  display: grid;
  gap: 12px;
  grid-template-columns: 40px minmax(0, 1fr);
  margin-top: 14px;
  padding: 14px 13px;
}

.property-support-card > span {
  align-items: center;
  background: var(--property-forest);
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 18px;
  height: 39px;
  justify-content: center;
  width: 39px;
}

.property-support-card strong {
  font-family: var(--serif);
  font-size: var(--property-text-body);
}

.property-support-card p {
  color: #527068;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  line-height: 1.45;
  margin: 2px 0 7px;
}

.property-support-card a {
  border: 1px solid #4c796f;
  border-radius: 18px;
  color: var(--property-forest);
  display: block;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  padding: 5px 10px;
  text-align: center;
}

.property-overview-layout {
  align-items: start;
  margin-top: 14px;
  scroll-margin-top: 25px;
}

.property-overview {
  padding: 0 22px;
}

.property-overview > h2 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
}

.property-overview > h3 {
  font-size: var(--property-text-body);
  letter-spacing: 0;
  margin: 4px 0 8px;
}

.property-overview__body {
  display: grid;
  gap: 27px;
  grid-template-columns: minmax(0, 1fr) 180px;
}

.property-overview__copy > p {
  color: #3f514c;
  font-family: var(--serif);
  font-size: var(--property-text-body);
  line-height: 1.7;
  margin: 0;
}

.property-overview__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  list-style: none;
  margin: 9px 0 0;
  padding: 0;
}

.property-overview__copy li {
  background: #f3f6f3;
  border-radius: 12px;
  color: #4d635d;
  font-size: var(--property-text-small);
  padding: 4px 7px;
}

.property-overview blockquote {
  background: linear-gradient(135deg, #fffefa, #f4f6ed);
  margin: 0;
  min-height: 135px;
  overflow: hidden;
  padding: 13px 17px;
  position: relative;
  text-align: center;
}

.property-overview blockquote > span {
  color: #fac9a7;
  display: block;
  font-family: Georgia, serif;
  font-size: 36px;
  height: 22px;
  line-height: 1;
  text-align: left;
}

.property-overview blockquote p {
  color: #496c63;
  font-family: var(--script);
  font-size: 20px;
  line-height: 1.15;
  margin: 3px 0 10px;
  transform: rotate(-3deg);
}

.property-overview blockquote footer {
  color: #396157;
  font-family: var(--serif);
  font-size: var(--property-text-small);
}

.property-map-card {
  min-width: 0;
  scroll-margin-top: 20px;
}

.property-map-card__preview {
  background:
    linear-gradient(24deg, transparent 46%, rgba(255, 255, 255, 0.96) 47% 52%, transparent 53%),
    linear-gradient(113deg, transparent 45%, rgba(207, 215, 207, 0.8) 46% 49%, transparent 50%),
    linear-gradient(164deg, transparent 43%, rgba(255, 255, 255, 0.94) 44% 49%, transparent 50%),
    #e8ece6;
  display: block;
  height: 99px;
  margin: 0 !important;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.property-map-card__preview::before,
.property-map-card__preview::after {
  background: rgba(185, 205, 184, 0.66);
  border-radius: 50%;
  content: "";
  position: absolute;
}

.property-map-card__preview::before {
  height: 72px;
  left: -18px;
  top: -20px;
  width: 92px;
}

.property-map-card__preview::after {
  bottom: -36px;
  height: 80px;
  right: -12px;
  width: 125px;
}

.property-map-card__preview > span {
  background: var(--property-orange);
  border: 3px solid #fff;
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 2px 7px rgba(40, 55, 47, 0.24);
  height: 19px;
  left: 60%;
  position: absolute;
  top: 32%;
  transform: rotate(-45deg);
  width: 19px;
  z-index: 2;
}

.property-map-card__preview > b {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 3px;
  box-shadow: 0 2px 7px rgba(39, 55, 47, 0.14);
  color: #3c534c;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  left: 46%;
  max-width: 48%;
  overflow: hidden;
  padding: 4px 6px;
  position: absolute;
  text-overflow: ellipsis;
  top: 59%;
  white-space: nowrap;
  z-index: 2;
}

.property-map-card > a {
  color: var(--property-forest);
  display: inline-flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  font-weight: 600;
  gap: 7px;
  margin: 8px 7px 5px;
}

.property-map-card > p {
  align-items: flex-start;
  border-top: 1px solid #edf0ed;
  color: #334f48;
  display: flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  gap: 6px;
  line-height: 1.6;
  margin: 0;
  padding: 6px 7px 0;
}

.property-map-card .heritage-icon {
  flex: 0 0 13px;
  height: 13px;
  width: 13px;
}

.property-map-card > button {
  background: transparent;
  color: var(--property-forest);
  cursor: pointer;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  margin: 7px;
  padding: 0;
}

.property-facility-strip {
  border: 1px solid #e9ece9;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 15px 22px 0;
  min-height: 55px;
  scroll-margin-top: 15px;
  scrollbar-width: none;
}

.property-facility-strip::-webkit-scrollbar,
.property-related__grid::-webkit-scrollbar {
  display: none;
}

.property-facility-strip > span {
  align-items: center;
  color: #264a42;
  display: flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  gap: 8px;
  justify-content: center;
  min-width: 0;
  padding: 8px;
  text-align: center;
}

.property-facility-strip > span + span {
  border-left: 1px solid #e9ece9;
}

.property-facility-strip i {
  color: var(--property-forest);
  flex: 0 0 23px;
  font-size: 21px;
}

.property-story {
  align-items: stretch;
  display: grid;
  gap: 25px;
  grid-template-columns: 330px minmax(0, 1fr) 150px;
  margin: 15px 22px 0;
  min-height: 144px;
  scroll-margin-top: 15px;
}

.property-story > img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.property-story > div {
  align-self: center;
}

.property-story > div > span {
  color: var(--property-forest);
  font-family: var(--serif);
  font-size: var(--property-text-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.property-story h2 {
  font-size: 18px;
  line-height: 1.2;
  margin: 5px 0 7px;
}

.property-story > div > p {
  color: #465d57;
  font-family: var(--serif);
  font-size: var(--property-text-body);
  line-height: 1.7;
  margin: 0;
}

.property-story > div > a {
  border-bottom: 1px solid currentColor;
  color: var(--property-forest);
  display: inline-flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  gap: 14px;
  margin-top: 7px;
  padding-bottom: 2px;
}

.property-story > blockquote {
  align-self: center;
  border-left: 1px solid #e2e6e3;
  margin: 0;
  padding-left: 17px;
  text-align: center;
}

.property-story > blockquote p {
  color: #496c63;
  font-family: var(--script);
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
  transform: rotate(-4deg);
}

.property-story > blockquote small {
  color: #63736f;
  display: block;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  margin-top: 14px;
}

.property-related {
  margin: 25px 22px 22px;
}

.property-reviews {
  border-top: 1px solid #e3e8e4;
  margin: 25px 22px;
  padding-top: 20px;
}

.property-reviews h2 {
  font-size: 24px;
}

.property-reviews p {
  font-size: var(--property-text-body);
}

.property-reviews strong {
  color: var(--property-orange);
}

.property-related > header h2 {
  font-size: 26px;
  line-height: 1.15;
  margin: 0;
}

.property-related > header p {
  color: #586b66;
  font-family: var(--serif);
  font-size: var(--property-text-body);
  margin: 3px 0 10px;
}

.property-related__grid {
  display: grid;
  gap: 13px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.property-related article {
  border: 1px solid #e3e8e4;
  min-width: 0;
  padding-bottom: 9px;
  position: relative;
}

.property-related__image {
  aspect-ratio: 1.86;
  display: block;
  overflow: hidden;
}

.property-related__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
  width: 100%;
}

.property-related article:hover .property-related__image img {
  transform: scale(1.035);
}

.property-related article > button {
  height: 29px;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 29px;
}

.property-related article > button svg {
  height: 17px;
  width: 17px;
}

.property-related article h3 {
  font-size: 15px;
  line-height: 1.2;
  margin: 7px 11px 4px;
}

.property-related article > p {
  align-items: center;
  color: #426057;
  display: flex;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  gap: 4px;
  margin: 0 11px;
}

.property-related article > p svg {
  height: 11px;
  width: 11px;
}

.property-related article > small {
  color: #6d7975;
  display: block;
  font-family: var(--serif);
  font-size: var(--property-text-small);
  line-height: 1.4;
  margin: 6px 11px;
}

.property-related article > footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: space-between;
  margin: 8px 11px 0;
}

.property-related article > footer strong {
  color: #192f29;
  font-family: var(--serif);
  font-size: var(--property-text-body);
}

.property-related article > footer a {
  border: 1px solid #3d6b60;
  border-radius: 15px;
  color: var(--property-forest);
  font-family: var(--serif);
  font-size: var(--property-text-small);
  padding: 5px 9px;
  white-space: nowrap;
}

.property-messages {
  left: 50%;
  max-width: 620px;
  position: fixed;
  top: 70px;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  z-index: 250;
}

.property-messages p {
  background: #fff0ed;
  border: 1px solid #edc2b7;
  border-radius: 8px;
  color: #9c3527;
  margin: 0;
  padding: 13px 16px;
}

.property-room-picker,
.room-detail-modal,
.property-policy-drawer {
  background: transparent;
  border: 0;
  color: inherit;
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: fixed;
  width: 100%;
}

.property-room-picker { z-index: 240; }
.room-detail-modal { z-index: 300; }
.property-policy-drawer { z-index: 320; }

[data-property-dialog]:not([open]) {
  display: none;
}

[data-property-dialog]::backdrop {
  background: rgba(7, 24, 20, 0.68);
}

.property-room-picker__backdrop,
.room-detail-modal__backdrop,
.property-policy-drawer__backdrop {
  background: transparent;
  cursor: default;
  inset: 0;
  position: absolute;
  width: 100%;
}

.property-room-picker__dialog {
  background: #f8f7f2;
  border-radius: 12px;
  left: 50%;
  max-height: calc(100dvh - 60px);
  max-width: 1050px;
  overflow-y: auto;
  padding: 0 25px 25px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, calc(-50% + 16px));
  transition: transform 230ms ease;
  width: calc(100% - 48px);
}

.property-room-picker[open] .property-room-picker__dialog {
  transform: translate(-50%, -50%);
}

.property-room-picker__dialog > header {
  align-items: center;
  background: rgba(248, 247, 242, 0.97);
  display: flex;
  justify-content: space-between;
  padding: 22px 0 17px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.property-room-picker__dialog > header span {
  color: var(--property-orange);
  font-size: var(--property-text-small);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.property-room-picker__dialog > header h2 {
  font-size: 28px;
  margin: 2px 0 0;
}

.property-room-picker__dialog > header button,
.room-detail-modal__close,
.property-policy-drawer__header > button {
  align-items: center;
  background: #edf0ed;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.property-room-list {
  display: grid;
  gap: 13px;
}

.property-room-card {
  background: #fff;
  border: 1px solid #e2e6e3;
  display: grid;
  grid-template-columns: minmax(160px, 0.9fr) minmax(0, 1.5fr) minmax(180px, 0.8fr);
  min-height: 190px;
}

.property-room-card__image {
  min-height: 190px;
  overflow: hidden;
  position: relative;
}

.property-room-card__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  transition: transform 350ms ease;
  width: 100%;
}

.property-room-card:hover .property-room-card__image img {
  transform: scale(1.035);
}

.property-room-card__copy {
  padding: 22px;
}

.property-room-card__copy h3 {
  font-size: 21px;
  margin: 0;
}

.property-room-card__copy > p {
  color: var(--property-muted);
  font-size: var(--property-text-body);
  line-height: 1.55;
}

.property-room-card__copy > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.property-room-card__copy > div span {
  background: #f3f6f3;
  border-radius: 14px;
  color: #5f716c;
  font-size: var(--property-text-small);
  padding: 5px 8px;
}

.property-room-card__copy > button {
  background: transparent;
  color: var(--property-orange);
  cursor: pointer;
  font-size: var(--property-text-small);
  margin-top: 15px;
  padding: 0;
  text-decoration: underline;
}

.property-room-card__price {
  align-items: flex-end;
  border-left: 1px solid #e5e8e5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  text-align: right;
}

.property-room-card__price > span,
.property-room-card__price > small {
  color: #7c8985;
  font-size: var(--property-text-small);
}

.property-room-card__price > strong {
  color: var(--property-orange);
  font-family: var(--serif);
  font-size: 20px;
  margin-top: 3px;
}

.property-room-card__price > em {
  color: var(--property-orange);
  font-size: var(--property-text-small);
  font-style: normal;
  margin-top: 7px;
}

.property-room-card__price > a,
.room-detail-modal__copy > footer > a {
  background: var(--property-orange);
  border-radius: 19px;
  color: #fff;
  font-size: var(--property-text-small);
  margin-top: 14px;
  padding: 10px 17px;
}

.property-room-card__price > b {
  color: #8a928f;
  font-size: var(--property-text-small);
  margin-top: 14px;
}

.room-detail-modal {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px;
}

.room-detail-modal__dialog {
  background: #fff;
  border-radius: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  max-height: calc(100dvh - 60px);
  max-width: 1040px;
  overflow: hidden;
  position: relative;
  transform: translateY(15px);
  transition: transform 230ms ease;
  width: 100%;
  z-index: 1;
}

.room-detail-modal[open] .room-detail-modal__dialog {
  transform: translateY(0);
}

.room-detail-modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
}

.room-detail-modal__media {
  background: #14201d;
  display: grid;
  gap: 4px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 620px;
  position: relative;
}

.room-detail-modal__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room-detail-modal__media img:first-child { grid-row: 1 / -1; }
.room-detail-modal__media img:only-of-type { grid-column: 1 / -1; }
.room-detail-modal__media img:nth-child(n + 4) { display: none; }

.room-detail-modal__media > span {
  background: rgba(7, 25, 20, 0.78);
  border-radius: 15px;
  bottom: 13px;
  color: #fff;
  font-size: var(--property-text-small);
  left: 13px;
  padding: 7px 10px;
  position: absolute;
}

.room-detail-modal__copy {
  overflow-y: auto;
  padding: 38px 27px 0;
}

.room-detail-modal__copy > small {
  color: var(--property-orange);
  font-size: var(--property-text-small);
  letter-spacing: 0.1em;
}

.room-detail-modal__copy h2 {
  font-size: 27px;
  margin: 5px 42px 10px 0;
}

.room-detail-modal__copy > p,
.room-detail-modal__policies p {
  color: var(--property-muted);
  font-size: var(--property-text-body);
  line-height: 1.6;
}

.room-detail-modal__facts {
  border-bottom: 1px solid #e4e8e5;
  border-top: 1px solid #e4e8e5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
  padding: 10px 0;
}

.room-detail-modal__facts span {
  color: #84908c;
  display: flex;
  flex-direction: column;
  font-size: var(--property-text-small);
  padding: 5px;
}

.room-detail-modal__facts b {
  color: #314b44;
  font-size: var(--property-text-body);
}

.room-detail-modal__copy h3 {
  font-size: 14px;
  margin: 17px 0 9px;
}

.room-detail-modal__amenities {
  display: grid;
  gap: 12px;
}

.room-detail-modal__amenities h4 {
  color: var(--property-muted);
  font-size: var(--property-text-small);
  margin: 0 0 7px;
  text-transform: uppercase;
}

.room-detail-modal__amenities ul {
  display: grid;
  gap: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.room-detail-modal__amenities li {
  align-items: center;
  color: #5a6f69;
  display: flex;
  font-size: var(--property-text-small);
  gap: 7px;
}

.room-detail-modal__amenities i {
  color: var(--property-orange);
  flex: 0 0 18px;
}

.room-detail-modal__policies {
  border-top: 1px solid #e4e8e5;
  margin-top: 18px;
}

.room-detail-modal__copy > footer {
  align-items: center;
  background: #fff;
  border-top: 1px solid #e3e7e4;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin: 22px -27px 0;
  padding: 14px 27px;
  position: sticky;
}

.room-detail-modal__copy > footer > div {
  display: flex;
  flex-direction: column;
}

.room-detail-modal__copy > footer span,
.room-detail-modal__copy > footer small {
  color: #7f8a86;
  font-size: var(--property-text-small);
}

.room-detail-modal__copy > footer strong {
  color: var(--property-orange);
  font-family: var(--serif);
  font-size: 19px;
}

.property-policy-drawer {
  display: flex;
  justify-content: flex-end;
}

.property-policy-drawer__panel {
  background: #fff;
  box-shadow: -15px 0 45px rgba(8, 25, 21, 0.2);
  height: 100dvh;
  max-width: 560px;
  overflow-y: auto;
  position: relative;
  transform: translateX(100%);
  transition: transform 280ms ease;
  width: min(560px, calc(100vw - 28px));
  z-index: 1;
}

.property-policy-drawer[open] .property-policy-drawer__panel {
  transform: translateX(0);
}

.property-policy-drawer__header {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #e2e7e3;
  display: flex;
  justify-content: space-between;
  padding: 18px 20px 16px 23px;
  position: sticky;
  top: 0;
  z-index: 2;
}

.property-policy-drawer__header h2 {
  font-size: 21px;
  margin: 0;
}

.property-policy-drawer__header p {
  color: var(--property-muted);
  font-size: var(--property-text-small);
  margin: 4px 20px 0 0;
}

.property-policy-drawer__content {
  padding: 24px 23px 40px;
}

.property-policy-drawer__content section + section {
  margin-top: 25px;
}

.property-policy-drawer__content section > h3 {
  font-size: 18px;
  margin: 0 0 12px;
}

.property-policy-drawer details {
  border: 1px solid #e1e6e2;
  border-radius: 7px;
  overflow: hidden;
}

.property-policy-drawer details + details {
  margin-top: 10px;
}

.property-policy-drawer summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: var(--property-text-body);
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  min-height: 48px;
  padding: 12px 14px;
}

.property-policy-drawer summary::-webkit-details-marker { display: none; }
.property-policy-drawer summary::after { color: var(--property-orange); content: "+"; font-size: 17px; }
.property-policy-drawer details[open] summary::after { content: "−"; }

.property-policy-drawer details > div {
  border-top: 1px solid #e8ece9;
  color: #5e716b;
  font-size: var(--property-text-body);
  line-height: 1.65;
  padding: 13px 14px;
}

.property-policy-drawer details p { margin: 0; }
.property-policy-drawer details ul { margin: 0; padding-left: 18px; }
.property-policy-drawer details li + li { margin-top: 6px; }

.property-lightbox {
  background: rgba(5, 17, 14, 0.96);
  border: 0;
  color: #fff;
  height: 100dvh;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 50px 80px;
  width: 100vw;
}

.property-lightbox::backdrop {
  background: rgba(5, 17, 14, 0.96);
}

.property-lightbox[open] {
  display: grid;
  place-items: center;
}

.property-lightbox figure {
  display: grid;
  height: 100%;
  margin: 0;
  max-width: 1200px;
  place-items: center;
  width: 100%;
}

.property-lightbox figure img {
  max-height: calc(100dvh - 110px);
  max-width: 100%;
  object-fit: contain;
}

.property-lightbox figcaption {
  bottom: 18px;
  font-size: var(--property-text-small);
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
}

.property-lightbox__close,
.property-lightbox__arrow {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  position: fixed;
  z-index: 2;
}

.property-lightbox__close {
  font-size: 27px;
  height: 42px;
  right: 22px;
  top: 18px;
  width: 42px;
}

.property-lightbox__arrow {
  font-family: Arial, sans-serif;
  font-size: 32px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
}

.property-lightbox__arrow--previous { left: 20px; }
.property-lightbox__arrow--next { right: 20px; }
.property-mobile-booking { display: none; }

@media (min-width: 681px) {
  .property-page .reference-footer {
    padding: 24px max(24px, calc((100vw - 1160px) / 2)) 0;
  }

  .property-page .reference-footer__main {
    grid-template-columns: 1.8fr 0.82fr 0.98fr 1.08fr 0.95fr;
    padding-bottom: 12px;
  }

  .property-page .reference-footer__logo {
    margin-bottom: 9px;
    width: 140px;
  }

  .property-page .reference-footer__brand > p,
  .property-page .reference-footer__column > a,
  .property-page .reference-footer__column > span {
    font-size: var(--property-text-small);
  }

  .property-page .reference-footer__column,
  .property-page .reference-footer__note {
    margin-top: 5px;
  }

  .property-page .reference-footer__column {
    gap: 3px;
    padding-inline: 22px;
  }

  .property-page .reference-footer__note p {
    font-size: 18px;
  }

  .property-page .reference-footer__bottom {
    font-size: var(--property-text-small);
    padding: 9px 0 11px;
  }
}

@media (max-width: 1000px) {
  .property-header {
    gap: 14px;
    grid-template-columns: 160px minmax(0, 1fr) auto;
  }

  .property-header__nav { gap: 18px; }
  .property-header__actions { gap: 10px; }
  .property-header__book { min-width: 105px; }

  .property-overview__body {
    grid-template-columns: 1fr;
  }

  .property-overview blockquote,
  .property-story > blockquote {
    display: none;
  }

  .property-story {
    gap: 17px;
    grid-template-columns: 250px minmax(0, 1fr);
  }
}

@media (max-width: 850px) {
  .property-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-inline: 18px;
  }

  .property-header__nav,
  .property-header__language {
    display: none;
  }

  .property-header__menu {
    display: block;
  }

  .property-shell {
    width: calc(100% - 28px);
  }

  .property-top-layout,
  .property-overview-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .property-gallery__identity {
    max-width: calc(100% - 62px);
  }

  .property-overview {
    padding-inline: 8px;
  }

  .property-facility-strip,
  .property-story,
  .property-related {
    margin-inline: 8px;
  }

}

@media (max-width: 680px) {
  .property-header {
    height: 64px;
    padding-inline: 14px;
  }

  .property-header__logo {
    width: 155px;
  }

  .property-header__actions {
    gap: 5px;
  }

  .property-header__book {
    font-size: 11px;
    min-width: 82px;
    padding: 9px 10px;
  }

  .property-shell {
    width: 100%;
  }

  .property-top-layout,
  .property-overview-layout {
    display: block;
  }

  .property-gallery {
    border-radius: 0;
    height: min(96vw, 390px);
  }

  .property-breadcrumbs {
    left: 16px;
    max-width: calc(100% - 120px);
    top: 15px;
  }

  .property-gallery__actions {
    right: 14px;
  }

  .property-gallery__identity {
    bottom: 60px;
    left: 18px;
    max-width: calc(100% - 36px);
  }

  .property-gallery__identity h1 {
    font-size: 29px;
  }

  .property-gallery__identity > p {
    font-size: var(--property-text-body);
    max-width: 100%;
  }

  .property-gallery__view-all {
    display: none;
  }

  .property-gallery__arrow {
    display: none;
  }

  .property-gallery__mobile-count {
    background: rgba(8, 25, 21, 0.6);
    border-radius: 13px;
    bottom: 15px;
    color: #fff;
    display: block;
    font-size: var(--property-text-small);
    padding: 5px 9px;
    position: absolute;
    right: 15px;
    z-index: 3;
  }

  .property-thumbnails {
    gap: 5px;
    height: 74px;
    margin: 6px 14px 0;
    overflow-x: auto;
  }

  .property-anchor-nav {
    justify-content: flex-start;
    margin-top: 2px;
    padding-inline: 8px;
  }

  .property-anchor-nav a,
  .property-anchor-nav button {
    font-size: var(--property-text-small);
    padding-inline: 12px;
  }

  .property-booking-column {
    margin: 17px 16px 0;
  }

  .property-booking-card {
    padding: 18px 14px;
  }

  .property-booking-card__price strong {
    font-size: 27px;
  }

  .property-booking-card__room > strong,
  .property-booking-card__dates label > b,
  .property-booking-card__guests select {
    font-size: var(--property-text-body);
  }

  .property-booking-card__room > span,
  .property-booking-card__dates label > span,
  .property-booking-card__guests small {
    font-size: var(--property-text-small);
  }

  .property-booking-card__submit {
    min-height: 48px;
  }

  .property-booking-card li {
    font-size: var(--property-text-small);
  }

  .property-support-card {
    display: none;
  }

  .property-overview-layout {
    margin-top: 32px;
    padding: 0 18px;
  }

  .property-overview {
    padding: 0;
  }

  .property-overview > h2 {
    font-size: 28px;
  }

  .property-overview > h3 {
    font-size: var(--property-text-body);
  }

  .property-overview__copy > p {
    font-size: var(--property-text-body);
    line-height: 1.7;
  }

  .property-overview__copy ul {
    gap: 7px;
    margin-top: 15px;
  }

  .property-overview__copy li {
    font-size: var(--property-text-small);
    padding: 6px 9px;
  }

  .property-map-card {
    margin-top: 25px;
  }

  .property-map-card iframe {
    height: 190px;
  }

  .property-map-card__preview {
    height: 165px;
  }

  .property-map-card > a,
  .property-map-card > p,
  .property-map-card > button {
    font-size: var(--property-text-small);
  }

  .property-facility-strip {
    display: flex;
    margin: 24px 18px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .property-facility-strip > span {
    flex: 0 0 145px;
    font-size: var(--property-text-small);
    scroll-snap-align: start;
  }

  .property-story {
    display: block;
    margin: 27px 18px 0;
  }

  .property-story > img {
    height: 220px;
  }

  .property-story > div {
    padding-top: 18px;
  }

  .property-story > div > span {
    font-size: var(--property-text-small);
  }

  .property-story h2 {
    font-size: 25px;
  }

  .property-story > div > p {
    font-size: var(--property-text-body);
    line-height: 1.65;
  }

  .property-story > div > a {
    font-size: var(--property-text-small);
    margin-top: 14px;
  }

  .property-related {
    margin: 38px 18px 30px;
  }

  .property-related > header h2 {
    font-size: 28px;
  }

  .property-related > header p {
    font-size: var(--property-text-body);
    margin-bottom: 15px;
  }

  .property-related__grid {
    display: flex;
    margin-right: -18px;
    overflow-x: auto;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
  }

  .property-related__grid article {
    flex: 0 0 82vw;
    scroll-snap-align: start;
  }

  .property-related article h3 {
    font-size: 18px;
  }

  .property-related article > p,
  .property-related article > small {
    font-size: var(--property-text-small);
  }

  .property-related article > footer strong {
    font-size: var(--property-text-body);
  }

  .property-related article > footer a {
    font-size: var(--property-text-small);
  }

  .property-room-picker__dialog {
    border-radius: 12px 12px 0 0;
    bottom: 0;
    left: 0;
    max-height: calc(100dvh - 20px);
    padding: 0 16px 20px;
    top: auto;
    transform: translateY(100%);
    width: 100%;
  }

  .property-room-picker[open] .property-room-picker__dialog {
    transform: translateY(0);
  }

  .property-room-card {
    display: block;
  }

  .property-room-card__image {
    height: 190px;
  }

  .property-room-card__price {
    align-items: center;
    border-left: 0;
    border-top: 1px solid #e5e8e5;
    display: grid;
    grid-template-columns: 1fr auto;
    text-align: left;
  }

  .property-room-card__price > span,
  .property-room-card__price > strong,
  .property-room-card__price > small,
  .property-room-card__price > em {
    grid-column: 1;
  }

  .property-room-card__price > a,
  .property-room-card__price > b {
    grid-column: 2;
    grid-row: 1 / 5;
    margin: 0;
  }

  .room-detail-modal {
    align-items: flex-end;
    padding: 0;
  }

  .room-detail-modal__dialog {
    border-radius: 12px 12px 0 0;
    grid-template-columns: 1fr;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .room-detail-modal__media {
    min-height: 270px;
  }

  .room-detail-modal__copy {
    overflow: visible;
    padding: 28px 20px 0;
  }

  .room-detail-modal__copy > footer {
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .property-policy-drawer__panel {
    max-width: none;
    width: 100%;
  }

  .property-lightbox {
    padding: 55px 15px;
  }

  .property-lightbox__arrow {
    height: 40px;
    width: 40px;
  }

  .property-lightbox__arrow--previous { left: 8px; }
  .property-lightbox__arrow--next { right: 8px; }

  .property-mobile-booking {
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    border-top: 1px solid #dfe5e1;
    bottom: 0;
    box-shadow: 0 -6px 20px rgba(19, 43, 35, 0.08);
    display: flex;
    justify-content: space-between;
    left: 0;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 120;
  }

  .property-mobile-booking > div {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
  }

  .property-mobile-booking small {
    color: #7d8985;
    flex-basis: 100%;
    font-size: var(--property-text-small);
  }

  .property-mobile-booking strong {
    color: var(--property-orange);
    font-family: var(--serif);
    font-size: 19px;
  }

  .property-mobile-booking span {
    font-size: var(--property-text-small);
  }

  .property-mobile-booking button {
    background: var(--property-orange);
    border-radius: 5px;
    color: #fff;
    font-size: var(--property-text-body);
    min-height: 40px;
    padding: 0 18px;
  }

  .property-page .reference-footer {
    padding-bottom: 100px;
  }
}

@media (max-width: 390px) {
  .property-header__logo {
    width: 128px;
  }

  .property-header__book {
    min-width: 74px;
  }

  .property-gallery__identity h1 {
    font-size: 26px;
  }

  .property-gallery__identity em {
    display: none;
  }
}
