:root {
  --ink: #222222;
  --muted: #717171;
  --soft: #f7f7f7;
  --line: #e6e6e6;
  --white: #ffffff;
  --coral: #ff385c;
  --coral-dark: #e51d53;
  --booking: #003b95;
  --shell: min(1160px, calc(100% - 48px));
  --shadow: 0 12px 34px rgba(0, 0, 0, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #fbfaf8;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
.brand,
.button,
.platform-card strong {
  font-family: "DM Sans", sans-serif;
}

h1,
h2,
h3 {
  letter-spacing: -.045em;
}

h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4.5vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
}

p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
}

.site-header {
  position: relative;
  display: grid;
  width: var(--shell);
  min-height: 76px;
  margin: 16px auto;
  padding: 8px 10px 8px 16px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid rgba(227, 222, 215, .9);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(38, 31, 27, .07);
  backdrop-filter: blur(16px);
}

.site-header::after {
  display: none;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -.025em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid #ebe7e1;
  border-radius: 999px;
  background: #f5f3f0;
}

.nav a {
  color: inherit;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: #4d4945;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.nav a:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 5px 14px rgba(38, 31, 27, .09);
  transform: translateY(-1px);
}

.header-actions {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
}

.mobile-location-link {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.platform-card:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 0 10px 0 20px;
  border-radius: 999px;
}

.button-dark {
  background: linear-gradient(135deg, #ff385c, #f4255c);
  color: var(--white);
  box-shadow: 0 9px 20px rgba(255, 56, 92, .23);
}

.button-dark:hover {
  background: linear-gradient(135deg, #f83257, #df164c);
  box-shadow: 0 12px 25px rgba(255, 56, 92, .3);
}

.button-dark span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  font-size: .78rem;
}

.button-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero {
  position: relative;
  width: var(--shell);
  min-height: 630px;
  margin: 0 auto;
  border: 1px solid #e9e5df;
  border-radius: 28px;
  background: #f6f3ef;
  color: var(--ink);
  box-shadow: 0 22px 65px rgba(38, 31, 27, .09);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0 0 0 44%;
}

.hero-image img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  object-fit: cover;
  object-position: 56% center;
  transition: scale .7s ease;
}

.hero:hover .hero-image img {
  scale: 1.012;
}

.hero-shade {
  background: linear-gradient(0deg, rgba(0, 0, 0, .20), transparent 46%);
}

.hero-badges {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 8px;
}

.hero-badges span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 44%;
  padding: 74px 54px 120px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
  color: var(--coral);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  content: "";
}

.eyebrow.light {
  color: var(--coral);
}

.hero h1 {
  max-width: 520px;
  font-size: clamp(3.8rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: .92;
}

.hero-intro {
  max-width: 430px;
  margin-top: 26px;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 30px;
}

.text-link {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: .86rem;
  font-weight: 700;
  text-decoration: none;
}

.light-link {
  color: var(--ink);
}

.hero .button-light {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(255, 56, 92, .24);
}

.hero .button-light:hover {
  background: var(--coral-dark);
}

.availability-card {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 24px;
  width: calc(56% - 48px);
  display: flex;
  min-height: 94px;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 17px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .14);
  backdrop-filter: blur(14px);
}

.availability-card > div:first-child {
  display: none;
}

.card-kicker {
  color: var(--coral);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.availability-card strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.mini-facts {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0;
}

.mini-facts span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 5px 8px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: .66rem;
  text-align: center;
}

.mini-facts span:first-child {
  border-left: 0;
}

.mini-facts b {
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
}

.section-shell {
  width: var(--shell);
  margin-right: auto;
  margin-left: auto;
}

