:root {
  --bg: #dff3fb;
  --bg-soft: #fff1d9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #f7f9f8;
  --text: #1f2a2b;
  --muted: #4f5e5c;
  --line: rgba(31, 42, 43, 0.1);
  --accent: #36aee2;
  --accent-deep: #1f9fd3;
  --accent-warm: #c48f63;
  --shadow: 0 24px 60px rgba(71, 55, 39, 0.12);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(96, 178, 212, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 149, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #dff3fb 0%, #e9f7fb 46%, #fff1d9 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 65%);
  opacity: 0.18;
}

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

.page-shell {
  width: min(calc(100% - 32px), var(--page-width));
  margin: 0 auto;
  padding: 18px 0 88px;
}

.topbar,
.hero,
.trust,
.section,
.split,
.cta,
.footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 8px 0 24px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar > div:first-child .eyebrow {
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  font-weight: 650;
  letter-spacing: 0.05em;
  color: #1f2a2b;
}

.topbar__host-card {
  display: inline-block;
  margin-top: 8px;
  padding: 13px 18px 15px;
  border: 1px solid rgba(54, 174, 226, 0.22);
  border-radius: 22px;
  background: rgba(255, 241, 217, 0.82);
  box-shadow: 0 16px 34px rgba(31, 159, 211, 0.1);
}

.topbar__subtle {
  margin: 4px 0 0;
  color: #1f2a2b;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.08rem, 1.55vw, 1.32rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.035em;
}

.eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 600;
}

.eyebrow--orange {
  color: #ff9500;
  font-size: clamp(1rem, 1.3vw, 1.22rem);
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  min-height: auto;
  padding: 18px 0 12px;
}

.hero__copy h1,
.section__heading h2,
.split h2,
.cta h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero__copy h1 {
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  max-width: 11ch;
}

.hero__copy {
  padding-right: 10px;
}

.hero__heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 18px;
  align-items: center;
}

.hero__heading-row--photo {
  align-items: end;
}

.hero__heading-photo {
  justify-self: end;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  aspect-ratio: 1.18 / 1;
  background: #fff;
  box-shadow: 0 24px 48px rgba(31, 42, 43, 0.16);
  transform: translate(18px, 58px) rotate(1deg);
}

.hero__heading-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section__heading h2,
.split h2,
.cta h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.lead {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.14rem, 1.5vw, 1.28rem);
  font-weight: 600;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--accent-deep);
  color: #fff;
  font-weight: 500;
  box-shadow: 0 14px 28px rgba(72, 96, 90, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(72, 96, 90, 0.24);
}

.button--soft {
  background: #ff9500;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 34px rgba(255, 149, 0, 0.22);
  backdrop-filter: blur(10px);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button--top-airbnb,
.button--top-instagram {
  min-height: 84px;
  padding: 0 54px;
  font-size: 1.42rem;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(18, 63, 99, 0.22);
}

.button--top-airbnb {
  background: #ff9500;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 38px rgba(255, 149, 0, 0.26);
}

.button--top-instagram {
  background: rgba(255, 255, 255, 0.94);
  color: #1f2a2b;
  border-color: rgba(31, 42, 43, 0.1);
  box-shadow: 0 18px 38px rgba(18, 63, 99, 0.14);
}

.button--icon {
  gap: 12px;
  padding-inline: 34px;
}

.button__icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.button--top-instagram .button__icon {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #feda75 0%, #fa7e1e 28%, #d62976 55%, #962fbf 78%, #4f5bd5 100%);
  color: #fff;
  padding: 3px;
}

.button--inline {
  align-self: flex-start;
  white-space: nowrap;
}

.button--light {
  background: #fff;
  color: var(--accent-deep);
}

.button--booking-primary {
  min-height: 84px;
  padding: 0 58px;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  background: #ff9500;
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 149, 0, 0.26);
}

.button--booking-secondary {
  min-height: 84px;
  padding: 0 58px;
  font-size: 1.45rem;
  font-weight: 900;
  background: #ff9500;
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 149, 0, 0.26);
}