.intro {
  display: grid;
  padding-top: 116px;
  padding-bottom: 84px;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.intro h2 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

.intro-body {
  display: flex;
  align-self: end;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.intro-body p {
  max-width: 540px;
  font-size: 1.02rem;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.amenity-pills span {
  padding: 10px 14px;
  border: 1px solid #e8e3dc;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 5px 14px rgba(38, 31, 27, .04);
  color: #514c47;
  font-size: .72rem;
  font-weight: 700;
}

.amenities-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 42px;
}

.amenities-heading h2 {
  max-width: 780px;
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

.amenities-heading > p {
  max-width: 390px;
  padding-bottom: 4px;
}

.highlights {
  display: grid;
  padding-bottom: 120px;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.highlight {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 8px 28px rgba(38, 31, 27, .04);
  transition: transform .2s ease, box-shadow .2s ease;
}

.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .07);
}

.highlight.featured {
  border-color: transparent;
  background: linear-gradient(145deg, #fff0f3, #fff8f3);
}

.highlight-number {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 800;
}

.featured .highlight-number {
  border-color: rgba(255, 56, 92, .25);
  color: var(--coral);
}

.highlight h3 {
  margin-bottom: 12px;
  font-size: 1.26rem;
  font-weight: 600;
}

.highlight p {
  font-size: .84rem;
  line-height: 1.62;
}

.map-experience {
  padding-bottom: 120px;
}

.map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 42px;
}

.map-heading > p {
  max-width: 460px;
  padding-bottom: 7px;
}

.map-layout {
  display: grid;
  min-height: 610px;
  padding: 10px;
  grid-template-columns: minmax(0, 1.52fr) minmax(320px, .68fr);
  gap: 10px;
  border: 1px solid #e8e3dc;
  border-radius: 30px;
  background: #f1eee9;
  box-shadow: 0 24px 70px rgba(38, 31, 27, .11);
}

.map-canvas-wrap {
  position: relative;
  min-width: 0;
  min-height: 590px;
  overflow: hidden;
  border-radius: 22px;
  background: #ddd8d0;
}

.stay-map {
  width: 100%;
  height: 100%;
  min-height: 590px;
  background: #e8e4de;
}

.map-reset {
  position: absolute;
  z-index: 500;
  top: 16px;
  left: 16px;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(34, 34, 34, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 22px rgba(38, 31, 27, .13);
  color: var(--ink);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.map-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(38, 31, 27, .16);
}

.route-summary {
  position: absolute;
  z-index: 500;
  top: 16px;
  right: 16px;
  display: grid;
  min-width: 210px;
  max-width: 280px;
  padding: 14px 16px;
  gap: 3px;
  border: 1px solid rgba(34, 34, 34, .08);
  border-radius: 15px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 10px 28px rgba(38, 31, 27, .14);
  backdrop-filter: blur(12px);
}

.route-summary[hidden] {
  display: none;
}

.route-summary span {
  color: var(--coral);
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.route-summary strong {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: .79rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-summary small {
  color: var(--muted);
  font-size: .62rem;
}

.poi-panel {
  display: flex;
  height: 590px;
  min-width: 0;
  padding: 22px 16px 16px;
  flex-direction: column;
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
}

.poi-panel-heading {
  display: grid;
  gap: 5px;
  padding: 4px 8px 20px;
}

.poi-panel-heading span {
  color: var(--coral);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.poi-panel-heading strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -.035em;
}

.poi-filters {
  display: grid;
  margin: 0 0 15px;
  padding: 5px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid #ebe6e0;
  border-radius: 16px;
  background: #f5f2ee;
}

.poi-filters button {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 7px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #6b6660;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: .63rem;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.poi-filters button:nth-child(-n + 3) {
  grid-column: span 2;
}

.poi-filters button:nth-child(n + 4) {
  grid-column: span 3;
}

.poi-filters button::before {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 56, 92, .1);
  content: "";
}

.poi-filters button[data-filter="Shopping"]::before {
  background: #7649a8;
  box-shadow: 0 0 0 3px rgba(118, 73, 168, .1);
}

.poi-filters button[data-filter="Outdoors"]::before {
  background: #34785a;
  box-shadow: 0 0 0 3px rgba(52, 120, 90, .1);
}

.poi-filters button[data-filter="Arrival"]::before {
  background: var(--booking);
  box-shadow: 0 0 0 3px rgba(0, 59, 149, .1);
}

.poi-filters button:hover,
.poi-filters button.is-active {
  background: var(--white);
  box-shadow: 0 5px 14px rgba(38, 31, 27, .1);
  color: var(--ink);
  transform: translateY(-1px);
}

.poi-list {
  display: grid;
  min-height: 0;
  padding-right: 0;
  gap: 4px;
  overflow-y: auto;
  scrollbar-width: none;
}

.poi-list::-webkit-scrollbar {
  display: none;
}

.poi-item {
  display: grid;
  width: 100%;
  min-height: 78px;
  padding: 11px 9px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.poi-item[hidden] {
  display: none;
}

.poi-item:hover,
.poi-item.is-active {
  border-color: #eee5e1;
  background: #fff5f4;
  transform: translateX(2px);
}

.poi-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: #252525;
  color: var(--white);
  font-size: .61rem;
  font-weight: 800;
}

.poi-item.is-active .poi-number {
  background: var(--coral);
}

.poi-item[data-category="Shopping"] .poi-number,
.poi-marker.shopping {
  background: #7649a8;
}

.poi-item[data-category="Outdoors"] .poi-number,
.poi-marker.outdoors {
  background: #34785a;
}

.poi-item[data-category="Arrival"] .poi-number,
.poi-marker.arrival {
  background: var(--booking);
}

.poi-item.is-active .poi-number {
  box-shadow: 0 0 0 4px rgba(255, 56, 92, .12);
}

.poi-copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.poi-copy strong {
  overflow: hidden;
  font-family: "DM Sans", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poi-copy small {
  overflow: hidden;
  color: var(--muted);
  font-size: .64rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.poi-arrow {
  color: var(--coral);
  font-size: .82rem;
}

.poi-item.is-loading .poi-arrow {
  animation: route-pulse .8s ease-in-out infinite alternate;
}

@keyframes route-pulse {
  to {
    opacity: .25;
    transform: translateX(3px);
  }
}

.map-address-link {
  display: flex;
  min-height: 48px;
  margin-top: auto;
  padding: 0 13px;
  align-items: center;
  justify-content: space-between;
  border-radius: 12px;
  background: #242424;
  color: var(--white);
  font-size: .69rem;
  font-weight: 700;
  text-decoration: none;
}

.map-address-link span {
  color: var(--coral);
}

.route-credit {
  padding: 9px 4px 0;
  color: #929292;
  font-size: .54rem;
  text-align: center;
}

.route-credit a {
  text-underline-offset: 2px;
}

.stay-marker-shell,
.poi-marker-shell {
  border: 0;
  background: transparent;
}

.stay-marker {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 5px solid var(--white);
  border-radius: 18px 18px 18px 5px;
  background: var(--coral);
  box-shadow: 0 12px 26px rgba(229, 29, 83, .34);
  rotate: -45deg;
}

.stay-marker i {
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: .69rem;
  font-style: normal;
  font-weight: 800;
  rotate: 45deg;
}

.poi-marker {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: #242424;
  box-shadow: 0 8px 20px rgba(38, 31, 27, .24);
  color: var(--white);
  font-size: .58rem;
  font-weight: 800;
}

.leaflet-popup-content-wrapper {
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(38, 31, 27, .18);
}

.leaflet-popup-content {
  min-width: 190px;
  margin: 17px 18px;
}

.map-popup {
  display: grid;
  gap: 5px;
  font-family: "Manrope", sans-serif;
}

.map-popup span {
  color: var(--coral);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.map-popup strong {
  font-family: "DM Sans", sans-serif;
  font-size: .95rem;
  line-height: 1.25;
}

.map-popup small {
  color: var(--muted);
  font-size: .65rem;
}

.map-popup a {
  width: max-content;
  margin-top: 5px;
  color: var(--ink);
  font-size: .67rem;
  font-weight: 800;
  text-decoration-color: var(--coral);
  text-underline-offset: 3px;
}

.leaflet-control-attribution {
  font-size: 9px;
}

.local-host {
  margin-bottom: 120px;
}

.host-card {
  position: relative;
  min-height: 280px;
  padding: 42px;
  border-radius: 26px;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 48px;
  border: 1px solid #f0e5e3;
  background: linear-gradient(145deg, #fff0f3, #fff9f5);
  box-shadow: 0 16px 44px rgba(38, 31, 27, .06);
}

.host-topline {
  display: flex;
  min-width: 190px;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

.host-avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(255, 56, 92, .2);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.host-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 56, 92, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .65);
  color: #5d4d4e;
  font-size: .66rem;
  font-weight: 700;
}

.host-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42a568;
  box-shadow: 0 0 0 4px rgba(66, 165, 104, .12);
}

.host-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
}

.host-card p:last-child {
  max-width: 570px;
}

.host-card > .text-link {
  flex: none;
  margin-left: auto;
}

.statement {
  position: relative;
  display: grid;
  width: var(--shell);
  min-height: 590px;
  margin: 0 auto;
  padding: 84px;
  grid-template-columns: .48fr 1.52fr;
  gap: 36px;
  border-radius: 28px;
  border: 1px solid #ece7df;
  background: linear-gradient(145deg, #f8f6f2, #f3efea);
  color: var(--ink);
  box-shadow: 0 20px 54px rgba(38, 31, 27, .07);
  overflow: hidden;
}

.statement::after {
  position: absolute;
  right: -160px;
  bottom: -280px;
  width: 600px;
  height: 600px;
  border: 110px solid rgba(255, 56, 92, .07);
  border-radius: 50%;
  content: "";
}

.statement-mark {
  display: grid;
  width: 88px;
  height: 88px;
  align-self: center;
  place-items: center;
  border-radius: 24px;
  background: var(--coral);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  rotate: -5deg;
}

.statement-copy {
  position: relative;
  z-index: 1;
}

.statement-copy .eyebrow.light {
  color: var(--coral);
}

.statement-copy h2 {
  max-width: 760px;
}

.statement-copy > p:last-child {
  max-width: 590px;
  margin-top: 28px;
  color: var(--muted);
}

.statement-facts {
  position: absolute;
  z-index: 2;
  right: 84px;
  bottom: 54px;
  display: flex;
  gap: 14px;
}

.statement-facts div {
  display: grid;
  min-width: 128px;
  gap: 3px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.statement-facts strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
}

.statement-facts span {
  color: var(--muted);
  font-size: .67rem;
}

.reviews {
  padding-top: 120px;
  padding-bottom: 120px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.rating {
  flex: none;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: .78rem;
  text-decoration: none;
  transition: background .2s ease;
}

.rating:hover {
  background: var(--soft);
}

.rating span {
  margin-left: 8px;
  color: var(--coral);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 26px rgba(38, 31, 27, .045);
}

.review-card-main {
  grid-column: auto;
  grid-row: auto;
  background: linear-gradient(145deg, #fff0f3, #fff9f5);
}

.review-card blockquote,
.review-card-main blockquote {
  max-width: 740px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: -.025em;
  line-height: 1.52;
}

.review-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .7rem;
}

.review-card figcaption span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.booking-panel {
  display: grid;
  padding: 76px;
  grid-template-columns: .86fr 1.14fr;
  gap: 70px;
  border-radius: 28px;
  background: linear-gradient(140deg, #202020, #2c2526);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(28, 24, 24, .18);
}

.booking-panel h2 {
  font-size: clamp(2.65rem, 4.3vw, 4.2rem);
}

.booking-actions {
  display: grid;
  gap: 12px;
}

.platform-card {
  display: grid;
  min-height: 116px;
  padding: 24px 28px;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr 1fr;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease;
}

.platform-card span {
  align-self: start;
  font-size: .69rem;
  opacity: .76;
}

.platform-card strong {
  align-self: end;
  font-size: 1.55rem;
  font-weight: 600;
}

.platform-card b {
  display: grid;
  width: 42px;
  height: 42px;
  grid-row: span 2;
  place-items: center;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  font-weight: 400;
}

.airbnb-card {
  background: var(--coral);
}

.booking-card {
  background: var(--booking);
}

.faq {
  display: grid;
  padding-top: 120px;
  padding-bottom: 140px;
  grid-template-columns: .8fr 1.2fr;
  gap: 90px;
}

.faq-heading {
  align-self: start;
  position: sticky;
  top: 32px;
}

.faq-heading h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
}

.faq-heading > p:last-child {
  max-width: 400px;
  margin-top: 24px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-size: 1.25rem;
  font-weight: 300;
  transition: rotate .2s ease;
}

.faq-list details[open] summary span {
  rotate: 45deg;
}

.faq-list details p {
  max-width: 620px;
  padding: 0 50px 27px 0;
}

.social-follow {
  display: grid;
  margin-bottom: 120px;
  padding: 72px;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  border-radius: 28px;
  border: 1px solid #f0e5e3;
  background: linear-gradient(135deg, #fff0f3, #f8f4ee);
  box-shadow: 0 18px 50px rgba(38, 31, 27, .06);
}

a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 56, 92, .35);
  outline-offset: 4px;
}

.social-copy {
  align-self: center;
}

.social-copy h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.5rem);
}

.social-copy > p:last-child {
  max-width: 430px;
  margin-top: 22px;
}

.social-links {
  display: grid;
  gap: 12px;
}

.social-card {
  display: grid;
  min-height: 116px;
  padding: 22px 24px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.instagram-card {
  background: linear-gradient(125deg, #6a35b5 0%, #c62c83 52%, #f26d3d 100%);
}

.tiktok-card {
  background: #161616;
}

.social-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  font-weight: 800;
}

.social-card > span:nth-child(2) {
  display: grid;
}

.social-card small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, .66);
  font-size: .65rem;
}

.social-card strong {
  font-family: "DM Sans", sans-serif;
  font-size: 1.25rem;
}

.social-card b {
  margin-top: 3px;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 500;
}

.social-card i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-style: normal;
}

.footer {
  display: grid;
  width: var(--shell);
  min-height: 210px;
  margin: 0 auto;
  padding: 44px 0;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-items: start;
  border-top: 1px solid var(--line);
}

.footer > p {
  justify-self: end;
  font-size: .84rem;
}

.footer-links {
  display: flex;
  grid-column: 1 / -1;
  align-self: end;
  justify-content: flex-end;
  gap: 24px;
  color: var(--muted);
  font-size: .71rem;
}

.footer-links a {
  text-underline-offset: 4px;
}

.mobile-booking {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
  }

  .hero-image {
    left: 50%;
  }

  .hero-copy {
    width: 50%;
    padding-right: 36px;
    padding-left: 36px;
  }

  .hero h1 {
    font-size: clamp(3rem, 6vw, 3.65rem);
  }

  .availability-card {
    width: calc(50% - 48px);
  }

  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

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

  .map-canvas-wrap,
  .stay-map {
    min-height: 500px;
  }

  .poi-panel {
    height: 450px;
    gap: 12px;
  }

  .poi-list {
    grid-template-columns: 1fr 1fr;
  }

  .host-card {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .host-topline {
    min-width: 150px;
  }

  .host-card > div:nth-child(2) {
    flex: 1;
  }

  .host-card > .text-link {
    width: 100%;
    margin-left: 198px;
  }

  .statement {
    padding: 64px;
    grid-template-columns: .35fr 1.65fr;
  }

  .statement-facts {
    right: 64px;
  }

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

  .review-card-main {
    grid-column: 1 / -1;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .social-follow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: 92px;
  }

  h2 {
    font-size: 2.65rem;
  }

  .site-header {
    width: calc(100% - 20px);
    min-height: 62px;
    margin: 8px auto;
    padding: 6px 7px 6px 10px;
    border-radius: 16px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: .82rem;
  }

  .header-actions {
    gap: 6px;
  }

  .mobile-location-link {
    display: inline-flex;
    min-height: 38px;
    padding: 0 12px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid #e8e3dc;
    border-radius: 999px;
    background: #f6f3ef;
    color: #3f3b37;
    font-family: "DM Sans", sans-serif;
    font-size: .68rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
  }

  .mobile-location-link:hover {
    background: var(--white);
    box-shadow: 0 6px 16px rgba(38, 31, 27, .09);
    transform: translateY(-1px);
  }

  .mobile-location-link > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 4px rgba(255, 56, 92, .12);
  }

  .mobile-location-link b {
    font-weight: 700;
  }

  .button-small {
    display: inline-flex;
    min-height: 38px;
    gap: 7px;
    padding: 0 7px 0 12px;
    font-size: .7rem;
  }

  .button-dark span {
    width: 23px;
    height: 23px;
    font-size: .66rem;
  }

  .hero {
    min-height: 700px;
    padding-top: 240px;
    border-radius: 18px;
  }

  .hero-image {
    inset: 0 0 auto;
    height: 240px;
  }

  .hero-badges {
    top: 9px;
    right: 9px;
    left: 9px;
    justify-content: flex-end;
    flex-wrap: wrap;
  }

  .hero-badges span {
    padding: 7px 9px;
    font-size: .56rem;
  }

  .hero-image img {
    object-position: center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(0, 0, 0, .10), transparent 55%);
  }

  .hero-copy {
    width: auto;
    max-width: none;
    padding: 32px 20px 132px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.85rem, 12.8vw, 3.35rem);
    line-height: .94;
  }

  .hero-intro {
    margin-top: 18px;
    font-size: .84rem;
    line-height: 1.6;
  }

  .hero-buttons {
    margin-top: 22px;
  }

  .hero .button {
    width: 100%;
    min-height: 52px;
  }

  .hero .light-link {
    display: none;
  }

  .availability-card {
    right: 9px;
    bottom: 9px;
    left: 9px;
    width: auto;
    min-height: 92px;
    padding: 14px 8px;
    border-radius: 14px;
  }

  .availability-card > div:first-child {
    display: none;
  }

  .mini-facts {
    width: 100%;
  }

  .mini-facts span {
    min-width: 0;
    flex: 1;
    flex-direction: column;
    gap: 0;
    padding: 5px 4px;
    font-size: .56rem;
  }

  .mini-facts b {
    font-size: 1.08rem;
  }

  .intro {
    padding-top: 72px;
    padding-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro h2 {
    font-size: 2.6rem;
  }

  .amenities-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 34px;
  }

  .amenities-heading h2 {
    font-size: 2.5rem;
  }

  .amenities-heading > p {
    padding-bottom: 0;
  }

  .highlights {
    padding-bottom: 78px;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .highlight {
    min-height: 178px;
    gap: 24px;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .highlight-number {
    width: 34px;
    height: 34px;
  }

  .highlight h3 {
    margin-bottom: 8px;
    font-size: 1rem;
  }

  .highlight p {
    font-size: .72rem;
    line-height: 1.48;
  }

  .local-host {
    margin-bottom: 88px;
  }

  .map-experience {
    padding-bottom: 88px;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .map-heading h2 {
    font-size: 2.65rem;
  }

  .map-heading > p {
    padding-bottom: 0;
    font-size: .84rem;
  }

  .map-layout {
    width: calc(100% + 12px);
    margin-left: -6px;
    padding: 6px;
    gap: 6px;
    border-radius: 22px;
  }

  .map-canvas-wrap,
  .stay-map {
    min-height: 390px;
  }

  .map-canvas-wrap {
    border-radius: 17px;
  }

  .map-reset {
    top: 10px;
    left: 10px;
    min-height: 38px;
    padding: 0 13px;
    font-size: .62rem;
  }

  .route-summary {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    min-width: 0;
    max-width: none;
    padding: 12px 14px;
  }

  .poi-panel {
    height: auto;
    padding: 19px 10px 10px;
    border-radius: 17px;
  }

  .poi-filters {
    margin-right: -4px;
    margin-left: -4px;
  }

  .poi-panel-heading {
    padding: 2px 5px 15px;
  }

  .poi-panel-heading strong {
    font-size: 1.22rem;
  }

  .poi-list {
    display: flex;
    width: calc(100% + 10px);
    margin-right: -10px;
    padding-right: 10px;
    gap: 7px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .poi-list::-webkit-scrollbar {
    display: none;
  }

  .poi-item {
    min-height: 79px;
    flex: 0 0 83%;
    padding: 10px;
    border-color: #eeeae5;
    background: #fbfaf8;
    scroll-snap-align: start;
  }

  .poi-item:hover,
  .poi-item.is-active {
    transform: none;
  }

  .map-address-link {
    margin-top: 11px;
  }

  .leaflet-control-zoom {
    margin-right: 10px !important;
    margin-bottom: 10px !important;
  }

  .host-card {
    min-height: 0;
    padding: 27px 23px;
    align-items: flex-start;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 28px;
    border-radius: 20px;
  }

  .host-topline {
    width: 100%;
    min-width: 0;
    justify-content: space-between;
    flex-direction: row;
  }

  .host-card h2 {
    font-size: 2.75rem;
  }

  .host-card > .text-link {
    width: auto;
    margin-left: 0;
  }

  .statement {
    min-height: 585px;
    padding: 54px 22px 168px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .statement-mark {
    display: none;
  }

  .statement-copy h2 {
    font-size: 2.65rem;
  }

  .statement-facts {
    right: 20px;
    bottom: 26px;
    left: 20px;
    gap: 7px;
  }

  .statement-facts div {
    min-width: 0;
    flex: 1;
    padding: 13px 10px;
  }

  .statement-facts strong {
    font-size: 1.2rem;
  }

  .statement-facts span {
    font-size: .58rem;
  }

  .reviews {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 38px;
  }

  .review-grid {
    display: flex;
    width: calc(100% + 16px);
    margin-right: -16px;
    padding-right: 16px;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card,
  .review-card-main {
    min-width: 0;
    min-height: 300px;
    flex: 0 0 86%;
    grid-column: auto;
    padding: 24px;
    scroll-snap-align: start;
  }

  .review-card blockquote,
  .review-card-main blockquote {
    font-size: 1.16rem;
  }

  .booking-panel {
    width: calc(100% - 32px);
    padding: 50px 18px;
    gap: 38px;
    border-radius: 20px;
  }

  .booking-panel h2 {
    font-size: 2.45rem;
  }

  .platform-card {
    min-height: 108px;
    padding: 22px;
    border-radius: 15px;
  }

  .faq {
    padding-top: 88px;
    padding-bottom: 100px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    font-size: 2.8rem;
  }

  .faq-list summary {
    min-height: 82px;
    font-size: .96rem;
  }

  .social-follow {
    margin-bottom: 88px;
    padding: 54px 20px 20px;
    gap: 36px;
    border-radius: 20px;
  }

  .social-copy {
    padding: 0 8px;
  }

  .social-copy h2 {
    font-size: 2.9rem;
  }

  .social-card {
    min-height: 108px;
    padding: 20px;
    gap: 14px;
    border-radius: 15px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .footer {
    min-height: 250px;
    padding: 36px 0 42px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer > p {
    justify-self: start;
  }

  .footer-links {
    align-self: end;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px 22px;
  }

  .footer-links span {
    width: 100%;
  }

  .mobile-booking {
    position: fixed;
    z-index: 50;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    display: grid;
    padding: 6px;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    border: 1px solid rgba(225, 220, 214, .9);
    border-radius: 18px;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
    backdrop-filter: blur(14px);
  }

  .mobile-booking a {
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 11px;
    color: var(--white);
    font-family: "DM Sans", sans-serif;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-airbnb {
    background: var(--coral);
  }

  .mobile-bookingcom {
    background: var(--booking);
  }
}

@media (max-width: 380px) {
  .mobile-location-link {
    width: 38px;
    padding: 0;
  }

  .mobile-location-link b {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