.button--airbnb-accent {
  background: linear-gradient(135deg, #c7825a, #9f6043);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 16px 34px rgba(159, 96, 67, 0.22);
}

.hero__highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
}

.hero__highlights li,
.trust > div,
.review-card,
.info-card,
.panel {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero__highlights li {
  border-radius: 999px;
  padding: 12px 16px;
  color: var(--accent-deep);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero__visual {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1.1fr 0.9fr;
  gap: 18px;
  width: 100%;
  min-height: 560px;
}

.hero__visual--four {
  grid-template-columns: 1.55fr repeat(2, minmax(0, 0.8fr));
  grid-template-rows: repeat(2, minmax(190px, 240px));
  min-height: 490px;
}

.hero__visual--four .photo-card--large {
  grid-row: span 2;
}

.hero__visual--four .photo-card {
  min-height: 190px;
}

.hero__visual--four .photo-card:nth-child(4) {
  grid-column: span 2;
}

.hero__visual--single {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(360px, 520px);
  min-height: 520px;
}

.hero__visual--single .photo-card--large {
  grid-row: auto;
  grid-column: auto;
}

.hero__visual--double {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(360px, 500px);
  min-height: 500px;
}

.hero__visual--double .photo-card--large {
  grid-row: auto;
  grid-column: auto;
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.52), transparent 28%),
    linear-gradient(135deg, rgba(111, 138, 120, 0.72), rgba(196, 143, 99, 0.7));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  isolation: isolate;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.photo-card--cover-shot {
  background-position: 62% 34%;
  background-size: 112%;
}

.photo-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 30px 72px rgba(71, 55, 39, 0.16);
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 33, 33, 0.06), rgba(28, 33, 33, 0.2));
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 232, 0.16), rgba(255, 255, 255, 0.06));
  mix-blend-mode: screen;
  pointer-events: none;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.98) saturate(0.9) contrast(1.02);
}

.photo-card figcaption {
  position: absolute;
  inset: auto 16px 16px 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 250, 244, 0.82);
  backdrop-filter: blur(12px);
  color: var(--text);
}

.photo-card figcaption span {
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.2;
}

.photo-card figcaption small {
  color: #1f2a2b;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.photo-card--large {
  grid-row: span 2;
}

.tone-soft {
  background-color: #d9c7b0;
}

.tone-warm {
  background-color: #ccb08f;
}

.tone-sand {
  background-color: #d5c1a4;
}

.tone-mist {
  background-color: #b8c4c1;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.trust > div {
  padding: 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.trust > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(111, 138, 120, 0.08), transparent 52%);
  pointer-events: none;
}

.trust p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.trust__value {
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  color: var(--accent-deep);
}

.section,
.split,
.cta {
  margin-top: 22px;
}

.section__heading {
  max-width: 720px;
  margin-bottom: 16px;
}

.section__heading--feature {
  max-width: 860px;
}

.section__heading--feature p:last-child {
  max-width: 78ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  color: var(--accent-deep);
}

.section__heading--compact {
  margin-bottom: 20px;
}

.section__heading--compact h2 {
  max-width: 720px;
}

.bedroom-showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.bedroom-showcase__copy {
  padding: 34px 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 246, 0.96));
  box-shadow: var(--shadow);
}

.bedroom-showcase__copy h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  color: var(--accent-deep);
}

.bedroom-showcase__copy p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.bedroom-showcase__photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bedroom-showcase__photos .photo-card {
  min-height: 280px;
}

.bedroom-showcase__photos--stacked .photo-card {
  min-height: 300px;
}

.mini-instagram {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(249, 245, 239, 0.98));
  box-shadow: var(--shadow);
}

.mini-instagram h2 {
  margin: 4px 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
  color: var(--accent-deep);
}

.mini-instagram p {
  margin: 0;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.35vw, 1.2rem);
  font-weight: 600;
  line-height: 1.75;
}

.section__heading p:last-child,
.split p,
.cta p {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.8;
}

.section__heading p:last-child {
  font-size: clamp(1.1rem, 1.35vw, 1.24rem);
}

.gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.85fr 1fr;
  gap: 16px;
  min-height: 400px;
}

.gallery .photo-card:nth-child(1) {
  min-height: 320px;
}

.gallery .photo-card:nth-child(2),
.gallery .photo-card:nth-child(3),
.gallery .photo-card:nth-child(4) {
  min-height: 320px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.panel {
  border-radius: var(--radius-xl);
  padding: 24px;
}

.panel--text {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 251, 245, 0.9));
}

.panel--info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
  background: linear-gradient(180deg, rgba(111, 138, 120, 0.11), rgba(255, 255, 255, 0.74));
}

.panel--social {
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 243, 236, 0.98));
}

.instagram-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.instagram-card__header h2 {
  margin: 4px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  line-height: 0.95;
}

.instagram-card__header h2.escape-gallery-title {
  font-size: clamp(3rem, 5.6vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.instagram-note {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
  min-height: 440px;
}

.instagram-grid .photo-card {
  min-height: 100%;
}

.instagram-grid .photo-card:first-child {
  grid-row: span 2;
  min-height: 440px;
}

.instagram-grid .photo-card:nth-child(2),
.instagram-grid .photo-card:nth-child(3) {
  min-height: 214px;
}

.instagram-grid--comfort {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
  align-items: start;
  gap: 22px;
  margin-top: 22px;
  min-height: auto;
}

.instagram-grid--comfort .photo-card,
.instagram-grid--comfort .photo-card:first-child,
.instagram-grid--comfort .photo-card:nth-child(2),
.instagram-grid--comfort .photo-card:nth-child(3) {
  display: flex;
  flex-direction: column;
  grid-row: auto;
  min-height: 0;
  overflow: visible;
  padding-top: 230px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% 230px;
  box-shadow: none;
  border-radius: 0;
}

.instagram-grid--comfort .photo-card::before,
.instagram-grid--comfort .photo-card::after {
  display: none;
}

.instagram-grid--comfort .photo-card.has-image {
  background-size: 100% 230px;
}

.instagram-grid--comfort .photo-card {
  border-radius: 28px 28px 0 0;
}

.instagram-grid--comfort .photo-card figcaption {
  position: static;
  display: block;
  margin-top: 10px;
  padding: 0 4px;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  color: var(--text);
}

.instagram-grid--comfort .photo-card figcaption span {
  display: block;
  font-size: 0.88rem;
}

.instagram-grid--comfort .photo-card figcaption small {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
}

.instagram-grid--comfort .photo-card:nth-child(1),
.instagram-grid--comfort .photo-card:nth-child(4),
.instagram-grid--comfort .photo-card:nth-child(3) {
  transform: none;
}

.instagram-grid--escape {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.instagram-grid--escape .photo-card,
.instagram-grid--escape .photo-card:first-child,
.instagram-grid--escape .photo-card:nth-child(2),
.instagram-grid--escape .photo-card:nth-child(3) {
  aspect-ratio: 1;
  padding-top: 0;
  background-size: cover;
}

.instagram-grid--escape .photo-card.has-image {
  background-size: cover;
}

.instagram-grid--escape-small {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.instagram-grid--escape-small .photo-card,
.instagram-grid--escape-small .photo-card:first-child,
.instagram-grid--escape-small .photo-card:nth-child(2),
.instagram-grid--escape-small .photo-card:nth-child(3),
.instagram-grid--escape-small .photo-card:nth-child(4),
.instagram-grid--escape-small .photo-card:nth-child(5) {
  aspect-ratio: 1;
  padding-top: 0;
  min-height: 0;
  background-size: cover;
}

.instagram-grid--escape-small .photo-card.has-image {
  background-size: cover;
}

.instagram-grid--escape-all {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.instagram-grid--escape-all .photo-card,
.instagram-grid--escape-all .photo-card:first-child,
.instagram-grid--escape-all .photo-card:nth-child(2),
.instagram-grid--escape-all .photo-card:nth-child(3),
.instagram-grid--escape-all .photo-card:nth-child(4),
.instagram-grid--escape-all .photo-card:nth-child(5),
.instagram-grid--escape-all .photo-card:nth-child(6),
.instagram-grid--escape-all .photo-card:nth-child(7),
.instagram-grid--escape-all .photo-card:nth-child(8),
.instagram-grid--escape-all .photo-card:nth-child(9),
.instagram-grid--escape-all .photo-card:nth-child(10),
.instagram-grid--escape-all .photo-card:nth-child(11),
.instagram-grid--escape-all .photo-card:nth-child(12) {
  aspect-ratio: 1;
  padding-top: 0;
  min-height: 0;
  background-size: cover;
}

.instagram-grid--escape-all .photo-card.has-image {
  background-size: cover;
}

.escape-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(190px, 0.41fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.escape-feature-card {
  --card-tint: #f1e6d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.42)),
    var(--card-tint);
  box-shadow: 0 20px 52px rgba(71, 55, 39, 0.12);
}

.escape-feature-card .photo-card {
  min-height: 210px;
  border-radius: inherit;
}

.escape-feature-card .photo-card::before,
.escape-feature-card .photo-card::after {
  display: none;
}

.escape-feature-card--main {
  grid-row: span 2;
  --card-tint: #efe0cf;
  border-radius: 38px 24px 42px 28px;
}

.escape-feature-card--main .photo-card {
  min-height: 500px;
}

.escape-feature-card--pool {
  --card-tint: #dfeeee;
  border-radius: 24px 46px 28px 34px;
}

.escape-feature-card--balcony {
  --card-tint: #f1e4c9;
  border-radius: 42px 24px 36px 24px;
}

.escape-feature-card--jetty {
  --card-tint: #e4eadb;
  border-radius: 28px 28px 50px 24px;
}

.escape-feature-card--lake {
  --card-tint: #eadcca;
  border-radius: 24px 40px 24px 44px;
}

.escape-feature-caption {
  padding: 0 4px 4px;
}

.escape-feature-caption h3 {
  margin: 0 0 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
  color: var(--accent-deep);
}

.escape-feature-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.55;
}

.escape-feature-card--main .escape-feature-caption p {
  font-size: clamp(1.1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.feature-list {
  list-style: decimal;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
  list-style-position: inside;
}

.feature-list li {
  padding-left: 0;
  font-weight: 600;
  line-height: 1.7;
}

.feature-list li::before {
  content: none;
}

.info-card {
  border-radius: 22px;
  padding: 18px 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.info-card strong {
  font-size: 1.06rem;
  line-height: 1.5;
}

.info-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
  font-size: 0.94rem;
}

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

.reviews--testimonials {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reviews--airbnb {
  gap: 18px;
}

.review-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 48%);
  pointer-events: none;
}

.review-card__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
  font-weight: 700;
  color: var(--accent-deep);
}

.review-card__quote {
  margin: 0;
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.28rem, 1.8vw, 1.75rem);
  font-weight: 600;
  line-height: 1.28;
}

.review-card__meta {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.review-card__stars {
  margin: 0 0 14px;
  color: #b78345;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.review-card:hover,
.info-card:hover,
.stat-card:hover {
  transform: translateY(-2px);
}

.review-card__score {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent-deep);
}

.review-card--metric {
  background: linear-gradient(180deg, rgba(111, 138, 120, 0.12), rgba(255, 255, 255, 0.78));
}

.review-card--testimonial {
  background:
    radial-gradient(circle at top right, rgba(126, 166, 169, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 246, 0.96));
}

.reviews--airbnb .review-card {
  min-height: 280px;
  padding: 28px;
  border-color: rgba(183, 131, 69, 0.18);
}

.reviews--airbnb .review-card:nth-child(2) {
  background:
    radial-gradient(circle at top left, rgba(128, 166, 168, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 244, 0.96));
}

.reviews--airbnb .review-card:nth-child(3) {
  background:
    radial-gradient(circle at top right, rgba(142, 171, 173, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 248, 246, 0.96));
}

.reviews-booking-link {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.section--duplicate-reviews {
  display: none;
}

.stay-features-panel {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(119, 166, 169, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 248, 246, 0.96));
  box-shadow: var(--shadow);
}

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

.stay-feature-card {
  padding: 20px;
  border: 1px solid rgba(111, 138, 120, 0.12);
  border-radius: 24px;
  background: #ffffff;
}

.stay-feature-card:nth-child(2) {
  background: #edf1f1;
}

.stay-feature-card:nth-child(3) {
  background: #f8faf9;
}

.stay-feature-card:nth-child(4) {
  background: #e8eeee;
}

.stay-feature-card:nth-child(5) {
  background: #ffffff;
}

.stay-feature-card:nth-child(6) {
  background: #eef2f2;
}

.stay-feature-card:nth-child(7) {
  background: #f8faf9;
}

.stay-feature-card:nth-child(8) {
  background: #e9eeee;
}

.stay-feature-card:nth-child(9) {
  background: #ffffff;
}

.stay-feature-card__title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent-deep);
}

.stay-feature-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.65;
}

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

.stat-card {
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 94px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat-card__value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.35rem;
  line-height: 1;
  color: var(--accent-deep);
}

.stat-card__label {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.thing-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 245, 239, 0.96));
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.thing-card__title {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
  color: var(--accent-deep);
}

.thing-card p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.review-card p:last-child {
  margin-bottom: 0;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(223, 243, 251, 0.98), rgba(255, 241, 217, 0.94));
  color: var(--text);
  box-shadow: var(--shadow);
}

.cta--airbnb {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.cta p,
.cta .eyebrow {
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 12px 16px 18px;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.08), rgba(245, 239, 230, 0.96) 26%);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(31, 42, 43, 0.08);
}

.button--mobile {
  width: 100%;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Match the clean rounded font style from Sandra's reference screenshot. */
.topbar > div:first-child .eyebrow,
.topbar__subtle,
.hero__copy h1,
.section__heading h2,
.split h2,
.cta h2,
.bedroom-showcase__copy h3,
.mini-instagram h2,
.instagram-card__header h2,
.escape-feature-caption h3,
.review-card__title,
.review-card__quote,
.review-card__score,
.stay-feature-card__title,
.thing-card__title,
.trust__value,
.stat-card__value,
.info-card strong,
.button,
.nav__links a {
  font-family: "Manrope", system-ui, sans-serif;
  letter-spacing: -0.025em;
}

.hero__copy h1,
.section__heading h2,
.split h2,
.cta h2,
.bedroom-showcase__copy h3,
.instagram-card__header h2 {
  font-weight: 600;
}

.review-card__quote {
  font-weight: 650;
  line-height: 1.42;
}

.review-card__title,
.stay-feature-card__title,
.thing-card__title,
.button {
  font-weight: 700;
}

.topbar > div:first-child .eyebrow {
  color: #1f2a2b;
  font-weight: 650;
}

.button--top-airbnb,
.button--top-instagram,
.button--booking-primary,
.button--booking-secondary {
  font-size: clamp(1.35rem, 1.7vw, 1.58rem);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    min-height: 560px;
  }

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

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

  .bedroom-showcase {
    grid-template-columns: 1fr;
  }

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

  .mini-instagram {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .reviews--testimonials,
  .things-grid,
  .stay-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .instagram-grid {
    min-height: auto;
  }

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

  .instagram-grid--comfort .photo-card,
  .instagram-grid--comfort .photo-card:first-child,
  .instagram-grid--comfort .photo-card:nth-child(2),
  .instagram-grid--comfort .photo-card:nth-child(3) {
    min-height: 0;
    padding-top: 220px;
  }

  .instagram-grid--comfort .photo-card.has-image {
    background-size: 100% 220px;
  }

  .instagram-grid--escape {
    grid-template-columns: 1fr;
  }

  .instagram-grid--escape .photo-card,
  .instagram-grid--escape .photo-card:first-child,
  .instagram-grid--escape .photo-card:nth-child(2),
  .instagram-grid--escape .photo-card:nth-child(3) {
    padding-top: 0;
  }

  .instagram-grid--escape .photo-card.has-image {
    background-size: cover;
  }

  .instagram-grid--escape-small {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-grid--escape-all {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .escape-feature-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .escape-feature-card--main {
    grid-row: auto;
  }

  .escape-feature-card--main .photo-card {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--page-width));
    padding-bottom: 120px;
  }

  .topbar {
    align-items: flex-start;
  }

  .topbar__actions {
    justify-content: flex-start;
  }

  .hero__copy h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 13vw, 4.4rem);
  }

  .hero__heading-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero__heading-photo {
    justify-self: stretch;
    transform: none;
  }

  .hero__visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 170px;
    min-height: auto;
  }

  .hero__visual--four {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px repeat(2, 170px);
  }

  .hero__visual--single {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 360px);
    min-height: 360px;
  }

  .hero__visual--double {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(240px, 320px));
    min-height: auto;
  }

  .photo-card--cover-shot {
    background-position: 58% 30%;
    background-size: 118%;
  }

  .photo-card--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .hero__visual--four .photo-card--large {
    grid-row: span 1;
    grid-column: span 2;
  }

  .hero__visual--four .photo-card {
    min-height: 170px;
  }

  .hero__visual--single .photo-card--large {
    grid-column: auto;
  }

  .hero__visual--double .photo-card--large {
    grid-column: auto;
  }

  .gallery,
  .trust {
    grid-template-columns: 1fr;
  }

  .bedroom-showcase__photos {
    grid-template-columns: 1fr;
  }

  .bedroom-showcase__photos .photo-card {
    min-height: 240px;
  }

  .photo-card figcaption {
    inset: auto 12px 12px 12px;
    padding: 9px 10px;
  }

  .photo-card figcaption span {
    font-size: 0.9rem;
  }

  .photo-card figcaption small {
    font-size: 0.72rem;
  }

  .mini-instagram {
    padding: 20px;
  }

  .instagram-card__header {
    flex-direction: column;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .instagram-grid--comfort {
    grid-template-columns: 1fr 1fr;
  }

  .instagram-grid .photo-card:first-child,
  .instagram-grid .photo-card:nth-child(2),
  .instagram-grid .photo-card:nth-child(3) {
    grid-row: auto;
    min-height: 220px;
  }

  .instagram-grid--comfort .photo-card,
  .instagram-grid--comfort .photo-card:first-child,
  .instagram-grid--comfort .photo-card:nth-child(2),
  .instagram-grid--comfort .photo-card:nth-child(3) {
    min-height: 0;
    padding-top: 170px;
    transform: none;
  }

  .instagram-grid--comfort .photo-card.has-image {
    background-size: 100% 170px;
  }

  .instagram-grid--escape {
    grid-template-columns: 1fr;
  }

  .instagram-grid--escape .photo-card,
  .instagram-grid--escape .photo-card:first-child,
  .instagram-grid--escape .photo-card:nth-child(2),
  .instagram-grid--escape .photo-card:nth-child(3) {
    padding-top: 0;
  }

  .instagram-grid--escape .photo-card.has-image {
    background-size: cover;
  }

  .instagram-grid--escape-small {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .instagram-grid--escape-all {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .escape-feature-grid {
    gap: 14px;
  }

  .escape-feature-card,
  .escape-feature-card--main,
  .escape-feature-card--pool,
  .escape-feature-card--balcony,
  .escape-feature-card--jetty,
  .escape-feature-card--lake {
    border-radius: 26px;
  }

  .escape-feature-card .photo-card,
  .escape-feature-card--main .photo-card {
    min-height: 260px;
  }

  .reviews,
  .reviews--testimonials,
  .things-grid,
  .stay-features-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .mobile-bar {
    display: block;
  }
}
